ETH Price: $3,013.76 (+4.61%)
Gas: 1 Gwei

Token

FomoBotz (BOTZ)
 

Overview

Max Total Supply

2,871 BOTZ

Holders

364

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 BOTZ
0x973bc76f055379752f830e40fa3a9d293071baad
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:
FomoBotz

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 2021-10-07
*/

// SPDX-License-Identifier: MIT

/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                //////////                //////////                 ////
////                //////////                //////////                 ////
////                ////  ////                ////  ////                 ////
////                //////////                //////////                 ////
////                //////////                //////////                 ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                //////                          ////                 ////
////                //////                          ////                 //// 
////                ////////////////////////////////////                 ////
////                ////////////////////////////////////                 ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////

// FomoBotz is 10101 unique botz algorithmically created and now zipping around the metaverse.


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


pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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



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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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



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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: contracts/FomoBotz.sol


pragma solidity ^0.8.0;

/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                //////////                //////////                 ////
////                //////////                //////////                 ////
////                ////  ////                ////  ////                 ////
////                //////////                //////////                 ////
////                //////////                //////////                 ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                //////                          ////                 ////
////                //////                          ////                 //// 
////                ////////////////////////////////////                 ////
////                ////////////////////////////////////                 ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
////                                                                     ////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////

// EtherBotz is 10101 unique botz algorithmically created and now zipping around the metaverse.






contract FomoBotz is ERC721, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    uint256 public constant MAX_FREE = 2222;
    uint256 public constant MAX_FREE_MINT = 20;
    
    uint256 public constant MAX_LEVEL_ONE = 4444;
    uint256 public constant LEVEL_ONE_PRICE = 1 * 10**16;
    
    uint256 public constant MAX_LEVEL_TWO = 6666;
    uint256 public constant LEVEL_TWO_PRICE = 2 * 10**16;
    
    uint256 public constant MAX_LEVEL_THREE = 8888;
    uint256 public constant LEVEL_THREE_PRICE = 4 * 10**16;
    
    uint256 public constant MAX_ELEMENTS = 10101;    
    uint256 public constant LEVEL_FOUR_PRICE = 8 * 10**16;
    
    address
        public constant creatorAddress = 0x8da85fD2DB9B6fA63B9d7dDbf8267d8293bfa7aE;

    event CreateBot(uint256 indexed id);

    constructor() public ERC721("FomoBotz", "BOTZ") {}

    modifier saleIsOpen {
        require(_totalSupply() <= MAX_ELEMENTS, "Sale end");
        _;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIdTracker.current();
    }

    function _totalSupply() internal view returns (uint256) {
        return _tokenIdTracker.current();
    }

    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }

    function mintFree(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(total + _count <= MAX_FREE, "Max limit");
        require(total <= MAX_FREE, "Sale end");
        require(_count <= MAX_FREE_MINT, "Exceeds number");
        require(
            balanceOf(msg.sender) < 20,
            "only 20 free token per address allowed"
        );

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
    
    function mintLevelOne(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(total + _count <= MAX_LEVEL_ONE, "Max limit");
        require(total <= MAX_LEVEL_ONE, "Sale end");
        require(msg.value >= priceLevelOne(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
    
    function mintLevelTwo(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(total + _count <= MAX_LEVEL_TWO, "Max limit");
        require(total <= MAX_LEVEL_TWO, "Sale end");
        require(msg.value >= priceLevelTwo(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
    
    function mintLevelThree(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(total + _count <= MAX_LEVEL_THREE, "Max limit");
        require(total <= MAX_LEVEL_THREE, "Sale end");
        require(msg.value >= priceLevelThree(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
    
    function mintLevelFour(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(total + _count <= MAX_ELEMENTS, "Max limit");
        require(total <= MAX_ELEMENTS, "Sale end");
        require(msg.value >= priceLevelFour(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }

    function _mintAnElement(address _to) private {
        uint256 id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreateBot(id);
    }

    function priceLevelOne(uint256 _count) public pure returns (uint256) {
        return LEVEL_ONE_PRICE.mul(_count);
    }
    
    function priceLevelTwo(uint256 _count) public pure returns (uint256) {
        return LEVEL_TWO_PRICE.mul(_count);
    }
    
    function priceLevelThree(uint256 _count) public pure returns (uint256) {
        return LEVEL_THREE_PRICE.mul(_count);
    }
    
   function priceLevelFour(uint256 _count) public pure returns (uint256) {
        return LEVEL_FOUR_PRICE.mul(_count);
    }

    /**
     * @dev Returns an URI for a given token ID
     */
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        string memory botzUri = "https://gateway.pinata.cloud/ipfs/QmPgjT8UsAy11sCcjpYBFs1hRWRctBgQ3Z5Hq7MeNkcSrU/";
        return string(abi.encodePacked(botzUri, _tokenId.toString()));
    }

    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(creatorAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateBot","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":"LEVEL_FOUR_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LEVEL_ONE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LEVEL_THREE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LEVEL_TWO_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_LEVEL_ONE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_LEVEL_THREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_LEVEL_TWO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintLevelFour","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintLevelOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintLevelThree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintLevelTwo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"priceLevelFour","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"priceLevelOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"priceLevelThree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"priceLevelTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260088152672337b6b7a137ba3d60c11b6020808301918252835180850190945260048452632127aa2d60e11b9084015281519192916200005e91600091620000ed565b50805162000074906001906020840190620000ed565b505050620000916200008b6200009760201b60201c565b6200009b565b620001d0565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fb9062000193565b90600052602060002090601f0160209004810192826200011f57600085556200016a565b82601f106200013a57805160ff19168380011785556200016a565b828001600101855582156200016a579182015b828111156200016a5782518255916020019190600101906200014d565b50620001789291506200017c565b5090565b5b808211156200017857600081556001016200017d565b600181811c90821680620001a857607f821691505b60208210811415620001ca57634e487b7160e01b600052602260045260246000fd5b50919050565b61204480620001e06000396000f3fe6080604052600436106102305760003560e01c80638ac46e671161012e578063c87b56dd116100ab578063efaf02a21161006f578063efaf02a21461062d578063f23e03e314610648578063f2fde38b14610668578063f5573b8b14610688578063f58527561461069b57600080fd5b8063c87b56dd14610570578063d676d1c914610590578063e927fc5c146105a6578063e985e9c5146105ce578063ed6661c21461061757600080fd5b8063adf66d31116100f2578063adf66d31146104e7578063b3baf5b6146104fa578063b88d4fde14610515578063bba28c0314610535578063bd96c0fc1461055057600080fd5b80638ac46e67146104625780638da5cb5b1461047857806395d89b4114610496578063a091305e146104ab578063a22cb465146104c757600080fd5b806337b195ff116101bc5780636417701f116101805780636417701f146103e557806370a0823114610405578063715018a614610425578063846102181461043a578063853828b61461045a57600080fd5b806337b195ff1461036857806341cda2031461037b57806342842e0e1461039057806359a7715a146103b05780636352211e146103c557600080fd5b8063095ea7b311610203578063095ea7b3146102e857806318160ddd1461030a5780631d88dd8a1461031f57806323b872dd146103325780633502a7161461035257600080fd5b806301ffc9a71461023557806306fdde031461026a578063076135561461028c578063081812fc146102b0575b600080fd5b34801561024157600080fd5b50610255610250366004611c11565b6106ae565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610700565b6040516102619190611cfc565b34801561029857600080fd5b506102a26122b881565b604051908152602001610261565b3480156102bc57600080fd5b506102d06102cb366004611c4b565b610792565b6040516001600160a01b039091168152602001610261565b3480156102f457600080fd5b50610308610303366004611be7565b61082c565b005b34801561031657600080fd5b506102a2610942565b61030861032d366004611be7565b610952565b34801561033e57600080fd5b5061030861034d366004611a93565b610a28565b34801561035e57600080fd5b506102a261277581565b610308610376366004611be7565b610a59565b34801561038757600080fd5b506102a2601481565b34801561039c57600080fd5b506103086103ab366004611a93565b610b29565b3480156103bc57600080fd5b506102a2610b44565b3480156103d157600080fd5b506102d06103e0366004611c4b565b610b4e565b3480156103f157600080fd5b506102a2610400366004611c4b565b610bc5565b34801561041157600080fd5b506102a2610420366004611a45565b610bd9565b34801561043157600080fd5b50610308610c60565b34801561044657600080fd5b506102a2610455366004611c4b565b610c96565b610308610ca9565b34801561046e57600080fd5b506102a2611a0a81565b34801561048457600080fd5b506006546001600160a01b03166102d0565b3480156104a257600080fd5b5061027f610cff565b3480156104b757600080fd5b506102a267011c37937e08000081565b3480156104d357600080fd5b506103086104e2366004611bab565b610d0e565b6103086104f5366004611be7565b610dd3565b34801561050657600080fd5b506102a2668e1bc9bf04000081565b34801561052157600080fd5b50610308610530366004611acf565b610f24565b34801561054157600080fd5b506102a2662386f26fc1000081565b34801561055c57600080fd5b506102a261056b366004611c4b565b610f56565b34801561057c57600080fd5b5061027f61058b366004611c4b565b610f69565b34801561059c57600080fd5b506102a261115c81565b3480156105b257600080fd5b506102d0738da85fd2db9b6fa63b9d7ddbf8267d8293bfa7ae81565b3480156105da57600080fd5b506102556105e9366004611a60565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062357600080fd5b506102a26108ae81565b34801561063957600080fd5b506102a266470de4df82000081565b34801561065457600080fd5b506102a2610663366004611c4b565b610fba565b34801561067457600080fd5b50610308610683366004611a45565b610fcd565b610308610696366004611be7565b611065565b6103086106a9366004611be7565b611135565b60006001600160e01b031982166380ac58cd60e01b14806106df57506001600160e01b03198216635b5e139f60e01b145b806106fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461070f90611ee5565b80601f016020809104026020016040519081016040528092919081815260200182805461073b90611ee5565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083782610b4e565b9050806001600160a01b0316836001600160a01b031614156108a55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610807565b336001600160a01b03821614806108c157506108c181336105e9565b6109335760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610807565b61093d8383611205565b505050565b600061094d60075490565b905090565b61277561095d610942565b111561097b5760405162461bcd60e51b815260040161080790611d84565b6000610985610942565b9050611a0a6109948383611e57565b11156109b25760405162461bcd60e51b815260040161080790611d61565b611a0a8111156109d45760405162461bcd60e51b815260040161080790611d84565b6109dd82610f56565b3410156109fc5760405162461bcd60e51b815260040161080790611ddb565b60005b82811015610a2257610a1084611273565b80610a1a81611f20565b9150506109ff565b50505050565b610a3233826112c6565b610a4e5760405162461bcd60e51b815260040161080790611e06565b61093d8383836113bd565b612775610a64610942565b1115610a825760405162461bcd60e51b815260040161080790611d84565b6000610a8c610942565b905061115c610a9b8383611e57565b1115610ab95760405162461bcd60e51b815260040161080790611d61565b61115c811115610adb5760405162461bcd60e51b815260040161080790611d84565b610ae482610c96565b341015610b035760405162461bcd60e51b815260040161080790611ddb565b60005b82811015610a2257610b1784611273565b80610b2181611f20565b915050610b06565b61093d83838360405180602001604052806000815250610f24565b600061094d610942565b6000818152600260205260408120546001600160a01b0316806106fa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610807565b60006106fa67011c37937e0800008361155d565b60006001600160a01b038216610c445760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610807565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c8a5760405162461bcd60e51b815260040161080790611da6565b610c946000611570565b565b60006106fa662386f26fc100008361155d565b6006546001600160a01b03163314610cd35760405162461bcd60e51b815260040161080790611da6565b4780610cde57600080fd5b610cfc738da85fd2db9b6fa63b9d7ddbf8267d8293bfa7ae476115c2565b50565b60606001805461070f90611ee5565b6001600160a01b038216331415610d675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610807565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612775610dde610942565b1115610dfc5760405162461bcd60e51b815260040161080790611d84565b6000610e06610942565b90506108ae610e158383611e57565b1115610e335760405162461bcd60e51b815260040161080790611d61565b6108ae811115610e555760405162461bcd60e51b815260040161080790611d84565b6014821115610e975760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b6044820152606401610807565b6014610ea233610bd9565b10610efe5760405162461bcd60e51b815260206004820152602660248201527f6f6e6c79203230206672656520746f6b656e20706572206164647265737320616044820152651b1b1bddd95960d21b6064820152608401610807565b60005b82811015610a2257610f1284611273565b80610f1c81611f20565b915050610f01565b610f2e33836112c6565b610f4a5760405162461bcd60e51b815260040161080790611e06565b610a2284848484611658565b60006106fa66470de4df8200008361155d565b60606000604051806080016040528060518152602001611fbe60519139905080610f928461168b565b604051602001610fa3929190611c90565b604051602081830303815290604052915050919050565b60006106fa668e1bc9bf0400008361155d565b6006546001600160a01b03163314610ff75760405162461bcd60e51b815260040161080790611da6565b6001600160a01b03811661105c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b610cfc81611570565b612775611070610942565b111561108e5760405162461bcd60e51b815260040161080790611d84565b6000611098610942565b90506122b86110a78383611e57565b11156110c55760405162461bcd60e51b815260040161080790611d61565b6122b88111156110e75760405162461bcd60e51b815260040161080790611d84565b6110f082610fba565b34101561110f5760405162461bcd60e51b815260040161080790611ddb565b60005b82811015610a225761112384611273565b8061112d81611f20565b915050611112565b612775611140610942565b111561115e5760405162461bcd60e51b815260040161080790611d84565b6000611168610942565b90506127756111778383611e57565b11156111955760405162461bcd60e51b815260040161080790611d61565b6127758111156111b75760405162461bcd60e51b815260040161080790611d84565b6111c082610bc5565b3410156111df5760405162461bcd60e51b815260040161080790611ddb565b60005b82811015610a22576111f384611273565b806111fd81611f20565b9150506111e2565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061123a82610b4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061127d610942565b905061128d600780546001019055565b6112978282611789565b60405181907ff9e873657e730881eafc125ef40143f79658208a374f800d4b5b34d98432e6ea90600090a25050565b6000818152600260205260408120546001600160a01b031661133f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610807565b600061134a83610b4e565b9050806001600160a01b0316846001600160a01b031614806113855750836001600160a01b031661137a84610792565b6001600160a01b0316145b806113b557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113d082610b4e565b6001600160a01b0316146114385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610807565b6001600160a01b03821661149a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610807565b6114a5600082611205565b6001600160a01b03831660009081526003602052604081208054600192906114ce908490611ea2565b90915550506001600160a01b03821660009081526003602052604081208054600192906114fc908490611e57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006115698284611e83565b9392505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461160f576040519150601f19603f3d011682016040523d82523d6000602084013e611614565b606091505b505090508061093d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610807565b6116638484846113bd565b61166f848484846117a7565b610a225760405162461bcd60e51b815260040161080790611d0f565b6060816116af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d957806116c381611f20565b91506116d29050600a83611e6f565b91506116b3565b60008167ffffffffffffffff8111156116f4576116f4611f91565b6040519080825280601f01601f19166020018201604052801561171e576020820181803683370190505b5090505b84156113b557611733600183611ea2565b9150611740600a86611f3b565b61174b906030611e57565b60f81b81838151811061176057611760611f7b565b60200101906001600160f81b031916908160001a905350611782600a86611e6f565b9450611722565b6117a38282604051806020016040528060008152506118b4565b5050565b60006001600160a01b0384163b156118a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117eb903390899088908890600401611cbf565b602060405180830381600087803b15801561180557600080fd5b505af1925050508015611835575060408051601f3d908101601f1916820190925261183291810190611c2e565b60015b61188f573d808015611863576040519150601f19603f3d011682016040523d82523d6000602084013e611868565b606091505b5080516118875760405162461bcd60e51b815260040161080790611d0f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113b5565b506001949350505050565b6118be83836118e7565b6118cb60008484846117a7565b61093d5760405162461bcd60e51b815260040161080790611d0f565b6001600160a01b03821661193d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610807565b6000818152600260205260409020546001600160a01b0316156119a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610807565b6001600160a01b03821660009081526003602052604081208054600192906119cb908490611e57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b0381168114611a4057600080fd5b919050565b600060208284031215611a5757600080fd5b61156982611a29565b60008060408385031215611a7357600080fd5b611a7c83611a29565b9150611a8a60208401611a29565b90509250929050565b600080600060608486031215611aa857600080fd5b611ab184611a29565b9250611abf60208501611a29565b9150604084013590509250925092565b60008060008060808587031215611ae557600080fd5b611aee85611a29565b9350611afc60208601611a29565b925060408501359150606085013567ffffffffffffffff80821115611b2057600080fd5b818701915087601f830112611b3457600080fd5b813581811115611b4657611b46611f91565b604051601f8201601f19908116603f01168101908382118183101715611b6e57611b6e611f91565b816040528281528a6020848701011115611b8757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611bbe57600080fd5b611bc783611a29565b915060208301358015158114611bdc57600080fd5b809150509250929050565b60008060408385031215611bfa57600080fd5b611c0383611a29565b946020939093013593505050565b600060208284031215611c2357600080fd5b813561156981611fa7565b600060208284031215611c4057600080fd5b815161156981611fa7565b600060208284031215611c5d57600080fd5b5035919050565b60008151808452611c7c816020860160208601611eb9565b601f01601f19169290920160200192915050565b60008351611ca2818460208801611eb9565b835190830190611cb6818360208801611eb9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cf290830184611c64565b9695505050505050565b6020815260006115696020830184611c64565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e6a57611e6a611f4f565b500190565b600082611e7e57611e7e611f65565b500490565b6000816000190483118215151615611e9d57611e9d611f4f565b500290565b600082821015611eb457611eb4611f4f565b500390565b60005b83811015611ed4578181015183820152602001611ebc565b83811115610a225750506000910152565b600181811c90821680611ef957607f821691505b60208210811415611f1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f3457611f34611f4f565b5060010190565b600082611f4a57611f4a611f65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cfc57600080fdfe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50676a54385573417931317343636a705942467331685257526374426751335a354871374d654e6b635372552fa26469706673582212209aee08036a132e66df812a820ad130b4c5ed9ad29225b63c8e370e5d57cd26f964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80638ac46e671161012e578063c87b56dd116100ab578063efaf02a21161006f578063efaf02a21461062d578063f23e03e314610648578063f2fde38b14610668578063f5573b8b14610688578063f58527561461069b57600080fd5b8063c87b56dd14610570578063d676d1c914610590578063e927fc5c146105a6578063e985e9c5146105ce578063ed6661c21461061757600080fd5b8063adf66d31116100f2578063adf66d31146104e7578063b3baf5b6146104fa578063b88d4fde14610515578063bba28c0314610535578063bd96c0fc1461055057600080fd5b80638ac46e67146104625780638da5cb5b1461047857806395d89b4114610496578063a091305e146104ab578063a22cb465146104c757600080fd5b806337b195ff116101bc5780636417701f116101805780636417701f146103e557806370a0823114610405578063715018a614610425578063846102181461043a578063853828b61461045a57600080fd5b806337b195ff1461036857806341cda2031461037b57806342842e0e1461039057806359a7715a146103b05780636352211e146103c557600080fd5b8063095ea7b311610203578063095ea7b3146102e857806318160ddd1461030a5780631d88dd8a1461031f57806323b872dd146103325780633502a7161461035257600080fd5b806301ffc9a71461023557806306fdde031461026a578063076135561461028c578063081812fc146102b0575b600080fd5b34801561024157600080fd5b50610255610250366004611c11565b6106ae565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610700565b6040516102619190611cfc565b34801561029857600080fd5b506102a26122b881565b604051908152602001610261565b3480156102bc57600080fd5b506102d06102cb366004611c4b565b610792565b6040516001600160a01b039091168152602001610261565b3480156102f457600080fd5b50610308610303366004611be7565b61082c565b005b34801561031657600080fd5b506102a2610942565b61030861032d366004611be7565b610952565b34801561033e57600080fd5b5061030861034d366004611a93565b610a28565b34801561035e57600080fd5b506102a261277581565b610308610376366004611be7565b610a59565b34801561038757600080fd5b506102a2601481565b34801561039c57600080fd5b506103086103ab366004611a93565b610b29565b3480156103bc57600080fd5b506102a2610b44565b3480156103d157600080fd5b506102d06103e0366004611c4b565b610b4e565b3480156103f157600080fd5b506102a2610400366004611c4b565b610bc5565b34801561041157600080fd5b506102a2610420366004611a45565b610bd9565b34801561043157600080fd5b50610308610c60565b34801561044657600080fd5b506102a2610455366004611c4b565b610c96565b610308610ca9565b34801561046e57600080fd5b506102a2611a0a81565b34801561048457600080fd5b506006546001600160a01b03166102d0565b3480156104a257600080fd5b5061027f610cff565b3480156104b757600080fd5b506102a267011c37937e08000081565b3480156104d357600080fd5b506103086104e2366004611bab565b610d0e565b6103086104f5366004611be7565b610dd3565b34801561050657600080fd5b506102a2668e1bc9bf04000081565b34801561052157600080fd5b50610308610530366004611acf565b610f24565b34801561054157600080fd5b506102a2662386f26fc1000081565b34801561055c57600080fd5b506102a261056b366004611c4b565b610f56565b34801561057c57600080fd5b5061027f61058b366004611c4b565b610f69565b34801561059c57600080fd5b506102a261115c81565b3480156105b257600080fd5b506102d0738da85fd2db9b6fa63b9d7ddbf8267d8293bfa7ae81565b3480156105da57600080fd5b506102556105e9366004611a60565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062357600080fd5b506102a26108ae81565b34801561063957600080fd5b506102a266470de4df82000081565b34801561065457600080fd5b506102a2610663366004611c4b565b610fba565b34801561067457600080fd5b50610308610683366004611a45565b610fcd565b610308610696366004611be7565b611065565b6103086106a9366004611be7565b611135565b60006001600160e01b031982166380ac58cd60e01b14806106df57506001600160e01b03198216635b5e139f60e01b145b806106fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461070f90611ee5565b80601f016020809104026020016040519081016040528092919081815260200182805461073b90611ee5565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083782610b4e565b9050806001600160a01b0316836001600160a01b031614156108a55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610807565b336001600160a01b03821614806108c157506108c181336105e9565b6109335760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610807565b61093d8383611205565b505050565b600061094d60075490565b905090565b61277561095d610942565b111561097b5760405162461bcd60e51b815260040161080790611d84565b6000610985610942565b9050611a0a6109948383611e57565b11156109b25760405162461bcd60e51b815260040161080790611d61565b611a0a8111156109d45760405162461bcd60e51b815260040161080790611d84565b6109dd82610f56565b3410156109fc5760405162461bcd60e51b815260040161080790611ddb565b60005b82811015610a2257610a1084611273565b80610a1a81611f20565b9150506109ff565b50505050565b610a3233826112c6565b610a4e5760405162461bcd60e51b815260040161080790611e06565b61093d8383836113bd565b612775610a64610942565b1115610a825760405162461bcd60e51b815260040161080790611d84565b6000610a8c610942565b905061115c610a9b8383611e57565b1115610ab95760405162461bcd60e51b815260040161080790611d61565b61115c811115610adb5760405162461bcd60e51b815260040161080790611d84565b610ae482610c96565b341015610b035760405162461bcd60e51b815260040161080790611ddb565b60005b82811015610a2257610b1784611273565b80610b2181611f20565b915050610b06565b61093d83838360405180602001604052806000815250610f24565b600061094d610942565b6000818152600260205260408120546001600160a01b0316806106fa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610807565b60006106fa67011c37937e0800008361155d565b60006001600160a01b038216610c445760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610807565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c8a5760405162461bcd60e51b815260040161080790611da6565b610c946000611570565b565b60006106fa662386f26fc100008361155d565b6006546001600160a01b03163314610cd35760405162461bcd60e51b815260040161080790611da6565b4780610cde57600080fd5b610cfc738da85fd2db9b6fa63b9d7ddbf8267d8293bfa7ae476115c2565b50565b60606001805461070f90611ee5565b6001600160a01b038216331415610d675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610807565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612775610dde610942565b1115610dfc5760405162461bcd60e51b815260040161080790611d84565b6000610e06610942565b90506108ae610e158383611e57565b1115610e335760405162461bcd60e51b815260040161080790611d61565b6108ae811115610e555760405162461bcd60e51b815260040161080790611d84565b6014821115610e975760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b6044820152606401610807565b6014610ea233610bd9565b10610efe5760405162461bcd60e51b815260206004820152602660248201527f6f6e6c79203230206672656520746f6b656e20706572206164647265737320616044820152651b1b1bddd95960d21b6064820152608401610807565b60005b82811015610a2257610f1284611273565b80610f1c81611f20565b915050610f01565b610f2e33836112c6565b610f4a5760405162461bcd60e51b815260040161080790611e06565b610a2284848484611658565b60006106fa66470de4df8200008361155d565b60606000604051806080016040528060518152602001611fbe60519139905080610f928461168b565b604051602001610fa3929190611c90565b604051602081830303815290604052915050919050565b60006106fa668e1bc9bf0400008361155d565b6006546001600160a01b03163314610ff75760405162461bcd60e51b815260040161080790611da6565b6001600160a01b03811661105c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b610cfc81611570565b612775611070610942565b111561108e5760405162461bcd60e51b815260040161080790611d84565b6000611098610942565b90506122b86110a78383611e57565b11156110c55760405162461bcd60e51b815260040161080790611d61565b6122b88111156110e75760405162461bcd60e51b815260040161080790611d84565b6110f082610fba565b34101561110f5760405162461bcd60e51b815260040161080790611ddb565b60005b82811015610a225761112384611273565b8061112d81611f20565b915050611112565b612775611140610942565b111561115e5760405162461bcd60e51b815260040161080790611d84565b6000611168610942565b90506127756111778383611e57565b11156111955760405162461bcd60e51b815260040161080790611d61565b6127758111156111b75760405162461bcd60e51b815260040161080790611d84565b6111c082610bc5565b3410156111df5760405162461bcd60e51b815260040161080790611ddb565b60005b82811015610a22576111f384611273565b806111fd81611f20565b9150506111e2565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061123a82610b4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061127d610942565b905061128d600780546001019055565b6112978282611789565b60405181907ff9e873657e730881eafc125ef40143f79658208a374f800d4b5b34d98432e6ea90600090a25050565b6000818152600260205260408120546001600160a01b031661133f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610807565b600061134a83610b4e565b9050806001600160a01b0316846001600160a01b031614806113855750836001600160a01b031661137a84610792565b6001600160a01b0316145b806113b557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113d082610b4e565b6001600160a01b0316146114385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610807565b6001600160a01b03821661149a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610807565b6114a5600082611205565b6001600160a01b03831660009081526003602052604081208054600192906114ce908490611ea2565b90915550506001600160a01b03821660009081526003602052604081208054600192906114fc908490611e57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006115698284611e83565b9392505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461160f576040519150601f19603f3d011682016040523d82523d6000602084013e611614565b606091505b505090508061093d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610807565b6116638484846113bd565b61166f848484846117a7565b610a225760405162461bcd60e51b815260040161080790611d0f565b6060816116af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d957806116c381611f20565b91506116d29050600a83611e6f565b91506116b3565b60008167ffffffffffffffff8111156116f4576116f4611f91565b6040519080825280601f01601f19166020018201604052801561171e576020820181803683370190505b5090505b84156113b557611733600183611ea2565b9150611740600a86611f3b565b61174b906030611e57565b60f81b81838151811061176057611760611f7b565b60200101906001600160f81b031916908160001a905350611782600a86611e6f565b9450611722565b6117a38282604051806020016040528060008152506118b4565b5050565b60006001600160a01b0384163b156118a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117eb903390899088908890600401611cbf565b602060405180830381600087803b15801561180557600080fd5b505af1925050508015611835575060408051601f3d908101601f1916820190925261183291810190611c2e565b60015b61188f573d808015611863576040519150601f19603f3d011682016040523d82523d6000602084013e611868565b606091505b5080516118875760405162461bcd60e51b815260040161080790611d0f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113b5565b506001949350505050565b6118be83836118e7565b6118cb60008484846117a7565b61093d5760405162461bcd60e51b815260040161080790611d0f565b6001600160a01b03821661193d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610807565b6000818152600260205260409020546001600160a01b0316156119a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610807565b6001600160a01b03821660009081526003602052604081208054600192906119cb908490611e57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b0381168114611a4057600080fd5b919050565b600060208284031215611a5757600080fd5b61156982611a29565b60008060408385031215611a7357600080fd5b611a7c83611a29565b9150611a8a60208401611a29565b90509250929050565b600080600060608486031215611aa857600080fd5b611ab184611a29565b9250611abf60208501611a29565b9150604084013590509250925092565b60008060008060808587031215611ae557600080fd5b611aee85611a29565b9350611afc60208601611a29565b925060408501359150606085013567ffffffffffffffff80821115611b2057600080fd5b818701915087601f830112611b3457600080fd5b813581811115611b4657611b46611f91565b604051601f8201601f19908116603f01168101908382118183101715611b6e57611b6e611f91565b816040528281528a6020848701011115611b8757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611bbe57600080fd5b611bc783611a29565b915060208301358015158114611bdc57600080fd5b809150509250929050565b60008060408385031215611bfa57600080fd5b611c0383611a29565b946020939093013593505050565b600060208284031215611c2357600080fd5b813561156981611fa7565b600060208284031215611c4057600080fd5b815161156981611fa7565b600060208284031215611c5d57600080fd5b5035919050565b60008151808452611c7c816020860160208601611eb9565b601f01601f19169290920160200192915050565b60008351611ca2818460208801611eb9565b835190830190611cb6818360208801611eb9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cf290830184611c64565b9695505050505050565b6020815260006115696020830184611c64565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e6a57611e6a611f4f565b500190565b600082611e7e57611e7e611f65565b500490565b6000816000190483118215151615611e9d57611e9d611f4f565b500290565b600082821015611eb457611eb4611f4f565b500390565b60005b83811015611ed4578181015183820152602001611ebc565b83811115610a225750506000910152565b600181811c90821680611ef957607f821691505b60208210811415611f1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f3457611f34611f4f565b5060010190565b600082611f4a57611f4a611f65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cfc57600080fdfe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50676a54385573417931317343636a705942467331685257526374426751335a354871374d654e6b635372552fa26469706673582212209aee08036a132e66df812a820ad130b4c5ed9ad29225b63c8e370e5d57cd26f964736f6c63430008070033

Deployed Bytecode Sourcemap

48789:5121:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33962:305;;;;;;;;;;-1:-1:-1;33962:305:0;;;;;:::i;:::-;;:::i;:::-;;;5237:14:1;;5230:22;5212:41;;5200:2;5185:18;33962:305:0;;;;;;;;34907:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49324:46::-;;;;;;;;;;;;49366:4;49324:46;;;;;13714:25:1;;;13702:2;13687:18;49324:46:0;13568:177:1;36466:221:0;;;;;;;;;;-1:-1:-1;36466:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4535:32:1;;;4517:51;;4505:2;4490:18;36466:221:0;4371:203:1;35989:411:0;;;;;;;;;;-1:-1:-1;35989:411:0;;;;;:::i;:::-;;:::i;:::-;;49878:104;;;;;;;;;;;;;:::i;51153:414::-;;;;;;:::i;:::-;;:::i;37356:339::-;;;;;;;;;;-1:-1:-1;37356:339:0;;;;;:::i;:::-;;:::i;49444:44::-;;;;;;;;;;;;49483:5;49444:44;;50727:414;;;;;;:::i;:::-;;:::i;49037:42::-;;;;;;;;;;;;49077:2;49037:42;;37766:185;;;;;;;;;;-1:-1:-1;37766:185:0;;;;;:::i;:::-;;:::i;50105:91::-;;;;;;;;;;;;;:::i;34601:239::-;;;;;;;;;;-1:-1:-1;34601:239:0;;;;;:::i;:::-;;:::i;53035:124::-;;;;;;;;;;-1:-1:-1;53035:124:0;;;;;:::i;:::-;;:::i;34331:208::-;;;;;;;;;;-1:-1:-1;34331:208:0;;;;;:::i;:::-;;:::i;14368:94::-;;;;;;;;;;;;;:::i;52630:122::-;;;;;;;;;;-1:-1:-1;52630:122:0;;;;;:::i;:::-;;:::i;53521:197::-;;;:::i;49208:44::-;;;;;;;;;;;;49248:4;49208:44;;13717:87;;;;;;;;;;-1:-1:-1;13790:6:0;;-1:-1:-1;;;;;13790:6:0;13717:87;;35076:104;;;;;;;;;;;;;:::i;49499:53::-;;;;;;;;;;;;49542:10;49499:53;;36759:295;;;;;;;;;;-1:-1:-1;36759:295:0;;;;;:::i;:::-;;:::i;50204:511::-;;;;;;:::i;:::-;;:::i;49377:54::-;;;;;;;;;;;;49421:10;49377:54;;38022:328;;;;;;;;;;-1:-1:-1;38022:328:0;;;;;:::i;:::-;;:::i;49143:52::-;;;;;;;;;;;;49185:10;49143:52;;52764:122;;;;;;;;;;-1:-1:-1;52764:122:0;;;;;:::i;:::-;;:::i;53234:279::-;;;;;;;;;;-1:-1:-1;53234:279:0;;;;;:::i;:::-;;:::i;49092:44::-;;;;;;;;;;;;49132:4;49092:44;;49565:92;;;;;;;;;;;;49615:42;49565:92;;37125:164;;;;;;;;;;-1:-1:-1;37125:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37246:25:0;;;37222:4;37246:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37125:164;48991:39;;;;;;;;;;;;49026:4;48991:39;;49259:52;;;;;;;;;;;;49301:10;49259:52;;52898:126;;;;;;;;;;-1:-1:-1;52898:126:0;;;;;:::i;:::-;;:::i;14617:192::-;;;;;;;;;;-1:-1:-1;14617:192:0;;;;;:::i;:::-;;:::i;51579:422::-;;;;;;:::i;:::-;;:::i;52013:414::-;;;;;;:::i;:::-;;:::i;33962:305::-;34064:4;-1:-1:-1;;;;;;34101:40:0;;-1:-1:-1;;;34101:40:0;;:105;;-1:-1:-1;;;;;;;34158:48:0;;-1:-1:-1;;;34158:48:0;34101:105;:158;;;-1:-1:-1;;;;;;;;;;15904:40:0;;;34223:36;34081:178;33962:305;-1:-1:-1;;33962:305:0:o;34907:100::-;34961:13;34994:5;34987:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34907:100;:::o;36466:221::-;36542:7;39949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39949:16:0;36562:73;;;;-1:-1:-1;;;36562:73:0;;11075:2:1;36562:73:0;;;11057:21:1;11114:2;11094:18;;;11087:30;11153:34;11133:18;;;11126:62;-1:-1:-1;;;11204:18:1;;;11197:42;11256:19;;36562:73:0;;;;;;;;;-1:-1:-1;36655:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36655:24:0;;36466:221::o;35989:411::-;36070:13;36086:23;36101:7;36086:14;:23::i;:::-;36070:39;;36134:5;-1:-1:-1;;;;;36128:11:0;:2;-1:-1:-1;;;;;36128:11:0;;;36120:57;;;;-1:-1:-1;;;36120:57:0;;12605:2:1;36120:57:0;;;12587:21:1;12644:2;12624:18;;;12617:30;12683:34;12663:18;;;12656:62;-1:-1:-1;;;12734:18:1;;;12727:31;12775:19;;36120:57:0;12403:397:1;36120:57:0;4220:10;-1:-1:-1;;;;;36212:21:0;;;;:62;;-1:-1:-1;36237:37:0;36254:5;4220:10;37125:164;:::i;36237:37::-;36190:168;;;;-1:-1:-1;;;36190:168:0;;9132:2:1;36190:168:0;;;9114:21:1;9171:2;9151:18;;;9144:30;9210:34;9190:18;;;9183:62;9281:26;9261:18;;;9254:54;9325:19;;36190:168:0;8930:420:1;36190:168:0;36371:21;36380:2;36384:7;36371:8;:21::i;:::-;36059:341;35989:411;;:::o;49878:104::-;49922:7;49949:25;:15;5261:14;;5169:114;49949:25;49942:32;;49878:104;:::o;51153:414::-;49483:5;49807:14;:12;:14::i;:::-;:30;;49799:51;;;;-1:-1:-1;;;49799:51:0;;;;;;;:::i;:::-;51241:13:::1;51257:14;:12;:14::i;:::-;51241:30:::0;-1:-1:-1;49248:4:0::1;51290:14;51298:6:::0;51241:30;51290:14:::1;:::i;:::-;:31;;51282:53;;;;-1:-1:-1::0;;;51282:53:0::1;;;;;;;:::i;:::-;49248:4;51354:5;:22;;51346:43;;;;-1:-1:-1::0;;;51346:43:0::1;;;;;;;:::i;:::-;51421:21;51435:6;51421:13;:21::i;:::-;51408:9;:34;;51400:64;;;;-1:-1:-1::0;;;51400:64:0::1;;;;;;;:::i;:::-;51482:9;51477:83;51501:6;51497:1;:10;51477:83;;;51529:19;51544:3;51529:14;:19::i;:::-;51509:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51477:83;;;;51230:337;51153:414:::0;;:::o;37356:339::-;37551:41;4220:10;37584:7;37551:18;:41::i;:::-;37543:103;;;;-1:-1:-1;;;37543:103:0;;;;;;;:::i;:::-;37659:28;37669:4;37675:2;37679:7;37659:9;:28::i;50727:414::-;49483:5;49807:14;:12;:14::i;:::-;:30;;49799:51;;;;-1:-1:-1;;;49799:51:0;;;;;;;:::i;:::-;50815:13:::1;50831:14;:12;:14::i;:::-;50815:30:::0;-1:-1:-1;49132:4:0::1;50864:14;50872:6:::0;50815:30;50864:14:::1;:::i;:::-;:31;;50856:53;;;;-1:-1:-1::0;;;50856:53:0::1;;;;;;;:::i;:::-;49132:4;50928:5;:22;;50920:43;;;;-1:-1:-1::0;;;50920:43:0::1;;;;;;;:::i;:::-;50995:21;51009:6;50995:13;:21::i;:::-;50982:9;:34;;50974:64;;;;-1:-1:-1::0;;;50974:64:0::1;;;;;;;:::i;:::-;51056:9;51051:83;51075:6;51071:1;:10;51051:83;;;51103:19;51118:3;51103:14;:19::i;:::-;51083:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51051:83;;37766:185:::0;37904:39;37921:4;37927:2;37931:7;37904:39;;;;;;;;;;;;:16;:39::i;50105:91::-;50147:7;50174:14;:12;:14::i;34601:239::-;34673:7;34709:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34709:16:0;34744:19;34736:73;;;;-1:-1:-1;;;34736:73:0;;9968:2:1;34736:73:0;;;9950:21:1;10007:2;9987:18;;;9980:30;10046:34;10026:18;;;10019:62;-1:-1:-1;;;10097:18:1;;;10090:39;10146:19;;34736:73:0;9766:405:1;53035:124:0;53096:7;53123:28;49542:10;53144:6;53123:20;:28::i;34331:208::-;34403:7;-1:-1:-1;;;;;34431:19:0;;34423:74;;;;-1:-1:-1;;;34423:74:0;;9557:2:1;34423:74:0;;;9539:21:1;9596:2;9576:18;;;9569:30;9635:34;9615:18;;;9608:62;-1:-1:-1;;;9686:18:1;;;9679:40;9736:19;;34423:74:0;9355:406:1;34423:74:0;-1:-1:-1;;;;;;34515:16:0;;;;;:9;:16;;;;;;;34331:208::o;14368:94::-;13790:6;;-1:-1:-1;;;;;13790:6:0;4220:10;13937:23;13929:68;;;;-1:-1:-1;;;13929:68:0;;;;;;;:::i;:::-;14433:21:::1;14451:1;14433:9;:21::i;:::-;14368:94::o:0;52630:122::-;52690:7;52717:27;49185:10;52737:6;52717:19;:27::i;53521:197::-;13790:6;;-1:-1:-1;;;;;13790:6:0;4220:10;13937:23;13929:68;;;;-1:-1:-1;;;13929:68:0;;;;;;;:::i;:::-;53598:21:::1;53638:11:::0;53630:20:::1;;;::::0;::::1;;53661:49;49615:42;53688:21;53661:10;:49::i;:::-;53569:149;53521:197::o:0;35076:104::-;35132:13;35165:7;35158:14;;;;;:::i;36759:295::-;-1:-1:-1;;;;;36862:24:0;;4220:10;36862:24;;36854:62;;;;-1:-1:-1;;;36854:62:0;;7621:2:1;36854:62:0;;;7603:21:1;7660:2;7640:18;;;7633:30;7699:27;7679:18;;;7672:55;7744:18;;36854:62:0;7419:349:1;36854:62:0;4220:10;36929:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36929:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36929:53:0;;;;;;;;;;36998:48;;5212:41:1;;;36929:42:0;;4220:10;36998:48;;5185:18:1;36998:48:0;;;;;;;36759:295;;:::o;50204:511::-;49483:5;49807:14;:12;:14::i;:::-;:30;;49799:51;;;;-1:-1:-1;;;49799:51:0;;;;;;;:::i;:::-;50288:13:::1;50304:14;:12;:14::i;:::-;50288:30:::0;-1:-1:-1;49026:4:0::1;50337:14;50345:6:::0;50288:30;50337:14:::1;:::i;:::-;:26;;50329:48;;;;-1:-1:-1::0;;;50329:48:0::1;;;;;;;:::i;:::-;49026:4;50396:5;:17;;50388:38;;;;-1:-1:-1::0;;;50388:38:0::1;;;;;;;:::i;:::-;49077:2;50445:6;:23;;50437:50;;;::::0;-1:-1:-1;;;50437:50:0;;5690:2:1;50437:50:0::1;::::0;::::1;5672:21:1::0;5729:2;5709:18;;;5702:30;-1:-1:-1;;;5748:18:1;;;5741:44;5802:18;;50437:50:0::1;5488:338:1::0;50437:50:0::1;50544:2;50520:21;50530:10;50520:9;:21::i;:::-;:26;50498:114;;;::::0;-1:-1:-1;;;50498:114:0;;7975:2:1;50498:114:0::1;::::0;::::1;7957:21:1::0;8014:2;7994:18;;;7987:30;8053:34;8033:18;;;8026:62;-1:-1:-1;;;8104:18:1;;;8097:36;8150:19;;50498:114:0::1;7773:402:1::0;50498:114:0::1;50630:9;50625:83;50649:6;50645:1;:10;50625:83;;;50677:19;50692:3;50677:14;:19::i;:::-;50657:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50625:83;;38022:328:::0;38197:41;4220:10;38230:7;38197:18;:41::i;:::-;38189:103;;;;-1:-1:-1;;;38189:103:0;;;;;;;:::i;:::-;38303:39;38317:4;38323:2;38327:7;38336:5;38303:13;:39::i;52764:122::-;52824:7;52851:27;49301:10;52871:6;52851:19;:27::i;53234:279::-;53300:13;53326:21;:107;;;;;;;;;;;;;;;;;;;53475:7;53484:19;:8;:17;:19::i;:::-;53458:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53444:61;;;53234:279;;;:::o;52898:126::-;52960:7;52987:29;49421:10;53009:6;52987:21;:29::i;14617:192::-;13790:6;;-1:-1:-1;;;;;13790:6:0;4220:10;13937:23;13929:68;;;;-1:-1:-1;;;13929:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14706:22:0;::::1;14698:73;;;::::0;-1:-1:-1;;;14698:73:0;;6452:2:1;14698:73:0::1;::::0;::::1;6434:21:1::0;6491:2;6471:18;;;6464:30;6530:34;6510:18;;;6503:62;-1:-1:-1;;;6581:18:1;;;6574:36;6627:19;;14698:73:0::1;6250:402:1::0;14698:73:0::1;14782:19;14792:8;14782:9;:19::i;51579:422::-:0;49483:5;49807:14;:12;:14::i;:::-;:30;;49799:51;;;;-1:-1:-1;;;49799:51:0;;;;;;;:::i;:::-;51669:13:::1;51685:14;:12;:14::i;:::-;51669:30:::0;-1:-1:-1;49366:4:0::1;51718:14;51726:6:::0;51669:30;51718:14:::1;:::i;:::-;:33;;51710:55;;;;-1:-1:-1::0;;;51710:55:0::1;;;;;;;:::i;:::-;49366:4;51784:5;:24;;51776:45;;;;-1:-1:-1::0;;;51776:45:0::1;;;;;;;:::i;:::-;51853:23;51869:6;51853:15;:23::i;:::-;51840:9;:36;;51832:66;;;;-1:-1:-1::0;;;51832:66:0::1;;;;;;;:::i;:::-;51916:9;51911:83;51935:6;51931:1;:10;51911:83;;;51963:19;51978:3;51963:14;:19::i;:::-;51943:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51911:83;;52013:414:::0;49483:5;49807:14;:12;:14::i;:::-;:30;;49799:51;;;;-1:-1:-1;;;49799:51:0;;;;;;;:::i;:::-;52102:13:::1;52118:14;:12;:14::i;:::-;52102:30:::0;-1:-1:-1;49483:5:0::1;52151:14;52159:6:::0;52102:30;52151:14:::1;:::i;:::-;:30;;52143:52;;;;-1:-1:-1::0;;;52143:52:0::1;;;;;;;:::i;:::-;49483:5;52214;:21;;52206:42;;;;-1:-1:-1::0;;;52206:42:0::1;;;;;;;:::i;:::-;52280:22;52295:6;52280:14;:22::i;:::-;52267:9;:35;;52259:65;;;;-1:-1:-1::0;;;52259:65:0::1;;;;;;;:::i;:::-;52342:9;52337:83;52361:6;52357:1;:10;52337:83;;;52389:19;52404:3;52389:14;:19::i;:::-;52369:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52337:83;;43842:174:::0;43917:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43917:29:0;-1:-1:-1;;;;;43917:29:0;;;;;;;;:24;;43971:23;43917:24;43971:14;:23::i;:::-;-1:-1:-1;;;;;43962:46:0;;;;;;;;;;;43842:174;;:::o;52435:187::-;52491:10;52504:14;:12;:14::i;:::-;52491:27;;52529;:15;5380:19;;5398:1;5380:19;;;5291:127;52529:27;52567:18;52577:3;52582:2;52567:9;:18::i;:::-;52601:13;;52611:2;;52601:13;;;;;52480:142;52435:187;:::o;40154:348::-;40247:4;39949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39949:16:0;40264:73;;;;-1:-1:-1;;;40264:73:0;;8719:2:1;40264:73:0;;;8701:21:1;8758:2;8738:18;;;8731:30;8797:34;8777:18;;;8770:62;-1:-1:-1;;;8848:18:1;;;8841:42;8900:19;;40264:73:0;8517:408:1;40264:73:0;40348:13;40364:23;40379:7;40364:14;:23::i;:::-;40348:39;;40417:5;-1:-1:-1;;;;;40406:16:0;:7;-1:-1:-1;;;;;40406:16:0;;:51;;;;40450:7;-1:-1:-1;;;;;40426:31:0;:20;40438:7;40426:11;:20::i;:::-;-1:-1:-1;;;;;40426:31:0;;40406:51;:87;;;-1:-1:-1;;;;;;37246:25:0;;;37222:4;37246:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40461:32;40398:96;40154:348;-1:-1:-1;;;;40154:348:0:o;43146:578::-;43305:4;-1:-1:-1;;;;;43278:31:0;:23;43293:7;43278:14;:23::i;:::-;-1:-1:-1;;;;;43278:31:0;;43270:85;;;;-1:-1:-1;;;43270:85:0;;11849:2:1;43270:85:0;;;11831:21:1;11888:2;11868:18;;;11861:30;11927:34;11907:18;;;11900:62;-1:-1:-1;;;11978:18:1;;;11971:39;12027:19;;43270:85:0;11647:405:1;43270:85:0;-1:-1:-1;;;;;43374:16:0;;43366:65;;;;-1:-1:-1;;;43366:65:0;;7216:2:1;43366:65:0;;;7198:21:1;7255:2;7235:18;;;7228:30;7294:34;7274:18;;;7267:62;-1:-1:-1;;;7345:18:1;;;7338:34;7389:19;;43366:65:0;7014:400:1;43366:65:0;43548:29;43565:1;43569:7;43548:8;:29::i;:::-;-1:-1:-1;;;;;43590:15:0;;;;;;:9;:15;;;;;:20;;43609:1;;43590:15;:20;;43609:1;;43590:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43621:13:0;;;;;;:9;:13;;;;;:18;;43638:1;;43621:13;:18;;43638:1;;43621:18;:::i;:::-;;;;-1:-1:-1;;43650:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43650:21:0;-1:-1:-1;;;;;43650:21:0;;;;;;;;;43689:27;;43650:16;;43689:27;;;;;;;43146:578;;;:::o;9292:98::-;9350:7;9377:5;9381:1;9377;:5;:::i;:::-;9370:12;9292:98;-1:-1:-1;;;9292:98:0:o;14817:173::-;14892:6;;;-1:-1:-1;;;;;14909:17:0;;;-1:-1:-1;;;;;;14909:17:0;;;;;;;14942:40;;14892:6;;;14909:17;14892:6;;14942:40;;14873:16;;14942:40;14862:128;14817:173;:::o;53726:181::-;53801:12;53819:8;-1:-1:-1;;;;;53819:13:0;53840:7;53819:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53800:52;;;53871:7;53863:36;;;;-1:-1:-1;;;53863:36:0;;13007:2:1;53863:36:0;;;12989:21:1;13046:2;13026:18;;;13019:30;-1:-1:-1;;;13065:18:1;;;13058:46;13121:18;;53863:36:0;12805:340:1;39232:315:0;39389:28;39399:4;39405:2;39409:7;39389:9;:28::i;:::-;39436:48;39459:4;39465:2;39469:7;39478:5;39436:22;:48::i;:::-;39428:111;;;;-1:-1:-1;;;39428:111:0;;;;;;;:::i;21071:723::-;21127:13;21348:10;21344:53;;-1:-1:-1;;21375:10:0;;;;;;;;;;;;-1:-1:-1;;;21375:10:0;;;;;21071:723::o;21344:53::-;21422:5;21407:12;21463:78;21470:9;;21463:78;;21496:8;;;;:::i;:::-;;-1:-1:-1;21519:10:0;;-1:-1:-1;21527:2:0;21519:10;;:::i;:::-;;;21463:78;;;21551:19;21583:6;21573:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21573:17:0;;21551:39;;21601:154;21608:10;;21601:154;;21635:11;21645:1;21635:11;;:::i;:::-;;-1:-1:-1;21704:10:0;21712:2;21704:5;:10;:::i;:::-;21691:24;;:2;:24;:::i;:::-;21678:39;;21661:6;21668;21661:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21661:56:0;;;;;;;;-1:-1:-1;21732:11:0;21741:2;21732:11;;:::i;:::-;;;21601:154;;40844:110;40920:26;40930:2;40934:7;40920:26;;;;;;;;;;;;:9;:26::i;:::-;40844:110;;:::o;44581:799::-;44736:4;-1:-1:-1;;;;;44757:13:0;;23923:20;23971:8;44753:620;;44793:72;;-1:-1:-1;;;44793:72:0;;-1:-1:-1;;;;;44793:36:0;;;;;:72;;4220:10;;44844:4;;44850:7;;44859:5;;44793:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44793:72:0;;;;;;;;-1:-1:-1;;44793:72:0;;;;;;;;;;;;:::i;:::-;;;44789:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45035:13:0;;45031:272;;45078:60;;-1:-1:-1;;;45078:60:0;;;;;;;:::i;45031:272::-;45253:6;45247:13;45238:6;45234:2;45230:15;45223:38;44789:529;-1:-1:-1;;;;;;44916:51:0;-1:-1:-1;;;44916:51:0;;-1:-1:-1;44909:58:0;;44753:620;-1:-1:-1;45357:4:0;44581:799;;;;;;:::o;41181:321::-;41311:18;41317:2;41321:7;41311:5;:18::i;:::-;41362:54;41393:1;41397:2;41401:7;41410:5;41362:22;:54::i;:::-;41340:154;;;;-1:-1:-1;;;41340:154:0;;;;;;;:::i;41838:382::-;-1:-1:-1;;;;;41918:16:0;;41910:61;;;;-1:-1:-1;;;41910:61:0;;10378:2:1;41910:61:0;;;10360:21:1;;;10397:18;;;10390:30;10456:34;10436:18;;;10429:62;10508:18;;41910:61:0;10176:356:1;41910:61:0;39925:4;39949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39949:16:0;:30;41982:58;;;;-1:-1:-1;;;41982:58:0;;6859:2:1;41982:58:0;;;6841:21:1;6898:2;6878:18;;;6871:30;6937;6917:18;;;6910:58;6985:18;;41982:58:0;6657:352:1;41982:58:0;-1:-1:-1;;;;;42111:13:0;;;;;;:9;:13;;;;;:18;;42128:1;;42111:13;:18;;42128:1;;42111:18;:::i;:::-;;;;-1:-1:-1;;42140:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42140:21:0;-1:-1:-1;;;;;42140:21:0;;;;;;;;42179:33;;42140:16;;;42179:33;;42140:16;;42179:33;41838:382;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:1:o;3686:470::-;3865:3;3903:6;3897:13;3919:53;3965:6;3960:3;3953:4;3945:6;3941:17;3919:53;:::i;:::-;4035:13;;3994:16;;;;4057:57;4035:13;3994:16;4091:4;4079:17;;4057:57;:::i;:::-;4130:20;;3686:470;-1:-1:-1;;;;3686:470:1:o;4579:488::-;-1:-1:-1;;;;;4848:15:1;;;4830:34;;4900:15;;4895:2;4880:18;;4873:43;4947:2;4932:18;;4925:34;;;4995:3;4990:2;4975:18;;4968:31;;;4773:4;;5016:45;;5041:19;;5033:6;5016:45;:::i;:::-;5008:53;4579:488;-1:-1:-1;;;;;;4579:488:1:o;5264:219::-;5413:2;5402:9;5395:21;5376:4;5433:44;5473:2;5462:9;5458:18;5450:6;5433:44;:::i;5831:414::-;6033:2;6015:21;;;6072:2;6052:18;;;6045:30;6111:34;6106:2;6091:18;;6084:62;-1:-1:-1;;;6177:2:1;6162:18;;6155:48;6235:3;6220:19;;5831:414::o;8180:332::-;8382:2;8364:21;;;8421:1;8401:18;;;8394:29;-1:-1:-1;;;8454:2:1;8439:18;;8432:39;8503:2;8488:18;;8180:332::o;10537:331::-;10739:2;10721:21;;;10778:1;10758:18;;;10751:29;-1:-1:-1;;;10811:2:1;10796:18;;10789:38;10859:2;10844:18;;10537:331::o;11286:356::-;11488:2;11470:21;;;11507:18;;;11500:30;11566:34;11561:2;11546:18;;11539:62;11633:2;11618:18;;11286:356::o;12057:341::-;12259:2;12241:21;;;12298:2;12278:18;;;12271:30;-1:-1:-1;;;12332:2:1;12317:18;;12310:47;12389:2;12374:18;;12057:341::o;13150:413::-;13352:2;13334:21;;;13391:2;13371:18;;;13364:30;13430:34;13425:2;13410:18;;13403:62;-1:-1:-1;;;13496:2:1;13481:18;;13474:47;13553:3;13538:19;;13150:413::o;13750:128::-;13790:3;13821:1;13817:6;13814:1;13811:13;13808:39;;;13827:18;;:::i;:::-;-1:-1:-1;13863:9:1;;13750:128::o;13883:120::-;13923:1;13949;13939:35;;13954:18;;:::i;:::-;-1:-1:-1;13988:9:1;;13883:120::o;14008:168::-;14048:7;14114:1;14110;14106:6;14102:14;14099:1;14096:21;14091:1;14084:9;14077:17;14073:45;14070:71;;;14121:18;;:::i;:::-;-1:-1:-1;14161:9:1;;14008:168::o;14181:125::-;14221:4;14249:1;14246;14243:8;14240:34;;;14254:18;;:::i;:::-;-1:-1:-1;14291:9:1;;14181:125::o;14311:258::-;14383:1;14393:113;14407:6;14404:1;14401:13;14393:113;;;14483:11;;;14477:18;14464:11;;;14457:39;14429:2;14422:10;14393:113;;;14524:6;14521:1;14518:13;14515:48;;;-1:-1:-1;;14559:1:1;14541:16;;14534:27;14311:258::o;14574:380::-;14653:1;14649:12;;;;14696;;;14717:61;;14771:4;14763:6;14759:17;14749:27;;14717:61;14824:2;14816:6;14813:14;14793:18;14790:38;14787:161;;;14870:10;14865:3;14861:20;14858:1;14851:31;14905:4;14902:1;14895:15;14933:4;14930:1;14923:15;14787:161;;14574:380;;;:::o;14959:135::-;14998:3;-1:-1:-1;;15019:17:1;;15016:43;;;15039:18;;:::i;:::-;-1:-1:-1;15086:1:1;15075:13;;14959:135::o;15099:112::-;15131:1;15157;15147:35;;15162:18;;:::i;:::-;-1:-1:-1;15196:9:1;;15099:112::o;15216:127::-;15277:10;15272:3;15268:20;15265:1;15258:31;15308:4;15305:1;15298:15;15332:4;15329:1;15322:15;15348:127;15409:10;15404:3;15400:20;15397:1;15390:31;15440:4;15437:1;15430:15;15464:4;15461:1;15454:15;15480:127;15541:10;15536:3;15532:20;15529:1;15522:31;15572:4;15569:1;15562:15;15596:4;15593:1;15586:15;15612:127;15673:10;15668:3;15664:20;15661:1;15654:31;15704:4;15701:1;15694:15;15728:4;15725:1;15718:15;15744:131;-1:-1:-1;;;;;;15818:32:1;;15808:43;;15798:71;;15865:1;15862;15855:12

Swarm Source

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