ETH Price: $3,314.20 (-1.58%)
Gas: 1 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

0 ERC20 ***

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ERC20 ***
0xa3de303cd59e25f470b3e6f85a4adbb0f0a0a751
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PandaItem

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (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; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            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 (rounding == Rounding.Up && 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 down.
     *
     * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        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), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @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) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: 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 caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

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

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @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 virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being 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`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: contracts/PandaItem.sol

// contracts/GameItem.sol

pragma solidity ^0.8.0;



contract PandaItem is ERC721URIStorage {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    constructor() ERC721("PandaItem", "PIM") {}

    function awardItem(address player, string memory tokenURI)
        public
        returns (uint256)
    {
        uint256 newItemId = _tokenIds.current();
        _mint(player, newItemId);
        _setTokenURI(newItemId, tokenURI);

        _tokenIds.increment();
        return newItemId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"awardItem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f50616e64614974656d00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f50494d000000000000000000000000000000000000000000000000000000000081525081600090816200008f919062000324565b508060019081620000a1919062000324565b5050506200040b565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200012c57607f821691505b602082108103620001425762000141620000e4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200016d565b620001b886836200016d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000205620001ff620001f984620001d0565b620001da565b620001d0565b9050919050565b6000819050919050565b6200022183620001e4565b6200023962000230826200020c565b8484546200017a565b825550505050565b600090565b6200025062000241565b6200025d81848462000216565b505050565b5b8181101562000285576200027960008262000246565b60018101905062000263565b5050565b601f821115620002d4576200029e8162000148565b620002a9846200015d565b81016020851015620002b9578190505b620002d1620002c8856200015d565b83018262000262565b50505b505050565b600082821c905092915050565b6000620002f960001984600802620002d9565b1980831691505092915050565b6000620003148383620002e6565b9150826002028217905092915050565b6200032f82620000aa565b67ffffffffffffffff8111156200034b576200034a620000b5565b5b62000357825462000113565b6200036482828562000289565b600060209050601f8311600181146200039c576000841562000387578287015190505b62000393858262000306565b86555062000403565b601f198416620003ac8662000148565b60005b82811015620003d657848901518255600182019150602085019450602081019050620003af565b86831015620003f65784890151620003f2601f891682620002e6565b8355505b6001600288020188555050505b505050505050565b612a47806200041b6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063b88d4fde11610066578063b88d4fde1461025b578063c87b56dd14610277578063cf378343146102a7578063e985e9c5146102d7576100ea565b806370a08231146101f157806395d89b4114610221578063a22cb4651461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a55780636352211e146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611936565b610307565b604051610116919061197e565b60405180910390f35b6101276103e9565b6040516101349190611a29565b60405180910390f35b61015760048036038101906101529190611a81565b61047b565b6040516101649190611aef565b60405180910390f35b61018760048036038101906101829190611b36565b6104c1565b005b6101a3600480360381019061019e9190611b76565b6105d8565b005b6101bf60048036038101906101ba9190611b76565b610638565b005b6101db60048036038101906101d69190611a81565b610658565b6040516101e89190611aef565b60405180910390f35b61020b60048036038101906102069190611bc9565b6106de565b6040516102189190611c05565b60405180910390f35b610229610795565b6040516102369190611a29565b60405180910390f35b61025960048036038101906102549190611c4c565b610827565b005b61027560048036038101906102709190611dc1565b61083d565b005b610291600480360381019061028c9190611a81565b61089f565b60405161029e9190611a29565b60405180910390f35b6102c160048036038101906102bc9190611ee5565b6109b1565b6040516102ce9190611c05565b60405180910390f35b6102f160048036038101906102ec9190611f41565b6109e8565b6040516102fe919061197e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103e257506103e182610a7c565b5b9050919050565b6060600080546103f890611fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461042490611fb0565b80156104715780601f1061044657610100808354040283529160200191610471565b820191906000526020600020905b81548152906001019060200180831161045457829003601f168201915b5050505050905090565b600061048682610ae6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104cc82610658565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361053c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053390612053565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661055b610b31565b73ffffffffffffffffffffffffffffffffffffffff16148061058a575061058981610584610b31565b6109e8565b5b6105c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c0906120e5565b60405180910390fd5b6105d38383610b39565b505050565b6105e96105e3610b31565b82610bf2565b610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90612177565b60405180910390fd5b610633838383610c87565b505050565b6106538383836040518060200160405280600081525061083d565b505050565b60008061066483610f80565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cc906121e3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361074e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074590612275565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107a490611fb0565b80601f01602080910402602001604051908101604052809291908181526020018280546107d090611fb0565b801561081d5780601f106107f25761010080835404028352916020019161081d565b820191906000526020600020905b81548152906001019060200180831161080057829003601f168201915b5050505050905090565b610839610832610b31565b8383610fbd565b5050565b61084e610848610b31565b83610bf2565b61088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490612177565b60405180910390fd5b61089984848484611129565b50505050565b60606108aa82610ae6565b60006006600084815260200190815260200160002080546108ca90611fb0565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690611fb0565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b505050505090506000610954611185565b905060008151036109695781925050506109ac565b60008251111561099e5780826040516020016109869291906122d1565b604051602081830303815290604052925050506109ac565b6109a78461119c565b925050505b919050565b6000806109be6007611204565b90506109ca8482611212565b6109d4818461142f565b6109de600761149c565b8091505092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610aef816114b2565b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b25906121e3565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610bac83610658565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610bfe83610658565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c405750610c3f81856109e8565b5b80610c7e57508373ffffffffffffffffffffffffffffffffffffffff16610c668461047b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610ca782610658565b73ffffffffffffffffffffffffffffffffffffffff1614610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490612367565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d63906123f9565b60405180910390fd5b610d7983838360016114f3565b8273ffffffffffffffffffffffffffffffffffffffff16610d9982610658565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690612367565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f7b83838360016114f9565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612465565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161111c919061197e565b60405180910390a3505050565b611134848484610c87565b611140848484846114ff565b61117f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611176906124f7565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606111a782610ae6565b60006111b1611185565b905060008151116111d157604051806020016040528060008152506111fc565b806111db84611686565b6040516020016111ec9291906122d1565b6040516020818303038152906040525b915050919050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890612563565b60405180910390fd5b61128a816114b2565b156112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906125cf565b60405180910390fd5b6112d86000838360016114f3565b6112e1816114b2565b15611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906125cf565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461142b6000838360016114f9565b5050565b611438826114b2565b611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90612661565b60405180910390fd5b80600660008481526020019081526020016000209081611497919061282d565b505050565b6001816000016000828254019250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166114d483610f80565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b60006115208473ffffffffffffffffffffffffffffffffffffffff16611754565b15611679578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611549610b31565b8786866040518563ffffffff1660e01b815260040161156b9493929190612954565b6020604051808303816000875af19250505080156115a757506040513d601f19601f820116820180604052508101906115a491906129b5565b60015b611629573d80600081146115d7576040519150601f19603f3d011682016040523d82523d6000602084013e6115dc565b606091505b506000815103611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906124f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061167e565b600190505b949350505050565b60606000600161169584611777565b01905060008167ffffffffffffffff8111156116b4576116b3611c96565b5b6040519080825280601f01601f1916602001820160405280156116e65781602001600182028036833780820191505090505b509050600082602001820190505b600115611749578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161173d5761173c6129e2565b5b049450600085036116f4575b819350505050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106117d5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816117cb576117ca6129e2565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611812576d04ee2d6d415b85acef81000000008381611808576118076129e2565b5b0492506020810190505b662386f26fc10000831061184157662386f26fc100008381611837576118366129e2565b5b0492506010810190505b6305f5e100831061186a576305f5e10083816118605761185f6129e2565b5b0492506008810190505b612710831061188f576127108381611885576118846129e2565b5b0492506004810190505b606483106118b257606483816118a8576118a76129e2565b5b0492506002810190505b600a83106118c1576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611913816118de565b811461191e57600080fd5b50565b6000813590506119308161190a565b92915050565b60006020828403121561194c5761194b6118d4565b5b600061195a84828501611921565b91505092915050565b60008115159050919050565b61197881611963565b82525050565b6000602082019050611993600083018461196f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119d35780820151818401526020810190506119b8565b60008484015250505050565b6000601f19601f8301169050919050565b60006119fb82611999565b611a0581856119a4565b9350611a158185602086016119b5565b611a1e816119df565b840191505092915050565b60006020820190508181036000830152611a4381846119f0565b905092915050565b6000819050919050565b611a5e81611a4b565b8114611a6957600080fd5b50565b600081359050611a7b81611a55565b92915050565b600060208284031215611a9757611a966118d4565b5b6000611aa584828501611a6c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ad982611aae565b9050919050565b611ae981611ace565b82525050565b6000602082019050611b046000830184611ae0565b92915050565b611b1381611ace565b8114611b1e57600080fd5b50565b600081359050611b3081611b0a565b92915050565b60008060408385031215611b4d57611b4c6118d4565b5b6000611b5b85828601611b21565b9250506020611b6c85828601611a6c565b9150509250929050565b600080600060608486031215611b8f57611b8e6118d4565b5b6000611b9d86828701611b21565b9350506020611bae86828701611b21565b9250506040611bbf86828701611a6c565b9150509250925092565b600060208284031215611bdf57611bde6118d4565b5b6000611bed84828501611b21565b91505092915050565b611bff81611a4b565b82525050565b6000602082019050611c1a6000830184611bf6565b92915050565b611c2981611963565b8114611c3457600080fd5b50565b600081359050611c4681611c20565b92915050565b60008060408385031215611c6357611c626118d4565b5b6000611c7185828601611b21565b9250506020611c8285828601611c37565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611cce826119df565b810181811067ffffffffffffffff82111715611ced57611cec611c96565b5b80604052505050565b6000611d006118ca565b9050611d0c8282611cc5565b919050565b600067ffffffffffffffff821115611d2c57611d2b611c96565b5b611d35826119df565b9050602081019050919050565b82818337600083830152505050565b6000611d64611d5f84611d11565b611cf6565b905082815260208101848484011115611d8057611d7f611c91565b5b611d8b848285611d42565b509392505050565b600082601f830112611da857611da7611c8c565b5b8135611db8848260208601611d51565b91505092915050565b60008060008060808587031215611ddb57611dda6118d4565b5b6000611de987828801611b21565b9450506020611dfa87828801611b21565b9350506040611e0b87828801611a6c565b925050606085013567ffffffffffffffff811115611e2c57611e2b6118d9565b5b611e3887828801611d93565b91505092959194509250565b600067ffffffffffffffff821115611e5f57611e5e611c96565b5b611e68826119df565b9050602081019050919050565b6000611e88611e8384611e44565b611cf6565b905082815260208101848484011115611ea457611ea3611c91565b5b611eaf848285611d42565b509392505050565b600082601f830112611ecc57611ecb611c8c565b5b8135611edc848260208601611e75565b91505092915050565b60008060408385031215611efc57611efb6118d4565b5b6000611f0a85828601611b21565b925050602083013567ffffffffffffffff811115611f2b57611f2a6118d9565b5b611f3785828601611eb7565b9150509250929050565b60008060408385031215611f5857611f576118d4565b5b6000611f6685828601611b21565b9250506020611f7785828601611b21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fc857607f821691505b602082108103611fdb57611fda611f81565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061203d6021836119a4565b915061204882611fe1565b604082019050919050565b6000602082019050818103600083015261206c81612030565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006120cf603d836119a4565b91506120da82612073565b604082019050919050565b600060208201905081810360008301526120fe816120c2565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612161602d836119a4565b915061216c82612105565b604082019050919050565b6000602082019050818103600083015261219081612154565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006121cd6018836119a4565b91506121d882612197565b602082019050919050565b600060208201905081810360008301526121fc816121c0565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061225f6029836119a4565b915061226a82612203565b604082019050919050565b6000602082019050818103600083015261228e81612252565b9050919050565b600081905092915050565b60006122ab82611999565b6122b58185612295565b93506122c58185602086016119b5565b80840191505092915050565b60006122dd82856122a0565b91506122e982846122a0565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006123516025836119a4565b915061235c826122f5565b604082019050919050565b6000602082019050818103600083015261238081612344565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006123e36024836119a4565b91506123ee82612387565b604082019050919050565b60006020820190508181036000830152612412816123d6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061244f6019836119a4565b915061245a82612419565b602082019050919050565b6000602082019050818103600083015261247e81612442565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006124e16032836119a4565b91506124ec82612485565b604082019050919050565b60006020820190508181036000830152612510816124d4565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061254d6020836119a4565b915061255882612517565b602082019050919050565b6000602082019050818103600083015261257c81612540565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006125b9601c836119a4565b91506125c482612583565b602082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061264b602e836119a4565b9150612656826125ef565b604082019050919050565b6000602082019050818103600083015261267a8161263e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026126e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826126a6565b6126ed86836126a6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061272a61272561272084611a4b565b612705565b611a4b565b9050919050565b6000819050919050565b6127448361270f565b61275861275082612731565b8484546126b3565b825550505050565b600090565b61276d612760565b61277881848461273b565b505050565b5b8181101561279c57612791600082612765565b60018101905061277e565b5050565b601f8211156127e1576127b281612681565b6127bb84612696565b810160208510156127ca578190505b6127de6127d685612696565b83018261277d565b50505b505050565b600082821c905092915050565b6000612804600019846008026127e6565b1980831691505092915050565b600061281d83836127f3565b9150826002028217905092915050565b61283682611999565b67ffffffffffffffff81111561284f5761284e611c96565b5b6128598254611fb0565b6128648282856127a0565b600060209050601f8311600181146128975760008415612885578287015190505b61288f8582612811565b8655506128f7565b601f1984166128a586612681565b60005b828110156128cd578489015182556001820191506020850194506020810190506128a8565b868310156128ea57848901516128e6601f8916826127f3565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b6000612926826128ff565b612930818561290a565b93506129408185602086016119b5565b612949816119df565b840191505092915050565b60006080820190506129696000830187611ae0565b6129766020830186611ae0565b6129836040830185611bf6565b8181036060830152612995818461291b565b905095945050505050565b6000815190506129af8161190a565b92915050565b6000602082840312156129cb576129ca6118d4565b5b60006129d9848285016129a0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212203c6f09e1e7c561d5abe7ae115ce12a5816fd0ac71d8b793be954a95615fa077c64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063b88d4fde11610066578063b88d4fde1461025b578063c87b56dd14610277578063cf378343146102a7578063e985e9c5146102d7576100ea565b806370a08231146101f157806395d89b4114610221578063a22cb4651461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a55780636352211e146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611936565b610307565b604051610116919061197e565b60405180910390f35b6101276103e9565b6040516101349190611a29565b60405180910390f35b61015760048036038101906101529190611a81565b61047b565b6040516101649190611aef565b60405180910390f35b61018760048036038101906101829190611b36565b6104c1565b005b6101a3600480360381019061019e9190611b76565b6105d8565b005b6101bf60048036038101906101ba9190611b76565b610638565b005b6101db60048036038101906101d69190611a81565b610658565b6040516101e89190611aef565b60405180910390f35b61020b60048036038101906102069190611bc9565b6106de565b6040516102189190611c05565b60405180910390f35b610229610795565b6040516102369190611a29565b60405180910390f35b61025960048036038101906102549190611c4c565b610827565b005b61027560048036038101906102709190611dc1565b61083d565b005b610291600480360381019061028c9190611a81565b61089f565b60405161029e9190611a29565b60405180910390f35b6102c160048036038101906102bc9190611ee5565b6109b1565b6040516102ce9190611c05565b60405180910390f35b6102f160048036038101906102ec9190611f41565b6109e8565b6040516102fe919061197e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103e257506103e182610a7c565b5b9050919050565b6060600080546103f890611fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461042490611fb0565b80156104715780601f1061044657610100808354040283529160200191610471565b820191906000526020600020905b81548152906001019060200180831161045457829003601f168201915b5050505050905090565b600061048682610ae6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104cc82610658565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361053c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053390612053565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661055b610b31565b73ffffffffffffffffffffffffffffffffffffffff16148061058a575061058981610584610b31565b6109e8565b5b6105c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c0906120e5565b60405180910390fd5b6105d38383610b39565b505050565b6105e96105e3610b31565b82610bf2565b610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90612177565b60405180910390fd5b610633838383610c87565b505050565b6106538383836040518060200160405280600081525061083d565b505050565b60008061066483610f80565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cc906121e3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361074e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074590612275565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107a490611fb0565b80601f01602080910402602001604051908101604052809291908181526020018280546107d090611fb0565b801561081d5780601f106107f25761010080835404028352916020019161081d565b820191906000526020600020905b81548152906001019060200180831161080057829003601f168201915b5050505050905090565b610839610832610b31565b8383610fbd565b5050565b61084e610848610b31565b83610bf2565b61088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490612177565b60405180910390fd5b61089984848484611129565b50505050565b60606108aa82610ae6565b60006006600084815260200190815260200160002080546108ca90611fb0565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690611fb0565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b505050505090506000610954611185565b905060008151036109695781925050506109ac565b60008251111561099e5780826040516020016109869291906122d1565b604051602081830303815290604052925050506109ac565b6109a78461119c565b925050505b919050565b6000806109be6007611204565b90506109ca8482611212565b6109d4818461142f565b6109de600761149c565b8091505092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610aef816114b2565b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b25906121e3565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610bac83610658565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610bfe83610658565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c405750610c3f81856109e8565b5b80610c7e57508373ffffffffffffffffffffffffffffffffffffffff16610c668461047b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610ca782610658565b73ffffffffffffffffffffffffffffffffffffffff1614610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490612367565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d63906123f9565b60405180910390fd5b610d7983838360016114f3565b8273ffffffffffffffffffffffffffffffffffffffff16610d9982610658565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690612367565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f7b83838360016114f9565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612465565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161111c919061197e565b60405180910390a3505050565b611134848484610c87565b611140848484846114ff565b61117f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611176906124f7565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606111a782610ae6565b60006111b1611185565b905060008151116111d157604051806020016040528060008152506111fc565b806111db84611686565b6040516020016111ec9291906122d1565b6040516020818303038152906040525b915050919050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890612563565b60405180910390fd5b61128a816114b2565b156112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906125cf565b60405180910390fd5b6112d86000838360016114f3565b6112e1816114b2565b15611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906125cf565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461142b6000838360016114f9565b5050565b611438826114b2565b611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90612661565b60405180910390fd5b80600660008481526020019081526020016000209081611497919061282d565b505050565b6001816000016000828254019250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166114d483610f80565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b60006115208473ffffffffffffffffffffffffffffffffffffffff16611754565b15611679578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611549610b31565b8786866040518563ffffffff1660e01b815260040161156b9493929190612954565b6020604051808303816000875af19250505080156115a757506040513d601f19601f820116820180604052508101906115a491906129b5565b60015b611629573d80600081146115d7576040519150601f19603f3d011682016040523d82523d6000602084013e6115dc565b606091505b506000815103611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906124f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061167e565b600190505b949350505050565b60606000600161169584611777565b01905060008167ffffffffffffffff8111156116b4576116b3611c96565b5b6040519080825280601f01601f1916602001820160405280156116e65781602001600182028036833780820191505090505b509050600082602001820190505b600115611749578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161173d5761173c6129e2565b5b049450600085036116f4575b819350505050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106117d5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816117cb576117ca6129e2565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611812576d04ee2d6d415b85acef81000000008381611808576118076129e2565b5b0492506020810190505b662386f26fc10000831061184157662386f26fc100008381611837576118366129e2565b5b0492506010810190505b6305f5e100831061186a576305f5e10083816118605761185f6129e2565b5b0492506008810190505b612710831061188f576127108381611885576118846129e2565b5b0492506004810190505b606483106118b257606483816118a8576118a76129e2565b5b0492506002810190505b600a83106118c1576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611913816118de565b811461191e57600080fd5b50565b6000813590506119308161190a565b92915050565b60006020828403121561194c5761194b6118d4565b5b600061195a84828501611921565b91505092915050565b60008115159050919050565b61197881611963565b82525050565b6000602082019050611993600083018461196f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119d35780820151818401526020810190506119b8565b60008484015250505050565b6000601f19601f8301169050919050565b60006119fb82611999565b611a0581856119a4565b9350611a158185602086016119b5565b611a1e816119df565b840191505092915050565b60006020820190508181036000830152611a4381846119f0565b905092915050565b6000819050919050565b611a5e81611a4b565b8114611a6957600080fd5b50565b600081359050611a7b81611a55565b92915050565b600060208284031215611a9757611a966118d4565b5b6000611aa584828501611a6c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ad982611aae565b9050919050565b611ae981611ace565b82525050565b6000602082019050611b046000830184611ae0565b92915050565b611b1381611ace565b8114611b1e57600080fd5b50565b600081359050611b3081611b0a565b92915050565b60008060408385031215611b4d57611b4c6118d4565b5b6000611b5b85828601611b21565b9250506020611b6c85828601611a6c565b9150509250929050565b600080600060608486031215611b8f57611b8e6118d4565b5b6000611b9d86828701611b21565b9350506020611bae86828701611b21565b9250506040611bbf86828701611a6c565b9150509250925092565b600060208284031215611bdf57611bde6118d4565b5b6000611bed84828501611b21565b91505092915050565b611bff81611a4b565b82525050565b6000602082019050611c1a6000830184611bf6565b92915050565b611c2981611963565b8114611c3457600080fd5b50565b600081359050611c4681611c20565b92915050565b60008060408385031215611c6357611c626118d4565b5b6000611c7185828601611b21565b9250506020611c8285828601611c37565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611cce826119df565b810181811067ffffffffffffffff82111715611ced57611cec611c96565b5b80604052505050565b6000611d006118ca565b9050611d0c8282611cc5565b919050565b600067ffffffffffffffff821115611d2c57611d2b611c96565b5b611d35826119df565b9050602081019050919050565b82818337600083830152505050565b6000611d64611d5f84611d11565b611cf6565b905082815260208101848484011115611d8057611d7f611c91565b5b611d8b848285611d42565b509392505050565b600082601f830112611da857611da7611c8c565b5b8135611db8848260208601611d51565b91505092915050565b60008060008060808587031215611ddb57611dda6118d4565b5b6000611de987828801611b21565b9450506020611dfa87828801611b21565b9350506040611e0b87828801611a6c565b925050606085013567ffffffffffffffff811115611e2c57611e2b6118d9565b5b611e3887828801611d93565b91505092959194509250565b600067ffffffffffffffff821115611e5f57611e5e611c96565b5b611e68826119df565b9050602081019050919050565b6000611e88611e8384611e44565b611cf6565b905082815260208101848484011115611ea457611ea3611c91565b5b611eaf848285611d42565b509392505050565b600082601f830112611ecc57611ecb611c8c565b5b8135611edc848260208601611e75565b91505092915050565b60008060408385031215611efc57611efb6118d4565b5b6000611f0a85828601611b21565b925050602083013567ffffffffffffffff811115611f2b57611f2a6118d9565b5b611f3785828601611eb7565b9150509250929050565b60008060408385031215611f5857611f576118d4565b5b6000611f6685828601611b21565b9250506020611f7785828601611b21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fc857607f821691505b602082108103611fdb57611fda611f81565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061203d6021836119a4565b915061204882611fe1565b604082019050919050565b6000602082019050818103600083015261206c81612030565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006120cf603d836119a4565b91506120da82612073565b604082019050919050565b600060208201905081810360008301526120fe816120c2565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612161602d836119a4565b915061216c82612105565b604082019050919050565b6000602082019050818103600083015261219081612154565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006121cd6018836119a4565b91506121d882612197565b602082019050919050565b600060208201905081810360008301526121fc816121c0565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061225f6029836119a4565b915061226a82612203565b604082019050919050565b6000602082019050818103600083015261228e81612252565b9050919050565b600081905092915050565b60006122ab82611999565b6122b58185612295565b93506122c58185602086016119b5565b80840191505092915050565b60006122dd82856122a0565b91506122e982846122a0565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006123516025836119a4565b915061235c826122f5565b604082019050919050565b6000602082019050818103600083015261238081612344565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006123e36024836119a4565b91506123ee82612387565b604082019050919050565b60006020820190508181036000830152612412816123d6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061244f6019836119a4565b915061245a82612419565b602082019050919050565b6000602082019050818103600083015261247e81612442565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006124e16032836119a4565b91506124ec82612485565b604082019050919050565b60006020820190508181036000830152612510816124d4565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061254d6020836119a4565b915061255882612517565b602082019050919050565b6000602082019050818103600083015261257c81612540565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006125b9601c836119a4565b91506125c482612583565b602082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061264b602e836119a4565b9150612656826125ef565b604082019050919050565b6000602082019050818103600083015261267a8161263e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026126e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826126a6565b6126ed86836126a6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061272a61272561272084611a4b565b612705565b611a4b565b9050919050565b6000819050919050565b6127448361270f565b61275861275082612731565b8484546126b3565b825550505050565b600090565b61276d612760565b61277881848461273b565b505050565b5b8181101561279c57612791600082612765565b60018101905061277e565b5050565b601f8211156127e1576127b281612681565b6127bb84612696565b810160208510156127ca578190505b6127de6127d685612696565b83018261277d565b50505b505050565b600082821c905092915050565b6000612804600019846008026127e6565b1980831691505092915050565b600061281d83836127f3565b9150826002028217905092915050565b61283682611999565b67ffffffffffffffff81111561284f5761284e611c96565b5b6128598254611fb0565b6128648282856127a0565b600060209050601f8311600181146128975760008415612885578287015190505b61288f8582612811565b8655506128f7565b601f1984166128a586612681565b60005b828110156128cd578489015182556001820191506020850194506020810190506128a8565b868310156128ea57848901516128e6601f8916826127f3565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b6000612926826128ff565b612930818561290a565b93506129408185602086016119b5565b612949816119df565b840191505092915050565b60006080820190506129696000830187611ae0565b6129766020830186611ae0565b6129836040830185611bf6565b8181036060830152612995818461291b565b905095945050505050565b6000815190506129af8161190a565b92915050565b6000602082840312156129cb576129ca6118d4565b5b60006129d9848285016129a0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212203c6f09e1e7c561d5abe7ae115ce12a5816fd0ac71d8b793be954a95615fa077c64736f6c63430008120033

Deployed Bytecode Sourcemap

55561:490:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37309:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38237:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39749:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39267:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40449:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40855:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37947:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37678:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38406:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39992:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41111:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54030:624;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55743:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40218:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37309:305;37411:4;37463:25;37448:40;;;:11;:40;;;;:105;;;;37520:33;37505:48;;;:11;:48;;;;37448:105;:158;;;;37570:36;37594:11;37570:23;:36::i;:::-;37448:158;37428:178;;37309:305;;;:::o;38237:100::-;38291:13;38324:5;38317:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38237:100;:::o;39749:171::-;39825:7;39845:23;39860:7;39845:14;:23::i;:::-;39888:15;:24;39904:7;39888:24;;;;;;;;;;;;;;;;;;;;;39881:31;;39749:171;;;:::o;39267:416::-;39348:13;39364:23;39379:7;39364:14;:23::i;:::-;39348:39;;39412:5;39406:11;;:2;:11;;;39398:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39506:5;39490:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;39515:37;39532:5;39539:12;:10;:12::i;:::-;39515:16;:37::i;:::-;39490:62;39468:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;39654:21;39663:2;39667:7;39654:8;:21::i;:::-;39337:346;39267:416;;:::o;40449:335::-;40644:41;40663:12;:10;:12::i;:::-;40677:7;40644:18;:41::i;:::-;40636:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;40748:28;40758:4;40764:2;40768:7;40748:9;:28::i;:::-;40449:335;;;:::o;40855:185::-;40993:39;41010:4;41016:2;41020:7;40993:39;;;;;;;;;;;;:16;:39::i;:::-;40855:185;;;:::o;37947:223::-;38019:7;38039:13;38055:17;38064:7;38055:8;:17::i;:::-;38039:33;;38108:1;38091:19;;:5;:19;;;38083:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;38157:5;38150:12;;;37947:223;;;:::o;37678:207::-;37750:7;37795:1;37778:19;;:5;:19;;;37770:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37861:9;:16;37871:5;37861:16;;;;;;;;;;;;;;;;37854:23;;37678:207;;;:::o;38406:104::-;38462:13;38495:7;38488:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38406:104;:::o;39992:155::-;40087:52;40106:12;:10;:12::i;:::-;40120:8;40130;40087:18;:52::i;:::-;39992:155;;:::o;41111:322::-;41285:41;41304:12;:10;:12::i;:::-;41318:7;41285:18;:41::i;:::-;41277:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;41387:38;41401:4;41407:2;41411:7;41420:4;41387:13;:38::i;:::-;41111:322;;;;:::o;54030:624::-;54103:13;54129:23;54144:7;54129:14;:23::i;:::-;54165;54191:10;:19;54202:7;54191:19;;;;;;;;;;;54165:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54221:18;54242:10;:8;:10::i;:::-;54221:31;;54350:1;54334:4;54328:18;:23;54324:72;;54375:9;54368:16;;;;;;54324:72;54526:1;54506:9;54500:23;:27;54496:108;;;54575:4;54581:9;54558:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54544:48;;;;;;54496:108;54623:23;54638:7;54623:14;:23::i;:::-;54616:30;;;;54030:624;;;;:::o;55743:305::-;55836:7;55861:17;55881:19;:9;:17;:19::i;:::-;55861:39;;55911:24;55917:6;55925:9;55911:5;:24::i;:::-;55946:33;55959:9;55970:8;55946:12;:33::i;:::-;55992:21;:9;:19;:21::i;:::-;56031:9;56024:16;;;55743:305;;;;:::o;40218:164::-;40315:4;40339:18;:25;40358:5;40339:25;;;;;;;;;;;;;;;:35;40365:8;40339:35;;;;;;;;;;;;;;;;;;;;;;;;;40332:42;;40218:164;;;;:::o;29821:157::-;29906:4;29945:25;29930:40;;;:11;:40;;;;29923:47;;29821:157;;;:::o;49568:135::-;49650:16;49658:7;49650;:16::i;:::-;49642:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;49568:135;:::o;17343:98::-;17396:7;17423:10;17416:17;;17343:98;:::o;48847:174::-;48949:2;48922:15;:24;48938:7;48922:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49005:7;49001:2;48967:46;;48976:23;48991:7;48976:14;:23::i;:::-;48967:46;;;;;;;;;;;;48847:174;;:::o;43466:264::-;43559:4;43576:13;43592:23;43607:7;43592:14;:23::i;:::-;43576:39;;43645:5;43634:16;;:7;:16;;;:52;;;;43654:32;43671:5;43678:7;43654:16;:32::i;:::-;43634:52;:87;;;;43714:7;43690:31;;:20;43702:7;43690:11;:20::i;:::-;:31;;;43634:87;43626:96;;;43466:264;;;;:::o;47465:1263::-;47624:4;47597:31;;:23;47612:7;47597:14;:23::i;:::-;:31;;;47589:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;47703:1;47689:16;;:2;:16;;;47681:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47759:42;47780:4;47786:2;47790:7;47799:1;47759:20;:42::i;:::-;47931:4;47904:31;;:23;47919:7;47904:14;:23::i;:::-;:31;;;47896:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48049:15;:24;48065:7;48049:24;;;;;;;;;;;;48042:31;;;;;;;;;;;48544:1;48525:9;:15;48535:4;48525:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;48577:1;48560:9;:13;48570:2;48560:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48619:2;48600:7;:16;48608:7;48600:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48658:7;48654:2;48639:27;;48648:4;48639:27;;;;;;;;;;;;48679:41;48699:4;48705:2;48709:7;48718:1;48679:19;:41::i;:::-;47465:1263;;;:::o;42741:117::-;42807:7;42834;:16;42842:7;42834:16;;;;;;;;;;;;;;;;;;;;;42827:23;;42741:117;;;:::o;49164:315::-;49319:8;49310:17;;:5;:17;;;49302:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49406:8;49368:18;:25;49387:5;49368:25;;;;;;;;;;;;;;;:35;49394:8;49368:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49452:8;49430:41;;49445:5;49430:41;;;49462:8;49430:41;;;;;;:::i;:::-;;;;;;;;49164:315;;;:::o;42314:313::-;42470:28;42480:4;42486:2;42490:7;42470:9;:28::i;:::-;42517:47;42540:4;42546:2;42550:7;42559:4;42517:22;:47::i;:::-;42509:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42314:313;;;;:::o;39111:94::-;39162:13;39188:9;;;;;;;;;;;;;;39111:94;:::o;38581:281::-;38654:13;38680:23;38695:7;38680:14;:23::i;:::-;38716:21;38740:10;:8;:10::i;:::-;38716:34;;38792:1;38774:7;38768:21;:25;:86;;;;;;;;;;;;;;;;;38820:7;38829:18;:7;:16;:18::i;:::-;38803:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38768:86;38761:93;;;38581:281;;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;45064:942::-;45158:1;45144:16;;:2;:16;;;45136:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45217:16;45225:7;45217;:16::i;:::-;45216:17;45208:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45279:48;45308:1;45312:2;45316:7;45325:1;45279:20;:48::i;:::-;45426:16;45434:7;45426;:16::i;:::-;45425:17;45417:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45841:1;45824:9;:13;45834:2;45824:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;45885:2;45866:7;:16;45874:7;45866:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;45930:7;45926:2;45905:33;;45922:1;45905:33;;;;;;;;;;;;45951:47;45979:1;45983:2;45987:7;45996:1;45951:19;:47::i;:::-;45064:942;;:::o;54810:217::-;54910:16;54918:7;54910;:16::i;:::-;54902:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;55010:9;54988:10;:19;54999:7;54988:19;;;;;;;;;;;:31;;;;;;:::i;:::-;;54810:217;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;43171:128::-;43236:4;43289:1;43260:31;;:17;43269:7;43260:8;:17::i;:::-;:31;;;;43253:38;;43171:128;;;:::o;51852:159::-;;;;;:::o;52733:158::-;;;;;:::o;50267:853::-;50421:4;50442:15;:2;:13;;;:15::i;:::-;50438:675;;;50494:2;50478:36;;;50515:12;:10;:12::i;:::-;50529:4;50535:7;50544:4;50478:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50474:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50736:1;50719:6;:13;:18;50715:328;;50762:60;;;;;;;;;;:::i;:::-;;;;;;;;50715:328;50993:6;50987:13;50978:6;50974:2;50970:15;50963:38;50474:584;50610:41;;;50600:51;;;:6;:51;;;;50593:58;;;;;50438:675;51097:4;51090:11;;50267:853;;;;;;;:::o;14770:716::-;14826:13;14877:14;14914:1;14894:17;14905:5;14894:10;:17::i;:::-;:21;14877:38;;14930:20;14964:6;14953:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14930:41;;14986:11;15115:6;15111:2;15107:15;15099:6;15095:28;15088:35;;15152:288;15159:4;15152:288;;;15184:5;;;;;;;;15326:8;15321:2;15314:5;15310:14;15305:30;15300:3;15292:44;15382:2;15373:11;;;;;;:::i;:::-;;;;;15416:1;15407:5;:10;15152:288;15403:21;15152:288;15461:6;15454:13;;;;;14770:716;;;:::o;18790:326::-;18850:4;19107:1;19085:7;:19;;;:23;19078:30;;18790:326;;;:::o;11636:922::-;11689:7;11709:14;11726:1;11709:18;;11776:6;11767:5;:15;11763:102;;11812:6;11803:15;;;;;;:::i;:::-;;;;;11847:2;11837:12;;;;11763:102;11892:6;11883:5;:15;11879:102;;11928:6;11919:15;;;;;;:::i;:::-;;;;;11963:2;11953:12;;;;11879:102;12008:6;11999:5;:15;11995:102;;12044:6;12035:15;;;;;;:::i;:::-;;;;;12079:2;12069:12;;;;11995:102;12124:5;12115;:14;12111:99;;12159:5;12150:14;;;;;;:::i;:::-;;;;;12193:1;12183:11;;;;12111:99;12237:5;12228;:14;12224:99;;12272:5;12263:14;;;;;;:::i;:::-;;;;;12306:1;12296:11;;;;12224:99;12350:5;12341;:14;12337:99;;12385:5;12376:14;;;;;;:::i;:::-;;;;;12419:1;12409:11;;;;12337:99;12463:5;12454;:14;12450:66;;12499:1;12489:11;;;;12450:66;12544:6;12537:13;;;11636:922;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:329::-;5574:6;5623:2;5611:9;5602:7;5598:23;5594:32;5591:119;;;5629:79;;:::i;:::-;5591:119;5749:1;5774:53;5819:7;5810:6;5799:9;5795:22;5774:53;:::i;:::-;5764:63;;5720:117;5515:329;;;;:::o;5850:118::-;5937:24;5955:5;5937:24;:::i;:::-;5932:3;5925:37;5850:118;;:::o;5974:222::-;6067:4;6105:2;6094:9;6090:18;6082:26;;6118:71;6186:1;6175:9;6171:17;6162:6;6118:71;:::i;:::-;5974:222;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:180;7231:77;7228:1;7221:88;7328:4;7325:1;7318:15;7352:4;7349:1;7342:15;7369:281;7452:27;7474:4;7452:27;:::i;:::-;7444:6;7440:40;7582:6;7570:10;7567:22;7546:18;7534:10;7531:34;7528:62;7525:88;;;7593:18;;:::i;:::-;7525:88;7633:10;7629:2;7622:22;7412:238;7369:281;;:::o;7656:129::-;7690:6;7717:20;;:::i;:::-;7707:30;;7746:33;7774:4;7766:6;7746:33;:::i;:::-;7656:129;;;:::o;7791:307::-;7852:4;7942:18;7934:6;7931:30;7928:56;;;7964:18;;:::i;:::-;7928:56;8002:29;8024:6;8002:29;:::i;:::-;7994:37;;8086:4;8080;8076:15;8068:23;;7791:307;;;:::o;8104:146::-;8201:6;8196:3;8191;8178:30;8242:1;8233:6;8228:3;8224:16;8217:27;8104:146;;;:::o;8256:423::-;8333:5;8358:65;8374:48;8415:6;8374:48;:::i;:::-;8358:65;:::i;:::-;8349:74;;8446:6;8439:5;8432:21;8484:4;8477:5;8473:16;8522:3;8513:6;8508:3;8504:16;8501:25;8498:112;;;8529:79;;:::i;:::-;8498:112;8619:54;8666:6;8661:3;8656;8619:54;:::i;:::-;8339:340;8256:423;;;;;:::o;8698:338::-;8753:5;8802:3;8795:4;8787:6;8783:17;8779:27;8769:122;;8810:79;;:::i;:::-;8769:122;8927:6;8914:20;8952:78;9026:3;9018:6;9011:4;9003:6;8999:17;8952:78;:::i;:::-;8943:87;;8759:277;8698:338;;;;:::o;9042:943::-;9137:6;9145;9153;9161;9210:3;9198:9;9189:7;9185:23;9181:33;9178:120;;;9217:79;;:::i;:::-;9178:120;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:53;9535:7;9526:6;9515:9;9511:22;9490:53;:::i;:::-;9480:63;;9435:118;9592:2;9618:53;9663:7;9654:6;9643:9;9639:22;9618:53;:::i;:::-;9608:63;;9563:118;9748:2;9737:9;9733:18;9720:32;9779:18;9771:6;9768:30;9765:117;;;9801:79;;:::i;:::-;9765:117;9906:62;9960:7;9951:6;9940:9;9936:22;9906:62;:::i;:::-;9896:72;;9691:287;9042:943;;;;;;;:::o;9991:308::-;10053:4;10143:18;10135:6;10132:30;10129:56;;;10165:18;;:::i;:::-;10129:56;10203:29;10225:6;10203:29;:::i;:::-;10195:37;;10287:4;10281;10277:15;10269:23;;9991:308;;;:::o;10305:425::-;10383:5;10408:66;10424:49;10466:6;10424:49;:::i;:::-;10408:66;:::i;:::-;10399:75;;10497:6;10490:5;10483:21;10535:4;10528:5;10524:16;10573:3;10564:6;10559:3;10555:16;10552:25;10549:112;;;10580:79;;:::i;:::-;10549:112;10670:54;10717:6;10712:3;10707;10670:54;:::i;:::-;10389:341;10305:425;;;;;:::o;10750:340::-;10806:5;10855:3;10848:4;10840:6;10836:17;10832:27;10822:122;;10863:79;;:::i;:::-;10822:122;10980:6;10967:20;11005:79;11080:3;11072:6;11065:4;11057:6;11053:17;11005:79;:::i;:::-;10996:88;;10812:278;10750:340;;;;:::o;11096:654::-;11174:6;11182;11231:2;11219:9;11210:7;11206:23;11202:32;11199:119;;;11237:79;;:::i;:::-;11199:119;11357:1;11382:53;11427:7;11418:6;11407:9;11403:22;11382:53;:::i;:::-;11372:63;;11328:117;11512:2;11501:9;11497:18;11484:32;11543:18;11535:6;11532:30;11529:117;;;11565:79;;:::i;:::-;11529:117;11670:63;11725:7;11716:6;11705:9;11701:22;11670:63;:::i;:::-;11660:73;;11455:288;11096:654;;;;;:::o;11756:474::-;11824:6;11832;11881:2;11869:9;11860:7;11856:23;11852:32;11849:119;;;11887:79;;:::i;:::-;11849:119;12007:1;12032:53;12077:7;12068:6;12057:9;12053:22;12032:53;:::i;:::-;12022:63;;11978:117;12134:2;12160:53;12205:7;12196:6;12185:9;12181:22;12160:53;:::i;:::-;12150:63;;12105:118;11756:474;;;;;:::o;12236:180::-;12284:77;12281:1;12274:88;12381:4;12378:1;12371:15;12405:4;12402:1;12395:15;12422:320;12466:6;12503:1;12497:4;12493:12;12483:22;;12550:1;12544:4;12540:12;12571:18;12561:81;;12627:4;12619:6;12615:17;12605:27;;12561:81;12689:2;12681:6;12678:14;12658:18;12655:38;12652:84;;12708:18;;:::i;:::-;12652:84;12473:269;12422:320;;;:::o;12748:220::-;12888:34;12884:1;12876:6;12872:14;12865:58;12957:3;12952:2;12944:6;12940:15;12933:28;12748:220;:::o;12974:366::-;13116:3;13137:67;13201:2;13196:3;13137:67;:::i;:::-;13130:74;;13213:93;13302:3;13213:93;:::i;:::-;13331:2;13326:3;13322:12;13315:19;;12974:366;;;:::o;13346:419::-;13512:4;13550:2;13539:9;13535:18;13527:26;;13599:9;13593:4;13589:20;13585:1;13574:9;13570:17;13563:47;13627:131;13753:4;13627:131;:::i;:::-;13619:139;;13346:419;;;:::o;13771:248::-;13911:34;13907:1;13899:6;13895:14;13888:58;13980:31;13975:2;13967:6;13963:15;13956:56;13771:248;:::o;14025:366::-;14167:3;14188:67;14252:2;14247:3;14188:67;:::i;:::-;14181:74;;14264:93;14353:3;14264:93;:::i;:::-;14382:2;14377:3;14373:12;14366:19;;14025:366;;;:::o;14397:419::-;14563:4;14601:2;14590:9;14586:18;14578:26;;14650:9;14644:4;14640:20;14636:1;14625:9;14621:17;14614:47;14678:131;14804:4;14678:131;:::i;:::-;14670:139;;14397:419;;;:::o;14822:232::-;14962:34;14958:1;14950:6;14946:14;14939:58;15031:15;15026:2;15018:6;15014:15;15007:40;14822:232;:::o;15060:366::-;15202:3;15223:67;15287:2;15282:3;15223:67;:::i;:::-;15216:74;;15299:93;15388:3;15299:93;:::i;:::-;15417:2;15412:3;15408:12;15401:19;;15060:366;;;:::o;15432:419::-;15598:4;15636:2;15625:9;15621:18;15613:26;;15685:9;15679:4;15675:20;15671:1;15660:9;15656:17;15649:47;15713:131;15839:4;15713:131;:::i;:::-;15705:139;;15432:419;;;:::o;15857:174::-;15997:26;15993:1;15985:6;15981:14;15974:50;15857:174;:::o;16037:366::-;16179:3;16200:67;16264:2;16259:3;16200:67;:::i;:::-;16193:74;;16276:93;16365:3;16276:93;:::i;:::-;16394:2;16389:3;16385:12;16378:19;;16037:366;;;:::o;16409:419::-;16575:4;16613:2;16602:9;16598:18;16590:26;;16662:9;16656:4;16652:20;16648:1;16637:9;16633:17;16626:47;16690:131;16816:4;16690:131;:::i;:::-;16682:139;;16409:419;;;:::o;16834:228::-;16974:34;16970:1;16962:6;16958:14;16951:58;17043:11;17038:2;17030:6;17026:15;17019:36;16834:228;:::o;17068:366::-;17210:3;17231:67;17295:2;17290:3;17231:67;:::i;:::-;17224:74;;17307:93;17396:3;17307:93;:::i;:::-;17425:2;17420:3;17416:12;17409:19;;17068:366;;;:::o;17440:419::-;17606:4;17644:2;17633:9;17629:18;17621:26;;17693:9;17687:4;17683:20;17679:1;17668:9;17664:17;17657:47;17721:131;17847:4;17721:131;:::i;:::-;17713:139;;17440:419;;;:::o;17865:148::-;17967:11;18004:3;17989:18;;17865:148;;;;:::o;18019:390::-;18125:3;18153:39;18186:5;18153:39;:::i;:::-;18208:89;18290:6;18285:3;18208:89;:::i;:::-;18201:96;;18306:65;18364:6;18359:3;18352:4;18345:5;18341:16;18306:65;:::i;:::-;18396:6;18391:3;18387:16;18380:23;;18129:280;18019:390;;;;:::o;18415:435::-;18595:3;18617:95;18708:3;18699:6;18617:95;:::i;:::-;18610:102;;18729:95;18820:3;18811:6;18729:95;:::i;:::-;18722:102;;18841:3;18834:10;;18415:435;;;;;:::o;18856:224::-;18996:34;18992:1;18984:6;18980:14;18973:58;19065:7;19060:2;19052:6;19048:15;19041:32;18856:224;:::o;19086:366::-;19228:3;19249:67;19313:2;19308:3;19249:67;:::i;:::-;19242:74;;19325:93;19414:3;19325:93;:::i;:::-;19443:2;19438:3;19434:12;19427:19;;19086:366;;;:::o;19458:419::-;19624:4;19662:2;19651:9;19647:18;19639:26;;19711:9;19705:4;19701:20;19697:1;19686:9;19682:17;19675:47;19739:131;19865:4;19739:131;:::i;:::-;19731:139;;19458:419;;;:::o;19883:223::-;20023:34;20019:1;20011:6;20007:14;20000:58;20092:6;20087:2;20079:6;20075:15;20068:31;19883:223;:::o;20112:366::-;20254:3;20275:67;20339:2;20334:3;20275:67;:::i;:::-;20268:74;;20351:93;20440:3;20351:93;:::i;:::-;20469:2;20464:3;20460:12;20453:19;;20112:366;;;:::o;20484:419::-;20650:4;20688:2;20677:9;20673:18;20665:26;;20737:9;20731:4;20727:20;20723:1;20712:9;20708:17;20701:47;20765:131;20891:4;20765:131;:::i;:::-;20757:139;;20484:419;;;:::o;20909:175::-;21049:27;21045:1;21037:6;21033:14;21026:51;20909:175;:::o;21090:366::-;21232:3;21253:67;21317:2;21312:3;21253:67;:::i;:::-;21246:74;;21329:93;21418:3;21329:93;:::i;:::-;21447:2;21442:3;21438:12;21431:19;;21090:366;;;:::o;21462:419::-;21628:4;21666:2;21655:9;21651:18;21643:26;;21715:9;21709:4;21705:20;21701:1;21690:9;21686:17;21679:47;21743:131;21869:4;21743:131;:::i;:::-;21735:139;;21462:419;;;:::o;21887:237::-;22027:34;22023:1;22015:6;22011:14;22004:58;22096:20;22091:2;22083:6;22079:15;22072:45;21887:237;:::o;22130:366::-;22272:3;22293:67;22357:2;22352:3;22293:67;:::i;:::-;22286:74;;22369:93;22458:3;22369:93;:::i;:::-;22487:2;22482:3;22478:12;22471:19;;22130:366;;;:::o;22502:419::-;22668:4;22706:2;22695:9;22691:18;22683:26;;22755:9;22749:4;22745:20;22741:1;22730:9;22726:17;22719:47;22783:131;22909:4;22783:131;:::i;:::-;22775:139;;22502:419;;;:::o;22927:182::-;23067:34;23063:1;23055:6;23051:14;23044:58;22927:182;:::o;23115:366::-;23257:3;23278:67;23342:2;23337:3;23278:67;:::i;:::-;23271:74;;23354:93;23443:3;23354:93;:::i;:::-;23472:2;23467:3;23463:12;23456:19;;23115:366;;;:::o;23487:419::-;23653:4;23691:2;23680:9;23676:18;23668:26;;23740:9;23734:4;23730:20;23726:1;23715:9;23711:17;23704:47;23768:131;23894:4;23768:131;:::i;:::-;23760:139;;23487:419;;;:::o;23912:178::-;24052:30;24048:1;24040:6;24036:14;24029:54;23912:178;:::o;24096:366::-;24238:3;24259:67;24323:2;24318:3;24259:67;:::i;:::-;24252:74;;24335:93;24424:3;24335:93;:::i;:::-;24453:2;24448:3;24444:12;24437:19;;24096:366;;;:::o;24468:419::-;24634:4;24672:2;24661:9;24657:18;24649:26;;24721:9;24715:4;24711:20;24707:1;24696:9;24692:17;24685:47;24749:131;24875:4;24749:131;:::i;:::-;24741:139;;24468:419;;;:::o;24893:233::-;25033:34;25029:1;25021:6;25017:14;25010:58;25102:16;25097:2;25089:6;25085:15;25078:41;24893:233;:::o;25132:366::-;25274:3;25295:67;25359:2;25354:3;25295:67;:::i;:::-;25288:74;;25371:93;25460:3;25371:93;:::i;:::-;25489:2;25484:3;25480:12;25473:19;;25132:366;;;:::o;25504:419::-;25670:4;25708:2;25697:9;25693:18;25685:26;;25757:9;25751:4;25747:20;25743:1;25732:9;25728:17;25721:47;25785:131;25911:4;25785:131;:::i;:::-;25777:139;;25504:419;;;:::o;25929:141::-;25978:4;26001:3;25993:11;;26024:3;26021:1;26014:14;26058:4;26055:1;26045:18;26037:26;;25929:141;;;:::o;26076:93::-;26113:6;26160:2;26155;26148:5;26144:14;26140:23;26130:33;;26076:93;;;:::o;26175:107::-;26219:8;26269:5;26263:4;26259:16;26238:37;;26175:107;;;;:::o;26288:393::-;26357:6;26407:1;26395:10;26391:18;26430:97;26460:66;26449:9;26430:97;:::i;:::-;26548:39;26578:8;26567:9;26548:39;:::i;:::-;26536:51;;26620:4;26616:9;26609:5;26605:21;26596:30;;26669:4;26659:8;26655:19;26648:5;26645:30;26635:40;;26364:317;;26288:393;;;;;:::o;26687:60::-;26715:3;26736:5;26729:12;;26687:60;;;:::o;26753:142::-;26803:9;26836:53;26854:34;26863:24;26881:5;26863:24;:::i;:::-;26854:34;:::i;:::-;26836:53;:::i;:::-;26823:66;;26753:142;;;:::o;26901:75::-;26944:3;26965:5;26958:12;;26901:75;;;:::o;26982:269::-;27092:39;27123:7;27092:39;:::i;:::-;27153:91;27202:41;27226:16;27202:41;:::i;:::-;27194:6;27187:4;27181:11;27153:91;:::i;:::-;27147:4;27140:105;27058:193;26982:269;;;:::o;27257:73::-;27302:3;27257:73;:::o;27336:189::-;27413:32;;:::i;:::-;27454:65;27512:6;27504;27498:4;27454:65;:::i;:::-;27389:136;27336:189;;:::o;27531:186::-;27591:120;27608:3;27601:5;27598:14;27591:120;;;27662:39;27699:1;27692:5;27662:39;:::i;:::-;27635:1;27628:5;27624:13;27615:22;;27591:120;;;27531:186;;:::o;27723:543::-;27824:2;27819:3;27816:11;27813:446;;;27858:38;27890:5;27858:38;:::i;:::-;27942:29;27960:10;27942:29;:::i;:::-;27932:8;27928:44;28125:2;28113:10;28110:18;28107:49;;;28146:8;28131:23;;28107:49;28169:80;28225:22;28243:3;28225:22;:::i;:::-;28215:8;28211:37;28198:11;28169:80;:::i;:::-;27828:431;;27813:446;27723:543;;;:::o;28272:117::-;28326:8;28376:5;28370:4;28366:16;28345:37;;28272:117;;;;:::o;28395:169::-;28439:6;28472:51;28520:1;28516:6;28508:5;28505:1;28501:13;28472:51;:::i;:::-;28468:56;28553:4;28547;28543:15;28533:25;;28446:118;28395:169;;;;:::o;28569:295::-;28645:4;28791:29;28816:3;28810:4;28791:29;:::i;:::-;28783:37;;28853:3;28850:1;28846:11;28840:4;28837:21;28829:29;;28569:295;;;;:::o;28869:1395::-;28986:37;29019:3;28986:37;:::i;:::-;29088:18;29080:6;29077:30;29074:56;;;29110:18;;:::i;:::-;29074:56;29154:38;29186:4;29180:11;29154:38;:::i;:::-;29239:67;29299:6;29291;29285:4;29239:67;:::i;:::-;29333:1;29357:4;29344:17;;29389:2;29381:6;29378:14;29406:1;29401:618;;;;30063:1;30080:6;30077:77;;;30129:9;30124:3;30120:19;30114:26;30105:35;;30077:77;30180:67;30240:6;30233:5;30180:67;:::i;:::-;30174:4;30167:81;30036:222;29371:887;;29401:618;29453:4;29449:9;29441:6;29437:22;29487:37;29519:4;29487:37;:::i;:::-;29546:1;29560:208;29574:7;29571:1;29568:14;29560:208;;;29653:9;29648:3;29644:19;29638:26;29630:6;29623:42;29704:1;29696:6;29692:14;29682:24;;29751:2;29740:9;29736:18;29723:31;;29597:4;29594:1;29590:12;29585:17;;29560:208;;;29796:6;29787:7;29784:19;29781:179;;;29854:9;29849:3;29845:19;29839:26;29897:48;29939:4;29931:6;29927:17;29916:9;29897:48;:::i;:::-;29889:6;29882:64;29804:156;29781:179;30006:1;30002;29994:6;29990:14;29986:22;29980:4;29973:36;29408:611;;;29371:887;;28961:1303;;;28869:1395;;:::o;30270:98::-;30321:6;30355:5;30349:12;30339:22;;30270:98;;;:::o;30374:168::-;30457:11;30491:6;30486:3;30479:19;30531:4;30526:3;30522:14;30507:29;;30374:168;;;;:::o;30548:373::-;30634:3;30662:38;30694:5;30662:38;:::i;:::-;30716:70;30779:6;30774:3;30716:70;:::i;:::-;30709:77;;30795:65;30853:6;30848:3;30841:4;30834:5;30830:16;30795:65;:::i;:::-;30885:29;30907:6;30885:29;:::i;:::-;30880:3;30876:39;30869:46;;30638:283;30548:373;;;;:::o;30927:640::-;31122:4;31160:3;31149:9;31145:19;31137:27;;31174:71;31242:1;31231:9;31227:17;31218:6;31174:71;:::i;:::-;31255:72;31323:2;31312:9;31308:18;31299:6;31255:72;:::i;:::-;31337;31405:2;31394:9;31390:18;31381:6;31337:72;:::i;:::-;31456:9;31450:4;31446:20;31441:2;31430:9;31426:18;31419:48;31484:76;31555:4;31546:6;31484:76;:::i;:::-;31476:84;;30927:640;;;;;;;:::o;31573:141::-;31629:5;31660:6;31654:13;31645:22;;31676:32;31702:5;31676:32;:::i;:::-;31573:141;;;;:::o;31720:349::-;31789:6;31838:2;31826:9;31817:7;31813:23;31809:32;31806:119;;;31844:79;;:::i;:::-;31806:119;31964:1;31989:63;32044:7;32035:6;32024:9;32020:22;31989:63;:::i;:::-;31979:73;;31935:127;31720:349;;;;:::o;32075:180::-;32123:77;32120:1;32113:88;32220:4;32217:1;32210:15;32244:4;32241:1;32234:15

Swarm Source

ipfs://3c6f09e1e7c561d5abe7ae115ce12a5816fd0ac71d8b793be954a95615fa077c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.