ETH Price: $3,361.50 (-0.62%)
Gas: 10 Gwei

Contract

0x771710614f0E44b6E9534B6BBf4105033cD865b6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Adopt201732382024-06-26 3:41:2312 hrs ago1719373283IN
Dazed Symbiotes: NOM Token
0 ETH0.00026111.76281911
Set Approval For...201605582024-06-24 9:10:112 days ago1719220211IN
Dazed Symbiotes: NOM Token
0 ETH0.000177643.8464245
Set Approval For...201596712024-06-24 6:11:352 days ago1719209495IN
Dazed Symbiotes: NOM Token
0 ETH0.000087331.88763612
Transfer From201480992024-06-22 15:20:234 days ago1719069623IN
Dazed Symbiotes: NOM Token
0 ETH0.000274272.99557298
Set Approval For...201480682024-06-22 15:13:594 days ago1719069239IN
Dazed Symbiotes: NOM Token
0 ETH0.000171173.70634069
Adopt201471642024-06-22 12:12:114 days ago1719058331IN
Dazed Symbiotes: NOM Token
0 ETH0.000330552.23171912
Adopt201468932024-06-22 11:17:234 days ago1719055043IN
Dazed Symbiotes: NOM Token
0 ETH0.000300342.02773712
Set Approval For...201464622024-06-22 9:50:354 days ago1719049835IN
Dazed Symbiotes: NOM Token
0 ETH0.000122582.65017873
Adopt201464522024-06-22 9:48:354 days ago1719049715IN
Dazed Symbiotes: NOM Token
0 ETH0.000345852.38000838
Adopt201458612024-06-22 7:49:594 days ago1719042599IN
Dazed Symbiotes: NOM Token
0 ETH0.000394852.71721485
Adopt201454302024-06-22 6:23:114 days ago1719037391IN
Dazed Symbiotes: NOM Token
0 ETH0.000338282.32789417
Adopt201447792024-06-22 4:11:354 days ago1719029495IN
Dazed Symbiotes: NOM Token
0 ETH0.000319072.19557375
Adopt201446822024-06-22 3:52:114 days ago1719028331IN
Dazed Symbiotes: NOM Token
0 ETH0.000290632
Set Approval For...201380812024-06-21 5:43:475 days ago1718948627IN
Dazed Symbiotes: NOM Token
0 ETH0.000132582.87083611
Set Approval For...201106552024-06-17 9:36:599 days ago1718617019IN
Dazed Symbiotes: NOM Token
0 ETH0.000133392.88827866
Adopt201106482024-06-17 9:35:359 days ago1718616935IN
Dazed Symbiotes: NOM Token
0 ETH0.000477973.28921516
Adopt201104872024-06-17 9:03:119 days ago1718614991IN
Dazed Symbiotes: NOM Token
0 ETH0.000502113.45535917
Adopt201104862024-06-17 9:02:599 days ago1718614979IN
Dazed Symbiotes: NOM Token
0 ETH0.000511163.51757783
Adopt201102432024-06-17 8:13:599 days ago1718612039IN
Dazed Symbiotes: NOM Token
0 ETH0.000539093.70984009
Adopt201098682024-06-17 6:58:119 days ago1718607491IN
Dazed Symbiotes: NOM Token
0 ETH0.000446853.05071787
Adopt201098192024-06-17 6:48:239 days ago1718606903IN
Dazed Symbiotes: NOM Token
0 ETH0.000440683.03259026
Adopt201096492024-06-17 6:14:119 days ago1718604851IN
Dazed Symbiotes: NOM Token
0 ETH0.000436813.00597218
Adopt201093772024-06-17 5:19:119 days ago1718601551IN
Dazed Symbiotes: NOM Token
0 ETH0.000365392.46692545
Adopt201093772024-06-17 5:19:119 days ago1718601551IN
Dazed Symbiotes: NOM Token
0 ETH0.000365392.46692545
Adopt201093772024-06-17 5:19:119 days ago1718601551IN
Dazed Symbiotes: NOM Token
0 ETH0.000361342.46692545
View all transactions

Advanced mode:
Parent Transaction Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DazedSymbiotes

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-25
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    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.
     */
    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.
     */
    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.
     */
    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 largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;


/**
 * @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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;


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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @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/ERC721.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;








/**
 * @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}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => 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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

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

        return _getApproved(tokenId);
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * 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 {
        _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);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. 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
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;




/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability
 * of all the token ids in the contract as well as all token ids owned by each account.
 *
 * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
 * interfere with enumerability and should not be used together with `ERC721Enumerable`.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

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

        return previousOwner;
    }

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

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

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

        uint256 lastTokenIndex = balanceOf(from);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

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

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

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

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

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

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

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}


pragma solidity ^0.8.20;


contract DazedSymbiotes is ERC721, ERC721Enumerable, Ownable {

    uint256 constant supply = 2000;
    uint256 public price;

    string mainURI; 

    uint256 public ratio = 3;

    uint256 public latest;
    uint256 public yield;

    mapping(uint256 => uint256) public items;

    event benefit(uint256 value, uint256 nom);

    constructor(string memory firstURI)
        ERC721("Dazed Symbiotes", "NOM")
        Ownable(msg.sender)
    {
        mainURI = firstURI;
    }

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

    function adopt() external payable {

        require(msg.value >= price, "Insufficient ether sent.");
        require(totalSupply() < supply, "Symbiotes have been fully adopted.");

        uint256 tokenId = totalSupply() + 1;

        _safeMint(msg.sender, tokenId);

    }

    function harvest(uint256 num) public {

        require(ownerOf(num) == msg.sender, "You are not the owner of this item.");

        uint256 quota = items[num];  
        require(quota > 0, "This item has already been harvested.");

        items[num] = 0;
        yield -= quota;

        (bool success, ) = payable(msg.sender).call{value: quota}("");
        require(success, "Failed to process the harvest.");

    }

    receive() external payable {
        
        uint256 amount = msg.value / ratio;
        uint256 random = ( block.timestamp + yield ) %  totalSupply() + 1 ; 

        items[random] += amount;
        latest = random;

        yield += amount;

        emit benefit(amount, random);
    }

    fallback() external payable {}
    
    function withdraw() public onlyOwner {

        uint256 amount = address(this).balance - yield;
        payable(msg.sender).transfer(amount);

    }
    
    function release(address _token, address _to) public onlyOwner {

        IERC20 token = IERC20(_token);
        uint256 contractBalance = token.balanceOf(address(this));

        token.transfer(_to, contractBalance);

    }

    function setURI(string memory URI) public onlyOwner() {
        mainURI = URI;
    }

    function setPrice(uint256 newPrice) public onlyOwner() {
        price = newPrice;
    }

    function setRatio(uint256 newRatio) public onlyOwner() {
        ratio = newRatio;
    }

    function _update(address to, uint256 tokenId, address auth)
        internal
        override(ERC721, ERC721Enumerable)
        returns (address)
    {
        return super._update(to, tokenId, auth);
    }

    function _increaseBalance(address account, uint128 value)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._increaseBalance(account, value);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"firstURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nom","type":"uint256"}],"name":"benefit","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"adopt","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"","type":"uint256"}],"name":"items","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ratio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"release","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":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRatio","type":"uint256"}],"name":"setRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yield","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526003600d5534801562000015575f80fd5b50604051620020a7380380620020a7833981016040819052620000389162000154565b336040518060400160405280600f81526020016e44617a65642053796d62696f74657360881b815250604051806040016040528060038152602001624e4f4d60e81b815250815f90816200008d9190620002ae565b5060016200009c8282620002ae565b5050506001600160a01b038116620000cd57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b620000d881620000ef565b50600c620000e78282620002ae565b505062000376565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b5f602080838503121562000166575f80fd5b82516001600160401b03808211156200017d575f80fd5b818501915085601f83011262000191575f80fd5b815181811115620001a657620001a662000140565b604051601f8201601f19908116603f01168101908382118183101715620001d157620001d162000140565b816040528281528886848701011115620001e9575f80fd5b5f93505b828410156200020c5784840186015181850187015292850192620001ed565b5f86848301015280965050505050505092915050565b600181811c908216806200023757607f821691505b6020821081036200025657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002a9575f81815260208120601f850160051c81016020861015620002845750805b601f850160051c820191505b81811015620002a55782815560010162000290565b5050505b505050565b81516001600160401b03811115620002ca57620002ca62000140565b620002e281620002db845462000222565b846200025c565b602080601f83116001811462000318575f8415620003005750858301515b5f19600386901b1c1916600185901b178555620002a5565b5f85815260208120601f198616915b82811015620003485788860151825594840194600190910190840162000327565b50858210156200036657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b611d2380620003845f395ff3fe6080604052600436106101b8575f3560e01c806370a08231116100ea578063b0f5d8a41161008e578063c87b56dd11610060578063c87b56dd14610585578063ddc63262146105a4578063e985e9c5146105c3578063f2fde38b146105e257005b8063b0f5d8a414610514578063b2237ba31461051c578063b88d4fde1461053b578063bfb231d21461055a57005b806391b7f5ed116100c757806391b7f5ed146104ad57806395d89b41146104cc578063a035b1fe146104e0578063a22cb465146104f557005b806370a082311461045c57806371ca337d1461047b5780638da5cb5b1461049057005b8063285939841161015c57806348b750441161012e57806348b75044146103ea5780634f6ccce71461040957806352bfe789146104285780636352211e1461043d57005b806328593984146103835780632f745c59146103985780633ccfd60b146103b757806342842e0e146103cb57005b8063081812fc11610195578063081812fc146102f0578063095ea7b31461032757806318160ddd1461034657806323b872dd1461036457005b806301ffc9a71461027c57806302fe5305146102b057806306fdde03146102cf57005b3661027a575f600d54346101cc9190611790565b90505f6101d860085490565b600f546101e590426117a3565b6101ef91906117b6565b6101fa9060016117a3565b90508160105f8381526020019081526020015f205f82825461021c91906117a3565b9091555050600e819055600f80548391905f9061023a9084906117a3565b909155505060408051838152602081018390527f8938c713de0b45feb59cf5bfa42226cfd663a1955474b679481e826f8193e171910160405180910390a1005b005b348015610287575f80fd5b5061029b6102963660046117de565b610601565b60405190151581526020015b60405180910390f35b3480156102bb575f80fd5b5061027a6102ca366004611880565b610611565b3480156102da575f80fd5b506102e3610629565b6040516102a79190611912565b3480156102fb575f80fd5b5061030f61030a366004611924565b6106b8565b6040516001600160a01b0390911681526020016102a7565b348015610332575f80fd5b5061027a610341366004611956565b6106df565b348015610351575f80fd5b506008545b6040519081526020016102a7565b34801561036f575f80fd5b5061027a61037e36600461197e565b6106ea565b34801561038e575f80fd5b50610356600f5481565b3480156103a3575f80fd5b506103566103b2366004611956565b610778565b3480156103c2575f80fd5b5061027a6107db565b3480156103d6575f80fd5b5061027a6103e536600461197e565b61081f565b3480156103f5575f80fd5b5061027a6104043660046119b7565b61083e565b348015610414575f80fd5b50610356610423366004611924565b61092b565b348015610433575f80fd5b50610356600e5481565b348015610448575f80fd5b5061030f610457366004611924565b610980565b348015610467575f80fd5b506103566104763660046119e8565b61098a565b348015610486575f80fd5b50610356600d5481565b34801561049b575f80fd5b50600a546001600160a01b031661030f565b3480156104b8575f80fd5b5061027a6104c7366004611924565b6109cf565b3480156104d7575f80fd5b506102e36109dc565b3480156104eb575f80fd5b50610356600b5481565b348015610500575f80fd5b5061027a61050f366004611a0e565b6109eb565b61027a6109f6565b348015610527575f80fd5b5061027a610536366004611924565b610ad0565b348015610546575f80fd5b5061027a610555366004611a43565b610add565b348015610565575f80fd5b50610356610574366004611924565b60106020525f908152604090205481565b348015610590575f80fd5b506102e361059f366004611924565b610af4565b3480156105af575f80fd5b5061027a6105be366004611924565b610b59565b3480156105ce575f80fd5b5061029b6105dd3660046119b7565b610cea565b3480156105ed575f80fd5b5061027a6105fc3660046119e8565b610d17565b5f61060b82610d51565b92915050565b610619610d75565b600c6106258282611b3f565b5050565b60605f805461063790611aba565b80601f016020809104026020016040519081016040528092919081815260200182805461066390611aba565b80156106ae5780601f10610685576101008083540402835291602001916106ae565b820191905f5260205f20905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b5f6106c282610da4565b505f828152600460205260409020546001600160a01b031661060b565b610625828233610ddc565b6001600160a01b03821661071857604051633250574960e11b81525f60048201526024015b60405180910390fd5b5f610724838333610de9565b9050836001600160a01b0316816001600160a01b031614610772576040516364283d7b60e01b81526001600160a01b038086166004830152602482018490528216604482015260640161070f565b50505050565b5f6107828361098a565b82106107b35760405163295f44f760e21b81526001600160a01b03841660048201526024810183905260440161070f565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b6107e3610d75565b5f600f54476107f29190611bfb565b604051909150339082156108fc029083905f818181858888f19350505050158015610625573d5f803e3d5ffd5b61083983838360405180602001604052805f815250610add565b505050565b610846610d75565b6040516370a0823160e01b815230600482015282905f906001600160a01b038316906370a0823190602401602060405180830381865afa15801561088c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b09190611c0e565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509083169063a9059cbb906044016020604051808303815f875af1158015610900573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109249190611c25565b5050505050565b5f61093560085490565b821061095d5760405163295f44f760e21b81525f60048201526024810183905260440161070f565b6008828154811061097057610970611c40565b905f5260205f2001549050919050565b5f61060b82610da4565b5f6001600160a01b0382166109b4576040516322718ad960e21b81525f600482015260240161070f565b506001600160a01b03165f9081526003602052604090205490565b6109d7610d75565b600b55565b60606001805461063790611aba565b610625338383610dfd565b600b54341015610a485760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e742065746865722073656e742e0000000000000000604482015260640161070f565b6107d0610a5460085490565b10610aac5760405162461bcd60e51b815260206004820152602260248201527f53796d62696f7465732068617665206265656e2066756c6c792061646f707465604482015261321760f11b606482015260840161070f565b5f610ab660085490565b610ac19060016117a3565b9050610acd3382610e9b565b50565b610ad8610d75565b600d55565b610ae88484846106ea565b61077284848484610eb4565b6060610aff82610da4565b505f610b09610fd3565b90505f815111610b275760405180602001604052805f815250610b52565b80610b3184610fe2565b604051602001610b42929190611c54565b6040516020818303038152906040525b9392505050565b33610b6382610980565b6001600160a01b031614610bc55760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e6572206f66207468697320697460448201526232b69760e91b606482015260840161070f565b5f8181526010602052604090205480610c2e5760405162461bcd60e51b815260206004820152602560248201527f54686973206974656d2068617320616c7265616479206265656e20686172766560448201526439ba32b21760d91b606482015260840161070f565b5f828152601060205260408120819055600f8054839290610c50908490611bfb565b90915550506040515f90339083908381818185875af1925050503d805f8114610c94576040519150601f19603f3d011682016040523d82523d5f602084013e610c99565b606091505b50509050806108395760405162461bcd60e51b815260206004820152601e60248201527f4661696c656420746f2070726f636573732074686520686172766573742e0000604482015260640161070f565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b610d1f610d75565b6001600160a01b038116610d4857604051631e4fbdf760e01b81525f600482015260240161070f565b610acd81611072565b5f6001600160e01b0319821663780e9d6360e01b148061060b575061060b826110c3565b600a546001600160a01b03163314610da25760405163118cdaa760e01b815233600482015260240161070f565b565b5f818152600260205260408120546001600160a01b03168061060b57604051637e27328960e01b81526004810184905260240161070f565b6108398383836001611112565b5f610df5848484611216565b949350505050565b6001600160a01b038216610e2f57604051630b61174360e31b81526001600160a01b038316600482015260240161070f565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610625828260405180602001604052805f8152506112e1565b6001600160a01b0383163b1561077257604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290610ef6903390889087908790600401611c82565b6020604051808303815f875af1925050508015610f30575060408051601f3d908101601f19168201909252610f2d91810190611cbe565b60015b610f97573d808015610f5d576040519150601f19603f3d011682016040523d82523d5f602084013e610f62565b606091505b5080515f03610f8f57604051633250574960e11b81526001600160a01b038516600482015260240161070f565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461092457604051633250574960e11b81526001600160a01b038516600482015260240161070f565b6060600c805461063790611aba565b60605f610fee836112f7565b60010190505f8167ffffffffffffffff81111561100d5761100d6117f9565b6040519080825280601f01601f191660200182016040528015611037576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461104157509392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6001600160e01b031982166380ac58cd60e01b14806110f357506001600160e01b03198216635b5e139f60e01b145b8061060b57506301ffc9a760e01b6001600160e01b031983161461060b565b808061112657506001600160a01b03821615155b156111e7575f61113584610da4565b90506001600160a01b038316158015906111615750826001600160a01b0316816001600160a01b031614155b801561117457506111728184610cea565b155b1561119d5760405163a9fbf51f60e01b81526001600160a01b038416600482015260240161070f565b81156111e55783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b5f806112238585856113ce565b90506001600160a01b03811661127f5761127a84600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6112a2565b846001600160a01b0316816001600160a01b0316146112a2576112a281856114c0565b6001600160a01b0385166112be576112b98461154d565b610df5565b846001600160a01b0316816001600160a01b031614610df557610df585856115f4565b6112eb8383611642565b6108395f848484610eb4565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106113355772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611361576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061137f57662386f26fc10000830492506010015b6305f5e1008310611397576305f5e100830492506008015b61271083106113ab57612710830492506004015b606483106113bd576064830492506002015b600a831061060b5760010192915050565b5f828152600260205260408120546001600160a01b03908116908316156113fa576113fa8184866116a3565b6001600160a01b03811615611434576114155f855f80611112565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b03851615611462576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b5f6114ca8361098a565b5f8381526007602052604090205490915080821461151b576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f9061155e90600190611bfb565b5f838152600960205260408120546008805493945090928490811061158557611585611c40565b905f5260205f200154905080600883815481106115a4576115a4611c40565b5f9182526020808320909101929092558281526009909152604080822084905585825281205560088054806115db576115db611cd9565b600190038181905f5260205f20015f9055905550505050565b5f60016116008461098a565b61160a9190611bfb565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661166b57604051633250574960e11b81525f600482015260240161070f565b5f61167783835f610de9565b90506001600160a01b03811615610839576040516339e3563760e11b81525f600482015260240161070f565b6116ae838383611707565b610839576001600160a01b0383166116dc57604051637e27328960e01b81526004810182905260240161070f565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440161070f565b5f6001600160a01b03831615801590610df55750826001600160a01b0316846001600160a01b0316148061174057506117408484610cea565b80610df55750505f908152600460205260409020546001600160a01b03908116911614919050565b634e487b7160e01b5f52601260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f8261179e5761179e611768565b500490565b8082018082111561060b5761060b61177c565b5f826117c4576117c4611768565b500690565b6001600160e01b031981168114610acd575f80fd5b5f602082840312156117ee575f80fd5b8135610b52816117c9565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611827576118276117f9565b604051601f8501601f19908116603f0116810190828211818310171561184f5761184f6117f9565b81604052809350858152868686011115611867575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611890575f80fd5b813567ffffffffffffffff8111156118a6575f80fd5b8201601f810184136118b6575f80fd5b610df58482356020840161180d565b5f5b838110156118df5781810151838201526020016118c7565b50505f910152565b5f81518084526118fe8160208601602086016118c5565b601f01601f19169290920160200192915050565b602081525f610b5260208301846118e7565b5f60208284031215611934575f80fd5b5035919050565b80356001600160a01b0381168114611951575f80fd5b919050565b5f8060408385031215611967575f80fd5b6119708361193b565b946020939093013593505050565b5f805f60608486031215611990575f80fd5b6119998461193b565b92506119a76020850161193b565b9150604084013590509250925092565b5f80604083850312156119c8575f80fd5b6119d18361193b565b91506119df6020840161193b565b90509250929050565b5f602082840312156119f8575f80fd5b610b528261193b565b8015158114610acd575f80fd5b5f8060408385031215611a1f575f80fd5b611a288361193b565b91506020830135611a3881611a01565b809150509250929050565b5f805f8060808587031215611a56575f80fd5b611a5f8561193b565b9350611a6d6020860161193b565b925060408501359150606085013567ffffffffffffffff811115611a8f575f80fd5b8501601f81018713611a9f575f80fd5b611aae8782356020840161180d565b91505092959194509250565b600181811c90821680611ace57607f821691505b602082108103611aec57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610839575f81815260208120601f850160051c81016020861015611b185750805b601f850160051c820191505b81811015611b3757828155600101611b24565b505050505050565b815167ffffffffffffffff811115611b5957611b596117f9565b611b6d81611b678454611aba565b84611af2565b602080601f831160018114611ba0575f8415611b895750858301515b5f19600386901b1c1916600185901b178555611b37565b5f85815260208120601f198616915b82811015611bce57888601518255948401946001909101908401611baf565b5085821015611beb57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111561060b5761060b61177c565b5f60208284031215611c1e575f80fd5b5051919050565b5f60208284031215611c35575f80fd5b8151610b5281611a01565b634e487b7160e01b5f52603260045260245ffd5b5f8351611c658184602088016118c5565b835190830190611c798183602088016118c5565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611cb4908301846118e7565b9695505050505050565b5f60208284031215611cce575f80fd5b8151610b52816117c9565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220bc33e55ccc369ad3374daa348d32c8972c3531db1851bb802c6cd6cf294df39664736f6c634300081400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6d6e667230782e6769746875622e696f2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b8575f3560e01c806370a08231116100ea578063b0f5d8a41161008e578063c87b56dd11610060578063c87b56dd14610585578063ddc63262146105a4578063e985e9c5146105c3578063f2fde38b146105e257005b8063b0f5d8a414610514578063b2237ba31461051c578063b88d4fde1461053b578063bfb231d21461055a57005b806391b7f5ed116100c757806391b7f5ed146104ad57806395d89b41146104cc578063a035b1fe146104e0578063a22cb465146104f557005b806370a082311461045c57806371ca337d1461047b5780638da5cb5b1461049057005b8063285939841161015c57806348b750441161012e57806348b75044146103ea5780634f6ccce71461040957806352bfe789146104285780636352211e1461043d57005b806328593984146103835780632f745c59146103985780633ccfd60b146103b757806342842e0e146103cb57005b8063081812fc11610195578063081812fc146102f0578063095ea7b31461032757806318160ddd1461034657806323b872dd1461036457005b806301ffc9a71461027c57806302fe5305146102b057806306fdde03146102cf57005b3661027a575f600d54346101cc9190611790565b90505f6101d860085490565b600f546101e590426117a3565b6101ef91906117b6565b6101fa9060016117a3565b90508160105f8381526020019081526020015f205f82825461021c91906117a3565b9091555050600e819055600f80548391905f9061023a9084906117a3565b909155505060408051838152602081018390527f8938c713de0b45feb59cf5bfa42226cfd663a1955474b679481e826f8193e171910160405180910390a1005b005b348015610287575f80fd5b5061029b6102963660046117de565b610601565b60405190151581526020015b60405180910390f35b3480156102bb575f80fd5b5061027a6102ca366004611880565b610611565b3480156102da575f80fd5b506102e3610629565b6040516102a79190611912565b3480156102fb575f80fd5b5061030f61030a366004611924565b6106b8565b6040516001600160a01b0390911681526020016102a7565b348015610332575f80fd5b5061027a610341366004611956565b6106df565b348015610351575f80fd5b506008545b6040519081526020016102a7565b34801561036f575f80fd5b5061027a61037e36600461197e565b6106ea565b34801561038e575f80fd5b50610356600f5481565b3480156103a3575f80fd5b506103566103b2366004611956565b610778565b3480156103c2575f80fd5b5061027a6107db565b3480156103d6575f80fd5b5061027a6103e536600461197e565b61081f565b3480156103f5575f80fd5b5061027a6104043660046119b7565b61083e565b348015610414575f80fd5b50610356610423366004611924565b61092b565b348015610433575f80fd5b50610356600e5481565b348015610448575f80fd5b5061030f610457366004611924565b610980565b348015610467575f80fd5b506103566104763660046119e8565b61098a565b348015610486575f80fd5b50610356600d5481565b34801561049b575f80fd5b50600a546001600160a01b031661030f565b3480156104b8575f80fd5b5061027a6104c7366004611924565b6109cf565b3480156104d7575f80fd5b506102e36109dc565b3480156104eb575f80fd5b50610356600b5481565b348015610500575f80fd5b5061027a61050f366004611a0e565b6109eb565b61027a6109f6565b348015610527575f80fd5b5061027a610536366004611924565b610ad0565b348015610546575f80fd5b5061027a610555366004611a43565b610add565b348015610565575f80fd5b50610356610574366004611924565b60106020525f908152604090205481565b348015610590575f80fd5b506102e361059f366004611924565b610af4565b3480156105af575f80fd5b5061027a6105be366004611924565b610b59565b3480156105ce575f80fd5b5061029b6105dd3660046119b7565b610cea565b3480156105ed575f80fd5b5061027a6105fc3660046119e8565b610d17565b5f61060b82610d51565b92915050565b610619610d75565b600c6106258282611b3f565b5050565b60605f805461063790611aba565b80601f016020809104026020016040519081016040528092919081815260200182805461066390611aba565b80156106ae5780601f10610685576101008083540402835291602001916106ae565b820191905f5260205f20905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b5f6106c282610da4565b505f828152600460205260409020546001600160a01b031661060b565b610625828233610ddc565b6001600160a01b03821661071857604051633250574960e11b81525f60048201526024015b60405180910390fd5b5f610724838333610de9565b9050836001600160a01b0316816001600160a01b031614610772576040516364283d7b60e01b81526001600160a01b038086166004830152602482018490528216604482015260640161070f565b50505050565b5f6107828361098a565b82106107b35760405163295f44f760e21b81526001600160a01b03841660048201526024810183905260440161070f565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b6107e3610d75565b5f600f54476107f29190611bfb565b604051909150339082156108fc029083905f818181858888f19350505050158015610625573d5f803e3d5ffd5b61083983838360405180602001604052805f815250610add565b505050565b610846610d75565b6040516370a0823160e01b815230600482015282905f906001600160a01b038316906370a0823190602401602060405180830381865afa15801561088c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b09190611c0e565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509083169063a9059cbb906044016020604051808303815f875af1158015610900573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109249190611c25565b5050505050565b5f61093560085490565b821061095d5760405163295f44f760e21b81525f60048201526024810183905260440161070f565b6008828154811061097057610970611c40565b905f5260205f2001549050919050565b5f61060b82610da4565b5f6001600160a01b0382166109b4576040516322718ad960e21b81525f600482015260240161070f565b506001600160a01b03165f9081526003602052604090205490565b6109d7610d75565b600b55565b60606001805461063790611aba565b610625338383610dfd565b600b54341015610a485760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e742065746865722073656e742e0000000000000000604482015260640161070f565b6107d0610a5460085490565b10610aac5760405162461bcd60e51b815260206004820152602260248201527f53796d62696f7465732068617665206265656e2066756c6c792061646f707465604482015261321760f11b606482015260840161070f565b5f610ab660085490565b610ac19060016117a3565b9050610acd3382610e9b565b50565b610ad8610d75565b600d55565b610ae88484846106ea565b61077284848484610eb4565b6060610aff82610da4565b505f610b09610fd3565b90505f815111610b275760405180602001604052805f815250610b52565b80610b3184610fe2565b604051602001610b42929190611c54565b6040516020818303038152906040525b9392505050565b33610b6382610980565b6001600160a01b031614610bc55760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e6572206f66207468697320697460448201526232b69760e91b606482015260840161070f565b5f8181526010602052604090205480610c2e5760405162461bcd60e51b815260206004820152602560248201527f54686973206974656d2068617320616c7265616479206265656e20686172766560448201526439ba32b21760d91b606482015260840161070f565b5f828152601060205260408120819055600f8054839290610c50908490611bfb565b90915550506040515f90339083908381818185875af1925050503d805f8114610c94576040519150601f19603f3d011682016040523d82523d5f602084013e610c99565b606091505b50509050806108395760405162461bcd60e51b815260206004820152601e60248201527f4661696c656420746f2070726f636573732074686520686172766573742e0000604482015260640161070f565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b610d1f610d75565b6001600160a01b038116610d4857604051631e4fbdf760e01b81525f600482015260240161070f565b610acd81611072565b5f6001600160e01b0319821663780e9d6360e01b148061060b575061060b826110c3565b600a546001600160a01b03163314610da25760405163118cdaa760e01b815233600482015260240161070f565b565b5f818152600260205260408120546001600160a01b03168061060b57604051637e27328960e01b81526004810184905260240161070f565b6108398383836001611112565b5f610df5848484611216565b949350505050565b6001600160a01b038216610e2f57604051630b61174360e31b81526001600160a01b038316600482015260240161070f565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610625828260405180602001604052805f8152506112e1565b6001600160a01b0383163b1561077257604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290610ef6903390889087908790600401611c82565b6020604051808303815f875af1925050508015610f30575060408051601f3d908101601f19168201909252610f2d91810190611cbe565b60015b610f97573d808015610f5d576040519150601f19603f3d011682016040523d82523d5f602084013e610f62565b606091505b5080515f03610f8f57604051633250574960e11b81526001600160a01b038516600482015260240161070f565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461092457604051633250574960e11b81526001600160a01b038516600482015260240161070f565b6060600c805461063790611aba565b60605f610fee836112f7565b60010190505f8167ffffffffffffffff81111561100d5761100d6117f9565b6040519080825280601f01601f191660200182016040528015611037576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461104157509392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6001600160e01b031982166380ac58cd60e01b14806110f357506001600160e01b03198216635b5e139f60e01b145b8061060b57506301ffc9a760e01b6001600160e01b031983161461060b565b808061112657506001600160a01b03821615155b156111e7575f61113584610da4565b90506001600160a01b038316158015906111615750826001600160a01b0316816001600160a01b031614155b801561117457506111728184610cea565b155b1561119d5760405163a9fbf51f60e01b81526001600160a01b038416600482015260240161070f565b81156111e55783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b5f806112238585856113ce565b90506001600160a01b03811661127f5761127a84600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6112a2565b846001600160a01b0316816001600160a01b0316146112a2576112a281856114c0565b6001600160a01b0385166112be576112b98461154d565b610df5565b846001600160a01b0316816001600160a01b031614610df557610df585856115f4565b6112eb8383611642565b6108395f848484610eb4565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106113355772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611361576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061137f57662386f26fc10000830492506010015b6305f5e1008310611397576305f5e100830492506008015b61271083106113ab57612710830492506004015b606483106113bd576064830492506002015b600a831061060b5760010192915050565b5f828152600260205260408120546001600160a01b03908116908316156113fa576113fa8184866116a3565b6001600160a01b03811615611434576114155f855f80611112565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b03851615611462576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b5f6114ca8361098a565b5f8381526007602052604090205490915080821461151b576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f9061155e90600190611bfb565b5f838152600960205260408120546008805493945090928490811061158557611585611c40565b905f5260205f200154905080600883815481106115a4576115a4611c40565b5f9182526020808320909101929092558281526009909152604080822084905585825281205560088054806115db576115db611cd9565b600190038181905f5260205f20015f9055905550505050565b5f60016116008461098a565b61160a9190611bfb565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661166b57604051633250574960e11b81525f600482015260240161070f565b5f61167783835f610de9565b90506001600160a01b03811615610839576040516339e3563760e11b81525f600482015260240161070f565b6116ae838383611707565b610839576001600160a01b0383166116dc57604051637e27328960e01b81526004810182905260240161070f565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440161070f565b5f6001600160a01b03831615801590610df55750826001600160a01b0316846001600160a01b0316148061174057506117408484610cea565b80610df55750505f908152600460205260409020546001600160a01b03908116911614919050565b634e487b7160e01b5f52601260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f8261179e5761179e611768565b500490565b8082018082111561060b5761060b61177c565b5f826117c4576117c4611768565b500690565b6001600160e01b031981168114610acd575f80fd5b5f602082840312156117ee575f80fd5b8135610b52816117c9565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611827576118276117f9565b604051601f8501601f19908116603f0116810190828211818310171561184f5761184f6117f9565b81604052809350858152868686011115611867575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611890575f80fd5b813567ffffffffffffffff8111156118a6575f80fd5b8201601f810184136118b6575f80fd5b610df58482356020840161180d565b5f5b838110156118df5781810151838201526020016118c7565b50505f910152565b5f81518084526118fe8160208601602086016118c5565b601f01601f19169290920160200192915050565b602081525f610b5260208301846118e7565b5f60208284031215611934575f80fd5b5035919050565b80356001600160a01b0381168114611951575f80fd5b919050565b5f8060408385031215611967575f80fd5b6119708361193b565b946020939093013593505050565b5f805f60608486031215611990575f80fd5b6119998461193b565b92506119a76020850161193b565b9150604084013590509250925092565b5f80604083850312156119c8575f80fd5b6119d18361193b565b91506119df6020840161193b565b90509250929050565b5f602082840312156119f8575f80fd5b610b528261193b565b8015158114610acd575f80fd5b5f8060408385031215611a1f575f80fd5b611a288361193b565b91506020830135611a3881611a01565b809150509250929050565b5f805f8060808587031215611a56575f80fd5b611a5f8561193b565b9350611a6d6020860161193b565b925060408501359150606085013567ffffffffffffffff811115611a8f575f80fd5b8501601f81018713611a9f575f80fd5b611aae8782356020840161180d565b91505092959194509250565b600181811c90821680611ace57607f821691505b602082108103611aec57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610839575f81815260208120601f850160051c81016020861015611b185750805b601f850160051c820191505b81811015611b3757828155600101611b24565b505050505050565b815167ffffffffffffffff811115611b5957611b596117f9565b611b6d81611b678454611aba565b84611af2565b602080601f831160018114611ba0575f8415611b895750858301515b5f19600386901b1c1916600185901b178555611b37565b5f85815260208120601f198616915b82811015611bce57888601518255948401946001909101908401611baf565b5085821015611beb57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111561060b5761060b61177c565b5f60208284031215611c1e575f80fd5b5051919050565b5f60208284031215611c35575f80fd5b8151610b5281611a01565b634e487b7160e01b5f52603260045260245ffd5b5f8351611c658184602088016118c5565b835190830190611c798183602088016118c5565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611cb4908301846118e7565b9695505050505050565b5f60208284031215611cce575f80fd5b8151610b52816117c9565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220bc33e55ccc369ad3374daa348d32c8972c3531db1851bb802c6cd6cf294df39664736f6c63430008140033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6d6e667230782e6769746875622e696f2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : firstURI (string): https://mnfr0x.github.io/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [2] : 68747470733a2f2f6d6e667230782e6769746875622e696f2f6d657461646174
Arg [3] : 612f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68510:3013:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69903:14;69932:5;;69920:9;:17;;;;:::i;:::-;69903:34;;69948:14;69996:13;63214:10;:17;;63135:104;69996:13;69985:5;;69967:23;;:15;:23;:::i;:::-;69965:44;;;;:::i;:::-;:48;;70012:1;69965:48;:::i;:::-;69948:65;;70045:6;70028:5;:13;70034:6;70028:13;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;70062:6:0;:15;;;70090:5;:15;;70099:6;;70090:5;;;:15;;70099:6;;70090:15;:::i;:::-;;;;-1:-1:-1;;70123:23:0;;;824:25:1;;;880:2;865:18;;858:34;;;70123:23:0;;797:18:1;70123:23:0;;;;;;;69882:272;68510:3013;;71308:212;;;;;;;;;;-1:-1:-1;71308:212:0;;;;;:::i;:::-;;:::i;:::-;;;1454:14:1;;1447:22;1429:41;;1417:2;1402:18;71308:212:0;;;;;;;;70608:86;;;;;;;;;;-1:-1:-1;70608:86:0;;;;;:::i;:::-;;:::i;45379:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46551:158::-;;;;;;;;;;-1:-1:-1;46551:158:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3811:32:1;;;3793:51;;3781:2;3766:18;46551:158:0;3647:203:1;46370:115:0;;;;;;;;;;-1:-1:-1;46370:115:0;;;;;:::i;:::-;;:::i;63135:104::-;;;;;;;;;;-1:-1:-1;63214:10:0;:17;63135:104;;;4438:25:1;;;4426:2;4411:18;63135:104:0;4292:177:1;47220:588:0;;;;;;;;;;-1:-1:-1;47220:588:0;;;;;:::i;:::-;;:::i;68731:20::-;;;;;;;;;;;;;;;;62799:260;;;;;;;;;;-1:-1:-1;62799:260:0;;;;;:::i;:::-;;:::i;70204:153::-;;;;;;;;;;;;;:::i;47879:134::-;;;;;;;;;;-1:-1:-1;47879:134:0;;;;;:::i;:::-;;:::i;70369:231::-;;;;;;;;;;-1:-1:-1;70369:231:0;;;;;:::i;:::-;;:::i;63316:::-;;;;;;;;;;-1:-1:-1;63316:231:0;;;;;:::i;:::-;;:::i;68703:21::-;;;;;;;;;;;;;;;;45192:120;;;;;;;;;;-1:-1:-1;45192:120:0;;;;;:::i;:::-;;:::i;44917:213::-;;;;;;;;;;-1:-1:-1;44917:213:0;;;;;:::i;:::-;;:::i;68670:24::-;;;;;;;;;;;;;;;;32367:87;;;;;;;;;;-1:-1:-1;32440:6:0;;-1:-1:-1;;;;;32440:6:0;32367:87;;70702:90;;;;;;;;;;-1:-1:-1;70702:90:0;;;;;:::i;:::-;;:::i;45539:95::-;;;;;;;;;;;;;:::i;68617:20::-;;;;;;;;;;;;;;;;46781:146;;;;;;;;;;-1:-1:-1;46781:146:0;;;;;:::i;:::-;;:::i;69124:283::-;;;:::i;70800:90::-;;;;;;;;;;-1:-1:-1;70800:90:0;;;;;:::i;:::-;;:::i;48084:211::-;;;;;;;;;;-1:-1:-1;48084:211:0;;;;;:::i;:::-;;:::i;68760:40::-;;;;;;;;;;-1:-1:-1;68760:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;45705:260;;;;;;;;;;-1:-1:-1;45705:260:0;;;;;:::i;:::-;;:::i;69415:432::-;;;;;;;;;;-1:-1:-1;69415:432:0;;;;;:::i;:::-;;:::i;46998:155::-;;;;;;;;;;-1:-1:-1;46998:155:0;;;;;:::i;:::-;;:::i;32853:220::-;;;;;;;;;;-1:-1:-1;32853:220:0;;;;;:::i;:::-;;:::i;71308:212::-;71447:4;71476:36;71500:11;71476:23;:36::i;:::-;71469:43;71308:212;-1:-1:-1;;71308:212:0:o;70608:86::-;32253:13;:11;:13::i;:::-;70673:7:::1;:13;70683:3:::0;70673:7;:13:::1;:::i;:::-;;70608:86:::0;:::o;45379:91::-;45424:13;45457:5;45450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45379:91;:::o;46551:158::-;46618:7;46638:22;46652:7;46638:13;:22::i;:::-;-1:-1:-1;49127:7:0;49154:24;;;:15;:24;;;;;;-1:-1:-1;;;;;49154:24:0;46680:21;49057:129;46370:115;46442:35;46451:2;46455:7;30456:10;46442:8;:35::i;47220:588::-;-1:-1:-1;;;;;47315:16:0;;47311:89;;47355:33;;-1:-1:-1;;;47355:33:0;;47385:1;47355:33;;;3793:51:1;3766:18;;47355:33:0;;;;;;;;47311:89;47621:21;47645:34;47653:2;47657:7;30456:10;47645:7;:34::i;:::-;47621:58;;47711:4;-1:-1:-1;;;;;47694:21:0;:13;-1:-1:-1;;;;;47694:21:0;;47690:111;;47739:50;;-1:-1:-1;;;47739:50:0;;-1:-1:-1;;;;;9225:15:1;;;47739:50:0;;;9207:34:1;9257:18;;;9250:34;;;9320:15;;9300:18;;;9293:43;9142:18;;47739:50:0;8967:375:1;47690:111:0;47300:508;47220:588;;;:::o;62799:260::-;62887:7;62920:16;62930:5;62920:9;:16::i;:::-;62911:5;:25;62907:101;;62960:36;;-1:-1:-1;;;62960:36:0;;-1:-1:-1;;;;;9539:32:1;;62960:36:0;;;9521:51:1;9588:18;;;9581:34;;;9494:18;;62960:36:0;9347:274:1;62907:101:0;-1:-1:-1;;;;;;63025:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;62799:260::o;70204:153::-;32253:13;:11;:13::i;:::-;70254:14:::1;70295:5;;70271:21;:29;;;;:::i;:::-;70311:36;::::0;70254:46;;-1:-1:-1;70319:10:0::1;::::0;70311:36;::::1;;;::::0;70254:46;;70311:36:::1;::::0;;;70254:46;70319:10;70311:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;47879:134:::0;47966:39;47983:4;47989:2;47993:7;47966:39;;;;;;;;;;;;:16;:39::i;:::-;47879:134;;;:::o;70369:231::-;32253:13;:11;:13::i;:::-;70511:30:::1;::::0;-1:-1:-1;;;70511:30:0;;70535:4:::1;70511:30;::::0;::::1;3793:51:1::0;70467:6:0;;70445:12:::1;::::0;-1:-1:-1;;;;;70511:15:0;::::1;::::0;::::1;::::0;3766:18:1;;70511:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70554:36;::::0;-1:-1:-1;;;70554:36:0;;-1:-1:-1;;;;;9539:32:1;;;70554:36:0::1;::::0;::::1;9521:51:1::0;9588:18;;;9581:34;;;70485:56:0;;-1:-1:-1;70554:14:0;;::::1;::::0;::::1;::::0;9494:18:1;;70554:36:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70432:168;;70369:231:::0;;:::o;63316:::-;63382:7;63415:13;63214:10;:17;;63135:104;63415:13;63406:5;:22;63402:103;;63452:41;;-1:-1:-1;;;63452:41:0;;63483:1;63452:41;;;9521:51:1;9588:18;;;9581:34;;;9494:18;;63452:41:0;9347:274:1;63402:103:0;63522:10;63533:5;63522:17;;;;;;;;:::i;:::-;;;;;;;;;63515:24;;63316:231;;;:::o;45192:120::-;45255:7;45282:22;45296:7;45282:13;:22::i;44917:213::-;44980:7;-1:-1:-1;;;;;45004:19:0;;45000:89;;45047:30;;-1:-1:-1;;;45047:30:0;;45074:1;45047:30;;;3793:51:1;3766:18;;45047:30:0;3647:203:1;45000:89:0;-1:-1:-1;;;;;;45106:16:0;;;;;:9;:16;;;;;;;44917:213::o;70702:90::-;32253:13;:11;:13::i;:::-;70768:5:::1;:16:::0;70702:90::o;45539:95::-;45586:13;45619:7;45612:14;;;;;:::i;46781:146::-;46867:52;30456:10;46900:8;46910;46867:18;:52::i;69124:283::-;69192:5;;69179:9;:18;;69171:55;;;;-1:-1:-1;;;69171:55:0;;10532:2:1;69171:55:0;;;10514:21:1;10571:2;10551:18;;;10544:30;10610:26;10590:18;;;10583:54;10654:18;;69171:55:0;10330:348:1;69171:55:0;68606:4;69245:13;63214:10;:17;;63135:104;69245:13;:22;69237:69;;;;-1:-1:-1;;;69237:69:0;;10885:2:1;69237:69:0;;;10867:21:1;10924:2;10904:18;;;10897:30;10963:34;10943:18;;;10936:62;-1:-1:-1;;;11014:18:1;;;11007:32;11056:19;;69237:69:0;10683:398:1;69237:69:0;69319:15;69337:13;63214:10;:17;;63135:104;69337:13;:17;;69353:1;69337:17;:::i;:::-;69319:35;;69367:30;69377:10;69389:7;69367:9;:30::i;:::-;69158:249;69124:283::o;70800:90::-;32253:13;:11;:13::i;:::-;70866:5:::1;:16:::0;70800:90::o;48084:211::-;48198:31;48211:4;48217:2;48221:7;48198:12;:31::i;:::-;48240:47;48263:4;48269:2;48273:7;48282:4;48240:22;:47::i;45705:260::-;45769:13;45795:22;45809:7;45795:13;:22::i;:::-;;45830:21;45854:10;:8;:10::i;:::-;45830:34;;45906:1;45888:7;45882:21;:25;:75;;;;;;;;;;;;;;;;;45924:7;45933:18;:7;:16;:18::i;:::-;45910:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45882:75;45875:82;45705:260;-1:-1:-1;;;45705:260:0:o;69415:432::-;69489:10;69473:12;69481:3;69473:7;:12::i;:::-;-1:-1:-1;;;;;69473:26:0;;69465:74;;;;-1:-1:-1;;;69465:74:0;;11789:2:1;69465:74:0;;;11771:21:1;11828:2;11808:18;;;11801:30;11867:34;11847:18;;;11840:62;-1:-1:-1;;;11918:18:1;;;11911:33;11961:19;;69465:74:0;11587:399:1;69465:74:0;69552:13;69568:10;;;:5;:10;;;;;;69599:9;69591:59;;;;-1:-1:-1;;;69591:59:0;;12193:2:1;69591:59:0;;;12175:21:1;12232:2;12212:18;;;12205:30;12271:34;12251:18;;;12244:62;-1:-1:-1;;;12322:18:1;;;12315:35;12367:19;;69591:59:0;11991:401:1;69591:59:0;69676:1;69663:10;;;:5;:10;;;;;:14;;;69688:5;:14;;69697:5;;69676:1;69688:14;;69697:5;;69688:14;:::i;:::-;;;;-1:-1:-1;;69734:42:0;;69716:12;;69742:10;;69766:5;;69716:12;69734:42;69716:12;69734:42;69766:5;69742:10;69734:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69715:61;;;69795:7;69787:50;;;;-1:-1:-1;;;69787:50:0;;12809:2:1;69787:50:0;;;12791:21:1;12848:2;12828:18;;;12821:30;12887:32;12867:18;;;12860:60;12937:18;;69787:50:0;12607:354:1;46998:155:0;-1:-1:-1;;;;;47110:25:0;;;47086:4;47110:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46998:155::o;32853:220::-;32253:13;:11;:13::i;:::-;-1:-1:-1;;;;;32938:22:0;::::1;32934:93;;32984:31;::::0;-1:-1:-1;;;32984:31:0;;33012:1:::1;32984:31;::::0;::::1;3793:51:1::0;3766:18;;32984:31:0::1;3647:203:1::0;32934:93:0::1;33037:28;33056:8;33037:18;:28::i;62491:224::-:0;62593:4;-1:-1:-1;;;;;;62617:50:0;;-1:-1:-1;;;62617:50:0;;:90;;;62671:36;62695:11;62671:23;:36::i;32532:166::-;32440:6;;-1:-1:-1;;;;;32440:6:0;30456:10;32592:23;32588:103;;32639:40;;-1:-1:-1;;;32639:40:0;;30456:10;32639:40;;;3793:51:1;3766:18;;32639:40:0;3647:203:1;32588:103:0;32532:166::o;59526:247::-;59589:7;48912:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48912:16:0;;59653:90;;59700:31;;-1:-1:-1;;;59700:31:0;;;;;4438:25:1;;;4411:18;;59700:31:0;4292:177:1;57758:122:0;57839:33;57848:2;57852:7;57861:4;57867;57839:8;:33::i;70898:212::-;71038:7;71070:32;71084:2;71088:7;71097:4;71070:13;:32::i;:::-;71063:39;70898:212;-1:-1:-1;;;;70898:212:0:o;58965:318::-;-1:-1:-1;;;;;59073:22:0;;59069:93;;59119:31;;-1:-1:-1;;;59119:31:0;;-1:-1:-1;;;;;3811:32:1;;59119:31:0;;;3793:51:1;3766:18;;59119:31:0;3647:203:1;59069:93:0;-1:-1:-1;;;;;59172:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;59172:46:0;;;;;;;;;;59234:41;;1429::1;;;59234::0;;1402:18:1;59234:41:0;;;;;;;58965:318;;;:::o;53877:102::-;53945:26;53955:2;53959:7;53945:26;;;;;;;;;;;;:9;:26::i;60323:799::-;-1:-1:-1;;;;;60440:14:0;;;:18;60436:679;;60479:71;;-1:-1:-1;;;60479:71:0;;-1:-1:-1;;;;;60479:36:0;;;;;:71;;30456:10;;60530:4;;60536:7;;60545:4;;60479:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60479:71:0;;;;;;;;-1:-1:-1;;60479:71:0;;;;;;;;;;;;:::i;:::-;;;60475:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60793:6;:13;60810:1;60793:18;60789:300;;60843:25;;-1:-1:-1;;;60843:25:0;;-1:-1:-1;;;;;3811:32:1;;60843:25:0;;;3793:51:1;3766:18;;60843:25:0;3647:203:1;60789:300:0;61039:6;61033:13;61024:6;61020:2;61016:15;61009:38;60475:629;-1:-1:-1;;;;;;60598:51:0;;-1:-1:-1;;;60598:51:0;60594:132;;60681:25;;-1:-1:-1;;;60681:25:0;;-1:-1:-1;;;;;3811:32:1;;60681:25:0;;;3793:51:1;3766:18;;60681:25:0;3647:203:1;69016:100:0;69068:13;69101:7;69094:14;;;;;:::i;27146:718::-;27202:13;27253:14;27270:17;27281:5;27270:10;:17::i;:::-;27290:1;27270:21;27253:38;;27306:20;27340:6;27329:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27329:18:0;-1:-1:-1;27306:41:0;-1:-1:-1;27471:28:0;;;27487:2;27471:28;27528:290;-1:-1:-1;;27560:5:0;-1:-1:-1;;;27697:2:0;27686:14;;27681:32;27560:5;27668:46;27760:2;27751:11;;;-1:-1:-1;27781:21:0;27528:290;27781:21;-1:-1:-1;27839:6:0;27146:718;-1:-1:-1;;;27146:718:0:o;33233:191::-;33326:6;;;-1:-1:-1;;;;;33343:17:0;;;-1:-1:-1;;;;;;33343:17:0;;;;;;;33376:40;;33326:6;;;33343:17;33326:6;;33376:40;;33307:16;;33376:40;33296:128;33233:191;:::o;44548:305::-;44650:4;-1:-1:-1;;;;;;44687:40:0;;-1:-1:-1;;;44687:40:0;;:105;;-1:-1:-1;;;;;;;44744:48:0;;-1:-1:-1;;;44744:48:0;44687:105;:158;;;-1:-1:-1;;;;;;;;;;36308:40:0;;;44809:36;36208:148;58068:678;58230:9;:31;;;-1:-1:-1;;;;;;58243:18:0;;;;58230:31;58226:471;;;58278:13;58294:22;58308:7;58294:13;:22::i;:::-;58278:38;-1:-1:-1;;;;;;58447:18:0;;;;;;:35;;;58478:4;-1:-1:-1;;;;;58469:13:0;:5;-1:-1:-1;;;;;58469:13:0;;;58447:35;:69;;;;;58487:29;58504:5;58511:4;58487:16;:29::i;:::-;58486:30;58447:69;58443:144;;;58544:27;;-1:-1:-1;;;58544:27:0;;-1:-1:-1;;;;;3811:32:1;;58544:27:0;;;3793:51:1;3766:18;;58544:27:0;3647:203:1;58443:144:0;58607:9;58603:83;;;58662:7;58658:2;-1:-1:-1;;;;;58642:28:0;58651:5;-1:-1:-1;;;;;58642:28:0;;;;;;;;;;;58603:83;58263:434;58226:471;-1:-1:-1;;58709:24:0;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;58709:29:0;-1:-1:-1;;;;;58709:29:0;;;;;;;;;;58068:678::o;63608:640::-;63703:7;63723:21;63747:32;63761:2;63765:7;63774:4;63747:13;:32::i;:::-;63723:56;-1:-1:-1;;;;;;63796:27:0;;63792:214;;63840:40;63872:7;65072:10;:17;;65045:24;;;;:15;:24;;;;;:44;;;65100:24;;;;;;;;;;;;64968:164;63840:40;63792:214;;;63919:2;-1:-1:-1;;;;;63902:19:0;:13;-1:-1:-1;;;;;63902:19:0;;63898:108;;63938:56;63971:13;63986:7;63938:32;:56::i;:::-;-1:-1:-1;;;;;64020:16:0;;64016:192;;64053:45;64090:7;64053:36;:45::i;:::-;64016:192;;;64137:2;-1:-1:-1;;;;;64120:19:0;:13;-1:-1:-1;;;;;64120:19:0;;64116:92;;64156:40;64184:2;64188:7;64156:27;:40::i;54206:185::-;54301:18;54307:2;54311:7;54301:5;:18::i;:::-;54330:53;54361:1;54365:2;54369:7;54378:4;54330:22;:53::i;23550:948::-;23603:7;;-1:-1:-1;;;23681:17:0;;23677:106;;-1:-1:-1;;;23719:17:0;;;-1:-1:-1;23765:2:0;23755:12;23677:106;23810:8;23801:5;:17;23797:106;;23848:8;23839:17;;;-1:-1:-1;23885:2:0;23875:12;23797:106;23930:8;23921:5;:17;23917:106;;23968:8;23959:17;;;-1:-1:-1;24005:2:0;23995:12;23917:106;24050:7;24041:5;:16;24037:103;;24087:7;24078:16;;;-1:-1:-1;24123:1:0;24113:11;24037:103;24167:7;24158:5;:16;24154:103;;24204:7;24195:16;;;-1:-1:-1;24240:1:0;24230:11;24154:103;24284:7;24275:5;:16;24271:103;;24321:7;24312:16;;;-1:-1:-1;24357:1:0;24347:11;24271:103;24401:7;24392:5;:16;24388:68;;24439:1;24429:11;24484:6;23550:948;-1:-1:-1;;23550:948:0:o;52019:824::-;52105:7;48912:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48912:16:0;;;;52220:18;;;52216:88;;52255:37;52272:4;52278;52284:7;52255:16;:37::i;:::-;-1:-1:-1;;;;;52351:18:0;;;52347:263;;52469:48;52486:1;52490:7;52507:1;52511:5;52469:8;:48::i;:::-;-1:-1:-1;;;;;52563:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;52563:20:0;;;52347:263;-1:-1:-1;;;;;52626:16:0;;;52622:111;;-1:-1:-1;;;;;52688:13:0;;;;;;:9;:13;;;;;:18;;52705:1;52688:18;;;52622:111;52745:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52745:21:0;-1:-1:-1;;;;;52745:21:0;;;;;;;;;52784:27;;52745:16;;52784:27;;;;;;;52831:4;52019:824;-1:-1:-1;;;;52019:824:0:o;65759:977::-;66025:22;66050:15;66060:4;66050:9;:15::i;:::-;66076:18;66097:26;;;:17;:26;;;;;;66025:40;;-1:-1:-1;66230:28:0;;;66226:328;;-1:-1:-1;;;;;66297:18:0;;66275:19;66297:18;;;:12;:18;;;;;;;;:34;;;;;;;;;66348:30;;;;;;:44;;;66465:30;;:17;:30;;;;;:43;;;66226:328;-1:-1:-1;66650:26:0;;;;:17;:26;;;;;;;;66643:33;;;-1:-1:-1;;;;;66694:18:0;;;;;:12;:18;;;;;:34;;;;;;;66687:41;65759:977::o;67031:1079::-;67309:10;:17;67284:22;;67309:21;;67329:1;;67309:21;:::i;:::-;67341:18;67362:24;;;:15;:24;;;;;;67735:10;:26;;67284:46;;-1:-1:-1;67362:24:0;;67284:46;;67735:26;;;;;;:::i;:::-;;;;;;;;;67713:48;;67799:11;67774:10;67785;67774:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;67879:28;;;:15;:28;;;;;;;:41;;;68051:24;;;;;68044:31;68086:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;67102:1008;;;67031:1079;:::o;64549:218::-;64634:14;64667:1;64651:13;64661:2;64651:9;:13::i;:::-;:17;;;;:::i;:::-;-1:-1:-1;;;;;64679:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;64724:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;64549:218:0:o;53179:335::-;-1:-1:-1;;;;;53247:16:0;;53243:89;;53287:33;;-1:-1:-1;;;53287:33:0;;53317:1;53287:33;;;3793:51:1;3766:18;;53287:33:0;3647:203:1;53243:89:0;53342:21;53366:32;53374:2;53378:7;53395:1;53366:7;:32::i;:::-;53342:56;-1:-1:-1;;;;;;53413:27:0;;;53409:98;;53464:31;;-1:-1:-1;;;53464:31:0;;53492:1;53464:31;;;3793:51:1;3766:18;;53464:31:0;3647:203:1;50226:376:0;50339:38;50353:5;50360:7;50369;50339:13;:38::i;:::-;50334:261;;-1:-1:-1;;;;;50398:19:0;;50394:190;;50445:31;;-1:-1:-1;;;50445:31:0;;;;;4438:25:1;;;4411:18;;50445:31:0;4292:177:1;50394:190:0;50524:44;;-1:-1:-1;;;50524:44:0;;-1:-1:-1;;;;;9539:32:1;;50524:44:0;;;9521:51:1;9588:18;;;9581:34;;;9494:18;;50524:44:0;9347:274:1;49506:276:0;49609:4;-1:-1:-1;;;;;49646:21:0;;;;;;:128;;;49694:7;-1:-1:-1;;;;;49685:16:0;:5;-1:-1:-1;;;;;49685:16:0;;:52;;;;49705:32;49722:5;49729:7;49705:16;:32::i;:::-;49685:88;;;-1:-1:-1;;49127:7:0;49154:24;;;:15;:24;;;;;;-1:-1:-1;;;;;49154:24:0;;;49741:32;;;;;-1:-1:-1;49506:276:0:o;14:127:1:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:127;207:10;202:3;198:20;195:1;188:31;238:4;235:1;228:15;262:4;259:1;252:15;278:120;318:1;344;334:35;;349:18;;:::i;:::-;-1:-1:-1;383:9:1;;278:120::o;403:125::-;468:9;;;489:10;;;486:36;;;502:18;;:::i;533:112::-;565:1;591;581:35;;596:18;;:::i;:::-;-1:-1:-1;630:9:1;;533:112::o;903:131::-;-1:-1:-1;;;;;;977:32:1;;967:43;;957:71;;1024:1;1021;1014:12;1039:245;1097:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:52;;;1166:1;1163;1156:12;1118:52;1205:9;1192:23;1224:30;1248:5;1224:30;:::i;1481:127::-;1542:10;1537:3;1533:20;1530:1;1523:31;1573:4;1570:1;1563:15;1597:4;1594:1;1587:15;1613:632;1678:5;1708:18;1749:2;1741:6;1738:14;1735:40;;;1755:18;;:::i;:::-;1830:2;1824:9;1798:2;1884:15;;-1:-1:-1;;1880:24:1;;;1906:2;1876:33;1872:42;1860:55;;;1930:18;;;1950:22;;;1927:46;1924:72;;;1976:18;;:::i;:::-;2016:10;2012:2;2005:22;2045:6;2036:15;;2075:6;2067;2060:22;2115:3;2106:6;2101:3;2097:16;2094:25;2091:45;;;2132:1;2129;2122:12;2091:45;2182:6;2177:3;2170:4;2162:6;2158:17;2145:44;2237:1;2230:4;2221:6;2213;2209:19;2205:30;2198:41;;;;1613:632;;;;;:::o;2250:451::-;2319:6;2372:2;2360:9;2351:7;2347:23;2343:32;2340:52;;;2388:1;2385;2378:12;2340:52;2428:9;2415:23;2461:18;2453:6;2450:30;2447:50;;;2493:1;2490;2483:12;2447:50;2516:22;;2569:4;2561:13;;2557:27;-1:-1:-1;2547:55:1;;2598:1;2595;2588:12;2547:55;2621:74;2687:7;2682:2;2669:16;2664:2;2660;2656:11;2621:74;:::i;2706:250::-;2791:1;2801:113;2815:6;2812:1;2809:13;2801:113;;;2891:11;;;2885:18;2872:11;;;2865:39;2837:2;2830:10;2801:113;;;-1:-1:-1;;2948:1:1;2930:16;;2923:27;2706:250::o;2961:271::-;3003:3;3041:5;3035:12;3068:6;3063:3;3056:19;3084:76;3153:6;3146:4;3141:3;3137:14;3130:4;3123:5;3119:16;3084:76;:::i;:::-;3214:2;3193:15;-1:-1:-1;;3189:29:1;3180:39;;;;3221:4;3176:50;;2961:271;-1:-1:-1;;2961:271:1:o;3237:220::-;3386:2;3375:9;3368:21;3349:4;3406:45;3447:2;3436:9;3432:18;3424:6;3406:45;:::i;3462:180::-;3521:6;3574:2;3562:9;3553:7;3549:23;3545:32;3542:52;;;3590:1;3587;3580:12;3542:52;-1:-1:-1;3613:23:1;;3462:180;-1:-1:-1;3462:180:1:o;3855:173::-;3923:20;;-1:-1:-1;;;;;3972:31:1;;3962:42;;3952:70;;4018:1;4015;4008:12;3952:70;3855:173;;;:::o;4033:254::-;4101:6;4109;4162:2;4150:9;4141:7;4137:23;4133:32;4130:52;;;4178:1;4175;4168:12;4130:52;4201:29;4220:9;4201:29;:::i;:::-;4191:39;4277:2;4262:18;;;;4249:32;;-1:-1:-1;;;4033:254:1:o;4474:328::-;4551:6;4559;4567;4620:2;4608:9;4599:7;4595:23;4591:32;4588:52;;;4636:1;4633;4626:12;4588:52;4659:29;4678:9;4659:29;:::i;:::-;4649:39;;4707:38;4741:2;4730:9;4726:18;4707:38;:::i;:::-;4697:48;;4792:2;4781:9;4777:18;4764:32;4754:42;;4474:328;;;;;:::o;4807:260::-;4875:6;4883;4936:2;4924:9;4915:7;4911:23;4907:32;4904:52;;;4952:1;4949;4942:12;4904:52;4975:29;4994:9;4975:29;:::i;:::-;4965:39;;5023:38;5057:2;5046:9;5042:18;5023:38;:::i;:::-;5013:48;;4807:260;;;;;:::o;5072:186::-;5131:6;5184:2;5172:9;5163:7;5159:23;5155:32;5152:52;;;5200:1;5197;5190:12;5152:52;5223:29;5242:9;5223:29;:::i;5263:118::-;5349:5;5342:13;5335:21;5328:5;5325:32;5315:60;;5371:1;5368;5361:12;5386:315;5451:6;5459;5512:2;5500:9;5491:7;5487:23;5483:32;5480:52;;;5528:1;5525;5518:12;5480:52;5551:29;5570:9;5551:29;:::i;:::-;5541:39;;5630:2;5619:9;5615:18;5602:32;5643:28;5665:5;5643:28;:::i;:::-;5690:5;5680:15;;;5386:315;;;;;:::o;5706:667::-;5801:6;5809;5817;5825;5878:3;5866:9;5857:7;5853:23;5849:33;5846:53;;;5895:1;5892;5885:12;5846:53;5918:29;5937:9;5918:29;:::i;:::-;5908:39;;5966:38;6000:2;5989:9;5985:18;5966:38;:::i;:::-;5956:48;;6051:2;6040:9;6036:18;6023:32;6013:42;;6106:2;6095:9;6091:18;6078:32;6133:18;6125:6;6122:30;6119:50;;;6165:1;6162;6155:12;6119:50;6188:22;;6241:4;6233:13;;6229:27;-1:-1:-1;6219:55:1;;6270:1;6267;6260:12;6219:55;6293:74;6359:7;6354:2;6341:16;6336:2;6332;6328:11;6293:74;:::i;:::-;6283:84;;;5706:667;;;;;;;:::o;6378:380::-;6457:1;6453:12;;;;6500;;;6521:61;;6575:4;6567:6;6563:17;6553:27;;6521:61;6628:2;6620:6;6617:14;6597:18;6594:38;6591:161;;6674:10;6669:3;6665:20;6662:1;6655:31;6709:4;6706:1;6699:15;6737:4;6734:1;6727:15;6591:161;;6378:380;;;:::o;6889:545::-;6991:2;6986:3;6983:11;6980:448;;;7027:1;7052:5;7048:2;7041:17;7097:4;7093:2;7083:19;7167:2;7155:10;7151:19;7148:1;7144:27;7138:4;7134:38;7203:4;7191:10;7188:20;7185:47;;;-1:-1:-1;7226:4:1;7185:47;7281:2;7276:3;7272:12;7269:1;7265:20;7259:4;7255:31;7245:41;;7336:82;7354:2;7347:5;7344:13;7336:82;;;7399:17;;;7380:1;7369:13;7336:82;;;7340:3;;;6889:545;;;:::o;7610:1352::-;7736:3;7730:10;7763:18;7755:6;7752:30;7749:56;;;7785:18;;:::i;:::-;7814:97;7904:6;7864:38;7896:4;7890:11;7864:38;:::i;:::-;7858:4;7814:97;:::i;:::-;7966:4;;8030:2;8019:14;;8047:1;8042:663;;;;8749:1;8766:6;8763:89;;;-1:-1:-1;8818:19:1;;;8812:26;8763:89;-1:-1:-1;;7567:1:1;7563:11;;;7559:24;7555:29;7545:40;7591:1;7587:11;;;7542:57;8865:81;;8012:944;;8042:663;6836:1;6829:14;;;6873:4;6860:18;;-1:-1:-1;;8078:20:1;;;8196:236;8210:7;8207:1;8204:14;8196:236;;;8299:19;;;8293:26;8278:42;;8391:27;;;;8359:1;8347:14;;;;8226:19;;8196:236;;;8200:3;8460:6;8451:7;8448:19;8445:201;;;8521:19;;;8515:26;-1:-1:-1;;8604:1:1;8600:14;;;8616:3;8596:24;8592:37;8588:42;8573:58;8558:74;;8445:201;-1:-1:-1;;;;;8692:1:1;8676:14;;;8672:22;8659:36;;-1:-1:-1;7610:1352:1:o;9626:128::-;9693:9;;;9714:11;;;9711:37;;;9728:18;;:::i;9759:184::-;9829:6;9882:2;9870:9;9861:7;9857:23;9853:32;9850:52;;;9898:1;9895;9888:12;9850:52;-1:-1:-1;9921:16:1;;9759:184;-1:-1:-1;9759:184:1:o;9948:245::-;10015:6;10068:2;10056:9;10047:7;10043:23;10039:32;10036:52;;;10084:1;10081;10074:12;10036:52;10116:9;10110:16;10135:28;10157:5;10135:28;:::i;10198:127::-;10259:10;10254:3;10250:20;10247:1;10240:31;10290:4;10287:1;10280:15;10314:4;10311:1;10304:15;11086:496;11265:3;11303:6;11297:13;11319:66;11378:6;11373:3;11366:4;11358:6;11354:17;11319:66;:::i;:::-;11448:13;;11407:16;;;;11470:70;11448:13;11407:16;11517:4;11505:17;;11470:70;:::i;:::-;11556:20;;11086:496;-1:-1:-1;;;;11086:496:1:o;12966:489::-;-1:-1:-1;;;;;13235:15:1;;;13217:34;;13287:15;;13282:2;13267:18;;13260:43;13334:2;13319:18;;13312:34;;;13382:3;13377:2;13362:18;;13355:31;;;13160:4;;13403:46;;13429:19;;13421:6;13403:46;:::i;:::-;13395:54;12966:489;-1:-1:-1;;;;;;12966:489:1:o;13460:249::-;13529:6;13582:2;13570:9;13561:7;13557:23;13553:32;13550:52;;;13598:1;13595;13588:12;13550:52;13630:9;13624:16;13649:30;13673:5;13649:30;:::i;13714:127::-;13775:10;13770:3;13766:20;13763:1;13756:31;13806:4;13803:1;13796:15;13830:4;13827:1;13820:15

Swarm Source

ipfs://bc33e55ccc369ad3374daa348d32c8972c3531db1851bb802c6cd6cf294df396

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

A utility NFT collection of symbiotes that have new and unique features like harvesting along with staking to receive tokens, these items work in the form of a wallet that can receive and store a percentage of sales randomly that can be withdrawn by the owner.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.