ETH Price: $2,507.61 (+1.37%)
 

Overview

Max Total Supply

197 BOPH3

Holders

129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BOPH3
0x2119973710db14775d696dc3664d623a1ddc2e10
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:
Phase3

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-09
*/

// SPDX-License-Identifier: MIT
// File: Interfaces/IERC721Burn.sol


pragma solidity ^0.8.4;

interface IERC721Burn{
    function burn(uint256 tokenId) external;
}
// File: opensea-enforcement/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: opensea-enforcement/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: opensea-enforcement/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// 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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) public _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(), ".json")) : "";
    }

    /**
     * @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 {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

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

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


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

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

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

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

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

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

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

// File: phase4.sol


pragma solidity ^0.8.13;

///@title Bang and Olufsen Phase3 contract
///@author Dastageer Sayed
///@notice This is the 6th contract is B&O DNA Collection
///dev All function calls are currently implemented without side effects
contract Phase3 is ERC721, ERC721Burnable,DefaultOperatorFilterer, ERC721Enumerable, Ownable{

    bool public toggle;
    address public phase2NFTAddress;
    address public musicVialNFTAddress;
    string private URI;
    uint256 public revealTime;
    mapping(address => uint256[]) public userNftId;

    event revealTimer(uint256 revealTime);

    constructor(string memory _name, string memory _symbol, address _phase2NFTAddress, address _musicVialNFTAddress) ERC721(_name,_symbol) {
        phase2NFTAddress = _phase2NFTAddress;
        musicVialNFTAddress = _musicVialNFTAddress;
    }

    /* 
    @dev This function will burn the ticket, and mint a new NFT with same tokenID as Phase2, before calling this function
        make sure you have taken the allowance of tokenId from the ticket contract that needs to be burned.
    @params phase2TokenId: TokenId for phase2
    @params musicVialTokenId: TokenId for Music Vial
    */
    function merge(uint256 phase2TokenId, uint256 musicVialTokenId) public {
        require(toggle == true, "Phase3: Toggle is off");
        require(revealTime !=0, "Phase3: Set revel Timer");
        require(block.timestamp > revealTime, "Phase3: Redeem has not started yet");
        require(IERC721(phase2NFTAddress).ownerOf(phase2TokenId) == msg.sender, "Phase3: You are not the owner of  B&O DNA Collection Phase2 NFT");
        require(IERC721(musicVialNFTAddress).ownerOf(musicVialTokenId) == msg.sender, "Phase3: You are not the owner of B&O DNA Collection Music Vial NFT");
        IERC721Burn(phase2NFTAddress).burn(phase2TokenId);
        IERC721Burn(musicVialNFTAddress).burn(musicVialTokenId);
        userNftId[msg.sender].push(phase2TokenId);
        _safeMint(msg.sender, phase2TokenId);
    }

    ///@dev Function will freeze the claim for everyone, can be toggle only by owner
    function setToggle(bool toggle_) external onlyOwner{
        toggle = toggle_;
    }

    ///@dev Emergency function to change B&O Phase2 Contract address and Music Vial contract address
    function updatePhaseAddresses(address phase2NFTAddress_, address musicVialNFTAddress_) external onlyOwner{
        require(phase2NFTAddress_ != address(0), "Phase3: phase2 address cannot be zero address");
        require(musicVialNFTAddress_ != address(0), "Phase3: musicVial address cannot be zero address");
        phase2NFTAddress = phase2NFTAddress_;
        musicVialNFTAddress = musicVialNFTAddress_;
    }

    ///@dev Owner can set the Reveal time to start claim
    function setRevelTimer(uint256 revealTime_) external onlyOwner{
        revealTime = revealTime_;
        emit revealTimer(revealTime);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override(ERC721,IERC721) onlyAllowedOperator(from) {
        require(_isApprovedOrOwner(_msgSender(), tokenId),"Phase3: transfer caller is not owner nor approved");
        for (uint256 i; i < userNftId[from].length; i++) {
            if (userNftId[from][i] == tokenId) {
                userNftId[from][i] = userNftId[from][userNftId[from].length - 1];
                userNftId[from].pop();
                userNftId[to].push(tokenId);
                break;
            }
        }
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(address from,address to,uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from)  {
        for (uint256 i; i < userNftId[from].length; i++) {
            if (userNftId[from][i] == tokenId) {
                userNftId[from][i] = userNftId[from][userNftId[from].length - 1];
                userNftId[from].pop();
                userNftId[to].push(tokenId);
                break;
            }
        }
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(address from,address to,uint256 tokenId,bytes memory _data) public override(ERC721, IERC721) onlyAllowedOperator(from)  {
        require(_isApprovedOrOwner(_msgSender(), tokenId),"Phase3: transfer caller is not owner nor approved");
        for (uint256 i; i < userNftId[from].length; i++) {
            if (userNftId[from][i] == tokenId) {
                userNftId[from][i] = userNftId[from][userNftId[from].length - 1];
                userNftId[from].pop();
                userNftId[to].push(tokenId);
                break;
            }
        }
        _safeTransfer(from, to, tokenId, _data);
    }

    ///@dev Keep's the mapping of users token holding
    function nftOfUser(address user)public view returns(uint256[] memory){
        return userNftId[user];
    }

    function burn(uint256 tokenId) public virtual override{
        //solhint-disable-next-line max-line-length
        _burn(tokenId);
    }

    function _burn(uint256 _tokenId) internal override(ERC721) {
        require(_isApprovedOrOwner(_msgSender(), _tokenId), "Phase3: caller is not token owner nor approved");
        address tokenOwner = ownerOf(_tokenId);
         for (uint256 i; i < userNftId[tokenOwner].length; i++) {
            if (userNftId[tokenOwner][i] == _tokenId) {
                userNftId[tokenOwner][i] = userNftId[tokenOwner][userNftId[tokenOwner].length - 1];
                userNftId[tokenOwner].pop();
                break;
            }
        }
        super._burn(_tokenId);
    }

    ///@dev Owner can update baseURI anytime
    function updateURI(string memory newURI_) external onlyOwner{
        URI = newURI_;
    }

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

   function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }


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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_phase2NFTAddress","type":"address"},{"internalType":"address","name":"_musicVialNFTAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"revealTime","type":"uint256"}],"name":"revealTimer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_owners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase2TokenId","type":"uint256"},{"internalType":"uint256","name":"musicVialTokenId","type":"uint256"}],"name":"merge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"musicVialNFTAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"nftOfUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2NFTAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"revealTime_","type":"uint256"}],"name":"setRevelTimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle_","type":"bool"}],"name":"setToggle","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":[],"name":"toggle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"phase2NFTAddress_","type":"address"},{"internalType":"address","name":"musicVialNFTAddress_","type":"address"}],"name":"updatePhaseAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI_","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userNftId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162003782380380620037828339810160408190526200003491620003e8565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001858581600090805190602001906200006592919062000258565b5080516200007b90600190602084019062000258565b5050506daaeb6d7670e522a718067333cd4e3b15620001c35780156200011157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000f257600080fd5b505af115801562000107573d6000803e3d6000fd5b50505050620001c3565b6001600160a01b03821615620001625760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000d7565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001a957600080fd5b505af1158015620001be573d6000803e3d6000fd5b505050505b50620001d190503362000206565b600b80546001600160a01b039384166001600160a01b031991821617909155600c805492909316911617905550620004b39050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002669062000477565b90600052602060002090601f0160209004810192826200028a5760008555620002d5565b82601f10620002a557805160ff1916838001178555620002d5565b82800160010185558215620002d5579182015b82811115620002d5578251825591602001919060010190620002b8565b50620002e3929150620002e7565b5090565b5b80821115620002e35760008155600101620002e8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200032657600080fd5b81516001600160401b0380821115620003435762000343620002fe565b604051601f8301601f19908116603f011681019082821181831017156200036e576200036e620002fe565b816040528381526020925086838588010111156200038b57600080fd5b600091505b83821015620003af578582018301518183018401529082019062000390565b83821115620003c15760008385830101525b9695505050505050565b80516001600160a01b0381168114620003e357600080fd5b919050565b60008060008060808587031215620003ff57600080fd5b84516001600160401b03808211156200041757600080fd5b620004258883890162000314565b955060208701519150808211156200043c57600080fd5b506200044b8782880162000314565b9350506200045c60408601620003cb565b91506200046c60608601620003cb565b905092959194509250565b600181811c908216806200048c57607f821691505b602082108103620004ad57634e487b7160e01b600052602260045260246000fd5b50919050565b6132bf80620004c36000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063b88d4fde116100a2578063d1c2babb11610071578063d1c2babb1461043b578063d7d49fd71461044e578063e985e9c514610461578063f2fde38b1461049d57600080fd5b8063b88d4fde146103f9578063ba829d711461040c578063c30f4a5a14610415578063c87b56dd1461042857600080fd5b806395d89b41116100de57806395d89b41146103a2578063992924a6146103aa578063a22cb465146103d3578063b668908f146103e657600080fd5b806370a0823114610356578063715018a6146103695780638da5cb5b1461037157806390cd38ba1461038257600080fd5b806336a4db2a1161018757806342966c681161015657806342966c681461030a5780634f6ccce71461031d5780636265e7ca146103305780636352211e1461034357600080fd5b806336a4db2a146102bd5780633ef0410f146102d057806340a3d246146102e357806342842e0e146102f757600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd146102845780632e203e6d146102975780632f745c59146102aa57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004612c7d565b6104b0565b60405190151581526020015b60405180910390f35b6102256104c1565b6040516102149190612cf2565b610245610240366004612d05565b610553565b6040516001600160a01b039091168152602001610214565b61027061026b366004612d33565b61057a565b005b6008545b604051908152602001610214565b610270610292366004612d5f565b610694565b6102706102a5366004612dae565b610b04565b6102766102b8366004612d33565b610b2a565b600b54610245906001600160a01b031681565b6102766102de366004612d33565b610bc0565b600a5461020890600160a01b900460ff1681565b610270610305366004612d5f565b610bf1565b610270610318366004612d05565b61102a565b61027661032b366004612d05565b611036565b600c54610245906001600160a01b031681565b610245610351366004612d05565b6110c9565b610276610364366004612dcb565b611129565b6102706111af565b600a546001600160a01b0316610245565b610395610390366004612dcb565b6111c3565b6040516102149190612de8565b61022561122f565b6102456103b8366004612d05565b6002602052600090815260409020546001600160a01b031681565b6102706103e1366004612e2c565b61123e565b6102706103f4366004612d05565b61124d565b610270610407366004612ef1565b611290565b610276600e5481565b610270610423366004612f71565b611703565b610225610436366004612d05565b61171e565b610270610449366004612fba565b611785565b61027061045c366004612fdc565b611b4f565b61020861046f366004612fdc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102706104ab366004612dcb565b611c60565b60006104bb82611cd6565b92915050565b6060600080546104d09061300a565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc9061300a565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b600061055e82611cfb565b506000908152600460205260409020546001600160a01b031690565b6000610585826110c9565b9050806001600160a01b0316836001600160a01b0316036105f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106135750610613813361046f565b6106855760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105ee565b61068f8383611d5a565b505050565b826daaeb6d7670e522a718067333cd4e3b1561096a57336001600160a01b03821603610855576106c5335b83611dc8565b6106e15760405162461bcd60e51b81526004016105ee90613044565b60005b6001600160a01b0385166000908152600f6020526040902054811015610844576001600160a01b0385166000908152600f6020526040902080548491908390811061073157610731613095565b906000526020600020015403610832576001600160a01b0385166000908152600f602052604090208054610767906001906130c1565b8154811061077757610777613095565b9060005260206000200154600f6000876001600160a01b03166001600160a01b0316815260200190815260200160002082815481106107b8576107b8613095565b60009182526020808320909101929092556001600160a01b0387168152600f909152604090208054806107ed576107ed6130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610844565b8061083c816130ee565b9150506106e4565b50610850848484611e47565b610afe565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c89190613107565b801561094b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b9190613107565b61096a57604051633b79c77360e21b81523360048201526024016105ee565b610973336106bf565b61098f5760405162461bcd60e51b81526004016105ee90613044565b60005b6001600160a01b0385166000908152600f6020526040902054811015610af2576001600160a01b0385166000908152600f602052604090208054849190839081106109df576109df613095565b906000526020600020015403610ae0576001600160a01b0385166000908152600f602052604090208054610a15906001906130c1565b81548110610a2557610a25613095565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610a6657610a66613095565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610a9b57610a9b6130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610af2565b80610aea816130ee565b915050610992565b50610afe848484611e47565b50505050565b610b0c611fb8565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000610b3583611129565b8210610b975760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600f6020528160005260406000208181548110610bdc57600080fd5b90600052602060002001600091509150505481565b826daaeb6d7670e522a718067333cd4e3b15610eab57336001600160a01b03821603610d965760005b6001600160a01b0385166000908152600f6020526040902054811015610d7a576001600160a01b0385166000908152600f60205260409020805484919083908110610c6757610c67613095565b906000526020600020015403610d68576001600160a01b0385166000908152600f602052604090208054610c9d906001906130c1565b81548110610cad57610cad613095565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610cee57610cee613095565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610d2357610d236130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610d7a565b80610d72816130ee565b915050610c1a565b5061085084848460405180602001604052806000815250611290565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610de5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e099190613107565b8015610e8c5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8c9190613107565b610eab57604051633b79c77360e21b81523360048201526024016105ee565b60005b6001600160a01b0385166000908152600f602052604090205481101561100e576001600160a01b0385166000908152600f60205260409020805484919083908110610efb57610efb613095565b906000526020600020015403610ffc576001600160a01b0385166000908152600f602052604090208054610f31906001906130c1565b81548110610f4157610f41613095565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610f8257610f82613095565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610fb757610fb76130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f815260408220805460018101825590835291200183905561100e565b80611006816130ee565b915050610eae565b50610afe84848460405180602001604052806000815250611290565b61103381612012565b50565b600061104160085490565b82106110a45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105ee565b600882815481106110b7576110b7613095565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104bb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105ee565b60006001600160a01b0382166111935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105ee565b506001600160a01b031660009081526003602052604090205490565b6111b7611fb8565b6111c160006121cf565b565b6001600160a01b0381166000908152600f602090815260409182902080548351818402810184019094528084526060939283018282801561122357602002820191906000526020600020905b81548152602001906001019080831161120f575b50505050509050919050565b6060600180546104d09061300a565b611249338383612221565b5050565b611255611fb8565b600e8190556040518181527fbf2117473c528eb1701446fd671b6677cba6760cf865c5f1e65ed0db6f318a889060200160405180910390a150565b836daaeb6d7670e522a718067333cd4e3b1561156757336001600160a01b03821603611452576112c1335b84611dc8565b6112dd5760405162461bcd60e51b81526004016105ee90613044565b60005b6001600160a01b0386166000908152600f6020526040902054811015611440576001600160a01b0386166000908152600f6020526040902080548591908390811061132d5761132d613095565b90600052602060002001540361142e576001600160a01b0386166000908152600f602052604090208054611363906001906130c1565b8154811061137357611373613095565b9060005260206000200154600f6000886001600160a01b03166001600160a01b0316815260200190815260200160002082815481106113b4576113b4613095565b60009182526020808320909101929092556001600160a01b0388168152600f909152604090208054806113e9576113e96130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252600f8152604082208054600181018255908352912001849055611440565b80611438816130ee565b9150506112e0565b5061144d858585856122ef565b6116fc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c59190613107565b80156115485750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611524573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115489190613107565b61156757604051633b79c77360e21b81523360048201526024016105ee565b611570336112bb565b61158c5760405162461bcd60e51b81526004016105ee90613044565b60005b6001600160a01b0386166000908152600f60205260409020548110156116ef576001600160a01b0386166000908152600f602052604090208054859190839081106115dc576115dc613095565b9060005260206000200154036116dd576001600160a01b0386166000908152600f602052604090208054611612906001906130c1565b8154811061162257611622613095565b9060005260206000200154600f6000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061166357611663613095565b60009182526020808320909101929092556001600160a01b0388168152600f90915260409020805480611698576116986130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252600f81526040822080546001810182559083529120018490556116ef565b806116e7816130ee565b91505061158f565b506116fc858585856122ef565b5050505050565b61170b611fb8565b805161124990600d906020840190612bce565b606061172982611cfb565b6000611733612322565b90506000815111611753576040518060200160405280600081525061177e565b8061175d84612331565b60405160200161176e929190613124565b6040516020818303038152906040525b9392505050565b600a54600160a01b900460ff1615156001146117db5760405162461bcd60e51b8152602060048201526015602482015274283430b9b2999d102a37b3b3b6329034b99037b33360591b60448201526064016105ee565b600e5460000361182d5760405162461bcd60e51b815260206004820152601760248201527f5068617365333a2053657420726576656c2054696d657200000000000000000060448201526064016105ee565b600e5442116118895760405162461bcd60e51b815260206004820152602260248201527f5068617365333a2052656465656d20686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016105ee565b600b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156118d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f69190613163565b6001600160a01b0316146119725760405162461bcd60e51b815260206004820152603f60248201527f5068617365333a20596f7520617265206e6f7420746865206f776e6572206f6660448201527f202042264f20444e4120436f6c6c656374696f6e20506861736532204e46540060648201526084016105ee565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156119bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119df9190613163565b6001600160a01b031614611a665760405162461bcd60e51b815260206004820152604260248201527f5068617365333a20596f7520617265206e6f7420746865206f776e6572206f6660448201527f2042264f20444e4120436f6c6c656374696f6e204d75736963205669616c204e606482015261119560f21b608482015260a4016105ee565b600b54604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c6890602401600060405180830381600087803b158015611aac57600080fd5b505af1158015611ac0573d6000803e3d6000fd5b5050600c54604051630852cd8d60e31b8152600481018590526001600160a01b0390911692506342966c689150602401600060405180830381600087803b158015611b0a57600080fd5b505af1158015611b1e573d6000803e3d6000fd5b5050336000818152600f602090815260408220805460018101825590835291200185905561124992509050836123c4565b611b57611fb8565b6001600160a01b038216611bc35760405162461bcd60e51b815260206004820152602d60248201527f5068617365333a2070686173653220616464726573732063616e6e6f7420626560448201526c207a65726f206164647265737360981b60648201526084016105ee565b6001600160a01b038116611c325760405162461bcd60e51b815260206004820152603060248201527f5068617365333a206d757369635669616c20616464726573732063616e6e6f7460448201526f206265207a65726f206164647265737360801b60648201526084016105ee565b600b80546001600160a01b039384166001600160a01b031991821617909155600c8054929093169116179055565b611c68611fb8565b6001600160a01b038116611ccd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b611033816121cf565b60006001600160e01b0319821663780e9d6360e01b14806104bb57506104bb826123de565b6000818152600260205260409020546001600160a01b03166110335760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105ee565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d8f826110c9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611dd4836110c9565b9050806001600160a01b0316846001600160a01b03161480611e1b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611e3f5750836001600160a01b0316611e3484610553565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e5a826110c9565b6001600160a01b031614611e805760405162461bcd60e51b81526004016105ee90613180565b6001600160a01b038216611ee25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ee565b611eef838383600161242e565b826001600160a01b0316611f02826110c9565b6001600160a01b031614611f285760405162461bcd60e51b81526004016105ee90613180565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146111c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ee565b61201c3382611dc8565b61207f5760405162461bcd60e51b815260206004820152602e60248201527f5068617365333a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b60648201526084016105ee565b600061208a826110c9565b905060005b6001600160a01b0382166000908152600f60205260409020548110156121c5576001600160a01b0382166000908152600f602052604090208054849190839081106120dc576120dc613095565b9060005260206000200154036121b3576001600160a01b0382166000908152600f602052604090208054612112906001906130c1565b8154811061212257612122613095565b9060005260206000200154600f6000846001600160a01b03166001600160a01b03168152602001908152602001600020828154811061216357612163613095565b60009182526020808320909101929092556001600160a01b0384168152600f90915260409020805480612198576121986130d8565b600190038181906000526020600020016000905590556121c5565b806121bd816130ee565b91505061208f565b506112498261243a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036122825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ee565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122fa848484611e47565b612306848484846124dd565b610afe5760405162461bcd60e51b81526004016105ee906131c5565b6060600d80546104d09061300a565b6060600061233e836125de565b600101905060008167ffffffffffffffff81111561235e5761235e612e65565b6040519080825280601f01601f191660200182016040528015612388576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461239257509392505050565b6112498282604051806020016040528060008152506126b6565b60006001600160e01b031982166380ac58cd60e01b148061240f57506001600160e01b03198216635b5e139f60e01b145b806104bb57506301ffc9a760e01b6001600160e01b03198316146104bb565b610afe848484846126e9565b6000612445826110c9565b905061245581600084600161242e565b61245e826110c9565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b156125d357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612521903390899088908890600401613217565b6020604051808303816000875af192505050801561255c575060408051601f3d908101601f1916820190925261255991810190613254565b60015b6125b9573d80801561258a576040519150601f19603f3d011682016040523d82523d6000602084013e61258f565b606091505b5080516000036125b15760405162461bcd60e51b81526004016105ee906131c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e3f565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061261d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612649576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061266757662386f26fc10000830492506010015b6305f5e100831061267f576305f5e100830492506008015b612710831061269357612710830492506004015b606483106126a5576064830492506002015b600a83106104bb5760010192915050565b6126c0838361281d565b6126cd60008484846124dd565b61068f5760405162461bcd60e51b81526004016105ee906131c5565b6126f5848484846129b6565b60018111156127645760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016105ee565b816001600160a01b0385166127c0576127bb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127e3565b836001600160a01b0316856001600160a01b0316146127e3576127e38582612a3e565b6001600160a01b0384166127fa5761144d81612adb565b846001600160a01b0316846001600160a01b0316146116fc576116fc8482612b8a565b6001600160a01b0382166128735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ee565b6000818152600260205260409020546001600160a01b0316156128d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ee565b6128e660008383600161242e565b6000818152600260205260409020546001600160a01b03161561294b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ee565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115610afe576001600160a01b038416156129fc576001600160a01b038416600090815260036020526040812080548392906129f69084906130c1565b90915550505b6001600160a01b03831615610afe576001600160a01b03831660009081526003602052604081208054839290612a33908490613271565b909155505050505050565b60006001612a4b84611129565b612a5591906130c1565b600083815260076020526040902054909150808214612aa8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612aed906001906130c1565b60008381526009602052604081205460088054939450909284908110612b1557612b15613095565b906000526020600020015490508060088381548110612b3657612b36613095565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b6e57612b6e6130d8565b6001900381819060005260206000200160009055905550505050565b6000612b9583611129565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612bda9061300a565b90600052602060002090601f016020900481019282612bfc5760008555612c42565b82601f10612c1557805160ff1916838001178555612c42565b82800160010185558215612c42579182015b82811115612c42578251825591602001919060010190612c27565b50612c4e929150612c52565b5090565b5b80821115612c4e5760008155600101612c53565b6001600160e01b03198116811461103357600080fd5b600060208284031215612c8f57600080fd5b813561177e81612c67565b60005b83811015612cb5578181015183820152602001612c9d565b83811115610afe5750506000910152565b60008151808452612cde816020860160208601612c9a565b601f01601f19169290920160200192915050565b60208152600061177e6020830184612cc6565b600060208284031215612d1757600080fd5b5035919050565b6001600160a01b038116811461103357600080fd5b60008060408385031215612d4657600080fd5b8235612d5181612d1e565b946020939093013593505050565b600080600060608486031215612d7457600080fd5b8335612d7f81612d1e565b92506020840135612d8f81612d1e565b929592945050506040919091013590565b801515811461103357600080fd5b600060208284031215612dc057600080fd5b813561177e81612da0565b600060208284031215612ddd57600080fd5b813561177e81612d1e565b6020808252825182820181905260009190848201906040850190845b81811015612e2057835183529284019291840191600101612e04565b50909695505050505050565b60008060408385031215612e3f57600080fd5b8235612e4a81612d1e565b91506020830135612e5a81612da0565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612e9657612e96612e65565b604051601f8501601f19908116603f01168101908282118183101715612ebe57612ebe612e65565b81604052809350858152868686011115612ed757600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612f0757600080fd5b8435612f1281612d1e565b93506020850135612f2281612d1e565b925060408501359150606085013567ffffffffffffffff811115612f4557600080fd5b8501601f81018713612f5657600080fd5b612f6587823560208401612e7b565b91505092959194509250565b600060208284031215612f8357600080fd5b813567ffffffffffffffff811115612f9a57600080fd5b8201601f81018413612fab57600080fd5b611e3f84823560208401612e7b565b60008060408385031215612fcd57600080fd5b50508035926020909101359150565b60008060408385031215612fef57600080fd5b8235612ffa81612d1e565b91506020830135612e5a81612d1e565b600181811c9082168061301e57607f821691505b60208210810361303e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f5068617365333a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156130d3576130d36130ab565b500390565b634e487b7160e01b600052603160045260246000fd5b600060018201613100576131006130ab565b5060010190565b60006020828403121561311957600080fd5b815161177e81612da0565b60008351613136818460208801612c9a565b83519083019061314a818360208801612c9a565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561317557600080fd5b815161177e81612d1e565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061324a90830184612cc6565b9695505050505050565b60006020828403121561326657600080fd5b815161177e81612c67565b60008219821115613284576132846130ab565b50019056fea2646970667358221220e9d2ae490852ce8395e8cbe50467311e3bd7da6b1448ed806f3b236d8f4fc6fc64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dda28e7812d2b9c837cdd86109d4261631651d9b00000000000000000000000026ef7d103d688a245df2828da4e8947db2e6e1d6000000000000000000000000000000000000000000000000000000000000001b42264f20444e4120436f6c6c656374696f6e3a205068617365203300000000000000000000000000000000000000000000000000000000000000000000000005424f504833000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063b88d4fde116100a2578063d1c2babb11610071578063d1c2babb1461043b578063d7d49fd71461044e578063e985e9c514610461578063f2fde38b1461049d57600080fd5b8063b88d4fde146103f9578063ba829d711461040c578063c30f4a5a14610415578063c87b56dd1461042857600080fd5b806395d89b41116100de57806395d89b41146103a2578063992924a6146103aa578063a22cb465146103d3578063b668908f146103e657600080fd5b806370a0823114610356578063715018a6146103695780638da5cb5b1461037157806390cd38ba1461038257600080fd5b806336a4db2a1161018757806342966c681161015657806342966c681461030a5780634f6ccce71461031d5780636265e7ca146103305780636352211e1461034357600080fd5b806336a4db2a146102bd5780633ef0410f146102d057806340a3d246146102e357806342842e0e146102f757600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd146102845780632e203e6d146102975780632f745c59146102aa57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004612c7d565b6104b0565b60405190151581526020015b60405180910390f35b6102256104c1565b6040516102149190612cf2565b610245610240366004612d05565b610553565b6040516001600160a01b039091168152602001610214565b61027061026b366004612d33565b61057a565b005b6008545b604051908152602001610214565b610270610292366004612d5f565b610694565b6102706102a5366004612dae565b610b04565b6102766102b8366004612d33565b610b2a565b600b54610245906001600160a01b031681565b6102766102de366004612d33565b610bc0565b600a5461020890600160a01b900460ff1681565b610270610305366004612d5f565b610bf1565b610270610318366004612d05565b61102a565b61027661032b366004612d05565b611036565b600c54610245906001600160a01b031681565b610245610351366004612d05565b6110c9565b610276610364366004612dcb565b611129565b6102706111af565b600a546001600160a01b0316610245565b610395610390366004612dcb565b6111c3565b6040516102149190612de8565b61022561122f565b6102456103b8366004612d05565b6002602052600090815260409020546001600160a01b031681565b6102706103e1366004612e2c565b61123e565b6102706103f4366004612d05565b61124d565b610270610407366004612ef1565b611290565b610276600e5481565b610270610423366004612f71565b611703565b610225610436366004612d05565b61171e565b610270610449366004612fba565b611785565b61027061045c366004612fdc565b611b4f565b61020861046f366004612fdc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102706104ab366004612dcb565b611c60565b60006104bb82611cd6565b92915050565b6060600080546104d09061300a565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc9061300a565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b600061055e82611cfb565b506000908152600460205260409020546001600160a01b031690565b6000610585826110c9565b9050806001600160a01b0316836001600160a01b0316036105f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106135750610613813361046f565b6106855760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105ee565b61068f8383611d5a565b505050565b826daaeb6d7670e522a718067333cd4e3b1561096a57336001600160a01b03821603610855576106c5335b83611dc8565b6106e15760405162461bcd60e51b81526004016105ee90613044565b60005b6001600160a01b0385166000908152600f6020526040902054811015610844576001600160a01b0385166000908152600f6020526040902080548491908390811061073157610731613095565b906000526020600020015403610832576001600160a01b0385166000908152600f602052604090208054610767906001906130c1565b8154811061077757610777613095565b9060005260206000200154600f6000876001600160a01b03166001600160a01b0316815260200190815260200160002082815481106107b8576107b8613095565b60009182526020808320909101929092556001600160a01b0387168152600f909152604090208054806107ed576107ed6130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610844565b8061083c816130ee565b9150506106e4565b50610850848484611e47565b610afe565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c89190613107565b801561094b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b9190613107565b61096a57604051633b79c77360e21b81523360048201526024016105ee565b610973336106bf565b61098f5760405162461bcd60e51b81526004016105ee90613044565b60005b6001600160a01b0385166000908152600f6020526040902054811015610af2576001600160a01b0385166000908152600f602052604090208054849190839081106109df576109df613095565b906000526020600020015403610ae0576001600160a01b0385166000908152600f602052604090208054610a15906001906130c1565b81548110610a2557610a25613095565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610a6657610a66613095565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610a9b57610a9b6130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610af2565b80610aea816130ee565b915050610992565b50610afe848484611e47565b50505050565b610b0c611fb8565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000610b3583611129565b8210610b975760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600f6020528160005260406000208181548110610bdc57600080fd5b90600052602060002001600091509150505481565b826daaeb6d7670e522a718067333cd4e3b15610eab57336001600160a01b03821603610d965760005b6001600160a01b0385166000908152600f6020526040902054811015610d7a576001600160a01b0385166000908152600f60205260409020805484919083908110610c6757610c67613095565b906000526020600020015403610d68576001600160a01b0385166000908152600f602052604090208054610c9d906001906130c1565b81548110610cad57610cad613095565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610cee57610cee613095565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610d2357610d236130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610d7a565b80610d72816130ee565b915050610c1a565b5061085084848460405180602001604052806000815250611290565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610de5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e099190613107565b8015610e8c5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8c9190613107565b610eab57604051633b79c77360e21b81523360048201526024016105ee565b60005b6001600160a01b0385166000908152600f602052604090205481101561100e576001600160a01b0385166000908152600f60205260409020805484919083908110610efb57610efb613095565b906000526020600020015403610ffc576001600160a01b0385166000908152600f602052604090208054610f31906001906130c1565b81548110610f4157610f41613095565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610f8257610f82613095565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610fb757610fb76130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f815260408220805460018101825590835291200183905561100e565b80611006816130ee565b915050610eae565b50610afe84848460405180602001604052806000815250611290565b61103381612012565b50565b600061104160085490565b82106110a45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105ee565b600882815481106110b7576110b7613095565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104bb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105ee565b60006001600160a01b0382166111935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105ee565b506001600160a01b031660009081526003602052604090205490565b6111b7611fb8565b6111c160006121cf565b565b6001600160a01b0381166000908152600f602090815260409182902080548351818402810184019094528084526060939283018282801561122357602002820191906000526020600020905b81548152602001906001019080831161120f575b50505050509050919050565b6060600180546104d09061300a565b611249338383612221565b5050565b611255611fb8565b600e8190556040518181527fbf2117473c528eb1701446fd671b6677cba6760cf865c5f1e65ed0db6f318a889060200160405180910390a150565b836daaeb6d7670e522a718067333cd4e3b1561156757336001600160a01b03821603611452576112c1335b84611dc8565b6112dd5760405162461bcd60e51b81526004016105ee90613044565b60005b6001600160a01b0386166000908152600f6020526040902054811015611440576001600160a01b0386166000908152600f6020526040902080548591908390811061132d5761132d613095565b90600052602060002001540361142e576001600160a01b0386166000908152600f602052604090208054611363906001906130c1565b8154811061137357611373613095565b9060005260206000200154600f6000886001600160a01b03166001600160a01b0316815260200190815260200160002082815481106113b4576113b4613095565b60009182526020808320909101929092556001600160a01b0388168152600f909152604090208054806113e9576113e96130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252600f8152604082208054600181018255908352912001849055611440565b80611438816130ee565b9150506112e0565b5061144d858585856122ef565b6116fc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c59190613107565b80156115485750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611524573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115489190613107565b61156757604051633b79c77360e21b81523360048201526024016105ee565b611570336112bb565b61158c5760405162461bcd60e51b81526004016105ee90613044565b60005b6001600160a01b0386166000908152600f60205260409020548110156116ef576001600160a01b0386166000908152600f602052604090208054859190839081106115dc576115dc613095565b9060005260206000200154036116dd576001600160a01b0386166000908152600f602052604090208054611612906001906130c1565b8154811061162257611622613095565b9060005260206000200154600f6000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061166357611663613095565b60009182526020808320909101929092556001600160a01b0388168152600f90915260409020805480611698576116986130d8565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252600f81526040822080546001810182559083529120018490556116ef565b806116e7816130ee565b91505061158f565b506116fc858585856122ef565b5050505050565b61170b611fb8565b805161124990600d906020840190612bce565b606061172982611cfb565b6000611733612322565b90506000815111611753576040518060200160405280600081525061177e565b8061175d84612331565b60405160200161176e929190613124565b6040516020818303038152906040525b9392505050565b600a54600160a01b900460ff1615156001146117db5760405162461bcd60e51b8152602060048201526015602482015274283430b9b2999d102a37b3b3b6329034b99037b33360591b60448201526064016105ee565b600e5460000361182d5760405162461bcd60e51b815260206004820152601760248201527f5068617365333a2053657420726576656c2054696d657200000000000000000060448201526064016105ee565b600e5442116118895760405162461bcd60e51b815260206004820152602260248201527f5068617365333a2052656465656d20686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016105ee565b600b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156118d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f69190613163565b6001600160a01b0316146119725760405162461bcd60e51b815260206004820152603f60248201527f5068617365333a20596f7520617265206e6f7420746865206f776e6572206f6660448201527f202042264f20444e4120436f6c6c656374696f6e20506861736532204e46540060648201526084016105ee565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156119bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119df9190613163565b6001600160a01b031614611a665760405162461bcd60e51b815260206004820152604260248201527f5068617365333a20596f7520617265206e6f7420746865206f776e6572206f6660448201527f2042264f20444e4120436f6c6c656374696f6e204d75736963205669616c204e606482015261119560f21b608482015260a4016105ee565b600b54604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c6890602401600060405180830381600087803b158015611aac57600080fd5b505af1158015611ac0573d6000803e3d6000fd5b5050600c54604051630852cd8d60e31b8152600481018590526001600160a01b0390911692506342966c689150602401600060405180830381600087803b158015611b0a57600080fd5b505af1158015611b1e573d6000803e3d6000fd5b5050336000818152600f602090815260408220805460018101825590835291200185905561124992509050836123c4565b611b57611fb8565b6001600160a01b038216611bc35760405162461bcd60e51b815260206004820152602d60248201527f5068617365333a2070686173653220616464726573732063616e6e6f7420626560448201526c207a65726f206164647265737360981b60648201526084016105ee565b6001600160a01b038116611c325760405162461bcd60e51b815260206004820152603060248201527f5068617365333a206d757369635669616c20616464726573732063616e6e6f7460448201526f206265207a65726f206164647265737360801b60648201526084016105ee565b600b80546001600160a01b039384166001600160a01b031991821617909155600c8054929093169116179055565b611c68611fb8565b6001600160a01b038116611ccd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b611033816121cf565b60006001600160e01b0319821663780e9d6360e01b14806104bb57506104bb826123de565b6000818152600260205260409020546001600160a01b03166110335760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105ee565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d8f826110c9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611dd4836110c9565b9050806001600160a01b0316846001600160a01b03161480611e1b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611e3f5750836001600160a01b0316611e3484610553565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e5a826110c9565b6001600160a01b031614611e805760405162461bcd60e51b81526004016105ee90613180565b6001600160a01b038216611ee25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ee565b611eef838383600161242e565b826001600160a01b0316611f02826110c9565b6001600160a01b031614611f285760405162461bcd60e51b81526004016105ee90613180565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146111c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ee565b61201c3382611dc8565b61207f5760405162461bcd60e51b815260206004820152602e60248201527f5068617365333a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b60648201526084016105ee565b600061208a826110c9565b905060005b6001600160a01b0382166000908152600f60205260409020548110156121c5576001600160a01b0382166000908152600f602052604090208054849190839081106120dc576120dc613095565b9060005260206000200154036121b3576001600160a01b0382166000908152600f602052604090208054612112906001906130c1565b8154811061212257612122613095565b9060005260206000200154600f6000846001600160a01b03166001600160a01b03168152602001908152602001600020828154811061216357612163613095565b60009182526020808320909101929092556001600160a01b0384168152600f90915260409020805480612198576121986130d8565b600190038181906000526020600020016000905590556121c5565b806121bd816130ee565b91505061208f565b506112498261243a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036122825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ee565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122fa848484611e47565b612306848484846124dd565b610afe5760405162461bcd60e51b81526004016105ee906131c5565b6060600d80546104d09061300a565b6060600061233e836125de565b600101905060008167ffffffffffffffff81111561235e5761235e612e65565b6040519080825280601f01601f191660200182016040528015612388576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461239257509392505050565b6112498282604051806020016040528060008152506126b6565b60006001600160e01b031982166380ac58cd60e01b148061240f57506001600160e01b03198216635b5e139f60e01b145b806104bb57506301ffc9a760e01b6001600160e01b03198316146104bb565b610afe848484846126e9565b6000612445826110c9565b905061245581600084600161242e565b61245e826110c9565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b156125d357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612521903390899088908890600401613217565b6020604051808303816000875af192505050801561255c575060408051601f3d908101601f1916820190925261255991810190613254565b60015b6125b9573d80801561258a576040519150601f19603f3d011682016040523d82523d6000602084013e61258f565b606091505b5080516000036125b15760405162461bcd60e51b81526004016105ee906131c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e3f565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061261d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612649576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061266757662386f26fc10000830492506010015b6305f5e100831061267f576305f5e100830492506008015b612710831061269357612710830492506004015b606483106126a5576064830492506002015b600a83106104bb5760010192915050565b6126c0838361281d565b6126cd60008484846124dd565b61068f5760405162461bcd60e51b81526004016105ee906131c5565b6126f5848484846129b6565b60018111156127645760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016105ee565b816001600160a01b0385166127c0576127bb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127e3565b836001600160a01b0316856001600160a01b0316146127e3576127e38582612a3e565b6001600160a01b0384166127fa5761144d81612adb565b846001600160a01b0316846001600160a01b0316146116fc576116fc8482612b8a565b6001600160a01b0382166128735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ee565b6000818152600260205260409020546001600160a01b0316156128d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ee565b6128e660008383600161242e565b6000818152600260205260409020546001600160a01b03161561294b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ee565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115610afe576001600160a01b038416156129fc576001600160a01b038416600090815260036020526040812080548392906129f69084906130c1565b90915550505b6001600160a01b03831615610afe576001600160a01b03831660009081526003602052604081208054839290612a33908490613271565b909155505050505050565b60006001612a4b84611129565b612a5591906130c1565b600083815260076020526040902054909150808214612aa8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612aed906001906130c1565b60008381526009602052604081205460088054939450909284908110612b1557612b15613095565b906000526020600020015490508060088381548110612b3657612b36613095565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b6e57612b6e6130d8565b6001900381819060005260206000200160009055905550505050565b6000612b9583611129565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612bda9061300a565b90600052602060002090601f016020900481019282612bfc5760008555612c42565b82601f10612c1557805160ff1916838001178555612c42565b82800160010185558215612c42579182015b82811115612c42578251825591602001919060010190612c27565b50612c4e929150612c52565b5090565b5b80821115612c4e5760008155600101612c53565b6001600160e01b03198116811461103357600080fd5b600060208284031215612c8f57600080fd5b813561177e81612c67565b60005b83811015612cb5578181015183820152602001612c9d565b83811115610afe5750506000910152565b60008151808452612cde816020860160208601612c9a565b601f01601f19169290920160200192915050565b60208152600061177e6020830184612cc6565b600060208284031215612d1757600080fd5b5035919050565b6001600160a01b038116811461103357600080fd5b60008060408385031215612d4657600080fd5b8235612d5181612d1e565b946020939093013593505050565b600080600060608486031215612d7457600080fd5b8335612d7f81612d1e565b92506020840135612d8f81612d1e565b929592945050506040919091013590565b801515811461103357600080fd5b600060208284031215612dc057600080fd5b813561177e81612da0565b600060208284031215612ddd57600080fd5b813561177e81612d1e565b6020808252825182820181905260009190848201906040850190845b81811015612e2057835183529284019291840191600101612e04565b50909695505050505050565b60008060408385031215612e3f57600080fd5b8235612e4a81612d1e565b91506020830135612e5a81612da0565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612e9657612e96612e65565b604051601f8501601f19908116603f01168101908282118183101715612ebe57612ebe612e65565b81604052809350858152868686011115612ed757600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612f0757600080fd5b8435612f1281612d1e565b93506020850135612f2281612d1e565b925060408501359150606085013567ffffffffffffffff811115612f4557600080fd5b8501601f81018713612f5657600080fd5b612f6587823560208401612e7b565b91505092959194509250565b600060208284031215612f8357600080fd5b813567ffffffffffffffff811115612f9a57600080fd5b8201601f81018413612fab57600080fd5b611e3f84823560208401612e7b565b60008060408385031215612fcd57600080fd5b50508035926020909101359150565b60008060408385031215612fef57600080fd5b8235612ffa81612d1e565b91506020830135612e5a81612d1e565b600181811c9082168061301e57607f821691505b60208210810361303e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f5068617365333a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156130d3576130d36130ab565b500390565b634e487b7160e01b600052603160045260246000fd5b600060018201613100576131006130ab565b5060010190565b60006020828403121561311957600080fd5b815161177e81612da0565b60008351613136818460208801612c9a565b83519083019061314a818360208801612c9a565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561317557600080fd5b815161177e81612d1e565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061324a90830184612cc6565b9695505050505050565b60006020828403121561326657600080fd5b815161177e81612c67565b60008219821115613284576132846130ab565b50019056fea2646970667358221220e9d2ae490852ce8395e8cbe50467311e3bd7da6b1448ed806f3b236d8f4fc6fc64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dda28e7812d2b9c837cdd86109d4261631651d9b00000000000000000000000026ef7d103d688a245df2828da4e8947db2e6e1d6000000000000000000000000000000000000000000000000000000000000001b42264f20444e4120436f6c6c656374696f6e3a205068617365203300000000000000000000000000000000000000000000000000000000000000000000000005424f504833000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): B&O DNA Collection: Phase 3
Arg [1] : _symbol (string): BOPH3
Arg [2] : _phase2NFTAddress (address): 0xDDA28e7812d2b9C837cDD86109d4261631651d9B
Arg [3] : _musicVialNFTAddress (address): 0x26Ef7D103D688a245df2828Da4E8947db2E6E1D6

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000dda28e7812d2b9c837cdd86109d4261631651d9b
Arg [3] : 00000000000000000000000026ef7d103d688a245df2828da4e8947db2e6e1d6
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [5] : 42264f20444e4120436f6c6c656374696f6e3a20506861736520330000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 424f504833000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68268:6124:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74175:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;74175:212:0;;;;;;;;45341:100;;;:::i;:::-;;;;;;;:::i;46862:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;46862:171:0;1528:203:1;46380:416:0;;;;;;:::i;:::-;;:::i;:::-;;62715:113;62803:10;:17;62715:113;;;2338:25:1;;;2326:2;2311:18;62715:113:0;2192:177:1;70976:612:0;;;;;;:::i;:::-;;:::i;70143:86::-;;;;;;:::i;:::-;;:::i;62383:256::-;;;;;;:::i;:::-;;:::i;68394:31::-;;;;;-1:-1:-1;;;;;68394:31:0;;;68530:46;;;;;;:::i;:::-;;:::i;68369:18::-;;;;;-1:-1:-1;;;68369:18:0;;;;;;71596:514;;;;;;:::i;:::-;;:::i;72945:140::-;;;;;;:::i;:::-;;:::i;62905:233::-;;;;;;:::i;:::-;;:::i;68432:34::-;;;;;-1:-1:-1;;;;;68432:34:0;;;45051:223;;;;;;:::i;:::-;;:::i;44782:207::-;;;;;;:::i;:::-;;:::i;22765:103::-;;;:::i;22117:87::-;22190:6;;-1:-1:-1;;;;;22190:6:0;22117:87;;72827:110;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45510:104::-;;;:::i;43720:42::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;43720:42:0;;;47105:155;;;;;;:::i;:::-;;:::i;70824:144::-;;;;;;:::i;:::-;;:::i;72118:646::-;;;;;;:::i;:::-;;:::i;68498:25::-;;;;;;73728:92;;;;;;:::i;:::-;;:::i;45685:290::-;;;;;;:::i;:::-;;:::i;69232:817::-;;;;;;:::i;:::-;;:::i;70339:419::-;;;;;;:::i;:::-;;:::i;47331:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;47452:25:0;;;47428:4;47452:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47331:164;23023:201;;;;;;:::i;:::-;;:::i;74175:212::-;74314:4;74343:36;74367:11;74343:23;:36::i;:::-;74336:43;74175:212;-1:-1:-1;;74175:212:0:o;45341:100::-;45395:13;45428:5;45421:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45341:100;:::o;46862:171::-;46938:7;46958:23;46973:7;46958:14;:23::i;:::-;-1:-1:-1;47001:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;47001:24:0;;46862:171::o;46380:416::-;46461:13;46477:23;46492:7;46477:14;:23::i;:::-;46461:39;;46525:5;-1:-1:-1;;;;;46519:11:0;:2;-1:-1:-1;;;;;46519:11:0;;46511:57;;;;-1:-1:-1;;;46511:57:0;;7735:2:1;46511:57:0;;;7717:21:1;7774:2;7754:18;;;7747:30;7813:34;7793:18;;;7786:62;-1:-1:-1;;;7864:18:1;;;7857:31;7905:19;;46511:57:0;;;;;;;;;20748:10;-1:-1:-1;;;;;46603:21:0;;;;:62;;-1:-1:-1;46628:37:0;46645:5;20748:10;47331:164;:::i;46628:37::-;46581:173;;;;-1:-1:-1;;;46581:173:0;;8137:2:1;46581:173:0;;;8119:21:1;8176:2;8156:18;;;8149:30;8215:34;8195:18;;;8188:62;8286:31;8266:18;;;8259:59;8335:19;;46581:173:0;7935:425:1;46581:173:0;46767:21;46776:2;46780:7;46767:8;:21::i;:::-;46450:346;46380:416;;:::o;70976:612::-;71093:4;2600:42;3740:43;:47;3736:699;;4027:10;-1:-1:-1;;;;;4019:18:0;;;4015:85;;71118:41:::1;20748:10:::0;71137:12:::1;71151:7;71118:18;:41::i;:::-;71110:102;;;;-1:-1:-1::0;;;71110:102:0::1;;;;;;;:::i;:::-;71228:9;71223:319;-1:-1:-1::0;;;;;71243:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;71239:26;::::1;71223:319;;;-1:-1:-1::0;;;;;71291:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;71313:7;;71291:15;71307:1;;71291:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;71287:244:::1;;-1:-1:-1::0;;;;;71362:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;71378:22;;:26:::1;::::0;71403:1:::1;::::0;71378:26:::1;:::i;:::-;71362:43;;;;;;;;:::i;:::-;;;;;;;;;71341:9;:15;71351:4;-1:-1:-1::0;;;;;71341:15:0::1;-1:-1:-1::0;;;;;71341:15:0::1;;;;;;;;;;;;71357:1;71341:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;71424:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;71424:21:0;;;;;;;;;;;;-1:-1:-1;;;;;71464:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;71424:21:::1;71464:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;71510:5:::1;;71287:244;71267:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71223:319;;;;71552:28;71562:4;71568:2;71572:7;71552:9;:28::i;:::-;4078:7:::0;;4015:85;4160:67;;-1:-1:-1;;;4160:67:0;;4209:4;4160:67;;;9661:34:1;4216:10:0;9711:18:1;;;9704:43;2600:42:0;;4160:40;;9596:18:1;;4160:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4256:61:0;;-1:-1:-1;;;4256:61:0;;4305:4;4256:61;;;9661:34:1;-1:-1:-1;;;;;9731:15:1;;9711:18;;;9704:43;2600:42:0;;4256:40;;9596:18:1;;4256:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4114:310;;4378:30;;-1:-1:-1;;;4378:30:0;;4397:10;4378:30;;;1674:51:1;1647:18;;4378:30:0;1528:203:1;4114:310:0;71118:41:::1;20748:10:::0;71137:12:::1;20668:98:::0;71118:41:::1;71110:102;;;;-1:-1:-1::0;;;71110:102:0::1;;;;;;;:::i;:::-;71228:9;71223:319;-1:-1:-1::0;;;;;71243:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;71239:26;::::1;71223:319;;;-1:-1:-1::0;;;;;71291:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;71313:7;;71291:15;71307:1;;71291:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;71287:244:::1;;-1:-1:-1::0;;;;;71362:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;71378:22;;:26:::1;::::0;71403:1:::1;::::0;71378:26:::1;:::i;:::-;71362:43;;;;;;;;:::i;:::-;;;;;;;;;71341:9;:15;71351:4;-1:-1:-1::0;;;;;71341:15:0::1;-1:-1:-1::0;;;;;71341:15:0::1;;;;;;;;;;;;71357:1;71341:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;71424:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;71424:21:0;;;;;;;;;;;;-1:-1:-1;;;;;71464:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;71424:21:::1;71464:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;71510:5:::1;;71287:244;71267:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71223:319;;;;71552:28;71562:4;71568:2;71572:7;71552:9;:28::i;:::-;70976:612:::0;;;;:::o;70143:86::-;22003:13;:11;:13::i;:::-;70205:6:::1;:16:::0;;;::::1;;-1:-1:-1::0;;;70205:16:0::1;-1:-1:-1::0;;;;70205:16:0;;::::1;::::0;;;::::1;::::0;;70143:86::o;62383:256::-;62480:7;62516:23;62533:5;62516:16;:23::i;:::-;62508:5;:31;62500:87;;;;-1:-1:-1;;;62500:87:0;;10210:2:1;62500:87:0;;;10192:21:1;10249:2;10229:18;;;10222:30;10288:34;10268:18;;;10261:62;-1:-1:-1;;;10339:18:1;;;10332:41;10390:19;;62500:87:0;10008:407:1;62500:87:0;-1:-1:-1;;;;;;62605:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;62383:256::o;68530:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71596:514::-;71716:4;2600:42;3740:43;:47;3736:699;;4027:10;-1:-1:-1;;;;;4019:18:0;;;4015:85;;71739:9:::1;71734:319;-1:-1:-1::0;;;;;71754:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;71750:26;::::1;71734:319;;;-1:-1:-1::0;;;;;71802:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;71824:7;;71802:15;71818:1;;71802:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;71798:244:::1;;-1:-1:-1::0;;;;;71873:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;71889:22;;:26:::1;::::0;71914:1:::1;::::0;71889:26:::1;:::i;:::-;71873:43;;;;;;;;:::i;:::-;;;;;;;;;71852:9;:15;71862:4;-1:-1:-1::0;;;;;71852:15:0::1;-1:-1:-1::0;;;;;71852:15:0::1;;;;;;;;;;;;71868:1;71852:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;71935:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;71935:21:0;;;;;;;;;;;;-1:-1:-1;;;;;71975:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;71935:21:::1;71975:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;72021:5:::1;;71798:244;71778:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71734:319;;;;72063:39;72080:4;72086:2;72090:7;72063:39;;;;;;;;;;;::::0;:16:::1;:39::i;4015:85::-:0;4160:67;;-1:-1:-1;;;4160:67:0;;4209:4;4160:67;;;9661:34:1;4216:10:0;9711:18:1;;;9704:43;2600:42:0;;4160:40;;9596:18:1;;4160:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4256:61:0;;-1:-1:-1;;;4256:61:0;;4305:4;4256:61;;;9661:34:1;-1:-1:-1;;;;;9731:15:1;;9711:18;;;9704:43;2600:42:0;;4256:40;;9596:18:1;;4256:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4114:310;;4378:30;;-1:-1:-1;;;4378:30:0;;4397:10;4378:30;;;1674:51:1;1647:18;;4378:30:0;1528:203:1;4114:310:0;71739:9:::1;71734:319;-1:-1:-1::0;;;;;71754:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;71750:26;::::1;71734:319;;;-1:-1:-1::0;;;;;71802:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;71824:7;;71802:15;71818:1;;71802:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;71798:244:::1;;-1:-1:-1::0;;;;;71873:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;71889:22;;:26:::1;::::0;71914:1:::1;::::0;71889:26:::1;:::i;:::-;71873:43;;;;;;;;:::i;:::-;;;;;;;;;71852:9;:15;71862:4;-1:-1:-1::0;;;;;71852:15:0::1;-1:-1:-1::0;;;;;71852:15:0::1;;;;;;;;;;;;71868:1;71852:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;71935:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;71935:21:0;;;;;;;;;;;;-1:-1:-1;;;;;71975:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;71935:21:::1;71975:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;72021:5:::1;;71798:244;71778:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71734:319;;;;72063:39;72080:4;72086:2;72090:7;72063:39;;;;;;;;;;;::::0;:16:::1;:39::i;72945:140::-:0;73063:14;73069:7;73063:5;:14::i;:::-;72945:140;:::o;62905:233::-;62980:7;63016:30;62803:10;:17;;62715:113;63016:30;63008:5;:38;63000:95;;;;-1:-1:-1;;;63000:95:0;;10622:2:1;63000:95:0;;;10604:21:1;10661:2;10641:18;;;10634:30;10700:34;10680:18;;;10673:62;-1:-1:-1;;;10751:18:1;;;10744:42;10803:19;;63000:95:0;10420:408:1;63000:95:0;63113:10;63124:5;63113:17;;;;;;;;:::i;:::-;;;;;;;;;63106:24;;62905:233;;;:::o;45051:223::-;45123:7;49947:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49947:16:0;;45187:56;;;;-1:-1:-1;;;45187:56:0;;11035:2:1;45187:56:0;;;11017:21:1;11074:2;11054:18;;;11047:30;-1:-1:-1;;;11093:18:1;;;11086:54;11157:18;;45187:56:0;10833:348:1;44782:207:0;44854:7;-1:-1:-1;;;;;44882:19:0;;44874:73;;;;-1:-1:-1;;;44874:73:0;;11388:2:1;44874:73:0;;;11370:21:1;11427:2;11407:18;;;11400:30;11466:34;11446:18;;;11439:62;-1:-1:-1;;;11517:18:1;;;11510:39;11566:19;;44874:73:0;11186:405:1;44874:73:0;-1:-1:-1;;;;;;44965:16:0;;;;;:9;:16;;;;;;;44782:207::o;22765:103::-;22003:13;:11;:13::i;:::-;22830:30:::1;22857:1;22830:18;:30::i;:::-;22765:103::o:0;72827:110::-;-1:-1:-1;;;;;72914:15:0;;;;;;:9;:15;;;;;;;;;72907:22;;;;;;;;;;;;;;;;;72879:16;;72907:22;;;72914:15;72907:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72827:110;;;:::o;45510:104::-;45566:13;45599:7;45592:14;;;;;:::i;47105:155::-;47200:52;20748:10;47233:8;47243;47200:18;:52::i;:::-;47105:155;;:::o;70824:144::-;22003:13;:11;:13::i;:::-;70897:10:::1;:24:::0;;;70937:23:::1;::::0;2338:25:1;;;70937:23:0::1;::::0;2326:2:1;2311:18;70937:23:0::1;;;;;;;70824:144:::0;:::o;72118:646::-;72257:4;2600:42;3740:43;:47;3736:699;;4027:10;-1:-1:-1;;;;;4019:18:0;;;4015:85;;72283:41:::1;20748:10:::0;72302:12:::1;72316:7;72283:18;:41::i;:::-;72275:102;;;;-1:-1:-1::0;;;72275:102:0::1;;;;;;;:::i;:::-;72393:9;72388:319;-1:-1:-1::0;;;;;72408:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;72404:26;::::1;72388:319;;;-1:-1:-1::0;;;;;72456:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;72478:7;;72456:15;72472:1;;72456:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;72452:244:::1;;-1:-1:-1::0;;;;;72527:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;72543:22;;:26:::1;::::0;72568:1:::1;::::0;72543:26:::1;:::i;:::-;72527:43;;;;;;;;:::i;:::-;;;;;;;;;72506:9;:15;72516:4;-1:-1:-1::0;;;;;72506:15:0::1;-1:-1:-1::0;;;;;72506:15:0::1;;;;;;;;;;;;72522:1;72506:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;72589:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;72589:21:0;;;;;;;;;;;;-1:-1:-1;;;;;72629:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;72589:21:::1;72629:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;72675:5:::1;;72452:244;72432:3:::0;::::1;::::0;::::1;:::i;:::-;;;;72388:319;;;;72717:39;72731:4;72737:2;72741:7;72750:5;72717:13;:39::i;:::-;4078:7:::0;;4015:85;4160:67;;-1:-1:-1;;;4160:67:0;;4209:4;4160:67;;;9661:34:1;4216:10:0;9711:18:1;;;9704:43;2600:42:0;;4160:40;;9596:18:1;;4160:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4256:61:0;;-1:-1:-1;;;4256:61:0;;4305:4;4256:61;;;9661:34:1;-1:-1:-1;;;;;9731:15:1;;9711:18;;;9704:43;2600:42:0;;4256:40;;9596:18:1;;4256:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4114:310;;4378:30;;-1:-1:-1;;;4378:30:0;;4397:10;4378:30;;;1674:51:1;1647:18;;4378:30:0;1528:203:1;4114:310:0;72283:41:::1;20748:10:::0;72302:12:::1;20668:98:::0;72283:41:::1;72275:102;;;;-1:-1:-1::0;;;72275:102:0::1;;;;;;;:::i;:::-;72393:9;72388:319;-1:-1:-1::0;;;;;72408:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;72404:26;::::1;72388:319;;;-1:-1:-1::0;;;;;72456:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;72478:7;;72456:15;72472:1;;72456:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;72452:244:::1;;-1:-1:-1::0;;;;;72527:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;72543:22;;:26:::1;::::0;72568:1:::1;::::0;72543:26:::1;:::i;:::-;72527:43;;;;;;;;:::i;:::-;;;;;;;;;72506:9;:15;72516:4;-1:-1:-1::0;;;;;72506:15:0::1;-1:-1:-1::0;;;;;72506:15:0::1;;;;;;;;;;;;72522:1;72506:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;72589:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;72589:21:0;;;;;;;;;;;;-1:-1:-1;;;;;72629:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;72589:21:::1;72629:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;72675:5:::1;;72452:244;72432:3:::0;::::1;::::0;::::1;:::i;:::-;;;;72388:319;;;;72717:39;72731:4;72737:2;72741:7;72750:5;72717:13;:39::i;:::-;72118:646:::0;;;;;:::o;73728:92::-;22003:13;:11;:13::i;:::-;73799;;::::1;::::0;:3:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;45685:290::-:0;45758:13;45784:23;45799:7;45784:14;:23::i;:::-;45820:21;45844:10;:8;:10::i;:::-;45820:34;;45896:1;45878:7;45872:21;:25;:95;;;;;;;;;;;;;;;;;45924:7;45933:18;:7;:16;:18::i;:::-;45907:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45872:95;45865:102;45685:290;-1:-1:-1;;;45685:290:0:o;69232:817::-;69322:6;;-1:-1:-1;;;69322:6:0;;;;:14;;69332:4;69322:14;69314:48;;;;-1:-1:-1;;;69314:48:0;;12440:2:1;69314:48:0;;;12422:21:1;12479:2;12459:18;;;12452:30;-1:-1:-1;;;12498:18:1;;;12491:51;12559:18;;69314:48:0;12238:345:1;69314:48:0;69381:10;;69394:1;69381:14;69373:50;;;;-1:-1:-1;;;69373:50:0;;12790:2:1;69373:50:0;;;12772:21:1;12829:2;12809:18;;;12802:30;12868:25;12848:18;;;12841:53;12911:18;;69373:50:0;12588:347:1;69373:50:0;69460:10;;69442:15;:28;69434:75;;;;-1:-1:-1;;;69434:75:0;;13142:2:1;69434:75:0;;;13124:21:1;13181:2;13161:18;;;13154:30;13220:34;13200:18;;;13193:62;-1:-1:-1;;;13271:18:1;;;13264:32;13313:19;;69434:75:0;12940:398:1;69434:75:0;69536:16;;69528:48;;-1:-1:-1;;;69528:48:0;;;;;2338:25:1;;;69580:10:0;;-1:-1:-1;;;;;69536:16:0;;69528:33;;2311:18:1;;69528:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;69528:62:0;;69520:138;;;;-1:-1:-1;;;69520:138:0;;13801:2:1;69520:138:0;;;13783:21:1;13840:2;13820:18;;;13813:30;13879:34;13859:18;;;13852:62;13950:33;13930:18;;;13923:61;14001:19;;69520:138:0;13599:427:1;69520:138:0;69685:19;;69677:54;;-1:-1:-1;;;69677:54:0;;;;;2338:25:1;;;69735:10:0;;-1:-1:-1;;;;;69685:19:0;;69677:36;;2311:18:1;;69677:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;69677:68:0;;69669:147;;;;-1:-1:-1;;;69669:147:0;;14233:2:1;69669:147:0;;;14215:21:1;14272:2;14252:18;;;14245:30;14311:34;14291:18;;;14284:62;14382:34;14362:18;;;14355:62;-1:-1:-1;;;14433:19:1;;;14426:33;14476:19;;69669:147:0;14031:470:1;69669:147:0;69839:16;;69827:49;;-1:-1:-1;;;69827:49:0;;;;;2338:25:1;;;-1:-1:-1;;;;;69839:16:0;;;;69827:34;;2311:18:1;;69827:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;69899:19:0;;69887:55;;-1:-1:-1;;;69887:55:0;;;;;2338:25:1;;;-1:-1:-1;;;;;69899:19:0;;;;-1:-1:-1;69887:37:0;;-1:-1:-1;2311:18:1;;69887:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;69963:10:0;69953:21;;;;:9;:21;;;;;;;:41;;;;;;;;;;;;;;;;70005:36;;-1:-1:-1;69963:10:0;-1:-1:-1;69980:13:0;70005:9;:36::i;70339:419::-;22003:13;:11;:13::i;:::-;-1:-1:-1;;;;;70463:31:0;::::1;70455:89;;;::::0;-1:-1:-1;;;70455:89:0;;14708:2:1;70455:89:0::1;::::0;::::1;14690:21:1::0;14747:2;14727:18;;;14720:30;14786:34;14766:18;;;14759:62;-1:-1:-1;;;14837:18:1;;;14830:43;14890:19;;70455:89:0::1;14506:409:1::0;70455:89:0::1;-1:-1:-1::0;;;;;70563:34:0;::::1;70555:95;;;::::0;-1:-1:-1;;;70555:95:0;;15122:2:1;70555:95:0::1;::::0;::::1;15104:21:1::0;15161:2;15141:18;;;15134:30;15200:34;15180:18;;;15173:62;-1:-1:-1;;;15251:18:1;;;15244:46;15307:19;;70555:95:0::1;14920:412:1::0;70555:95:0::1;70661:16;:36:::0;;-1:-1:-1;;;;;70661:36:0;;::::1;-1:-1:-1::0;;;;;;70661:36:0;;::::1;;::::0;;;70708:19:::1;:42:::0;;;;;::::1;::::0;::::1;;::::0;;70339:419::o;23023:201::-;22003:13;:11;:13::i;:::-;-1:-1:-1;;;;;23112:22:0;::::1;23104:73;;;::::0;-1:-1:-1;;;23104:73:0;;15539:2:1;23104:73:0::1;::::0;::::1;15521:21:1::0;15578:2;15558:18;;;15551:30;15617:34;15597:18;;;15590:62;-1:-1:-1;;;15668:18:1;;;15661:36;15714:19;;23104:73:0::1;15337:402:1::0;23104:73:0::1;23188:28;23207:8;23188:18;:28::i;62075:224::-:0;62177:4;-1:-1:-1;;;;;;62201:50:0;;-1:-1:-1;;;62201:50:0;;:90;;;62255:36;62279:11;62255:23;:36::i;56681:135::-;50349:4;49947:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49947:16:0;56755:53;;;;-1:-1:-1;;;56755:53:0;;11035:2:1;56755:53:0;;;11017:21:1;11074:2;11054:18;;;11047:30;-1:-1:-1;;;11093:18:1;;;11086:54;11157:18;;56755:53:0;10833:348:1;55960:174:0;56035:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;56035:29:0;-1:-1:-1;;;;;56035:29:0;;;;;;;;:24;;56089:23;56035:24;56089:14;:23::i;:::-;-1:-1:-1;;;;;56080:46:0;;;;;;;;;;;55960:174;;:::o;50579:264::-;50672:4;50689:13;50705:23;50720:7;50705:14;:23::i;:::-;50689:39;;50758:5;-1:-1:-1;;;;;50747:16:0;:7;-1:-1:-1;;;;;50747:16:0;;:52;;;-1:-1:-1;;;;;;47452:25:0;;;47428:4;47452:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;50767:32;50747:87;;;;50827:7;-1:-1:-1;;;;;50803:31:0;:20;50815:7;50803:11;:20::i;:::-;-1:-1:-1;;;;;50803:31:0;;50747:87;50739:96;50579:264;-1:-1:-1;;;;50579:264:0:o;54578:1263::-;54737:4;-1:-1:-1;;;;;54710:31:0;:23;54725:7;54710:14;:23::i;:::-;-1:-1:-1;;;;;54710:31:0;;54702:81;;;;-1:-1:-1;;;54702:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54802:16:0;;54794:65;;;;-1:-1:-1;;;54794:65:0;;16352:2:1;54794:65:0;;;16334:21:1;16391:2;16371:18;;;16364:30;16430:34;16410:18;;;16403:62;-1:-1:-1;;;16481:18:1;;;16474:34;16525:19;;54794:65:0;16150:400:1;54794:65:0;54872:42;54893:4;54899:2;54903:7;54912:1;54872:20;:42::i;:::-;55044:4;-1:-1:-1;;;;;55017:31:0;:23;55032:7;55017:14;:23::i;:::-;-1:-1:-1;;;;;55017:31:0;;55009:81;;;;-1:-1:-1;;;55009:81:0;;;;;;;:::i;:::-;55162:24;;;;:15;:24;;;;;;;;55155:31;;-1:-1:-1;;;;;;55155:31:0;;;;;;-1:-1:-1;;;;;55638:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;55638:20:0;;;55673:13;;;;;;;;;:18;;55155:31;55673:18;;;55713:16;;;:7;:16;;;;;;:21;;;;;;;;;;55752:27;;55178:7;;55752:27;;;46450:346;46380:416;;:::o;22282:132::-;22190:6;;-1:-1:-1;;;;;22190:6:0;20748:10;22346:23;22338:68;;;;-1:-1:-1;;;22338:68:0;;16757:2:1;22338:68:0;;;16739:21:1;;;16776:18;;;16769:30;16835:34;16815:18;;;16808:62;16887:18;;22338:68:0;16555:356:1;73093:581:0;73171:42;20748:10;73204:8;73171:18;:42::i;:::-;73163:101;;;;-1:-1:-1;;;73163:101:0;;17118:2:1;73163:101:0;;;17100:21:1;17157:2;17137:18;;;17130:30;17196:34;17176:18;;;17169:62;-1:-1:-1;;;17247:18:1;;;17240:44;17301:19;;73163:101:0;16916:410:1;73163:101:0;73275:18;73296:17;73304:8;73296:7;:17::i;:::-;73275:38;;73330:9;73325:310;-1:-1:-1;;;;;73345:21:0;;;;;;:9;:21;;;;;:28;73341:32;;73325:310;;;-1:-1:-1;;;;;73399:21:0;;;;;;:9;:21;;;;;:24;;73427:8;;73399:21;73421:1;;73399:24;;;;;;:::i;:::-;;;;;;;;;:36;73395:229;;-1:-1:-1;;;;;73483:21:0;;;;;;:9;:21;;;;;73505:28;;:32;;73536:1;;73505:32;:::i;:::-;73483:55;;;;;;;;:::i;:::-;;;;;;;;;73456:9;:21;73466:10;-1:-1:-1;;;;;73456:21:0;-1:-1:-1;;;;;73456:21:0;;;;;;;;;;;;73478:1;73456:24;;;;;;;;:::i;:::-;;;;;;;;;;;;:82;;;;-1:-1:-1;;;;;73557:21:0;;;;:9;:21;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;73603:5;;73395:229;73375:3;;;;:::i;:::-;;;;73325:310;;;;73645:21;73657:8;73645:11;:21::i;23384:191::-;23477:6;;;-1:-1:-1;;;;;23494:17:0;;;-1:-1:-1;;;;;;23494:17:0;;;;;;;23527:40;;23477:6;;;23494:17;23477:6;;23527:40;;23458:16;;23527:40;23447:128;23384:191;:::o;56277:315::-;56432:8;-1:-1:-1;;;;;56423:17:0;:5;-1:-1:-1;;;;;56423:17:0;;56415:55;;;;-1:-1:-1;;;56415:55:0;;17533:2:1;56415:55:0;;;17515:21:1;17572:2;17552:18;;;17545:30;17611:27;17591:18;;;17584:55;17656:18;;56415:55:0;17331:349:1;56415:55:0;-1:-1:-1;;;;;56481:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;56481:46:0;;;;;;;;;;56543:41;;540::1;;;56543::0;;513:18:1;56543:41:0;;;;;;;56277:315;;;:::o;49427:313::-;49583:28;49593:4;49599:2;49603:7;49583:9;:28::i;:::-;49630:47;49653:4;49659:2;49663:7;49672:4;49630:22;:47::i;:::-;49622:110;;;;-1:-1:-1;;;49622:110:0;;;;;;;:::i;73828:96::-;73880:13;73913:3;73906:10;;;;;:::i;18095:716::-;18151:13;18202:14;18219:17;18230:5;18219:10;:17::i;:::-;18239:1;18219:21;18202:38;;18255:20;18289:6;18278:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18278:18:0;-1:-1:-1;18255:41:0;-1:-1:-1;18420:28:0;;;18436:2;18420:28;18477:288;-1:-1:-1;;18509:5:0;-1:-1:-1;;;18646:2:0;18635:14;;18630:30;18509:5;18617:44;18707:2;18698:11;;;-1:-1:-1;18728:21:0;18477:288;18728:21;-1:-1:-1;18786:6:0;18095:716;-1:-1:-1;;;18095:716:0:o;51185:110::-;51261:26;51271:2;51275:7;51261:26;;;;;;;;;;;;:9;:26::i;44413:305::-;44515:4;-1:-1:-1;;;;;;44552:40:0;;-1:-1:-1;;;44552:40:0;;:105;;-1:-1:-1;;;;;;;44609:48:0;;-1:-1:-1;;;44609:48:0;44552:105;:158;;;-1:-1:-1;;;;;;;;;;35955:40:0;;;44674:36;35846:157;73931:234;74101:56;74128:4;74134:2;74138:7;74147:9;74101:26;:56::i;53458:783::-;53518:13;53534:23;53549:7;53534:14;:23::i;:::-;53518:39;;53570:51;53591:5;53606:1;53610:7;53619:1;53570:20;:51::i;:::-;53734:23;53749:7;53734:14;:23::i;:::-;53805:24;;;;:15;:24;;;;;;;;53798:31;;-1:-1:-1;;;;;;53798:31:0;;;;;;-1:-1:-1;;;;;54050:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;54050:21:0;;;54100:16;;;:7;:16;;;;;;54093:23;;;;;;;54134:36;53726:31;;-1:-1:-1;53821:7:0;;54134:36;;53805:24;;54134:36;47105:155;;:::o;57380:853::-;57534:4;-1:-1:-1;;;;;57555:13:0;;25110:19;:23;57551:675;;57591:71;;-1:-1:-1;;;57591:71:0;;-1:-1:-1;;;;;57591:36:0;;;;;:71;;20748:10;;57642:4;;57648:7;;57657:4;;57591:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57591:71:0;;;;;;;;-1:-1:-1;;57591:71:0;;;;;;;;;;;;:::i;:::-;;;57587:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57832:6;:13;57849:1;57832:18;57828:328;;57875:60;;-1:-1:-1;;;57875:60:0;;;;;;;:::i;57828:328::-;58106:6;58100:13;58091:6;58087:2;58083:15;58076:38;57587:584;-1:-1:-1;;;;;;57713:51:0;-1:-1:-1;;;57713:51:0;;-1:-1:-1;57706:58:0;;57551:675;-1:-1:-1;58210:4:0;57380:853;;;;;;:::o;14961:922::-;15014:7;;-1:-1:-1;;;15092:15:0;;15088:102;;-1:-1:-1;;;15128:15:0;;;-1:-1:-1;15172:2:0;15162:12;15088:102;15217:6;15208:5;:15;15204:102;;15253:6;15244:15;;;-1:-1:-1;15288:2:0;15278:12;15204:102;15333:6;15324:5;:15;15320:102;;15369:6;15360:15;;;-1:-1:-1;15404:2:0;15394:12;15320:102;15449:5;15440;:14;15436:99;;15484:5;15475:14;;;-1:-1:-1;15518:1:0;15508:11;15436:99;15562:5;15553;:14;15549:99;;15597:5;15588:14;;;-1:-1:-1;15631:1:0;15621:11;15549:99;15675:5;15666;:14;15662:99;;15710:5;15701:14;;;-1:-1:-1;15744:1:0;15734:11;15662:99;15788:5;15779;:14;15775:66;;15824:1;15814:11;15869:6;14961:922;-1:-1:-1;;14961:922:0:o;51522:319::-;51651:18;51657:2;51661:7;51651:5;:18::i;:::-;51702:53;51733:1;51737:2;51741:7;51750:4;51702:22;:53::i;:::-;51680:153;;;;-1:-1:-1;;;51680:153:0;;;;;;;:::i;63212:915::-;63389:61;63416:4;63422:2;63426:12;63440:9;63389:26;:61::i;:::-;63479:1;63467:9;:13;63463:222;;;63610:63;;-1:-1:-1;;;63610:63:0;;19186:2:1;63610:63:0;;;19168:21:1;19225:2;19205:18;;;19198:30;19264:34;19244:18;;;19237:62;-1:-1:-1;;;19315:18:1;;;19308:51;19376:19;;63610:63:0;18984:417:1;63463:222:0;63715:12;-1:-1:-1;;;;;63744:18:0;;63740:187;;63779:40;63811:7;64954:10;:17;;64927:24;;;;:15;:24;;;;;:44;;;64982:24;;;;;;;;;;;;64850:164;63779:40;63740:187;;;63849:2;-1:-1:-1;;;;;63841:10:0;:4;-1:-1:-1;;;;;63841:10:0;;63837:90;;63868:47;63901:4;63907:7;63868:32;:47::i;:::-;-1:-1:-1;;;;;63941:16:0;;63937:183;;63974:45;64011:7;63974:36;:45::i;63937:183::-;64047:4;-1:-1:-1;;;;;64041:10:0;:2;-1:-1:-1;;;;;64041:10:0;;64037:83;;64068:40;64096:2;64100:7;64068:27;:40::i;52177:942::-;-1:-1:-1;;;;;52257:16:0;;52249:61;;;;-1:-1:-1;;;52249:61:0;;19608:2:1;52249:61:0;;;19590:21:1;;;19627:18;;;19620:30;19686:34;19666:18;;;19659:62;19738:18;;52249:61:0;19406:356:1;52249:61:0;50349:4;49947:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49947:16:0;50373:31;52321:58;;;;-1:-1:-1;;;52321:58:0;;19969:2:1;52321:58:0;;;19951:21:1;20008:2;19988:18;;;19981:30;20047;20027:18;;;20020:58;20095:18;;52321:58:0;19767:352:1;52321:58:0;52392:48;52421:1;52425:2;52429:7;52438:1;52392:20;:48::i;:::-;50349:4;49947:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49947:16:0;50373:31;52530:58;;;;-1:-1:-1;;;52530:58:0;;19969:2:1;52530:58:0;;;19951:21:1;20008:2;19988:18;;;19981:30;20047;20027:18;;;20020:58;20095:18;;52530:58:0;19767:352:1;52530:58:0;-1:-1:-1;;;;;52937:13:0;;;;;;:9;:13;;;;;;;;:18;;52954:1;52937:18;;;52979:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52979:21:0;;;;;53018:33;52987:7;;52937:13;;53018:33;;52937:13;;53018:33;47105:155;;:::o;58965:410::-;59155:1;59143:9;:13;59139:229;;;-1:-1:-1;;;;;59177:18:0;;;59173:87;;-1:-1:-1;;;;;59216:15:0;;;;;;:9;:15;;;;;:28;;59235:9;;59216:15;:28;;59235:9;;59216:28;:::i;:::-;;;;-1:-1:-1;;59173:87:0;-1:-1:-1;;;;;59278:16:0;;;59274:83;;-1:-1:-1;;;;;59315:13:0;;;;;;:9;:13;;;;;:26;;59332:9;;59315:13;:26;;59332:9;;59315:26;:::i;:::-;;;;-1:-1:-1;;58965:410:0;;;;:::o;65641:988::-;65907:22;65957:1;65932:22;65949:4;65932:16;:22::i;:::-;:26;;;;:::i;:::-;65969:18;65990:26;;;:17;:26;;;;;;65907:51;;-1:-1:-1;66123:28:0;;;66119:328;;-1:-1:-1;;;;;66190:18:0;;66168:19;66190:18;;;:12;:18;;;;;;;;:34;;;;;;;;;66241:30;;;;;;:44;;;66358:30;;:17;:30;;;;;:43;;;66119:328;-1:-1:-1;66543:26:0;;;;:17;:26;;;;;;;;66536:33;;;-1:-1:-1;;;;;66587:18:0;;;;;:12;:18;;;;;:34;;;;;;;66580:41;65641:988::o;66924:1079::-;67202:10;:17;67177:22;;67202:21;;67222:1;;67202:21;:::i;:::-;67234:18;67255:24;;;:15;:24;;;;;;67628:10;:26;;67177:46;;-1:-1:-1;67255:24:0;;67177:46;;67628:26;;;;;;:::i;:::-;;;;;;;;;67606:48;;67692:11;67667:10;67678;67667:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;67772:28;;;:15;:28;;;;;;;:41;;;67944:24;;;;;67937:31;67979:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;66995:1008;;;66924:1079;:::o;64428:221::-;64513:14;64530:20;64547:2;64530:16;:20::i;:::-;-1:-1:-1;;;;;64561:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;64606:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;64428:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:118::-;2921:5;2914:13;2907:21;2900:5;2897:32;2887:60;;2943:1;2940;2933:12;2958:241;3014:6;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3122:9;3109:23;3141:28;3163:5;3141:28;:::i;3204:247::-;3263:6;3316:2;3304:9;3295:7;3291:23;3287:32;3284:52;;;3332:1;3329;3322:12;3284:52;3371:9;3358:23;3390:31;3415:5;3390:31;:::i;3456:632::-;3627:2;3679:21;;;3749:13;;3652:18;;;3771:22;;;3598:4;;3627:2;3850:15;;;;3824:2;3809:18;;;3598:4;3893:169;3907:6;3904:1;3901:13;3893:169;;;3968:13;;3956:26;;4037:15;;;;4002:12;;;;3929:1;3922:9;3893:169;;;-1:-1:-1;4079:3:1;;3456:632;-1:-1:-1;;;;;;3456:632:1:o;4093:382::-;4158:6;4166;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4274:9;4261:23;4293:31;4318:5;4293:31;:::i;:::-;4343:5;-1:-1:-1;4400:2:1;4385:18;;4372:32;4413:30;4372:32;4413:30;:::i;:::-;4462:7;4452:17;;;4093:382;;;;;:::o;4480:127::-;4541:10;4536:3;4532:20;4529:1;4522:31;4572:4;4569:1;4562:15;4596:4;4593:1;4586:15;4612:631;4676:5;4706:18;4747:2;4739:6;4736:14;4733:40;;;4753:18;;:::i;:::-;4828:2;4822:9;4796:2;4882:15;;-1:-1:-1;;4878:24:1;;;4904:2;4874:33;4870:42;4858:55;;;4928:18;;;4948:22;;;4925:46;4922:72;;;4974:18;;:::i;:::-;5014:10;5010:2;5003:22;5043:6;5034:15;;5073:6;5065;5058:22;5113:3;5104:6;5099:3;5095:16;5092:25;5089:45;;;5130:1;5127;5120:12;5089:45;5180:6;5175:3;5168:4;5160:6;5156:17;5143:44;5235:1;5228:4;5219:6;5211;5207:19;5203:30;5196:41;;;;4612:631;;;;;:::o;5248:794::-;5343:6;5351;5359;5367;5420:3;5408:9;5399:7;5395:23;5391:33;5388:53;;;5437:1;5434;5427:12;5388:53;5476:9;5463:23;5495:31;5520:5;5495:31;:::i;:::-;5545:5;-1:-1:-1;5602:2:1;5587:18;;5574:32;5615:33;5574:32;5615:33;:::i;:::-;5667:7;-1:-1:-1;5721:2:1;5706:18;;5693:32;;-1:-1:-1;5776:2:1;5761:18;;5748:32;5803:18;5792:30;;5789:50;;;5835:1;5832;5825:12;5789:50;5858:22;;5911:4;5903:13;;5899:27;-1:-1:-1;5889:55:1;;5940:1;5937;5930:12;5889:55;5963:73;6028:7;6023:2;6010:16;6005:2;6001;5997:11;5963:73;:::i;:::-;5953:83;;;5248:794;;;;;;;:::o;6047:450::-;6116:6;6169:2;6157:9;6148:7;6144:23;6140:32;6137:52;;;6185:1;6182;6175:12;6137:52;6225:9;6212:23;6258:18;6250:6;6247:30;6244:50;;;6290:1;6287;6280:12;6244:50;6313:22;;6366:4;6358:13;;6354:27;-1:-1:-1;6344:55:1;;6395:1;6392;6385:12;6344:55;6418:73;6483:7;6478:2;6465:16;6460:2;6456;6452:11;6418:73;:::i;6502:248::-;6570:6;6578;6631:2;6619:9;6610:7;6606:23;6602:32;6599:52;;;6647:1;6644;6637:12;6599:52;-1:-1:-1;;6670:23:1;;;6740:2;6725:18;;;6712:32;;-1:-1:-1;6502:248:1:o;6755:388::-;6823:6;6831;6884:2;6872:9;6863:7;6859:23;6855:32;6852:52;;;6900:1;6897;6890:12;6852:52;6939:9;6926:23;6958:31;6983:5;6958:31;:::i;:::-;7008:5;-1:-1:-1;7065:2:1;7050:18;;7037:32;7078:33;7037:32;7078:33;:::i;7148:380::-;7227:1;7223:12;;;;7270;;;7291:61;;7345:4;7337:6;7333:17;7323:27;;7291:61;7398:2;7390:6;7387:14;7367:18;7364:38;7361:161;;7444:10;7439:3;7435:20;7432:1;7425:31;7479:4;7476:1;7469:15;7507:4;7504:1;7497:15;7361:161;;7148:380;;;:::o;8365:413::-;8567:2;8549:21;;;8606:2;8586:18;;;8579:30;8645:34;8640:2;8625:18;;8618:62;-1:-1:-1;;;8711:2:1;8696:18;;8689:47;8768:3;8753:19;;8365:413::o;8783:127::-;8844:10;8839:3;8835:20;8832:1;8825:31;8875:4;8872:1;8865:15;8899:4;8896:1;8889:15;8915:127;8976:10;8971:3;8967:20;8964:1;8957:31;9007:4;9004:1;8997:15;9031:4;9028:1;9021:15;9047:125;9087:4;9115:1;9112;9109:8;9106:34;;;9120:18;;:::i;:::-;-1:-1:-1;9157:9:1;;9047:125::o;9177:127::-;9238:10;9233:3;9229:20;9226:1;9219:31;9269:4;9266:1;9259:15;9293:4;9290:1;9283:15;9309:135;9348:3;9369:17;;;9366:43;;9389:18;;:::i;:::-;-1:-1:-1;9436:1:1;9425:13;;9309:135::o;9758:245::-;9825:6;9878:2;9866:9;9857:7;9853:23;9849:32;9846:52;;;9894:1;9891;9884:12;9846:52;9926:9;9920:16;9945:28;9967:5;9945:28;:::i;11596:637::-;11876:3;11914:6;11908:13;11930:53;11976:6;11971:3;11964:4;11956:6;11952:17;11930:53;:::i;:::-;12046:13;;12005:16;;;;12068:57;12046:13;12005:16;12102:4;12090:17;;12068:57;:::i;:::-;-1:-1:-1;;;12147:20:1;;12176:22;;;12225:1;12214:13;;11596:637;-1:-1:-1;;;;11596:637:1:o;13343:251::-;13413:6;13466:2;13454:9;13445:7;13441:23;13437:32;13434:52;;;13482:1;13479;13472:12;13434:52;13514:9;13508:16;13533:31;13558:5;13533:31;:::i;15744:401::-;15946:2;15928:21;;;15985:2;15965:18;;;15958:30;16024:34;16019:2;16004:18;;15997:62;-1:-1:-1;;;16090:2:1;16075:18;;16068:35;16135:3;16120:19;;15744:401::o;17685:414::-;17887:2;17869:21;;;17926:2;17906:18;;;17899:30;17965:34;17960:2;17945:18;;17938:62;-1:-1:-1;;;18031:2:1;18016:18;;18009:48;18089:3;18074:19;;17685:414::o;18236:489::-;-1:-1:-1;;;;;18505:15:1;;;18487:34;;18557:15;;18552:2;18537:18;;18530:43;18604:2;18589:18;;18582:34;;;18652:3;18647:2;18632:18;;18625:31;;;18430:4;;18673:46;;18699:19;;18691:6;18673:46;:::i;:::-;18665:54;18236:489;-1:-1:-1;;;;;;18236:489:1:o;18730:249::-;18799:6;18852:2;18840:9;18831:7;18827:23;18823:32;18820:52;;;18868:1;18865;18858:12;18820:52;18900:9;18894:16;18919:30;18943:5;18919:30;:::i;20124:128::-;20164:3;20195:1;20191:6;20188:1;20185:13;20182:39;;;20201:18;;:::i;:::-;-1:-1:-1;20237:9:1;;20124:128::o

Swarm Source

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