ETH Price: $3,094.79 (+0.37%)
Gas: 12 Gwei

Token

AttackGame Official (ATTGO)
 

Overview

Max Total Supply

6,000 ATTGO

Holders

1,371

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
earlyadopternft.eth
Balance
16 ATTGO
0x31b8f26ed95900fcff35878eb61df244049d57ca
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:
AttackGameOfficial

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-12
*/

// SPDX-License-Identifier: MIT
// File: operator-filter-registry/src/lib/Constants.sol


//    _  _____  _____  _    ___  _  __   ___    _    __  __  ___ 
//   /_\|_   _||_   _|/_\  / __|| |/ /  / __|  /_\  |  \/  || __|
//  / _ \ | |    | | / _ \| (__ | ' <  | (_ | / _ \ | |\/| || _| 
// /_/ \_\|_|    |_|/_/ \_\\___||_|\_\  \___|/_/ \_\|_|  |_||___|
                                                               


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/UpdatableOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  UpdatableOperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the
 *         OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address,
 *         which will bypass registry checks.
 *         Note that OpenSea will still disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract UpdatableOperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);
    /// @dev Emitted when someone other than the owner is trying to call an only owner function.
    error OnlyOwner();

    event OperatorFilterRegistryAddressUpdated(address newRegistry);

    IOperatorFilterRegistry public operatorFilterRegistry;

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe) {
        IOperatorFilterRegistry registry = IOperatorFilterRegistry(_registry);
        operatorFilterRegistry = registry;
        // 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(registry).code.length > 0) {
            if (subscribe) {
                registry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    registry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    registry.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if the operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if the operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be bypassed. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public virtual {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
        emit OperatorFilterRegistryAddressUpdated(newRegistry);
    }

    /**
     * @dev Assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract.
     */
    function owner() public view virtual returns (address);

    /**
     * @dev A helper function to check if the operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        IOperatorFilterRegistry registry = operatorFilterRegistry;
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(registry) != address(0) && address(registry).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!registry.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/RevokableOperatorFilterer.sol


pragma solidity ^0.8.13;



/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The
 *         Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at
 *         any point. As implemented, this abstract contract allows the contract owner to permanently skip the
 *         OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry
 *         address cannot be further updated.
 *         Note that OpenSea will still disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer {
    /// @dev Emitted when the registry has already been revoked.
    error RegistryHasBeenRevoked();
    /// @dev Emitted when the initial registry address is attempted to be set to the zero address.
    error InitialRegistryAddressCannotBeZeroAddress();

    event OperatorFilterRegistryRevoked();

    bool public isOperatorFilterRegistryRevoked;

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe)
        UpdatableOperatorFilterer(_registry, subscriptionOrRegistrantToCopy, subscribe)
    {
        // don't allow creating a contract with a permanently revoked registry
        if (_registry == address(0)) {
            revert InitialRegistryAddressCannotBeZeroAddress();
        }
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public override {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
        emit OperatorFilterRegistryAddressUpdated(newRegistry);
    }

    /**
     * @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() public {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        // set to zero address to bypass checks
        operatorFilterRegistry = IOperatorFilterRegistry(address(0));
        isOperatorFilterRegistryRevoked = true;
        emit OperatorFilterRegistryRevoked();
    }
}

// File: operator-filter-registry/src/RevokableDefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  RevokableDefaultOperatorFilterer
 * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
 *         Note that OpenSea will disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */

abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor()
        RevokableOperatorFilterer(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS, CANONICAL_CORI_SUBSCRIPTION, true)
    {}
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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);
    }

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

// 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.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

// 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/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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) private _owners;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

// File: contracts/lowGasContract.sol



pragma solidity >=0.7.0 <0.9.0;







contract AttackGameOfficial is ERC721, Ownable,  ERC2981, RevokableDefaultOperatorFilterer {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 6000;
  uint256 public maxMintAmountPerTx = 5;
  
  bool public paused = true;
  bool public revealed = false;

  constructor() ERC721("AttackGame Official", "ATTGO") {
    setHiddenMetadataUri("ipfs://QmfAfnhZXzDqYqNSxuf94CzQAgh4GZ6zVM7WmRrUUGqfTA/1.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(msg.sender == tx.origin, "Contract minting is not allowed");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded");
    _;
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused");
    require(msg.value >= cost * _mintAmount, "Insufficient funds");
    require(balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTx, "Can not mint this many");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;

  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

  /// ============ ERC2981 ============
   function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

  /// ============ OPERATOR FILTER REGISTRY ============
        function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

        function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

        function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

        function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

        function owner() public view virtual override(Ownable, UpdatableOperatorFilterer) returns (address) {
        return Ownable.owner();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InitialRegistryAddressCannotBeZeroAddress","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"RegistryHasBeenRevoked","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":false,"internalType":"address","name":"newRegistry","type":"address"}],"name":"OperatorFilterRegistryAddressUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"OperatorFilterRegistryRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRegistry","type":"address"}],"name":"updateOperatorFilterRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b908162000024919062000880565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200006b919062000880565b506000600e55611770600f5560056010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000bf57600080fd5b506daaeb6d7670e522a718067333cd4e733cc6cdda760b79bafa08df41ecfa224f810dceb660018282826040518060400160405280601381526020017f41747461636b47616d65204f6666696369616c000000000000000000000000008152506040518060400160405280600581526020017f415454474f000000000000000000000000000000000000000000000000000000815250816000908162000166919062000880565b50806001908162000178919062000880565b5050506200019b6200018f6200043c60201b60201c565b6200044460201b60201c565b600083905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008173ffffffffffffffffffffffffffffffffffffffff163b11156200039e57811562000280578073ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30856040518363ffffffff1660e01b815260040162000246929190620009ac565b600060405180830381600087803b1580156200026157600080fd5b505af115801562000276573d6000803e3d6000fd5b505050506200039d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200032c578073ffffffffffffffffffffffffffffffffffffffff1663a0af290330856040518363ffffffff1660e01b8152600401620002f2929190620009ac565b600060405180830381600087803b1580156200030d57600080fd5b505af115801562000322573d6000803e3d6000fd5b505050506200039c565b8073ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003679190620009d9565b600060405180830381600087803b1580156200038257600080fd5b505af115801562000397573d6000803e3d6000fd5b505050505b5b5b50505050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000409576040517fc49d17ad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050620004366040518060600160405280603c8152602001620054e3603c91396200050a60201b60201c565b62000a79565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200051a6200052f60201b60201c565b80600d90816200052b919062000880565b5050565b6200053f6200043c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000565620005c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b59062000a57565b60405180910390fd5b565b6000620005d7620005dc60201b62001be41760201c565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200068857607f821691505b6020821081036200069e576200069d62000640565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006c9565b620007148683620006c9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007616200075b62000755846200072c565b62000736565b6200072c565b9050919050565b6000819050919050565b6200077d8362000740565b620007956200078c8262000768565b848454620006d6565b825550505050565b600090565b620007ac6200079d565b620007b981848462000772565b505050565b5b81811015620007e157620007d5600082620007a2565b600181019050620007bf565b5050565b601f8211156200083057620007fa81620006a4565b6200080584620006b9565b8101602085101562000815578190505b6200082d6200082485620006b9565b830182620007be565b50505b505050565b600082821c905092915050565b6000620008556000198460080262000835565b1980831691505092915050565b600062000870838362000842565b9150826002028217905092915050565b6200088b8262000606565b67ffffffffffffffff811115620008a757620008a662000611565b5b620008b382546200066f565b620008c0828285620007e5565b600060209050601f831160018114620008f85760008415620008e3578287015190505b620008ef858262000862565b8655506200095f565b601f1984166200090886620006a4565b60005b8281101562000932578489015182556001820191506020850194506020810190506200090b565b868310156200095257848901516200094e601f89168262000842565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009948262000967565b9050919050565b620009a68162000987565b82525050565b6000604082019050620009c360008301856200099b565b620009d260208301846200099b565b9392505050565b6000602082019050620009f060008301846200099b565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a3f602083620009f6565b915062000a4c8262000a07565b602082019050919050565b6000602082019050818103600083015262000a728162000a30565b9050919050565b614a5a8062000a896000396000f3fe6080604052600436106102465760003560e01c80636352211e11610139578063b071401b116100b6578063d5abeb011161007a578063d5abeb0114610848578063e0a8085314610873578063e985e9c51461089c578063ecba222a146108d9578063efbd73f414610904578063f2fde38b1461092d57610246565b8063b071401b14610765578063b0ccc31e1461078e578063b88d4fde146107b9578063b8d1e532146107e2578063c87b56dd1461080b57610246565b806394354fd0116100fd57806394354fd01461069f57806395d89b41146106ca578063a0712d68146106f5578063a22cb46514610711578063a45ba8e71461073a57610246565b80636352211e146105ba57806370a08231146105f7578063715018a6146106345780637ec4a6591461064b5780638da5cb5b1461067457610246565b80633ccfd60b116101c7578063518302271161018b57806351830227146104f75780635503a0e8146105225780635c975abb1461054d5780635ef9432a1461057857806362b99ad41461058f57610246565b80633ccfd60b1461042857806342842e0e1461043f578063438b63001461046857806344a0d68a146104a55780634fdd43cb146104ce57610246565b806316ba10e01161020e57806316ba10e01461034457806316c38b3c1461036d57806318160ddd1461039657806323b872dd146103c15780632a55205a146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede614610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613122565b610956565b60405161027f919061316a565b60405180910390f35b34801561029457600080fd5b5061029d610968565b6040516102aa9190613215565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061326d565b6109fa565b6040516102e791906132db565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613322565b610a40565b005b34801561032557600080fd5b5061032e610a59565b60405161033b9190613371565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906134c1565b610a5f565b005b34801561037957600080fd5b50610394600480360381019061038f9190613536565b610a7a565b005b3480156103a257600080fd5b506103ab610a9f565b6040516103b89190613371565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190613563565b610ab0565b005b3480156103f657600080fd5b50610411600480360381019061040c91906135b6565b610aff565b60405161041f9291906135f6565b60405180910390f35b34801561043457600080fd5b5061043d610ce9565b005b34801561044b57600080fd5b5061046660048036038101906104619190613563565b610d71565b005b34801561047457600080fd5b5061048f600480360381019061048a919061361f565b610dc0565b60405161049c919061370a565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c7919061326d565b610eca565b005b3480156104da57600080fd5b506104f560048036038101906104f091906134c1565b610edc565b005b34801561050357600080fd5b5061050c610ef7565b604051610519919061316a565b60405180910390f35b34801561052e57600080fd5b50610537610f0a565b6040516105449190613215565b60405180910390f35b34801561055957600080fd5b50610562610f98565b60405161056f919061316a565b60405180910390f35b34801561058457600080fd5b5061058d610fab565b005b34801561059b57600080fd5b506105a46110e9565b6040516105b19190613215565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc919061326d565b611177565b6040516105ee91906132db565b60405180910390f35b34801561060357600080fd5b5061061e6004803603810190610619919061361f565b6111fd565b60405161062b9190613371565b60405180910390f35b34801561064057600080fd5b506106496112b4565b005b34801561065757600080fd5b50610672600480360381019061066d91906134c1565b6112c8565b005b34801561068057600080fd5b506106896112e3565b60405161069691906132db565b60405180910390f35b3480156106ab57600080fd5b506106b46112f2565b6040516106c19190613371565b60405180910390f35b3480156106d657600080fd5b506106df6112f8565b6040516106ec9190613215565b60405180910390f35b61070f600480360381019061070a919061326d565b61138a565b005b34801561071d57600080fd5b506107386004803603810190610733919061372c565b6115a9565b005b34801561074657600080fd5b5061074f6115c2565b60405161075c9190613215565b60405180910390f35b34801561077157600080fd5b5061078c6004803603810190610787919061326d565b611650565b005b34801561079a57600080fd5b506107a3611662565b6040516107b091906137cb565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190613887565b611688565b005b3480156107ee57600080fd5b506108096004803603810190610804919061361f565b6116d9565b005b34801561081757600080fd5b50610832600480360381019061082d919061326d565b611807565b60405161083f9190613215565b60405180910390f35b34801561085457600080fd5b5061085d61195f565b60405161086a9190613371565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613536565b611965565b005b3480156108a857600080fd5b506108c360048036038101906108be919061390a565b61198a565b6040516108d0919061316a565b60405180910390f35b3480156108e557600080fd5b506108ee611a1e565b6040516108fb919061316a565b60405180910390f35b34801561091057600080fd5b5061092b6004803603810190610926919061394a565b611a31565b005b34801561093957600080fd5b50610954600480360381019061094f919061361f565b611b61565b005b600061096182611c0e565b9050919050565b606060008054610977906139b9565b80601f01602080910402602001604051908101604052809291908181526020018280546109a3906139b9565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582611c88565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a4a81611cd3565b610a548383611e15565b505050565b600e5481565b610a67611f2c565b80600c9081610a769190613b8c565b5050565b610a82611f2c565b80601160006101000a81548160ff02191690831515021790555050565b6000610aab600a611faa565b905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aee57610aed33611cd3565b5b610af9848484611fb8565b50505050565b6000806000600860008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610c945760076040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c9e612018565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610cca9190613c8d565b610cd49190613cfe565b90508160000151819350935050509250929050565b610cf1611f2c565b6000610cfb6112e3565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d1e90613d60565b60006040518083038185875af1925050503d8060008114610d5b576040519150601f19603f3d011682016040523d82523d6000602084013e610d60565b606091505b5050905080610d6e57600080fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610daf57610dae33611cd3565b5b610dba848484612022565b50505050565b60606000610dcd836111fd565b905060008167ffffffffffffffff811115610deb57610dea613396565b5b604051908082528060200260200182016040528015610e195781602001602082028036833780820191505090505b50905060006001905060005b8381108015610e365750600f548211155b15610ebe576000610e4683611177565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eaa5782848381518110610e8f57610e8e613d75565b5b6020026020010181815250508180610ea690613da4565b9250505b8280610eb590613da4565b93505050610e25565b82945050505050919050565b610ed2611f2c565b80600e8190555050565b610ee4611f2c565b80600d9081610ef39190613b8c565b5050565b601160019054906101000a900460ff1681565b600c8054610f17906139b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f43906139b9565b8015610f905780601f10610f6557610100808354040283529160200191610f90565b820191906000526020600020905b815481529060010190602001808311610f7357829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b610fb36112e3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611017576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960149054906101000a900460ff161561105e576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960146101000a81548160ff0219169083151502179055507f51e2d870cc2e10853e38dc06fcdae46ad3c3f588f326608803dac6204541ad1660405160405180910390a1565b600b80546110f6906139b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611122906139b9565b801561116f5780601f106111445761010080835404028352916020019161116f565b820191906000526020600020905b81548152906001019060200180831161115257829003601f168201915b505050505081565b60008061118383612042565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613e38565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490613eca565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bc611f2c565b6112c6600061207f565b565b6112d0611f2c565b80600b90816112df9190613b8c565b5050565b60006112ed611be4565b905090565b60105481565b606060018054611307906139b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611333906139b9565b80156113805780601f1061135557610100808354040283529160200191611380565b820191906000526020600020905b81548152906001019060200180831161136357829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090613f36565b60405180910390fd5b60008111801561140b57506010548111155b61144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190613fa2565b60405180910390fd5b600f5481611458600a611faa565b6114629190613fc2565b11156114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a90614042565b60405180910390fd5b601160009054906101000a900460ff16156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea906140ae565b60405180910390fd5b81600e546115019190613c8d565b341015611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9061411a565b60405180910390fd5b60105482611550336111fd565b61155a9190613fc2565b111561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290614186565b60405180910390fd5b6115a53383612145565b5050565b816115b381611cd3565b6115bd8383612185565b505050565b600d80546115cf906139b9565b80601f01602080910402602001604051908101604052809291908181526020018280546115fb906139b9565b80156116485780601f1061161d57610100808354040283529160200191611648565b820191906000526020600020905b81548152906001019060200180831161162b57829003601f168201915b505050505081565b611658611f2c565b8060108190555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c6576116c533611cd3565b5b6116d28585858561219b565b5050505050565b6116e16112e3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611745576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960149054906101000a900460ff161561178c576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9f513fe86dc42fdbac355fa4d9b1d5be7b5e6cd2df67e30db8003766568de476816040516117fc91906132db565b60405180910390a150565b6060611812826121fd565b611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890614218565b60405180910390fd5b60001515601160019054906101000a900460ff161515036118fe57600d8054611879906139b9565b80601f01602080910402602001604051908101604052809291908181526020018280546118a5906139b9565b80156118f25780601f106118c7576101008083540402835291602001916118f2565b820191906000526020600020905b8154815290600101906020018083116118d557829003601f168201915b5050505050905061195a565b600061190861223e565b905060008151116119285760405180602001604052806000815250611956565b80611932846122d0565b600c604051602001611946939291906142f7565b6040516020818303038152906040525b9150505b919050565b600f5481565b61196d611f2c565b80601160016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960149054906101000a900460ff1681565b813273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613f36565b60405180910390fd5b600081118015611ab257506010548111155b611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890613fa2565b60405180910390fd5b600f5481611aff600a611faa565b611b099190613fc2565b1115611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190614042565b60405180910390fd5b611b52611f2c565b611b5c8284612145565b505050565b611b69611f2c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf9061439a565b60405180910390fd5b611be18161207f565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c815750611c808261239e565b5b9050919050565b611c91816121fd565b611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790613e38565b60405180910390fd5b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611d4e575060008173ffffffffffffffffffffffffffffffffffffffff163b115b15611e11578073ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401611d8e9291906143ba565b602060405180830381865afa158015611dab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dcf91906143f8565b611e1057816040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e0791906132db565b60405180910390fd5b5b5050565b6000611e2082611177565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8790614497565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611eaf612480565b73ffffffffffffffffffffffffffffffffffffffff161480611ede5750611edd81611ed8612480565b61198a565b5b611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490614529565b60405180910390fd5b611f278383612488565b505050565b611f34612480565b73ffffffffffffffffffffffffffffffffffffffff16611f526112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90614595565b60405180910390fd5b565b600081600001549050919050565b611fc9611fc3612480565b82612541565b612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90614627565b60405180910390fd5b6120138383836125d6565b505050565b6000612710905090565b61203d83838360405180602001604052806000815250611688565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156121805761215a600a6128cf565b61216d83612168600a611faa565b6128e5565b808061217890613da4565b915050612148565b505050565b612197612190612480565b8383612903565b5050565b6121ac6121a6612480565b83612541565b6121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614627565b60405180910390fd5b6121f784848484612a6f565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661221f83612042565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b805461224d906139b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612279906139b9565b80156122c65780601f1061229b576101008083540402835291602001916122c6565b820191906000526020600020905b8154815290600101906020018083116122a957829003601f168201915b5050505050905090565b6060600060016122df84612acb565b01905060008167ffffffffffffffff8111156122fe576122fd613396565b5b6040519080825280601f01601f1916602001820160405280156123305781602001600182028036833780820191505090505b509050600082602001820190505b600115612393578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161238757612386613ccf565b5b0494506000850361233e575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061246957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612479575061247882612c1e565b5b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124fb83611177565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061254d83611177565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061258f575061258e818561198a565b5b806125cd57508373ffffffffffffffffffffffffffffffffffffffff166125b5846109fa565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125f682611177565b73ffffffffffffffffffffffffffffffffffffffff161461264c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612643906146b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b29061474b565b60405180910390fd5b6126c88383836001612c88565b8273ffffffffffffffffffffffffffffffffffffffff166126e882611177565b73ffffffffffffffffffffffffffffffffffffffff161461273e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612735906146b9565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ca8383836001612c8e565b505050565b6001816000016000828254019250508190555050565b6128ff828260405180602001604052806000815250612c94565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612968906147b7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a62919061316a565b60405180910390a3505050565b612a7a8484846125d6565b612a8684848484612cef565b612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614849565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612b29577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612b1f57612b1e613ccf565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612b66576d04ee2d6d415b85acef81000000008381612b5c57612b5b613ccf565b5b0492506020810190505b662386f26fc100008310612b9557662386f26fc100008381612b8b57612b8a613ccf565b5b0492506010810190505b6305f5e1008310612bbe576305f5e1008381612bb457612bb3613ccf565b5b0492506008810190505b6127108310612be3576127108381612bd957612bd8613ccf565b5b0492506004810190505b60648310612c065760648381612bfc57612bfb613ccf565b5b0492506002810190505b600a8310612c15576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b612c9e8383612e76565b612cab6000848484612cef565b612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce190614849565b60405180910390fd5b505050565b6000612d108473ffffffffffffffffffffffffffffffffffffffff16613093565b15612e69578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d39612480565b8786866040518563ffffffff1660e01b8152600401612d5b94939291906148be565b6020604051808303816000875af1925050508015612d9757506040513d601f19601f82011682018060405250810190612d94919061491f565b60015b612e19573d8060008114612dc7576040519150601f19603f3d011682016040523d82523d6000602084013e612dcc565b606091505b506000815103612e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0890614849565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e6e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edc90614998565b60405180910390fd5b612eee816121fd565b15612f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2590614a04565b60405180910390fd5b612f3c600083836001612c88565b612f45816121fd565b15612f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7c90614a04565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461308f600083836001612c8e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130ff816130ca565b811461310a57600080fd5b50565b60008135905061311c816130f6565b92915050565b600060208284031215613138576131376130c0565b5b60006131468482850161310d565b91505092915050565b60008115159050919050565b6131648161314f565b82525050565b600060208201905061317f600083018461315b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131bf5780820151818401526020810190506131a4565b60008484015250505050565b6000601f19601f8301169050919050565b60006131e782613185565b6131f18185613190565b93506132018185602086016131a1565b61320a816131cb565b840191505092915050565b6000602082019050818103600083015261322f81846131dc565b905092915050565b6000819050919050565b61324a81613237565b811461325557600080fd5b50565b60008135905061326781613241565b92915050565b600060208284031215613283576132826130c0565b5b600061329184828501613258565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132c58261329a565b9050919050565b6132d5816132ba565b82525050565b60006020820190506132f060008301846132cc565b92915050565b6132ff816132ba565b811461330a57600080fd5b50565b60008135905061331c816132f6565b92915050565b60008060408385031215613339576133386130c0565b5b60006133478582860161330d565b925050602061335885828601613258565b9150509250929050565b61336b81613237565b82525050565b60006020820190506133866000830184613362565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133ce826131cb565b810181811067ffffffffffffffff821117156133ed576133ec613396565b5b80604052505050565b60006134006130b6565b905061340c82826133c5565b919050565b600067ffffffffffffffff82111561342c5761342b613396565b5b613435826131cb565b9050602081019050919050565b82818337600083830152505050565b600061346461345f84613411565b6133f6565b9050828152602081018484840111156134805761347f613391565b5b61348b848285613442565b509392505050565b600082601f8301126134a8576134a761338c565b5b81356134b8848260208601613451565b91505092915050565b6000602082840312156134d7576134d66130c0565b5b600082013567ffffffffffffffff8111156134f5576134f46130c5565b5b61350184828501613493565b91505092915050565b6135138161314f565b811461351e57600080fd5b50565b6000813590506135308161350a565b92915050565b60006020828403121561354c5761354b6130c0565b5b600061355a84828501613521565b91505092915050565b60008060006060848603121561357c5761357b6130c0565b5b600061358a8682870161330d565b935050602061359b8682870161330d565b92505060406135ac86828701613258565b9150509250925092565b600080604083850312156135cd576135cc6130c0565b5b60006135db85828601613258565b92505060206135ec85828601613258565b9150509250929050565b600060408201905061360b60008301856132cc565b6136186020830184613362565b9392505050565b600060208284031215613635576136346130c0565b5b60006136438482850161330d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61368181613237565b82525050565b60006136938383613678565b60208301905092915050565b6000602082019050919050565b60006136b78261364c565b6136c18185613657565b93506136cc83613668565b8060005b838110156136fd5781516136e48882613687565b97506136ef8361369f565b9250506001810190506136d0565b5085935050505092915050565b6000602082019050818103600083015261372481846136ac565b905092915050565b60008060408385031215613743576137426130c0565b5b60006137518582860161330d565b925050602061376285828601613521565b9150509250929050565b6000819050919050565b600061379161378c6137878461329a565b61376c565b61329a565b9050919050565b60006137a382613776565b9050919050565b60006137b582613798565b9050919050565b6137c5816137aa565b82525050565b60006020820190506137e060008301846137bc565b92915050565b600067ffffffffffffffff82111561380157613800613396565b5b61380a826131cb565b9050602081019050919050565b600061382a613825846137e6565b6133f6565b90508281526020810184848401111561384657613845613391565b5b613851848285613442565b509392505050565b600082601f83011261386e5761386d61338c565b5b813561387e848260208601613817565b91505092915050565b600080600080608085870312156138a1576138a06130c0565b5b60006138af8782880161330d565b94505060206138c08782880161330d565b93505060406138d187828801613258565b925050606085013567ffffffffffffffff8111156138f2576138f16130c5565b5b6138fe87828801613859565b91505092959194509250565b60008060408385031215613921576139206130c0565b5b600061392f8582860161330d565b92505060206139408582860161330d565b9150509250929050565b60008060408385031215613961576139606130c0565b5b600061396f85828601613258565b92505060206139808582860161330d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139d157607f821691505b6020821081036139e4576139e361398a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a4c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a0f565b613a568683613a0f565b95508019841693508086168417925050509392505050565b6000613a89613a84613a7f84613237565b61376c565b613237565b9050919050565b6000819050919050565b613aa383613a6e565b613ab7613aaf82613a90565b848454613a1c565b825550505050565b600090565b613acc613abf565b613ad7818484613a9a565b505050565b5b81811015613afb57613af0600082613ac4565b600181019050613add565b5050565b601f821115613b4057613b11816139ea565b613b1a846139ff565b81016020851015613b29578190505b613b3d613b35856139ff565b830182613adc565b50505b505050565b600082821c905092915050565b6000613b6360001984600802613b45565b1980831691505092915050565b6000613b7c8383613b52565b9150826002028217905092915050565b613b9582613185565b67ffffffffffffffff811115613bae57613bad613396565b5b613bb882546139b9565b613bc3828285613aff565b600060209050601f831160018114613bf65760008415613be4578287015190505b613bee8582613b70565b865550613c56565b601f198416613c04866139ea565b60005b82811015613c2c57848901518255600182019150602085019450602081019050613c07565b86831015613c495784890151613c45601f891682613b52565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c9882613237565b9150613ca383613237565b9250828202613cb181613237565b91508282048414831517613cc857613cc7613c5e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d0982613237565b9150613d1483613237565b925082613d2457613d23613ccf565b5b828204905092915050565b600081905092915050565b50565b6000613d4a600083613d2f565b9150613d5582613d3a565b600082019050919050565b6000613d6b82613d3d565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613daf82613237565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613de157613de0613c5e565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613e22601883613190565b9150613e2d82613dec565b602082019050919050565b60006020820190508181036000830152613e5181613e15565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613eb4602983613190565b9150613ebf82613e58565b604082019050919050565b60006020820190508181036000830152613ee381613ea7565b9050919050565b7f436f6e7472616374206d696e74696e67206973206e6f7420616c6c6f77656400600082015250565b6000613f20601f83613190565b9150613f2b82613eea565b602082019050919050565b60006020820190508181036000830152613f4f81613f13565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613f8c601383613190565b9150613f9782613f56565b602082019050919050565b60006020820190508181036000830152613fbb81613f7f565b9050919050565b6000613fcd82613237565b9150613fd883613237565b9250828201905080821115613ff057613fef613c5e565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600061402c601383613190565b915061403782613ff6565b602082019050919050565b6000602082019050818103600083015261405b8161401f565b9050919050565b7f54686520636f6e74726163742069732070617573656400000000000000000000600082015250565b6000614098601683613190565b91506140a382614062565b602082019050919050565b600060208201905081810360008301526140c78161408b565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614104601283613190565b915061410f826140ce565b602082019050919050565b60006020820190508181036000830152614133816140f7565b9050919050565b7f43616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b6000614170601683613190565b915061417b8261413a565b602082019050919050565b6000602082019050818103600083015261419f81614163565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614202602f83613190565b915061420d826141a6565b604082019050919050565b60006020820190508181036000830152614231816141f5565b9050919050565b600081905092915050565b600061424e82613185565b6142588185614238565b93506142688185602086016131a1565b80840191505092915050565b60008154614281816139b9565b61428b8186614238565b945060018216600081146142a657600181146142bb576142ee565b60ff19831686528115158202860193506142ee565b6142c4856139ea565b60005b838110156142e6578154818901526001820191506020810190506142c7565b838801955050505b50505092915050565b60006143038286614243565b915061430f8285614243565b915061431b8284614274565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614384602683613190565b915061438f82614328565b604082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b60006040820190506143cf60008301856132cc565b6143dc60208301846132cc565b9392505050565b6000815190506143f28161350a565b92915050565b60006020828403121561440e5761440d6130c0565b5b600061441c848285016143e3565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614481602183613190565b915061448c82614425565b604082019050919050565b600060208201905081810360008301526144b081614474565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614513603d83613190565b915061451e826144b7565b604082019050919050565b6000602082019050818103600083015261454281614506565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061457f602083613190565b915061458a82614549565b602082019050919050565b600060208201905081810360008301526145ae81614572565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614611602d83613190565b915061461c826145b5565b604082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006146a3602583613190565b91506146ae82614647565b604082019050919050565b600060208201905081810360008301526146d281614696565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614735602483613190565b9150614740826146d9565b604082019050919050565b6000602082019050818103600083015261476481614728565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006147a1601983613190565b91506147ac8261476b565b602082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614833603283613190565b915061483e826147d7565b604082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061489082614869565b61489a8185614874565b93506148aa8185602086016131a1565b6148b3816131cb565b840191505092915050565b60006080820190506148d360008301876132cc565b6148e060208301866132cc565b6148ed6040830185613362565b81810360608301526148ff8184614885565b905095945050505050565b600081519050614919816130f6565b92915050565b600060208284031215614935576149346130c0565b5b60006149438482850161490a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614982602083613190565b915061498d8261494c565b602082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006149ee601c83613190565b91506149f9826149b8565b602082019050919050565b60006020820190508181036000830152614a1d816149e1565b905091905056fea26469706673582212209753ac2f0ecce130e0d44f57a3b40c187bc1d484c50f3ea6e0d32cc3058b6b9864736f6c63430008120033697066733a2f2f516d6641666e685a587a447159714e537875663934437a5141676834475a367a564d37576d5272555547716654412f312e6a736f6e

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636352211e11610139578063b071401b116100b6578063d5abeb011161007a578063d5abeb0114610848578063e0a8085314610873578063e985e9c51461089c578063ecba222a146108d9578063efbd73f414610904578063f2fde38b1461092d57610246565b8063b071401b14610765578063b0ccc31e1461078e578063b88d4fde146107b9578063b8d1e532146107e2578063c87b56dd1461080b57610246565b806394354fd0116100fd57806394354fd01461069f57806395d89b41146106ca578063a0712d68146106f5578063a22cb46514610711578063a45ba8e71461073a57610246565b80636352211e146105ba57806370a08231146105f7578063715018a6146106345780637ec4a6591461064b5780638da5cb5b1461067457610246565b80633ccfd60b116101c7578063518302271161018b57806351830227146104f75780635503a0e8146105225780635c975abb1461054d5780635ef9432a1461057857806362b99ad41461058f57610246565b80633ccfd60b1461042857806342842e0e1461043f578063438b63001461046857806344a0d68a146104a55780634fdd43cb146104ce57610246565b806316ba10e01161020e57806316ba10e01461034457806316c38b3c1461036d57806318160ddd1461039657806323b872dd146103c15780632a55205a146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede614610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613122565b610956565b60405161027f919061316a565b60405180910390f35b34801561029457600080fd5b5061029d610968565b6040516102aa9190613215565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061326d565b6109fa565b6040516102e791906132db565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613322565b610a40565b005b34801561032557600080fd5b5061032e610a59565b60405161033b9190613371565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906134c1565b610a5f565b005b34801561037957600080fd5b50610394600480360381019061038f9190613536565b610a7a565b005b3480156103a257600080fd5b506103ab610a9f565b6040516103b89190613371565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190613563565b610ab0565b005b3480156103f657600080fd5b50610411600480360381019061040c91906135b6565b610aff565b60405161041f9291906135f6565b60405180910390f35b34801561043457600080fd5b5061043d610ce9565b005b34801561044b57600080fd5b5061046660048036038101906104619190613563565b610d71565b005b34801561047457600080fd5b5061048f600480360381019061048a919061361f565b610dc0565b60405161049c919061370a565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c7919061326d565b610eca565b005b3480156104da57600080fd5b506104f560048036038101906104f091906134c1565b610edc565b005b34801561050357600080fd5b5061050c610ef7565b604051610519919061316a565b60405180910390f35b34801561052e57600080fd5b50610537610f0a565b6040516105449190613215565b60405180910390f35b34801561055957600080fd5b50610562610f98565b60405161056f919061316a565b60405180910390f35b34801561058457600080fd5b5061058d610fab565b005b34801561059b57600080fd5b506105a46110e9565b6040516105b19190613215565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc919061326d565b611177565b6040516105ee91906132db565b60405180910390f35b34801561060357600080fd5b5061061e6004803603810190610619919061361f565b6111fd565b60405161062b9190613371565b60405180910390f35b34801561064057600080fd5b506106496112b4565b005b34801561065757600080fd5b50610672600480360381019061066d91906134c1565b6112c8565b005b34801561068057600080fd5b506106896112e3565b60405161069691906132db565b60405180910390f35b3480156106ab57600080fd5b506106b46112f2565b6040516106c19190613371565b60405180910390f35b3480156106d657600080fd5b506106df6112f8565b6040516106ec9190613215565b60405180910390f35b61070f600480360381019061070a919061326d565b61138a565b005b34801561071d57600080fd5b506107386004803603810190610733919061372c565b6115a9565b005b34801561074657600080fd5b5061074f6115c2565b60405161075c9190613215565b60405180910390f35b34801561077157600080fd5b5061078c6004803603810190610787919061326d565b611650565b005b34801561079a57600080fd5b506107a3611662565b6040516107b091906137cb565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190613887565b611688565b005b3480156107ee57600080fd5b506108096004803603810190610804919061361f565b6116d9565b005b34801561081757600080fd5b50610832600480360381019061082d919061326d565b611807565b60405161083f9190613215565b60405180910390f35b34801561085457600080fd5b5061085d61195f565b60405161086a9190613371565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613536565b611965565b005b3480156108a857600080fd5b506108c360048036038101906108be919061390a565b61198a565b6040516108d0919061316a565b60405180910390f35b3480156108e557600080fd5b506108ee611a1e565b6040516108fb919061316a565b60405180910390f35b34801561091057600080fd5b5061092b6004803603810190610926919061394a565b611a31565b005b34801561093957600080fd5b50610954600480360381019061094f919061361f565b611b61565b005b600061096182611c0e565b9050919050565b606060008054610977906139b9565b80601f01602080910402602001604051908101604052809291908181526020018280546109a3906139b9565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582611c88565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a4a81611cd3565b610a548383611e15565b505050565b600e5481565b610a67611f2c565b80600c9081610a769190613b8c565b5050565b610a82611f2c565b80601160006101000a81548160ff02191690831515021790555050565b6000610aab600a611faa565b905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aee57610aed33611cd3565b5b610af9848484611fb8565b50505050565b6000806000600860008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610c945760076040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c9e612018565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610cca9190613c8d565b610cd49190613cfe565b90508160000151819350935050509250929050565b610cf1611f2c565b6000610cfb6112e3565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d1e90613d60565b60006040518083038185875af1925050503d8060008114610d5b576040519150601f19603f3d011682016040523d82523d6000602084013e610d60565b606091505b5050905080610d6e57600080fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610daf57610dae33611cd3565b5b610dba848484612022565b50505050565b60606000610dcd836111fd565b905060008167ffffffffffffffff811115610deb57610dea613396565b5b604051908082528060200260200182016040528015610e195781602001602082028036833780820191505090505b50905060006001905060005b8381108015610e365750600f548211155b15610ebe576000610e4683611177565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eaa5782848381518110610e8f57610e8e613d75565b5b6020026020010181815250508180610ea690613da4565b9250505b8280610eb590613da4565b93505050610e25565b82945050505050919050565b610ed2611f2c565b80600e8190555050565b610ee4611f2c565b80600d9081610ef39190613b8c565b5050565b601160019054906101000a900460ff1681565b600c8054610f17906139b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f43906139b9565b8015610f905780601f10610f6557610100808354040283529160200191610f90565b820191906000526020600020905b815481529060010190602001808311610f7357829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b610fb36112e3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611017576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960149054906101000a900460ff161561105e576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960146101000a81548160ff0219169083151502179055507f51e2d870cc2e10853e38dc06fcdae46ad3c3f588f326608803dac6204541ad1660405160405180910390a1565b600b80546110f6906139b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611122906139b9565b801561116f5780601f106111445761010080835404028352916020019161116f565b820191906000526020600020905b81548152906001019060200180831161115257829003601f168201915b505050505081565b60008061118383612042565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613e38565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490613eca565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bc611f2c565b6112c6600061207f565b565b6112d0611f2c565b80600b90816112df9190613b8c565b5050565b60006112ed611be4565b905090565b60105481565b606060018054611307906139b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611333906139b9565b80156113805780601f1061135557610100808354040283529160200191611380565b820191906000526020600020905b81548152906001019060200180831161136357829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090613f36565b60405180910390fd5b60008111801561140b57506010548111155b61144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190613fa2565b60405180910390fd5b600f5481611458600a611faa565b6114629190613fc2565b11156114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a90614042565b60405180910390fd5b601160009054906101000a900460ff16156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea906140ae565b60405180910390fd5b81600e546115019190613c8d565b341015611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9061411a565b60405180910390fd5b60105482611550336111fd565b61155a9190613fc2565b111561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290614186565b60405180910390fd5b6115a53383612145565b5050565b816115b381611cd3565b6115bd8383612185565b505050565b600d80546115cf906139b9565b80601f01602080910402602001604051908101604052809291908181526020018280546115fb906139b9565b80156116485780601f1061161d57610100808354040283529160200191611648565b820191906000526020600020905b81548152906001019060200180831161162b57829003601f168201915b505050505081565b611658611f2c565b8060108190555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c6576116c533611cd3565b5b6116d28585858561219b565b5050505050565b6116e16112e3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611745576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960149054906101000a900460ff161561178c576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9f513fe86dc42fdbac355fa4d9b1d5be7b5e6cd2df67e30db8003766568de476816040516117fc91906132db565b60405180910390a150565b6060611812826121fd565b611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890614218565b60405180910390fd5b60001515601160019054906101000a900460ff161515036118fe57600d8054611879906139b9565b80601f01602080910402602001604051908101604052809291908181526020018280546118a5906139b9565b80156118f25780601f106118c7576101008083540402835291602001916118f2565b820191906000526020600020905b8154815290600101906020018083116118d557829003601f168201915b5050505050905061195a565b600061190861223e565b905060008151116119285760405180602001604052806000815250611956565b80611932846122d0565b600c604051602001611946939291906142f7565b6040516020818303038152906040525b9150505b919050565b600f5481565b61196d611f2c565b80601160016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960149054906101000a900460ff1681565b813273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613f36565b60405180910390fd5b600081118015611ab257506010548111155b611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890613fa2565b60405180910390fd5b600f5481611aff600a611faa565b611b099190613fc2565b1115611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190614042565b60405180910390fd5b611b52611f2c565b611b5c8284612145565b505050565b611b69611f2c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf9061439a565b60405180910390fd5b611be18161207f565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c815750611c808261239e565b5b9050919050565b611c91816121fd565b611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790613e38565b60405180910390fd5b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611d4e575060008173ffffffffffffffffffffffffffffffffffffffff163b115b15611e11578073ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401611d8e9291906143ba565b602060405180830381865afa158015611dab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dcf91906143f8565b611e1057816040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e0791906132db565b60405180910390fd5b5b5050565b6000611e2082611177565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8790614497565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611eaf612480565b73ffffffffffffffffffffffffffffffffffffffff161480611ede5750611edd81611ed8612480565b61198a565b5b611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490614529565b60405180910390fd5b611f278383612488565b505050565b611f34612480565b73ffffffffffffffffffffffffffffffffffffffff16611f526112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90614595565b60405180910390fd5b565b600081600001549050919050565b611fc9611fc3612480565b82612541565b612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90614627565b60405180910390fd5b6120138383836125d6565b505050565b6000612710905090565b61203d83838360405180602001604052806000815250611688565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156121805761215a600a6128cf565b61216d83612168600a611faa565b6128e5565b808061217890613da4565b915050612148565b505050565b612197612190612480565b8383612903565b5050565b6121ac6121a6612480565b83612541565b6121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614627565b60405180910390fd5b6121f784848484612a6f565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661221f83612042565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b805461224d906139b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612279906139b9565b80156122c65780601f1061229b576101008083540402835291602001916122c6565b820191906000526020600020905b8154815290600101906020018083116122a957829003601f168201915b5050505050905090565b6060600060016122df84612acb565b01905060008167ffffffffffffffff8111156122fe576122fd613396565b5b6040519080825280601f01601f1916602001820160405280156123305781602001600182028036833780820191505090505b509050600082602001820190505b600115612393578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161238757612386613ccf565b5b0494506000850361233e575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061246957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612479575061247882612c1e565b5b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124fb83611177565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061254d83611177565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061258f575061258e818561198a565b5b806125cd57508373ffffffffffffffffffffffffffffffffffffffff166125b5846109fa565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125f682611177565b73ffffffffffffffffffffffffffffffffffffffff161461264c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612643906146b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b29061474b565b60405180910390fd5b6126c88383836001612c88565b8273ffffffffffffffffffffffffffffffffffffffff166126e882611177565b73ffffffffffffffffffffffffffffffffffffffff161461273e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612735906146b9565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ca8383836001612c8e565b505050565b6001816000016000828254019250508190555050565b6128ff828260405180602001604052806000815250612c94565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612968906147b7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a62919061316a565b60405180910390a3505050565b612a7a8484846125d6565b612a8684848484612cef565b612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614849565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612b29577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612b1f57612b1e613ccf565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612b66576d04ee2d6d415b85acef81000000008381612b5c57612b5b613ccf565b5b0492506020810190505b662386f26fc100008310612b9557662386f26fc100008381612b8b57612b8a613ccf565b5b0492506010810190505b6305f5e1008310612bbe576305f5e1008381612bb457612bb3613ccf565b5b0492506008810190505b6127108310612be3576127108381612bd957612bd8613ccf565b5b0492506004810190505b60648310612c065760648381612bfc57612bfb613ccf565b5b0492506002810190505b600a8310612c15576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b612c9e8383612e76565b612cab6000848484612cef565b612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce190614849565b60405180910390fd5b505050565b6000612d108473ffffffffffffffffffffffffffffffffffffffff16613093565b15612e69578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d39612480565b8786866040518563ffffffff1660e01b8152600401612d5b94939291906148be565b6020604051808303816000875af1925050508015612d9757506040513d601f19601f82011682018060405250810190612d94919061491f565b60015b612e19573d8060008114612dc7576040519150601f19603f3d011682016040523d82523d6000602084013e612dcc565b606091505b506000815103612e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0890614849565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e6e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edc90614998565b60405180910390fd5b612eee816121fd565b15612f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2590614a04565b60405180910390fd5b612f3c600083836001612c88565b612f45816121fd565b15612f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7c90614a04565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461308f600083836001612c8e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130ff816130ca565b811461310a57600080fd5b50565b60008135905061311c816130f6565b92915050565b600060208284031215613138576131376130c0565b5b60006131468482850161310d565b91505092915050565b60008115159050919050565b6131648161314f565b82525050565b600060208201905061317f600083018461315b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131bf5780820151818401526020810190506131a4565b60008484015250505050565b6000601f19601f8301169050919050565b60006131e782613185565b6131f18185613190565b93506132018185602086016131a1565b61320a816131cb565b840191505092915050565b6000602082019050818103600083015261322f81846131dc565b905092915050565b6000819050919050565b61324a81613237565b811461325557600080fd5b50565b60008135905061326781613241565b92915050565b600060208284031215613283576132826130c0565b5b600061329184828501613258565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132c58261329a565b9050919050565b6132d5816132ba565b82525050565b60006020820190506132f060008301846132cc565b92915050565b6132ff816132ba565b811461330a57600080fd5b50565b60008135905061331c816132f6565b92915050565b60008060408385031215613339576133386130c0565b5b60006133478582860161330d565b925050602061335885828601613258565b9150509250929050565b61336b81613237565b82525050565b60006020820190506133866000830184613362565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133ce826131cb565b810181811067ffffffffffffffff821117156133ed576133ec613396565b5b80604052505050565b60006134006130b6565b905061340c82826133c5565b919050565b600067ffffffffffffffff82111561342c5761342b613396565b5b613435826131cb565b9050602081019050919050565b82818337600083830152505050565b600061346461345f84613411565b6133f6565b9050828152602081018484840111156134805761347f613391565b5b61348b848285613442565b509392505050565b600082601f8301126134a8576134a761338c565b5b81356134b8848260208601613451565b91505092915050565b6000602082840312156134d7576134d66130c0565b5b600082013567ffffffffffffffff8111156134f5576134f46130c5565b5b61350184828501613493565b91505092915050565b6135138161314f565b811461351e57600080fd5b50565b6000813590506135308161350a565b92915050565b60006020828403121561354c5761354b6130c0565b5b600061355a84828501613521565b91505092915050565b60008060006060848603121561357c5761357b6130c0565b5b600061358a8682870161330d565b935050602061359b8682870161330d565b92505060406135ac86828701613258565b9150509250925092565b600080604083850312156135cd576135cc6130c0565b5b60006135db85828601613258565b92505060206135ec85828601613258565b9150509250929050565b600060408201905061360b60008301856132cc565b6136186020830184613362565b9392505050565b600060208284031215613635576136346130c0565b5b60006136438482850161330d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61368181613237565b82525050565b60006136938383613678565b60208301905092915050565b6000602082019050919050565b60006136b78261364c565b6136c18185613657565b93506136cc83613668565b8060005b838110156136fd5781516136e48882613687565b97506136ef8361369f565b9250506001810190506136d0565b5085935050505092915050565b6000602082019050818103600083015261372481846136ac565b905092915050565b60008060408385031215613743576137426130c0565b5b60006137518582860161330d565b925050602061376285828601613521565b9150509250929050565b6000819050919050565b600061379161378c6137878461329a565b61376c565b61329a565b9050919050565b60006137a382613776565b9050919050565b60006137b582613798565b9050919050565b6137c5816137aa565b82525050565b60006020820190506137e060008301846137bc565b92915050565b600067ffffffffffffffff82111561380157613800613396565b5b61380a826131cb565b9050602081019050919050565b600061382a613825846137e6565b6133f6565b90508281526020810184848401111561384657613845613391565b5b613851848285613442565b509392505050565b600082601f83011261386e5761386d61338c565b5b813561387e848260208601613817565b91505092915050565b600080600080608085870312156138a1576138a06130c0565b5b60006138af8782880161330d565b94505060206138c08782880161330d565b93505060406138d187828801613258565b925050606085013567ffffffffffffffff8111156138f2576138f16130c5565b5b6138fe87828801613859565b91505092959194509250565b60008060408385031215613921576139206130c0565b5b600061392f8582860161330d565b92505060206139408582860161330d565b9150509250929050565b60008060408385031215613961576139606130c0565b5b600061396f85828601613258565b92505060206139808582860161330d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139d157607f821691505b6020821081036139e4576139e361398a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a4c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a0f565b613a568683613a0f565b95508019841693508086168417925050509392505050565b6000613a89613a84613a7f84613237565b61376c565b613237565b9050919050565b6000819050919050565b613aa383613a6e565b613ab7613aaf82613a90565b848454613a1c565b825550505050565b600090565b613acc613abf565b613ad7818484613a9a565b505050565b5b81811015613afb57613af0600082613ac4565b600181019050613add565b5050565b601f821115613b4057613b11816139ea565b613b1a846139ff565b81016020851015613b29578190505b613b3d613b35856139ff565b830182613adc565b50505b505050565b600082821c905092915050565b6000613b6360001984600802613b45565b1980831691505092915050565b6000613b7c8383613b52565b9150826002028217905092915050565b613b9582613185565b67ffffffffffffffff811115613bae57613bad613396565b5b613bb882546139b9565b613bc3828285613aff565b600060209050601f831160018114613bf65760008415613be4578287015190505b613bee8582613b70565b865550613c56565b601f198416613c04866139ea565b60005b82811015613c2c57848901518255600182019150602085019450602081019050613c07565b86831015613c495784890151613c45601f891682613b52565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c9882613237565b9150613ca383613237565b9250828202613cb181613237565b91508282048414831517613cc857613cc7613c5e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d0982613237565b9150613d1483613237565b925082613d2457613d23613ccf565b5b828204905092915050565b600081905092915050565b50565b6000613d4a600083613d2f565b9150613d5582613d3a565b600082019050919050565b6000613d6b82613d3d565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613daf82613237565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613de157613de0613c5e565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613e22601883613190565b9150613e2d82613dec565b602082019050919050565b60006020820190508181036000830152613e5181613e15565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613eb4602983613190565b9150613ebf82613e58565b604082019050919050565b60006020820190508181036000830152613ee381613ea7565b9050919050565b7f436f6e7472616374206d696e74696e67206973206e6f7420616c6c6f77656400600082015250565b6000613f20601f83613190565b9150613f2b82613eea565b602082019050919050565b60006020820190508181036000830152613f4f81613f13565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613f8c601383613190565b9150613f9782613f56565b602082019050919050565b60006020820190508181036000830152613fbb81613f7f565b9050919050565b6000613fcd82613237565b9150613fd883613237565b9250828201905080821115613ff057613fef613c5e565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600061402c601383613190565b915061403782613ff6565b602082019050919050565b6000602082019050818103600083015261405b8161401f565b9050919050565b7f54686520636f6e74726163742069732070617573656400000000000000000000600082015250565b6000614098601683613190565b91506140a382614062565b602082019050919050565b600060208201905081810360008301526140c78161408b565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614104601283613190565b915061410f826140ce565b602082019050919050565b60006020820190508181036000830152614133816140f7565b9050919050565b7f43616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b6000614170601683613190565b915061417b8261413a565b602082019050919050565b6000602082019050818103600083015261419f81614163565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614202602f83613190565b915061420d826141a6565b604082019050919050565b60006020820190508181036000830152614231816141f5565b9050919050565b600081905092915050565b600061424e82613185565b6142588185614238565b93506142688185602086016131a1565b80840191505092915050565b60008154614281816139b9565b61428b8186614238565b945060018216600081146142a657600181146142bb576142ee565b60ff19831686528115158202860193506142ee565b6142c4856139ea565b60005b838110156142e6578154818901526001820191506020810190506142c7565b838801955050505b50505092915050565b60006143038286614243565b915061430f8285614243565b915061431b8284614274565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614384602683613190565b915061438f82614328565b604082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b60006040820190506143cf60008301856132cc565b6143dc60208301846132cc565b9392505050565b6000815190506143f28161350a565b92915050565b60006020828403121561440e5761440d6130c0565b5b600061441c848285016143e3565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614481602183613190565b915061448c82614425565b604082019050919050565b600060208201905081810360008301526144b081614474565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614513603d83613190565b915061451e826144b7565b604082019050919050565b6000602082019050818103600083015261454281614506565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061457f602083613190565b915061458a82614549565b602082019050919050565b600060208201905081810360008301526145ae81614572565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614611602d83613190565b915061461c826145b5565b604082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006146a3602583613190565b91506146ae82614647565b604082019050919050565b600060208201905081810360008301526146d281614696565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614735602483613190565b9150614740826146d9565b604082019050919050565b6000602082019050818103600083015261476481614728565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006147a1601983613190565b91506147ac8261476b565b602082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614833603283613190565b915061483e826147d7565b604082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061489082614869565b61489a8185614874565b93506148aa8185602086016131a1565b6148b3816131cb565b840191505092915050565b60006080820190506148d360008301876132cc565b6148e060208301866132cc565b6148ed6040830185613362565b81810360608301526148ff8184614885565b905095945050505050565b600081519050614919816130f6565b92915050565b600060208284031215614935576149346130c0565b5b60006149438482850161490a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614982602083613190565b915061498d8261494c565b602082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006149ee601c83613190565b91506149f9826149b8565b602082019050919050565b60006020820190508181036000830152614a1d816149e1565b905091905056fea26469706673582212209753ac2f0ecce130e0d44f57a3b40c187bc1d484c50f3ea6e0d32cc3058b6b9864736f6c63430008120033

Deployed Bytecode Sourcemap

78894:5293:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82852:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63877:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65389:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83280:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79211:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82158:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82264:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79860:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83449:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53278:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;82347:137;;;;;;;;;;;;;:::i;:::-;;83624:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80468:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81696:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81914:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79357:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79133:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79327:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14402:531;;;;;;;;;;;;;:::i;:::-;;79100:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63587:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63318:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37276:103;;;;;;;;;;;;;:::i;:::-;;82052:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84043:141;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79281:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64046:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79955:344;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83092:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79171:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81776:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8431:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83803:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13789:487;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81109:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79245:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81609:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65858:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13015:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80307:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37534:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82852:170;82954:4;82978:36;83002:11;82978:23;:36::i;:::-;82971:43;;82852:170;;;:::o;63877:100::-;63931:13;63964:5;63957:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63877:100;:::o;65389:171::-;65465:7;65485:23;65500:7;65485:14;:23::i;:::-;65528:15;:24;65544:7;65528:24;;;;;;;;;;;;;;;;;;;;;65521:31;;65389:171;;;:::o;83280:157::-;83376:8;10204:30;10225:8;10204:20;:30::i;:::-;83397:32:::1;83411:8;83421:7;83397:13;:32::i;:::-;83280:157:::0;;;:::o;79211:29::-;;;;:::o;82158:100::-;36521:13;:11;:13::i;:::-;82242:10:::1;82230:9;:22;;;;;;:::i;:::-;;82158:100:::0;:::o;82264:77::-;36521:13;:11;:13::i;:::-;82329:6:::1;82320;;:15;;;;;;;;;;;;;;;;;;82264:77:::0;:::o;79860:89::-;79904:7;79927:16;:6;:14;:16::i;:::-;79920:23;;79860:89;:::o;83449:163::-;83550:4;9937:10;9929:18;;:4;:18;;;9925:83;;9964:32;9985:10;9964:20;:32::i;:::-;9925:83;83567:37:::1;83586:4;83592:2;83596:7;83567:18;:37::i;:::-;83449:163:::0;;;;:::o;53278:438::-;53373:7;53382;53402:26;53431:17;:26;53449:7;53431:26;;;;;;;;;;;53402:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53502:1;53474:30;;:7;:16;;;:30;;;53470:92;;53531:19;53521:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53470:92;53574:21;53638:17;:15;:17::i;:::-;53598:57;;53611:7;:23;;;53599:35;;:9;:35;;;;:::i;:::-;53598:57;;;;:::i;:::-;53574:81;;53676:7;:16;;;53694:13;53668:40;;;;;;53278:438;;;;;:::o;82347:137::-;36521:13;:11;:13::i;:::-;82392:7:::1;82413;:5;:7::i;:::-;82405:21;;82434;82405:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82391:69;;;82475:2;82467:11;;;::::0;::::1;;82384:100;82347:137::o:0;83624:171::-;83729:4;9937:10;9929:18;;:4;:18;;;9925:83;;9964:32;9985:10;9964:20;:32::i;:::-;9925:83;83746:41:::1;83769:4;83775:2;83779:7;83746:22;:41::i;:::-;83624:171:::0;;;;:::o;80468:635::-;80543:16;80571:23;80597:17;80607:6;80597:9;:17::i;:::-;80571:43;;80621:30;80668:15;80654:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80621:63;;80691:22;80716:1;80691:26;;80724:23;80760:309;80785:15;80767;:33;:64;;;;;80822:9;;80804:14;:27;;80767:64;80760:309;;;80842:25;80870:23;80878:14;80870:7;:23::i;:::-;80842:51;;80929:6;80908:27;;:17;:27;;;80904:131;;80981:14;80948:13;80962:15;80948:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;81008:17;;;;;:::i;:::-;;;;80904:131;81045:16;;;;;:::i;:::-;;;;80833:236;80760:309;;;81084:13;81077:20;;;;;;80468:635;;;:::o;81696:74::-;36521:13;:11;:13::i;:::-;81759:5:::1;81752:4;:12;;;;81696:74:::0;:::o;81914:132::-;36521:13;:11;:13::i;:::-;82022:18:::1;82002:17;:38;;;;;;:::i;:::-;;81914:132:::0;:::o;79357:28::-;;;;;;;;;;;;;:::o;79133:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79327:25::-;;;;;;;;;;;;;:::o;14402:531::-;14478:7;:5;:7::i;:::-;14464:21;;:10;:21;;;14460:72;;14509:11;;;;;;;;;;;;;;14460:72;14617:31;;;;;;;;;;;14613:95;;;14672:24;;;;;;;;;;;;;;14613:95;14826:1;14769:22;;:60;;;;;;;;;;;;;;;;;;14874:4;14840:31;;:38;;;;;;;;;;;;;;;;;;14894:31;;;;;;;;;;14402:531::o;79100:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63587:223::-;63659:7;63679:13;63695:17;63704:7;63695:8;:17::i;:::-;63679:33;;63748:1;63731:19;;:5;:19;;;63723:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;63797:5;63790:12;;;63587:223;;;:::o;63318:207::-;63390:7;63435:1;63418:19;;:5;:19;;;63410:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;63501:9;:16;63511:5;63501:16;;;;;;;;;;;;;;;;63494:23;;63318:207;;;:::o;37276:103::-;36521:13;:11;:13::i;:::-;37341:30:::1;37368:1;37341:18;:30::i;:::-;37276:103::o:0;82052:100::-;36521:13;:11;:13::i;:::-;82136:10:::1;82124:9;:22;;;;;;:::i;:::-;;82052:100:::0;:::o;84043:141::-;84134:7;84161:15;:13;:15::i;:::-;84154:22;;84043:141;:::o;79281:37::-;;;;:::o;64046:104::-;64102:13;64135:7;64128:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64046:104;:::o;79955:344::-;80020:11;79622:9;79608:23;;:10;:23;;;79600:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79696:1;79682:11;:15;:52;;;;;79716:18;;79701:11;:33;;79682:52;79674:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;79807:9;;79792:11;79773:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;79765:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;80049:6:::1;;;;;;;;;;;80048:7;80040:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;80117:11;80110:4;;:18;;;;:::i;:::-;80097:9;:31;;80089:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;80205:18;;80190:11;80166:21;80176:10;80166:9;:21::i;:::-;:35;;;;:::i;:::-;:57;;80158:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;80259:34;80269:10;80281:11;80259:9;:34::i;:::-;79955:344:::0;;:::o;83092:176::-;83196:8;10204:30;10225:8;10204:20;:30::i;:::-;83217:43:::1;83241:8;83251;83217:23;:43::i;:::-;83092:176:::0;;;:::o;79171:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81776:132::-;36521:13;:11;:13::i;:::-;81881:19:::1;81860:18;:40;;;;81776:132:::0;:::o;8431:53::-;;;;;;;;;;;;;:::o;83803:228::-;83954:4;9937:10;9929:18;;:4;:18;;;9925:83;;9964:32;9985:10;9964:20;:32::i;:::-;9925:83;83976:47:::1;83999:4;84005:2;84009:7;84018:4;83976:22;:47::i;:::-;83803:228:::0;;;;;:::o;13789:487::-;13900:7;:5;:7::i;:::-;13886:21;;:10;:21;;;13882:72;;13931:11;;;;;;;;;;;;;;13882:72;14039:31;;;;;;;;;;;14035:95;;;14094:24;;;;;;;;;;;;;;14035:95;14191:11;14142:22;;:61;;;;;;;;;;;;;;;;;;14219:49;14256:11;14219:49;;;;;;:::i;:::-;;;;;;;;13789:487;:::o;81109:494::-;81208:13;81249:17;81257:8;81249:7;:17::i;:::-;81233:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;81356:5;81344:17;;:8;;;;;;;;;;;:17;;;81340:64;;81379:17;81372:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81340:64;81412:28;81443:10;:8;:10::i;:::-;81412:41;;81498:1;81473:14;81467:28;:32;:130;;;;;;;;;;;;;;;;;81535:14;81551:19;:8;:17;:19::i;:::-;81572:9;81518:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81467:130;81460:137;;;81109:494;;;;:::o;79245:31::-;;;;:::o;81609:81::-;36521:13;:11;:13::i;:::-;81678:6:::1;81667:8;;:17;;;;;;;;;;;;;;;;;;81609:81:::0;:::o;65858:164::-;65955:4;65979:18;:25;65998:5;65979:25;;;;;;;;;;;;;;;:35;66005:8;65979:35;;;;;;;;;;;;;;;;;;;;;;;;;65972:42;;65858:164;;;;:::o;13015:43::-;;;;;;;;;;;;;:::o;80307:155::-;80393:11;79622:9;79608:23;;:10;:23;;;79600:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79696:1;79682:11;:15;:52;;;;;79716:18;;79701:11;:33;;79682:52;79674:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;79807:9;;79792:11;79773:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;79765:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;36521:13:::1;:11;:13::i;:::-;80423:33:::2;80433:9;80444:11;80423:9;:33::i;:::-;80307:155:::0;;;:::o;37534:201::-;36521:13;:11;:13::i;:::-;37643:1:::1;37623:22;;:8;:22;;::::0;37615:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37699:28;37718:8;37699:18;:28::i;:::-;37534:201:::0;:::o;36635:87::-;36681:7;36708:6;;;;;;;;;;;36701:13;;36635:87;:::o;53008:215::-;53110:4;53149:26;53134:41;;;:11;:41;;;;:81;;;;53179:36;53203:11;53179:23;:36::i;:::-;53134:81;53127:88;;53008:215;;;:::o;74952:135::-;75034:16;75042:7;75034;:16::i;:::-;75026:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;74952:135;:::o;11055:718::-;11136:32;11171:22;;;;;;;;;;;11136:57;;11343:1;11314:31;;11322:8;11314:31;;;;:68;;;;;11381:1;11357:8;11349:29;;;:33;11314:68;11310:456;;;11632:8;:26;;;11667:4;11674:8;11632:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11627:128;;11730:8;11711:28;;;;;;;;;;;:::i;:::-;;;;;;;;11627:128;11310:456;11125:648;11055:718;:::o;64907:416::-;64988:13;65004:23;65019:7;65004:14;:23::i;:::-;64988:39;;65052:5;65046:11;;:2;:11;;;65038:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;65146:5;65130:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;65155:37;65172:5;65179:12;:10;:12::i;:::-;65155:16;:37::i;:::-;65130:62;65108:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;65294:21;65303:2;65307:7;65294:8;:21::i;:::-;64977:346;64907:416;;:::o;36800:132::-;36875:12;:10;:12::i;:::-;36864:23;;:7;:5;:7::i;:::-;:23;;;36856:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36800:132::o;16592:114::-;16657:7;16684;:14;;;16677:21;;16592:114;;;:::o;66089:301::-;66250:41;66269:12;:10;:12::i;:::-;66283:7;66250:18;:41::i;:::-;66242:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;66354:28;66364:4;66370:2;66374:7;66354:9;:28::i;:::-;66089:301;;;:::o;53998:97::-;54056:6;54082:5;54075:12;;53998:97;:::o;66461:151::-;66565:39;66582:4;66588:2;66592:7;66565:39;;;;;;;;;;;;:16;:39::i;:::-;66461:151;;;:::o;68227:117::-;68293:7;68320;:16;68328:7;68320:16;;;;;;;;;;;;;;;;;;;;;68313:23;;68227:117;;;:::o;37895:191::-;37969:16;37988:6;;;;;;;;;;;37969:25;;38014:8;38005:6;;:17;;;;;;;;;;;;;;;;;;38069:8;38038:40;;38059:8;38038:40;;;;;;;;;;;;37958:128;37895:191;:::o;82490:204::-;82570:9;82565:124;82589:11;82585:1;:15;82565:124;;;82616:18;:6;:16;:18::i;:::-;82643:38;82653:9;82664:16;:6;:14;:16::i;:::-;82643:9;:38::i;:::-;82602:3;;;;;:::i;:::-;;;;82565:124;;;;82490:204;;:::o;65632:155::-;65727:52;65746:12;:10;:12::i;:::-;65760:8;65770;65727:18;:52::i;:::-;65632:155;;:::o;66683:279::-;66814:41;66833:12;:10;:12::i;:::-;66847:7;66814:18;:41::i;:::-;66806:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;66916:38;66930:4;66936:2;66940:7;66949:4;66916:13;:38::i;:::-;66683:279;;;;:::o;68657:128::-;68722:4;68775:1;68746:31;;:17;68755:7;68746:8;:17::i;:::-;:31;;;;68739:38;;68657:128;;;:::o;82700:104::-;82760:13;82789:9;82782:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82700:104;:::o;32105:716::-;32161:13;32212:14;32249:1;32229:17;32240:5;32229:10;:17::i;:::-;:21;32212:38;;32265:20;32299:6;32288:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32265:41;;32321:11;32450:6;32446:2;32442:15;32434:6;32430:28;32423:35;;32487:288;32494:4;32487:288;;;32519:5;;;;;;;;32661:8;32656:2;32649:5;32645:14;32640:30;32635:3;32627:44;32717:2;32708:11;;;;;;:::i;:::-;;;;;32751:1;32742:5;:10;32487:288;32738:21;32487:288;32796:6;32789:13;;;;;32105:716;;;:::o;62949:305::-;63051:4;63103:25;63088:40;;;:11;:40;;;;:105;;;;63160:33;63145:48;;;:11;:48;;;;63088:105;:158;;;;63210:36;63234:11;63210:23;:36::i;:::-;63088:158;63068:178;;62949:305;;;:::o;35186:98::-;35239:7;35266:10;35259:17;;35186:98;:::o;74265:174::-;74367:2;74340:15;:24;74356:7;74340:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;74423:7;74419:2;74385:46;;74394:23;74409:7;74394:14;:23::i;:::-;74385:46;;;;;;;;;;;;74265:174;;:::o;68952:264::-;69045:4;69062:13;69078:23;69093:7;69078:14;:23::i;:::-;69062:39;;69131:5;69120:16;;:7;:16;;;:52;;;;69140:32;69157:5;69164:7;69140:16;:32::i;:::-;69120:52;:87;;;;69200:7;69176:31;;:20;69188:7;69176:11;:20::i;:::-;:31;;;69120:87;69112:96;;;68952:264;;;;:::o;72917:1229::-;73042:4;73015:31;;:23;73030:7;73015:14;:23::i;:::-;:31;;;73007:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;73121:1;73107:16;;:2;:16;;;73099:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;73177:42;73198:4;73204:2;73208:7;73217:1;73177:20;:42::i;:::-;73349:4;73322:31;;:23;73337:7;73322:14;:23::i;:::-;:31;;;73314:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;73467:15;:24;73483:7;73467:24;;;;;;;;;;;;73460:31;;;;;;;;;;;73962:1;73943:9;:15;73953:4;73943:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;73995:1;73978:9;:13;73988:2;73978:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;74037:2;74018:7;:16;74026:7;74018:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;74076:7;74072:2;74057:27;;74066:4;74057:27;;;;;;;;;;;;74097:41;74117:4;74123:2;74127:7;74136:1;74097:19;:41::i;:::-;72917:1229;;;:::o;16714:127::-;16821:1;16803:7;:14;;;:19;;;;;;;;;;;16714:127;:::o;69558:110::-;69634:26;69644:2;69648:7;69634:26;;;;;;;;;;;;:9;:26::i;:::-;69558:110;;:::o;74582:281::-;74703:8;74694:17;;:5;:17;;;74686:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;74790:8;74752:18;:25;74771:5;74752:25;;;;;;;;;;;;;;;:35;74778:8;74752:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;74836:8;74814:41;;74829:5;74814:41;;;74846:8;74814:41;;;;;;:::i;:::-;;;;;;;;74582:281;;;:::o;67843:270::-;67956:28;67966:4;67972:2;67976:7;67956:9;:28::i;:::-;68003:47;68026:4;68032:2;68036:7;68045:4;68003:22;:47::i;:::-;67995:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;67843:270;;;;:::o;28939:948::-;28992:7;29012:14;29029:1;29012:18;;29079:8;29070:5;:17;29066:106;;29117:8;29108:17;;;;;;:::i;:::-;;;;;29154:2;29144:12;;;;29066:106;29199:8;29190:5;:17;29186:106;;29237:8;29228:17;;;;;;:::i;:::-;;;;;29274:2;29264:12;;;;29186:106;29319:8;29310:5;:17;29306:106;;29357:8;29348:17;;;;;;:::i;:::-;;;;;29394:2;29384:12;;;;29306:106;29439:7;29430:5;:16;29426:103;;29476:7;29467:16;;;;;;:::i;:::-;;;;;29512:1;29502:11;;;;29426:103;29556:7;29547:5;:16;29543:103;;29593:7;29584:16;;;;;;:::i;:::-;;;;;29629:1;29619:11;;;;29543:103;29673:7;29664:5;:16;29660:103;;29710:7;29701:16;;;;;;:::i;:::-;;;;;29746:1;29736:11;;;;29660:103;29790:7;29781:5;:16;29777:68;;29828:1;29818:11;;;;29777:68;29873:6;29866:13;;;28939:948;;;:::o;51458:157::-;51543:4;51582:25;51567:40;;;:11;:40;;;;51560:47;;51458:157;;;:::o;77236:116::-;;;;;:::o;78074:115::-;;;;;:::o;69895:285::-;69990:18;69996:2;70000:7;69990:5;:18::i;:::-;70041:53;70072:1;70076:2;70080:7;70089:4;70041:22;:53::i;:::-;70019:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;69895:285;;;:::o;75651:853::-;75805:4;75826:15;:2;:13;;;:15::i;:::-;75822:675;;;75878:2;75862:36;;;75899:12;:10;:12::i;:::-;75913:4;75919:7;75928:4;75862:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;75858:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76120:1;76103:6;:13;:18;76099:328;;76146:60;;;;;;;;;;:::i;:::-;;;;;;;;76099:328;76377:6;76371:13;76362:6;76358:2;76354:15;76347:38;75858:584;75994:41;;;75984:51;;;:6;:51;;;;75977:58;;;;;75822:675;76481:4;76474:11;;75651:853;;;;;;;:::o;70516:942::-;70610:1;70596:16;;:2;:16;;;70588:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;70669:16;70677:7;70669;:16::i;:::-;70668:17;70660:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;70731:48;70760:1;70764:2;70768:7;70777:1;70731:20;:48::i;:::-;70878:16;70886:7;70878;:16::i;:::-;70877:17;70869:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;71293:1;71276:9;:13;71286:2;71276:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;71337:2;71318:7;:16;71326:7;71318:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;71382:7;71378:2;71357:33;;71374:1;71357:33;;;;;;;;;;;;71403:47;71431:1;71435:2;71439:7;71448:1;71403:19;:47::i;:::-;70516:942;;:::o;39567:326::-;39627:4;39884:1;39862:7;:19;;;:23;39855:30;;39567:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:180;5536:77;5533:1;5526:88;5633:4;5630:1;5623:15;5657:4;5654:1;5647:15;5674:281;5757:27;5779:4;5757:27;:::i;:::-;5749:6;5745:40;5887:6;5875:10;5872:22;5851:18;5839:10;5836:34;5833:62;5830:88;;;5898:18;;:::i;:::-;5830:88;5938:10;5934:2;5927:22;5717:238;5674:281;;:::o;5961:129::-;5995:6;6022:20;;:::i;:::-;6012:30;;6051:33;6079:4;6071:6;6051:33;:::i;:::-;5961:129;;;:::o;6096:308::-;6158:4;6248:18;6240:6;6237:30;6234:56;;;6270:18;;:::i;:::-;6234:56;6308:29;6330:6;6308:29;:::i;:::-;6300:37;;6392:4;6386;6382:15;6374:23;;6096:308;;;:::o;6410:146::-;6507:6;6502:3;6497;6484:30;6548:1;6539:6;6534:3;6530:16;6523:27;6410:146;;;:::o;6562:425::-;6640:5;6665:66;6681:49;6723:6;6681:49;:::i;:::-;6665:66;:::i;:::-;6656:75;;6754:6;6747:5;6740:21;6792:4;6785:5;6781:16;6830:3;6821:6;6816:3;6812:16;6809:25;6806:112;;;6837:79;;:::i;:::-;6806:112;6927:54;6974:6;6969:3;6964;6927:54;:::i;:::-;6646:341;6562:425;;;;;:::o;7007:340::-;7063:5;7112:3;7105:4;7097:6;7093:17;7089:27;7079:122;;7120:79;;:::i;:::-;7079:122;7237:6;7224:20;7262:79;7337:3;7329:6;7322:4;7314:6;7310:17;7262:79;:::i;:::-;7253:88;;7069:278;7007:340;;;;:::o;7353:509::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7625:1;7614:9;7610:17;7597:31;7655:18;7647:6;7644:30;7641:117;;;7677:79;;:::i;:::-;7641:117;7782:63;7837:7;7828:6;7817:9;7813:22;7782:63;:::i;:::-;7772:73;;7568:287;7353:509;;;;:::o;7868:116::-;7938:21;7953:5;7938:21;:::i;:::-;7931:5;7928:32;7918:60;;7974:1;7971;7964:12;7918:60;7868:116;:::o;7990:133::-;8033:5;8071:6;8058:20;8049:29;;8087:30;8111:5;8087:30;:::i;:::-;7990:133;;;;:::o;8129:323::-;8185:6;8234:2;8222:9;8213:7;8209:23;8205:32;8202:119;;;8240:79;;:::i;:::-;8202:119;8360:1;8385:50;8427:7;8418:6;8407:9;8403:22;8385:50;:::i;:::-;8375:60;;8331:114;8129:323;;;;:::o;8458:619::-;8535:6;8543;8551;8600:2;8588:9;8579:7;8575:23;8571:32;8568:119;;;8606:79;;:::i;:::-;8568:119;8726:1;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8697:117;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8458:619;;;;;:::o;9083:474::-;9151:6;9159;9208:2;9196:9;9187:7;9183:23;9179:32;9176:119;;;9214:79;;:::i;:::-;9176:119;9334:1;9359:53;9404:7;9395:6;9384:9;9380:22;9359:53;:::i;:::-;9349:63;;9305:117;9461:2;9487:53;9532:7;9523:6;9512:9;9508:22;9487:53;:::i;:::-;9477:63;;9432:118;9083:474;;;;;:::o;9563:332::-;9684:4;9722:2;9711:9;9707:18;9699:26;;9735:71;9803:1;9792:9;9788:17;9779:6;9735:71;:::i;:::-;9816:72;9884:2;9873:9;9869:18;9860:6;9816:72;:::i;:::-;9563:332;;;;;:::o;9901:329::-;9960:6;10009:2;9997:9;9988:7;9984:23;9980:32;9977:119;;;10015:79;;:::i;:::-;9977:119;10135:1;10160:53;10205:7;10196:6;10185:9;10181:22;10160:53;:::i;:::-;10150:63;;10106:117;9901:329;;;;:::o;10236:114::-;10303:6;10337:5;10331:12;10321:22;;10236:114;;;:::o;10356:184::-;10455:11;10489:6;10484:3;10477:19;10529:4;10524:3;10520:14;10505:29;;10356:184;;;;:::o;10546:132::-;10613:4;10636:3;10628:11;;10666:4;10661:3;10657:14;10649:22;;10546:132;;;:::o;10684:108::-;10761:24;10779:5;10761:24;:::i;:::-;10756:3;10749:37;10684:108;;:::o;10798:179::-;10867:10;10888:46;10930:3;10922:6;10888:46;:::i;:::-;10966:4;10961:3;10957:14;10943:28;;10798:179;;;;:::o;10983:113::-;11053:4;11085;11080:3;11076:14;11068:22;;10983:113;;;:::o;11132:732::-;11251:3;11280:54;11328:5;11280:54;:::i;:::-;11350:86;11429:6;11424:3;11350:86;:::i;:::-;11343:93;;11460:56;11510:5;11460:56;:::i;:::-;11539:7;11570:1;11555:284;11580:6;11577:1;11574:13;11555:284;;;11656:6;11650:13;11683:63;11742:3;11727:13;11683:63;:::i;:::-;11676:70;;11769:60;11822:6;11769:60;:::i;:::-;11759:70;;11615:224;11602:1;11599;11595:9;11590:14;;11555:284;;;11559:14;11855:3;11848:10;;11256:608;;;11132:732;;;;:::o;11870:373::-;12013:4;12051:2;12040:9;12036:18;12028:26;;12100:9;12094:4;12090:20;12086:1;12075:9;12071:17;12064:47;12128:108;12231:4;12222:6;12128:108;:::i;:::-;12120:116;;11870:373;;;;:::o;12249:468::-;12314:6;12322;12371:2;12359:9;12350:7;12346:23;12342:32;12339:119;;;12377:79;;:::i;:::-;12339:119;12497:1;12522:53;12567:7;12558:6;12547:9;12543:22;12522:53;:::i;:::-;12512:63;;12468:117;12624:2;12650:50;12692:7;12683:6;12672:9;12668:22;12650:50;:::i;:::-;12640:60;;12595:115;12249:468;;;;;:::o;12723:60::-;12751:3;12772:5;12765:12;;12723:60;;;:::o;12789:142::-;12839:9;12872:53;12890:34;12899:24;12917:5;12899:24;:::i;:::-;12890:34;:::i;:::-;12872:53;:::i;:::-;12859:66;;12789:142;;;:::o;12937:126::-;12987:9;13020:37;13051:5;13020:37;:::i;:::-;13007:50;;12937:126;;;:::o;13069:157::-;13150:9;13183:37;13214:5;13183:37;:::i;:::-;13170:50;;13069:157;;;:::o;13232:193::-;13350:68;13412:5;13350:68;:::i;:::-;13345:3;13338:81;13232:193;;:::o;13431:284::-;13555:4;13593:2;13582:9;13578:18;13570:26;;13606:102;13705:1;13694:9;13690:17;13681:6;13606:102;:::i;:::-;13431:284;;;;:::o;13721:307::-;13782:4;13872:18;13864:6;13861:30;13858:56;;;13894:18;;:::i;:::-;13858:56;13932:29;13954:6;13932:29;:::i;:::-;13924:37;;14016:4;14010;14006:15;13998:23;;13721:307;;;:::o;14034:423::-;14111:5;14136:65;14152:48;14193:6;14152:48;:::i;:::-;14136:65;:::i;:::-;14127:74;;14224:6;14217:5;14210:21;14262:4;14255:5;14251:16;14300:3;14291:6;14286:3;14282:16;14279:25;14276:112;;;14307:79;;:::i;:::-;14276:112;14397:54;14444:6;14439:3;14434;14397:54;:::i;:::-;14117:340;14034:423;;;;;:::o;14476:338::-;14531:5;14580:3;14573:4;14565:6;14561:17;14557:27;14547:122;;14588:79;;:::i;:::-;14547:122;14705:6;14692:20;14730:78;14804:3;14796:6;14789:4;14781:6;14777:17;14730:78;:::i;:::-;14721:87;;14537:277;14476:338;;;;:::o;14820:943::-;14915:6;14923;14931;14939;14988:3;14976:9;14967:7;14963:23;14959:33;14956:120;;;14995:79;;:::i;:::-;14956:120;15115:1;15140:53;15185:7;15176:6;15165:9;15161:22;15140:53;:::i;:::-;15130:63;;15086:117;15242:2;15268:53;15313:7;15304:6;15293:9;15289:22;15268:53;:::i;:::-;15258:63;;15213:118;15370:2;15396:53;15441:7;15432:6;15421:9;15417:22;15396:53;:::i;:::-;15386:63;;15341:118;15526:2;15515:9;15511:18;15498:32;15557:18;15549:6;15546:30;15543:117;;;15579:79;;:::i;:::-;15543:117;15684:62;15738:7;15729:6;15718:9;15714:22;15684:62;:::i;:::-;15674:72;;15469:287;14820:943;;;;;;;:::o;15769:474::-;15837:6;15845;15894:2;15882:9;15873:7;15869:23;15865:32;15862:119;;;15900:79;;:::i;:::-;15862:119;16020:1;16045:53;16090:7;16081:6;16070:9;16066:22;16045:53;:::i;:::-;16035:63;;15991:117;16147:2;16173:53;16218:7;16209:6;16198:9;16194:22;16173:53;:::i;:::-;16163:63;;16118:118;15769:474;;;;;:::o;16249:::-;16317:6;16325;16374:2;16362:9;16353:7;16349:23;16345:32;16342:119;;;16380:79;;:::i;:::-;16342:119;16500:1;16525:53;16570:7;16561:6;16550:9;16546:22;16525:53;:::i;:::-;16515:63;;16471:117;16627:2;16653:53;16698:7;16689:6;16678:9;16674:22;16653:53;:::i;:::-;16643:63;;16598:118;16249:474;;;;;:::o;16729:180::-;16777:77;16774:1;16767:88;16874:4;16871:1;16864:15;16898:4;16895:1;16888:15;16915:320;16959:6;16996:1;16990:4;16986:12;16976:22;;17043:1;17037:4;17033:12;17064:18;17054:81;;17120:4;17112:6;17108:17;17098:27;;17054:81;17182:2;17174:6;17171:14;17151:18;17148:38;17145:84;;17201:18;;:::i;:::-;17145:84;16966:269;16915:320;;;:::o;17241:141::-;17290:4;17313:3;17305:11;;17336:3;17333:1;17326:14;17370:4;17367:1;17357:18;17349:26;;17241:141;;;:::o;17388:93::-;17425:6;17472:2;17467;17460:5;17456:14;17452:23;17442:33;;17388:93;;;:::o;17487:107::-;17531:8;17581:5;17575:4;17571:16;17550:37;;17487:107;;;;:::o;17600:393::-;17669:6;17719:1;17707:10;17703:18;17742:97;17772:66;17761:9;17742:97;:::i;:::-;17860:39;17890:8;17879:9;17860:39;:::i;:::-;17848:51;;17932:4;17928:9;17921:5;17917:21;17908:30;;17981:4;17971:8;17967:19;17960:5;17957:30;17947:40;;17676:317;;17600:393;;;;;:::o;17999:142::-;18049:9;18082:53;18100:34;18109:24;18127:5;18109:24;:::i;:::-;18100:34;:::i;:::-;18082:53;:::i;:::-;18069:66;;17999:142;;;:::o;18147:75::-;18190:3;18211:5;18204:12;;18147:75;;;:::o;18228:269::-;18338:39;18369:7;18338:39;:::i;:::-;18399:91;18448:41;18472:16;18448:41;:::i;:::-;18440:6;18433:4;18427:11;18399:91;:::i;:::-;18393:4;18386:105;18304:193;18228:269;;;:::o;18503:73::-;18548:3;18503:73;:::o;18582:189::-;18659:32;;:::i;:::-;18700:65;18758:6;18750;18744:4;18700:65;:::i;:::-;18635:136;18582:189;;:::o;18777:186::-;18837:120;18854:3;18847:5;18844:14;18837:120;;;18908:39;18945:1;18938:5;18908:39;:::i;:::-;18881:1;18874:5;18870:13;18861:22;;18837:120;;;18777:186;;:::o;18969:543::-;19070:2;19065:3;19062:11;19059:446;;;19104:38;19136:5;19104:38;:::i;:::-;19188:29;19206:10;19188:29;:::i;:::-;19178:8;19174:44;19371:2;19359:10;19356:18;19353:49;;;19392:8;19377:23;;19353:49;19415:80;19471:22;19489:3;19471:22;:::i;:::-;19461:8;19457:37;19444:11;19415:80;:::i;:::-;19074:431;;19059:446;18969:543;;;:::o;19518:117::-;19572:8;19622:5;19616:4;19612:16;19591:37;;19518:117;;;;:::o;19641:169::-;19685:6;19718:51;19766:1;19762:6;19754:5;19751:1;19747:13;19718:51;:::i;:::-;19714:56;19799:4;19793;19789:15;19779:25;;19692:118;19641:169;;;;:::o;19815:295::-;19891:4;20037:29;20062:3;20056:4;20037:29;:::i;:::-;20029:37;;20099:3;20096:1;20092:11;20086:4;20083:21;20075:29;;19815:295;;;;:::o;20115:1395::-;20232:37;20265:3;20232:37;:::i;:::-;20334:18;20326:6;20323:30;20320:56;;;20356:18;;:::i;:::-;20320:56;20400:38;20432:4;20426:11;20400:38;:::i;:::-;20485:67;20545:6;20537;20531:4;20485:67;:::i;:::-;20579:1;20603:4;20590:17;;20635:2;20627:6;20624:14;20652:1;20647:618;;;;21309:1;21326:6;21323:77;;;21375:9;21370:3;21366:19;21360:26;21351:35;;21323:77;21426:67;21486:6;21479:5;21426:67;:::i;:::-;21420:4;21413:81;21282:222;20617:887;;20647:618;20699:4;20695:9;20687:6;20683:22;20733:37;20765:4;20733:37;:::i;:::-;20792:1;20806:208;20820:7;20817:1;20814:14;20806:208;;;20899:9;20894:3;20890:19;20884:26;20876:6;20869:42;20950:1;20942:6;20938:14;20928:24;;20997:2;20986:9;20982:18;20969:31;;20843:4;20840:1;20836:12;20831:17;;20806:208;;;21042:6;21033:7;21030:19;21027:179;;;21100:9;21095:3;21091:19;21085:26;21143:48;21185:4;21177:6;21173:17;21162:9;21143:48;:::i;:::-;21135:6;21128:64;21050:156;21027:179;21252:1;21248;21240:6;21236:14;21232:22;21226:4;21219:36;20654:611;;;20617:887;;20207:1303;;;20115:1395;;:::o;21516:180::-;21564:77;21561:1;21554:88;21661:4;21658:1;21651:15;21685:4;21682:1;21675:15;21702:410;21742:7;21765:20;21783:1;21765:20;:::i;:::-;21760:25;;21799:20;21817:1;21799:20;:::i;:::-;21794:25;;21854:1;21851;21847:9;21876:30;21894:11;21876:30;:::i;:::-;21865:41;;22055:1;22046:7;22042:15;22039:1;22036:22;22016:1;22009:9;21989:83;21966:139;;22085:18;;:::i;:::-;21966:139;21750:362;21702:410;;;;:::o;22118:180::-;22166:77;22163:1;22156:88;22263:4;22260:1;22253:15;22287:4;22284:1;22277:15;22304:185;22344:1;22361:20;22379:1;22361:20;:::i;:::-;22356:25;;22395:20;22413:1;22395:20;:::i;:::-;22390:25;;22434:1;22424:35;;22439:18;;:::i;:::-;22424:35;22481:1;22478;22474:9;22469:14;;22304:185;;;;:::o;22495:147::-;22596:11;22633:3;22618:18;;22495:147;;;;:::o;22648:114::-;;:::o;22768:398::-;22927:3;22948:83;23029:1;23024:3;22948:83;:::i;:::-;22941:90;;23040:93;23129:3;23040:93;:::i;:::-;23158:1;23153:3;23149:11;23142:18;;22768:398;;;:::o;23172:379::-;23356:3;23378:147;23521:3;23378:147;:::i;:::-;23371:154;;23542:3;23535:10;;23172:379;;;:::o;23557:180::-;23605:77;23602:1;23595:88;23702:4;23699:1;23692:15;23726:4;23723:1;23716:15;23743:233;23782:3;23805:24;23823:5;23805:24;:::i;:::-;23796:33;;23851:66;23844:5;23841:77;23838:103;;23921:18;;:::i;:::-;23838:103;23968:1;23961:5;23957:13;23950:20;;23743:233;;;:::o;23982:174::-;24122:26;24118:1;24110:6;24106:14;24099:50;23982:174;:::o;24162:366::-;24304:3;24325:67;24389:2;24384:3;24325:67;:::i;:::-;24318:74;;24401:93;24490:3;24401:93;:::i;:::-;24519:2;24514:3;24510:12;24503:19;;24162:366;;;:::o;24534:419::-;24700:4;24738:2;24727:9;24723:18;24715:26;;24787:9;24781:4;24777:20;24773:1;24762:9;24758:17;24751:47;24815:131;24941:4;24815:131;:::i;:::-;24807:139;;24534:419;;;:::o;24959:228::-;25099:34;25095:1;25087:6;25083:14;25076:58;25168:11;25163:2;25155:6;25151:15;25144:36;24959:228;:::o;25193:366::-;25335:3;25356:67;25420:2;25415:3;25356:67;:::i;:::-;25349:74;;25432:93;25521:3;25432:93;:::i;:::-;25550:2;25545:3;25541:12;25534:19;;25193:366;;;:::o;25565:419::-;25731:4;25769:2;25758:9;25754:18;25746:26;;25818:9;25812:4;25808:20;25804:1;25793:9;25789:17;25782:47;25846:131;25972:4;25846:131;:::i;:::-;25838:139;;25565:419;;;:::o;25990:181::-;26130:33;26126:1;26118:6;26114:14;26107:57;25990:181;:::o;26177:366::-;26319:3;26340:67;26404:2;26399:3;26340:67;:::i;:::-;26333:74;;26416:93;26505:3;26416:93;:::i;:::-;26534:2;26529:3;26525:12;26518:19;;26177:366;;;:::o;26549:419::-;26715:4;26753:2;26742:9;26738:18;26730:26;;26802:9;26796:4;26792:20;26788:1;26777:9;26773:17;26766:47;26830:131;26956:4;26830:131;:::i;:::-;26822:139;;26549:419;;;:::o;26974:169::-;27114:21;27110:1;27102:6;27098:14;27091:45;26974:169;:::o;27149:366::-;27291:3;27312:67;27376:2;27371:3;27312:67;:::i;:::-;27305:74;;27388:93;27477:3;27388:93;:::i;:::-;27506:2;27501:3;27497:12;27490:19;;27149:366;;;:::o;27521:419::-;27687:4;27725:2;27714:9;27710:18;27702:26;;27774:9;27768:4;27764:20;27760:1;27749:9;27745:17;27738:47;27802:131;27928:4;27802:131;:::i;:::-;27794:139;;27521:419;;;:::o;27946:191::-;27986:3;28005:20;28023:1;28005:20;:::i;:::-;28000:25;;28039:20;28057:1;28039:20;:::i;:::-;28034:25;;28082:1;28079;28075:9;28068:16;;28103:3;28100:1;28097:10;28094:36;;;28110:18;;:::i;:::-;28094:36;27946:191;;;;:::o;28143:169::-;28283:21;28279:1;28271:6;28267:14;28260:45;28143:169;:::o;28318:366::-;28460:3;28481:67;28545:2;28540:3;28481:67;:::i;:::-;28474:74;;28557:93;28646:3;28557:93;:::i;:::-;28675:2;28670:3;28666:12;28659:19;;28318:366;;;:::o;28690:419::-;28856:4;28894:2;28883:9;28879:18;28871:26;;28943:9;28937:4;28933:20;28929:1;28918:9;28914:17;28907:47;28971:131;29097:4;28971:131;:::i;:::-;28963:139;;28690:419;;;:::o;29115:172::-;29255:24;29251:1;29243:6;29239:14;29232:48;29115:172;:::o;29293:366::-;29435:3;29456:67;29520:2;29515:3;29456:67;:::i;:::-;29449:74;;29532:93;29621:3;29532:93;:::i;:::-;29650:2;29645:3;29641:12;29634:19;;29293:366;;;:::o;29665:419::-;29831:4;29869:2;29858:9;29854:18;29846:26;;29918:9;29912:4;29908:20;29904:1;29893:9;29889:17;29882:47;29946:131;30072:4;29946:131;:::i;:::-;29938:139;;29665:419;;;:::o;30090:168::-;30230:20;30226:1;30218:6;30214:14;30207:44;30090:168;:::o;30264:366::-;30406:3;30427:67;30491:2;30486:3;30427:67;:::i;:::-;30420:74;;30503:93;30592:3;30503:93;:::i;:::-;30621:2;30616:3;30612:12;30605:19;;30264:366;;;:::o;30636:419::-;30802:4;30840:2;30829:9;30825:18;30817:26;;30889:9;30883:4;30879:20;30875:1;30864:9;30860:17;30853:47;30917:131;31043:4;30917:131;:::i;:::-;30909:139;;30636:419;;;:::o;31061:172::-;31201:24;31197:1;31189:6;31185:14;31178:48;31061:172;:::o;31239:366::-;31381:3;31402:67;31466:2;31461:3;31402:67;:::i;:::-;31395:74;;31478:93;31567:3;31478:93;:::i;:::-;31596:2;31591:3;31587:12;31580:19;;31239:366;;;:::o;31611:419::-;31777:4;31815:2;31804:9;31800:18;31792:26;;31864:9;31858:4;31854:20;31850:1;31839:9;31835:17;31828:47;31892:131;32018:4;31892:131;:::i;:::-;31884:139;;31611:419;;;:::o;32036:234::-;32176:34;32172:1;32164:6;32160:14;32153:58;32245:17;32240:2;32232:6;32228:15;32221:42;32036:234;:::o;32276:366::-;32418:3;32439:67;32503:2;32498:3;32439:67;:::i;:::-;32432:74;;32515:93;32604:3;32515:93;:::i;:::-;32633:2;32628:3;32624:12;32617:19;;32276:366;;;:::o;32648:419::-;32814:4;32852:2;32841:9;32837:18;32829:26;;32901:9;32895:4;32891:20;32887:1;32876:9;32872:17;32865:47;32929:131;33055:4;32929:131;:::i;:::-;32921:139;;32648:419;;;:::o;33073:148::-;33175:11;33212:3;33197:18;;33073:148;;;;:::o;33227:390::-;33333:3;33361:39;33394:5;33361:39;:::i;:::-;33416:89;33498:6;33493:3;33416:89;:::i;:::-;33409:96;;33514:65;33572:6;33567:3;33560:4;33553:5;33549:16;33514:65;:::i;:::-;33604:6;33599:3;33595:16;33588:23;;33337:280;33227:390;;;;:::o;33647:874::-;33750:3;33787:5;33781:12;33816:36;33842:9;33816:36;:::i;:::-;33868:89;33950:6;33945:3;33868:89;:::i;:::-;33861:96;;33988:1;33977:9;33973:17;34004:1;33999:166;;;;34179:1;34174:341;;;;33966:549;;33999:166;34083:4;34079:9;34068;34064:25;34059:3;34052:38;34145:6;34138:14;34131:22;34123:6;34119:35;34114:3;34110:45;34103:52;;33999:166;;34174:341;34241:38;34273:5;34241:38;:::i;:::-;34301:1;34315:154;34329:6;34326:1;34323:13;34315:154;;;34403:7;34397:14;34393:1;34388:3;34384:11;34377:35;34453:1;34444:7;34440:15;34429:26;;34351:4;34348:1;34344:12;34339:17;;34315:154;;;34498:6;34493:3;34489:16;34482:23;;34181:334;;33966:549;;33754:767;;33647:874;;;;:::o;34527:589::-;34752:3;34774:95;34865:3;34856:6;34774:95;:::i;:::-;34767:102;;34886:95;34977:3;34968:6;34886:95;:::i;:::-;34879:102;;34998:92;35086:3;35077:6;34998:92;:::i;:::-;34991:99;;35107:3;35100:10;;34527:589;;;;;;:::o;35122:225::-;35262:34;35258:1;35250:6;35246:14;35239:58;35331:8;35326:2;35318:6;35314:15;35307:33;35122:225;:::o;35353:366::-;35495:3;35516:67;35580:2;35575:3;35516:67;:::i;:::-;35509:74;;35592:93;35681:3;35592:93;:::i;:::-;35710:2;35705:3;35701:12;35694:19;;35353:366;;;:::o;35725:419::-;35891:4;35929:2;35918:9;35914:18;35906:26;;35978:9;35972:4;35968:20;35964:1;35953:9;35949:17;35942:47;36006:131;36132:4;36006:131;:::i;:::-;35998:139;;35725:419;;;:::o;36150:332::-;36271:4;36309:2;36298:9;36294:18;36286:26;;36322:71;36390:1;36379:9;36375:17;36366:6;36322:71;:::i;:::-;36403:72;36471:2;36460:9;36456:18;36447:6;36403:72;:::i;:::-;36150:332;;;;;:::o;36488:137::-;36542:5;36573:6;36567:13;36558:22;;36589:30;36613:5;36589:30;:::i;:::-;36488:137;;;;:::o;36631:345::-;36698:6;36747:2;36735:9;36726:7;36722:23;36718:32;36715:119;;;36753:79;;:::i;:::-;36715:119;36873:1;36898:61;36951:7;36942:6;36931:9;36927:22;36898:61;:::i;:::-;36888:71;;36844:125;36631:345;;;;:::o;36982:220::-;37122:34;37118:1;37110:6;37106:14;37099:58;37191:3;37186:2;37178:6;37174:15;37167:28;36982:220;:::o;37208:366::-;37350:3;37371:67;37435:2;37430:3;37371:67;:::i;:::-;37364:74;;37447:93;37536:3;37447:93;:::i;:::-;37565:2;37560:3;37556:12;37549:19;;37208:366;;;:::o;37580:419::-;37746:4;37784:2;37773:9;37769:18;37761:26;;37833:9;37827:4;37823:20;37819:1;37808:9;37804:17;37797:47;37861:131;37987:4;37861:131;:::i;:::-;37853:139;;37580:419;;;:::o;38005:248::-;38145:34;38141:1;38133:6;38129:14;38122:58;38214:31;38209:2;38201:6;38197:15;38190:56;38005:248;:::o;38259:366::-;38401:3;38422:67;38486:2;38481:3;38422:67;:::i;:::-;38415:74;;38498:93;38587:3;38498:93;:::i;:::-;38616:2;38611:3;38607:12;38600:19;;38259:366;;;:::o;38631:419::-;38797:4;38835:2;38824:9;38820:18;38812:26;;38884:9;38878:4;38874:20;38870:1;38859:9;38855:17;38848:47;38912:131;39038:4;38912:131;:::i;:::-;38904:139;;38631:419;;;:::o;39056:182::-;39196:34;39192:1;39184:6;39180:14;39173:58;39056:182;:::o;39244:366::-;39386:3;39407:67;39471:2;39466:3;39407:67;:::i;:::-;39400:74;;39483:93;39572:3;39483:93;:::i;:::-;39601:2;39596:3;39592:12;39585:19;;39244:366;;;:::o;39616:419::-;39782:4;39820:2;39809:9;39805:18;39797:26;;39869:9;39863:4;39859:20;39855:1;39844:9;39840:17;39833:47;39897:131;40023:4;39897:131;:::i;:::-;39889:139;;39616:419;;;:::o;40041:232::-;40181:34;40177:1;40169:6;40165:14;40158:58;40250:15;40245:2;40237:6;40233:15;40226:40;40041:232;:::o;40279:366::-;40421:3;40442:67;40506:2;40501:3;40442:67;:::i;:::-;40435:74;;40518:93;40607:3;40518:93;:::i;:::-;40636:2;40631:3;40627:12;40620:19;;40279:366;;;:::o;40651:419::-;40817:4;40855:2;40844:9;40840:18;40832:26;;40904:9;40898:4;40894:20;40890:1;40879:9;40875:17;40868:47;40932:131;41058:4;40932:131;:::i;:::-;40924:139;;40651:419;;;:::o;41076:224::-;41216:34;41212:1;41204:6;41200:14;41193:58;41285:7;41280:2;41272:6;41268:15;41261:32;41076:224;:::o;41306:366::-;41448:3;41469:67;41533:2;41528:3;41469:67;:::i;:::-;41462:74;;41545:93;41634:3;41545:93;:::i;:::-;41663:2;41658:3;41654:12;41647:19;;41306:366;;;:::o;41678:419::-;41844:4;41882:2;41871:9;41867:18;41859:26;;41931:9;41925:4;41921:20;41917:1;41906:9;41902:17;41895:47;41959:131;42085:4;41959:131;:::i;:::-;41951:139;;41678:419;;;:::o;42103:223::-;42243:34;42239:1;42231:6;42227:14;42220:58;42312:6;42307:2;42299:6;42295:15;42288:31;42103:223;:::o;42332:366::-;42474:3;42495:67;42559:2;42554:3;42495:67;:::i;:::-;42488:74;;42571:93;42660:3;42571:93;:::i;:::-;42689:2;42684:3;42680:12;42673:19;;42332:366;;;:::o;42704:419::-;42870:4;42908:2;42897:9;42893:18;42885:26;;42957:9;42951:4;42947:20;42943:1;42932:9;42928:17;42921:47;42985:131;43111:4;42985:131;:::i;:::-;42977:139;;42704:419;;;:::o;43129:175::-;43269:27;43265:1;43257:6;43253:14;43246:51;43129:175;:::o;43310:366::-;43452:3;43473:67;43537:2;43532:3;43473:67;:::i;:::-;43466:74;;43549:93;43638:3;43549:93;:::i;:::-;43667:2;43662:3;43658:12;43651:19;;43310:366;;;:::o;43682:419::-;43848:4;43886:2;43875:9;43871:18;43863:26;;43935:9;43929:4;43925:20;43921:1;43910:9;43906:17;43899:47;43963:131;44089:4;43963:131;:::i;:::-;43955:139;;43682:419;;;:::o;44107:237::-;44247:34;44243:1;44235:6;44231:14;44224:58;44316:20;44311:2;44303:6;44299:15;44292:45;44107:237;:::o;44350:366::-;44492:3;44513:67;44577:2;44572:3;44513:67;:::i;:::-;44506:74;;44589:93;44678:3;44589:93;:::i;:::-;44707:2;44702:3;44698:12;44691:19;;44350:366;;;:::o;44722:419::-;44888:4;44926:2;44915:9;44911:18;44903:26;;44975:9;44969:4;44965:20;44961:1;44950:9;44946:17;44939:47;45003:131;45129:4;45003:131;:::i;:::-;44995:139;;44722:419;;;:::o;45147:98::-;45198:6;45232:5;45226:12;45216:22;;45147:98;;;:::o;45251:168::-;45334:11;45368:6;45363:3;45356:19;45408:4;45403:3;45399:14;45384:29;;45251:168;;;;:::o;45425:373::-;45511:3;45539:38;45571:5;45539:38;:::i;:::-;45593:70;45656:6;45651:3;45593:70;:::i;:::-;45586:77;;45672:65;45730:6;45725:3;45718:4;45711:5;45707:16;45672:65;:::i;:::-;45762:29;45784:6;45762:29;:::i;:::-;45757:3;45753:39;45746:46;;45515:283;45425:373;;;;:::o;45804:640::-;45999:4;46037:3;46026:9;46022:19;46014:27;;46051:71;46119:1;46108:9;46104:17;46095:6;46051:71;:::i;:::-;46132:72;46200:2;46189:9;46185:18;46176:6;46132:72;:::i;:::-;46214;46282:2;46271:9;46267:18;46258:6;46214:72;:::i;:::-;46333:9;46327:4;46323:20;46318:2;46307:9;46303:18;46296:48;46361:76;46432:4;46423:6;46361:76;:::i;:::-;46353:84;;45804:640;;;;;;;:::o;46450:141::-;46506:5;46537:6;46531:13;46522:22;;46553:32;46579:5;46553:32;:::i;:::-;46450:141;;;;:::o;46597:349::-;46666:6;46715:2;46703:9;46694:7;46690:23;46686:32;46683:119;;;46721:79;;:::i;:::-;46683:119;46841:1;46866:63;46921:7;46912:6;46901:9;46897:22;46866:63;:::i;:::-;46856:73;;46812:127;46597:349;;;;:::o;46952:182::-;47092:34;47088:1;47080:6;47076:14;47069:58;46952:182;:::o;47140:366::-;47282:3;47303:67;47367:2;47362:3;47303:67;:::i;:::-;47296:74;;47379:93;47468:3;47379:93;:::i;:::-;47497:2;47492:3;47488:12;47481:19;;47140:366;;;:::o;47512:419::-;47678:4;47716:2;47705:9;47701:18;47693:26;;47765:9;47759:4;47755:20;47751:1;47740:9;47736:17;47729:47;47793:131;47919:4;47793:131;:::i;:::-;47785:139;;47512:419;;;:::o;47937:178::-;48077:30;48073:1;48065:6;48061:14;48054:54;47937:178;:::o;48121:366::-;48263:3;48284:67;48348:2;48343:3;48284:67;:::i;:::-;48277:74;;48360:93;48449:3;48360:93;:::i;:::-;48478:2;48473:3;48469:12;48462:19;;48121:366;;;:::o;48493:419::-;48659:4;48697:2;48686:9;48682:18;48674:26;;48746:9;48740:4;48736:20;48732:1;48721:9;48717:17;48710:47;48774:131;48900:4;48774:131;:::i;:::-;48766:139;;48493:419;;;:::o

Swarm Source

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