ETH Price: $2,359.86 (+0.80%)

Token

Think Circle (THNK)
 

Overview

Max Total Supply

510 THNK

Holders

257

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 THNK
0x97c97b265989f9cacfbafac7d0f4b87b5d92f7e1
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:
ThinkCircle

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-01
*/

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


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @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.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

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

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_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 (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

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


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

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

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

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

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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

// File: contracts/ThinkCircle.sol


pragma solidity ^0.8.0;







contract ThinkCircle is ERC721, Ownable, DefaultOperatorFilterer {

    using Counters for Counters.Counter;

    uint256 public constant MAX_TOKENS = 5000;
    uint256 public constant MAX_TOKENS_PER_WALLET = 2;

    Counters.Counter private _totalTokensMinted;

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {}

    struct CommonValues {
        uint256 hue;
        uint256[] radius;
        uint256[] distance;
        uint256[] strokeWidth;
        uint256[] speed;
        uint256[] bounceHeight;
        uint256[] startX;  
    }

    function mint(uint256 _numTokens) public {
        _mint(_numTokens, msg.sender);
    }

    function _mint(uint256 _numTokens, address _to) internal {
        require(_totalTokensMinted.current() < MAX_TOKENS, "All tokens have been minted");
        require(balanceOf(_to) + _numTokens <= MAX_TOKENS_PER_WALLET, "Cannot mint more tokens than allowed per wallet");

        for (uint256 i = 0; i < _numTokens; i++) {
            uint256 tokenId = _totalTokensMinted.current() + 1;
            _safeMint(_to, tokenId);
            _totalTokensMinted.increment();
        }
    }


    function generateCommonValues(uint256 _tokenId) internal pure returns (CommonValues memory) {
        uint256 hue = uint256(keccak256(abi.encodePacked(_tokenId, "hue"))) % 360;

        uint256 numCircles = uint256(keccak256(abi.encodePacked(_tokenId, "numCircles"))) % 9 + 2;
        uint256[] memory radius = new uint256[](numCircles);
        uint256[] memory distance = new uint256[](numCircles);
        uint256[] memory strokeWidth = new uint256[](numCircles);
        uint256[] memory speed = new uint256[](numCircles);
        uint256[] memory bounceHeight = new uint256[](numCircles);
        uint256[] memory startX = new uint256[](numCircles);

        for (uint256 i = 0; i < numCircles; i++) {
            radius[i] = uint256(keccak256(abi.encodePacked(_tokenId, "radius", i))) % 41 + 15;
            distance[i] = uint256(keccak256(abi.encodePacked(_tokenId, "distance", i))) % 80 + 40;
            strokeWidth[i] = uint256(keccak256(abi.encodePacked(_tokenId, "strokeWidth", i))) % 16 + 5;
            speed[i] = uint256(keccak256(abi.encodePacked(_tokenId, "speed", i))) % 10 + 1;
            bounceHeight[i] = uint256(keccak256(abi.encodePacked(_tokenId, "bounceHeight", i))) % 40 + 20;
            startX[i] = uint256(keccak256(abi.encodePacked(_tokenId, "startX", i))) % 240 + 40; // generate a random x-coordinate between 40 and 280
        }

        return CommonValues(hue, radius, distance, strokeWidth, speed, bounceHeight, startX);
    }

    function generateSVG(uint256 _tokenId) internal pure returns (string memory) {
        CommonValues memory commonValues = generateCommonValues(_tokenId);

        string memory svg = string(
            abi.encodePacked(
                '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 320">',
                '<rect width="320" height="320" fill="#000"/>',
                '<g transform="translate(0,0)">'
            )
        );

        for (uint256 i = 0; i < commonValues.radius.length; i++) {
            uint256 duration = commonValues.speed[i];

            uint256 hueStep = 360 / commonValues.radius.length;
            uint256 hue = (uint256(keccak256(abi.encodePacked(_tokenId, "hue"))) + (i * hueStep)) % 360;
            uint256 sat = uint256(keccak256(abi.encodePacked(_tokenId, "sat"))) % 50 + 50;

            string memory fillColor = string(abi.encodePacked("hsl(", Strings.toString(hue), ",", Strings.toString(sat), "%,54%)"));
            string memory strokeColor = string(abi.encodePacked("hsl(", Strings.toString(hue), ",", Strings.toString(sat), "%,54%)"));

            uint256 circleX = commonValues.startX[i] + commonValues.radius[i] + commonValues.strokeWidth[i];
            uint256 circleY = commonValues.bounceHeight[i] + commonValues.strokeWidth[i];

            string memory circleXStr = Strings.toString(circleX);
            string memory circleYStr = Strings.toString(circleY);
            string memory radiusStr = Strings.toString(commonValues.radius[i]);
            string memory strokeWidthStr = Strings.toString(commonValues.strokeWidth[i]);
            string memory durationStr = Strings.toString(duration);

            string memory circle = string(
                abi.encodePacked(
                    '<circle cx="', circleXStr, '" cy="', circleYStr, '" r="', radiusStr, '" fill="', fillColor, '" stroke="', strokeColor, '" stroke-width="', strokeWidthStr, '">',
                    '<animate attributeName="cy" values="', circleYStr, ';', Strings.toString(320 - circleY), ';', circleYStr, ';" dur="', durationStr, 's" repeatCount="indefinite"/>',
                    '</circle>'
                )
            );

            svg = string(abi.encodePacked(svg, circle));
        }

        svg = string(abi.encodePacked(svg, '</g>', '</svg>'));

        return svg;
    }



    function generateAttributes(uint256 _tokenId) internal pure returns (string memory) {
        CommonValues memory commonValues = generateCommonValues(_tokenId);
        uint256 numCircles = commonValues.radius.length;
        
        string memory attributes = string(
            abi.encodePacked(
                '{"trait_type": "Circle Count", "value": ', Strings.toString(numCircles), '},',
                '{"trait_type": "bounce_height", "value": "', Strings.toString(commonValues.bounceHeight[0]), ' - ', Strings.toString(commonValues.bounceHeight[commonValues.bounceHeight.length - 1]), ' pixels"},',
                '{"trait_type": "speed", "value": "', Strings.toString(commonValues.speed[0]), ' - ', Strings.toString(commonValues.speed[commonValues.speed.length - 1]), ' seconds"}'
            )
        );
        
        return attributes;
    }


    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist");

        // Generate the SVG string
        string memory svg = generateSVG(_tokenId);

        // Get the attribute values
        string memory attributes = generateAttributes(_tokenId);

        // Encode the SVG in base64
        string memory svgBase64 = Base64.encode(bytes(svg));

        // Generate the JSON metadata
        string memory name = string(abi.encodePacked("Think Circle #", Strings.toString(_tokenId)));
        string memory description = "ThinkCircle";
        string memory imageUri = string(abi.encodePacked("data:image/svg+xml;base64,", svgBase64));
        string memory backgroundColor = "#000000";

        string memory json = string(
            abi.encodePacked(
                '{',
                '"name": "', name, '",',
                '"description": "', description, '",',
                '"image": "', imageUri, '",',
                '"background_color": "', backgroundColor, '",',
                '"attributes": [', attributes, ']',
                '}'
            )
        );

        // Encode the JSON metadata in base64
        string memory jsonBase64 = Base64.encode(bytes(json));

        // Combine the base64-encoded JSON metadata and SVG into the final URI
        return string(abi.encodePacked("data:application/json;base64,", jsonBase64));
    }

    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

    // -------------------------  Opensea Royality Filter  -----------------------

    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);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162005af238038062005af28339818101604052810190620000379190620004f6565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600183838160009081620000619190620007c6565b508060019081620000739190620007c6565b505050620000966200008a6200029560201b60201c565b6200029d60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200028b57801562000151576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000117929190620008f2565b600060405180830381600087803b1580156200013257600080fd5b505af115801562000147573d6000803e3d6000fd5b505050506200028a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200020b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001d1929190620008f2565b600060405180830381600087803b158015620001ec57600080fd5b505af115801562000201573d6000803e3d6000fd5b5050505062000289565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200025491906200091f565b600060405180830381600087803b1580156200026f57600080fd5b505af115801562000284573d6000803e3d6000fd5b505050505b5b5b505050506200093c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003cc8262000381565b810181811067ffffffffffffffff82111715620003ee57620003ed62000392565b5b80604052505050565b60006200040362000363565b9050620004118282620003c1565b919050565b600067ffffffffffffffff82111562000434576200043362000392565b5b6200043f8262000381565b9050602081019050919050565b60005b838110156200046c5780820151818401526020810190506200044f565b60008484015250505050565b60006200048f620004898462000416565b620003f7565b905082815260208101848484011115620004ae57620004ad6200037c565b5b620004bb8482856200044c565b509392505050565b600082601f830112620004db57620004da62000377565b5b8151620004ed84826020860162000478565b91505092915050565b6000806040838503121562000510576200050f6200036d565b5b600083015167ffffffffffffffff81111562000531576200053062000372565b5b6200053f85828601620004c3565b925050602083015167ffffffffffffffff81111562000563576200056262000372565b5b6200057185828601620004c3565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ce57607f821691505b602082108103620005e457620005e362000586565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200064e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200060f565b6200065a86836200060f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006a7620006a16200069b8462000672565b6200067c565b62000672565b9050919050565b6000819050919050565b620006c38362000686565b620006db620006d282620006ae565b8484546200061c565b825550505050565b600090565b620006f2620006e3565b620006ff818484620006b8565b505050565b5b8181101562000727576200071b600082620006e8565b60018101905062000705565b5050565b601f82111562000776576200074081620005ea565b6200074b84620005ff565b810160208510156200075b578190505b620007736200076a85620005ff565b83018262000704565b50505b505050565b600082821c905092915050565b60006200079b600019846008026200077b565b1980831691505092915050565b6000620007b6838362000788565b9150826002028217905092915050565b620007d1826200057b565b67ffffffffffffffff811115620007ed57620007ec62000392565b5b620007f98254620005b5565b620008068282856200072b565b600060209050601f8311600181146200083e576000841562000829578287015190505b620008358582620007a8565b865550620008a5565b601f1984166200084e86620005ea565b60005b82811015620008785784890151825560018201915060208501945060208101905062000851565b8683101562000898578489015162000894601f89168262000788565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008da82620008ad565b9050919050565b620008ec81620008cd565b82525050565b6000604082019050620009096000830185620008e1565b620009186020830184620008e1565b9392505050565b6000602082019050620009366000830184620008e1565b92915050565b6151a6806200094c6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde1461033d578063c87b56dd14610359578063d1bdb1d114610389578063e985e9c5146103a7578063f2fde38b146103d7578063f47c84c5146103f357610142565b8063715018a6146102bf5780638da5cb5b146102c957806395d89b41146102e7578063a0712d6814610305578063a22cb4651461032157610142565b806323b872dd1161010a57806323b872dd146101ff5780633ccfd60b1461021b57806341f434341461022557806342842e0e146102435780636352211e1461025f57806370a082311461028f57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190612ad2565b610411565b60405161016e9190612b1a565b60405180910390f35b61017f6104f3565b60405161018c9190612bc5565b60405180910390f35b6101af60048036038101906101aa9190612c1d565b610585565b6040516101bc9190612c8b565b60405180910390f35b6101df60048036038101906101da9190612cd2565b6105cb565b005b6101e96106e2565b6040516101f69190612d21565b60405180910390f35b61021960048036038101906102149190612d3c565b6106f3565b005b610223610742565b005b61022d61079a565b60405161023a9190612dee565b60405180910390f35b61025d60048036038101906102589190612d3c565b6107ac565b005b61027960048036038101906102749190612c1d565b6107fb565b6040516102869190612c8b565b60405180910390f35b6102a960048036038101906102a49190612e09565b610881565b6040516102b69190612d21565b60405180910390f35b6102c7610938565b005b6102d161094c565b6040516102de9190612c8b565b60405180910390f35b6102ef610976565b6040516102fc9190612bc5565b60405180910390f35b61031f600480360381019061031a9190612c1d565b610a08565b005b61033b60048036038101906103369190612e62565b610a15565b005b61035760048036038101906103529190612fd7565b610a2b565b005b610373600480360381019061036e9190612c1d565b610a7c565b6040516103809190612bc5565b60405180910390f35b610391610c1a565b60405161039e9190612d21565b60405180910390f35b6103c160048036038101906103bc919061305a565b610c1f565b6040516103ce9190612b1a565b60405180910390f35b6103f160048036038101906103ec9190612e09565b610cb3565b005b6103fb610d36565b6040516104089190612d21565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ec57506104eb82610d3c565b5b9050919050565b606060008054610502906130c9565b80601f016020809104026020016040519081016040528092919081815260200182805461052e906130c9565b801561057b5780601f106105505761010080835404028352916020019161057b565b820191906000526020600020905b81548152906001019060200180831161055e57829003601f168201915b5050505050905090565b600061059082610da6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105d6826107fb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d9061316c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610665610df1565b73ffffffffffffffffffffffffffffffffffffffff16148061069457506106938161068e610df1565b610c1f565b5b6106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca906131fe565b60405180910390fd5b6106dd8383610df9565b505050565b60006106ee6007610eb2565b905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107315761073033610ec0565b5b61073c848484610fbd565b50505050565b61074a61101d565b61075261094c565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610797573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107ea576107e933610ec0565b5b6107f584848461109b565b50505050565b600080610807836110bb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f9061326a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e8906132fc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094061101d565b61094a60006110f8565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610985906130c9565b80601f01602080910402602001604051908101604052809291908181526020018280546109b1906130c9565b80156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b610a1281336111be565b50565b610a27610a20610df1565b83836112b4565b5050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6957610a6833610ec0565b5b610a7585858585611420565b5050505050565b6060610a8782611482565b610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90613368565b60405180910390fd5b6000610ad1836114c3565b90506000610ade8461183b565b90506000610aeb8361194f565b90506000610af886611ab2565b604051602001610b089190613410565b604051602081830303815290604052905060006040518060400160405280600b81526020017f5468696e6b436972636c650000000000000000000000000000000000000000008152509050600083604051602001610b66919061347e565b604051602081830303815290604052905060006040518060400160405280600781526020017f233030303030300000000000000000000000000000000000000000000000000081525090506000848484848a604051602001610bcc95949392919061374c565b60405160208183030381529060405290506000610be88261194f565b905080604051602001610bfb9190613867565b6040516020818303038152906040529950505050505050505050919050565b600281565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610cbb61101d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906138fb565b60405180910390fd5b610d33816110f8565b50565b61138881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610daf81611482565b610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de59061326a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e6c836107fb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610fba576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f3792919061391b565b602060405180830381865afa158015610f54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f789190613959565b610fb957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fb09190612c8b565b60405180910390fd5b5b50565b610fce610fc8610df1565b82611b80565b61100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906139f8565b60405180910390fd5b611018838383611c15565b505050565b611025610df1565b73ffffffffffffffffffffffffffffffffffffffff1661104361094c565b73ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090613a64565b60405180910390fd5b565b6110b683838360405180602001604052806000815250610a2b565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113886111cb6007610eb2565b1061120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290613ad0565b60405180910390fd5b60028261121783610881565b6112219190613b1f565b1115611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613bc5565b60405180910390fd5b60005b828110156112af576000600161127b6007610eb2565b6112859190613b1f565b90506112918382611f0e565b61129b6007611f2c565b5080806112a790613be5565b915050611265565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613c79565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114139190612b1a565b60405180910390a3505050565b61143161142b610df1565b83611b80565b611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906139f8565b60405180910390fd5b61147c84848484611f42565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166114a4836110bb565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060006114d083611f9e565b905060006040516020016114e390613dc9565b604051602081830303815290604052905060005b82602001515181101561180e5760008360800151828151811061151d5761151c613df4565b5b60200260200101519050600084602001515161016861153c9190613e52565b90506000610168828561154f9190613e83565b896040516020016115609190613f32565b6040516020818303038152906040528051906020012060001c6115839190613b1f565b61158d9190613f58565b905060006032808a6040516020016115a59190613fd5565b6040516020818303038152906040528051906020012060001c6115c89190613f58565b6115d29190613b1f565b905060006115df83611ab2565b6115e883611ab2565b6040516020016115f99291906140df565b6040516020818303038152906040529050600061161584611ab2565b61161e84611ab2565b60405160200161162f9291906140df565b604051602081830303815290604052905060008960600151888151811061165957611658613df4565b5b60200260200101518a60200151898151811061167857611677613df4565b5b60200260200101518b60c001518a8151811061169757611696613df4565b5b60200260200101516116a99190613b1f565b6116b39190613b1f565b905060008a6060015189815181106116ce576116cd613df4565b5b60200260200101518b60a001518a815181106116ed576116ec613df4565b5b60200260200101516116ff9190613b1f565b9050600061170c83611ab2565b9050600061171983611ab2565b905060006117448e602001518d8151811061173757611736613df4565b5b6020026020010151611ab2565b9050600061176f8f606001518e8151811061176257611761613df4565b5b6020026020010151611ab2565b9050600061177c8d611ab2565b905060008585858c8c878a61179d8e6101406117989190614124565b611ab2565b8c8a6040516020016117b89a9998979695949392919061450e565b60405160208183030381529060405290508f816040516020016117dc929190614629565b6040516020818303038152906040529f505050505050505050505050505050808061180690613be5565b9150506114f7565b508060405160200161182091906146e5565b60405160208183030381529060405290508092505050919050565b6060600061184883611f9e565b905060008160200151519050600061185f82611ab2565b6118878460a0015160008151811061187a57611879613df4565b5b6020026020010151611ab2565b6118bf8560a0015160018760a00151516118a19190614124565b815181106118b2576118b1613df4565b5b6020026020010151611ab2565b6118e786608001516000815181106118da576118d9613df4565b5b6020026020010151611ab2565b61191f876080015160018960800151516119019190614124565b8151811061191257611911613df4565b5b6020026020010151611ab2565b604051602001611933959493929190614998565b6040516020818303038152906040529050809350505050919050565b6060600082510361197157604051806020016040528060008152509050611aad565b600060405180606001604052806040815260200161513160409139905060006003600285516119a09190613b1f565b6119aa9190613e52565b60046119b69190613e83565b67ffffffffffffffff8111156119cf576119ce612eac565b5b6040519080825280601f01601f191660200182016040528015611a015781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611a6d576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050611a12565b5050600386510660018114611a895760028114611a9c57611aa4565b603d6001830353603d6002830353611aa4565b603d60018303535b50505080925050505b919050565b606060006001611ac1846124a8565b01905060008167ffffffffffffffff811115611ae057611adf612eac565b5b6040519080825280601f01601f191660200182016040528015611b125781602001600182028036833780820191505090505b509050600082602001820190505b600115611b75578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b6957611b68613e23565b5b04945060008503611b20575b819350505050919050565b600080611b8c836107fb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bce5750611bcd8185610c1f565b5b80611c0c57508373ffffffffffffffffffffffffffffffffffffffff16611bf484610585565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c35826107fb565b73ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290614aad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190614b3f565b60405180910390fd5b611d0783838360016125fb565b8273ffffffffffffffffffffffffffffffffffffffff16611d27826107fb565b73ffffffffffffffffffffffffffffffffffffffff1614611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490614aad565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f098383836001612601565b505050565b611f28828260405180602001604052806000815250612607565b5050565b6001816000016000828254019250508190555050565b611f4d848484611c15565b611f5984848484612662565b611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90614bd1565b60405180910390fd5b50505050565b611fa6612a29565b600061016883604051602001611fbc9190613f32565b6040516020818303038152906040528051906020012060001c611fdf9190613f58565b905060006002600985604051602001611ff89190614c3d565b6040516020818303038152906040528051906020012060001c61201b9190613f58565b6120259190613b1f565b905060008167ffffffffffffffff81111561204357612042612eac565b5b6040519080825280602002602001820160405280156120715781602001602082028036833780820191505090505b50905060008267ffffffffffffffff8111156120905761208f612eac565b5b6040519080825280602002602001820160405280156120be5781602001602082028036833780820191505090505b50905060008367ffffffffffffffff8111156120dd576120dc612eac565b5b60405190808252806020026020018201604052801561210b5781602001602082028036833780820191505090505b50905060008467ffffffffffffffff81111561212a57612129612eac565b5b6040519080825280602002602001820160405280156121585781602001602082028036833780820191505090505b50905060008567ffffffffffffffff81111561217757612176612eac565b5b6040519080825280602002602001820160405280156121a55781602001602082028036833780820191505090505b50905060008667ffffffffffffffff8111156121c4576121c3612eac565b5b6040519080825280602002602001820160405280156121f25781602001602082028036833780820191505090505b50905060005b8781101561246557600f60298c83604051602001612217929190614caf565b6040516020818303038152906040528051906020012060001c61223a9190613f58565b6122449190613b1f565b87828151811061225757612256613df4565b5b602002602001018181525050602860508c8360405160200161227a929190614d32565b6040516020818303038152906040528051906020012060001c61229d9190613f58565b6122a79190613b1f565b8682815181106122ba576122b9613df4565b5b602002602001018181525050600560108c836040516020016122dd929190614db5565b6040516020818303038152906040528051906020012060001c6123009190613f58565b61230a9190613b1f565b85828151811061231d5761231c613df4565b5b6020026020010181815250506001600a8c83604051602001612340929190614e38565b6040516020818303038152906040528051906020012060001c6123639190613f58565b61236d9190613b1f565b8482815181106123805761237f613df4565b5b602002602001018181525050601460288c836040516020016123a3929190614ebb565b6040516020818303038152906040528051906020012060001c6123c69190613f58565b6123d09190613b1f565b8382815181106123e3576123e2613df4565b5b602002602001018181525050602860f08c83604051602001612406929190614f3e565b6040516020818303038152906040528051906020012060001c6124299190613f58565b6124339190613b1f565b82828151811061244657612445613df4565b5b602002602001018181525050808061245d90613be5565b9150506121f8565b506040518060e001604052808981526020018781526020018681526020018581526020018481526020018381526020018281525098505050505050505050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612506577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124fc576124fb613e23565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612543576d04ee2d6d415b85acef8100000000838161253957612538613e23565b5b0492506020810190505b662386f26fc10000831061257257662386f26fc10000838161256857612567613e23565b5b0492506010810190505b6305f5e100831061259b576305f5e100838161259157612590613e23565b5b0492506008810190505b61271083106125c05761271083816125b6576125b5613e23565b5b0492506004810190505b606483106125e357606483816125d9576125d8613e23565b5b0492506002810190505b600a83106125f2576001810190505b80915050919050565b50505050565b50505050565b61261183836127e9565b61261e6000848484612662565b61265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614bd1565b60405180910390fd5b505050565b60006126838473ffffffffffffffffffffffffffffffffffffffff16612a06565b156127dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126ac610df1565b8786866040518563ffffffff1660e01b81526004016126ce9493929190614fca565b6020604051808303816000875af192505050801561270a57506040513d601f19601f82011682018060405250810190612707919061502b565b60015b61278c573d806000811461273a576040519150601f19603f3d011682016040523d82523d6000602084013e61273f565b606091505b506000815103612784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277b90614bd1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127e1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f906150a4565b60405180910390fd5b61286181611482565b156128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289890615110565b60405180910390fd5b6128af6000838360016125fb565b6128b881611482565b156128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90615110565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a02600083836001612601565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060e00160405280600081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612aaf81612a7a565b8114612aba57600080fd5b50565b600081359050612acc81612aa6565b92915050565b600060208284031215612ae857612ae7612a70565b5b6000612af684828501612abd565b91505092915050565b60008115159050919050565b612b1481612aff565b82525050565b6000602082019050612b2f6000830184612b0b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b6f578082015181840152602081019050612b54565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b9782612b35565b612ba18185612b40565b9350612bb1818560208601612b51565b612bba81612b7b565b840191505092915050565b60006020820190508181036000830152612bdf8184612b8c565b905092915050565b6000819050919050565b612bfa81612be7565b8114612c0557600080fd5b50565b600081359050612c1781612bf1565b92915050565b600060208284031215612c3357612c32612a70565b5b6000612c4184828501612c08565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7582612c4a565b9050919050565b612c8581612c6a565b82525050565b6000602082019050612ca06000830184612c7c565b92915050565b612caf81612c6a565b8114612cba57600080fd5b50565b600081359050612ccc81612ca6565b92915050565b60008060408385031215612ce957612ce8612a70565b5b6000612cf785828601612cbd565b9250506020612d0885828601612c08565b9150509250929050565b612d1b81612be7565b82525050565b6000602082019050612d366000830184612d12565b92915050565b600080600060608486031215612d5557612d54612a70565b5b6000612d6386828701612cbd565b9350506020612d7486828701612cbd565b9250506040612d8586828701612c08565b9150509250925092565b6000819050919050565b6000612db4612daf612daa84612c4a565b612d8f565b612c4a565b9050919050565b6000612dc682612d99565b9050919050565b6000612dd882612dbb565b9050919050565b612de881612dcd565b82525050565b6000602082019050612e036000830184612ddf565b92915050565b600060208284031215612e1f57612e1e612a70565b5b6000612e2d84828501612cbd565b91505092915050565b612e3f81612aff565b8114612e4a57600080fd5b50565b600081359050612e5c81612e36565b92915050565b60008060408385031215612e7957612e78612a70565b5b6000612e8785828601612cbd565b9250506020612e9885828601612e4d565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ee482612b7b565b810181811067ffffffffffffffff82111715612f0357612f02612eac565b5b80604052505050565b6000612f16612a66565b9050612f228282612edb565b919050565b600067ffffffffffffffff821115612f4257612f41612eac565b5b612f4b82612b7b565b9050602081019050919050565b82818337600083830152505050565b6000612f7a612f7584612f27565b612f0c565b905082815260208101848484011115612f9657612f95612ea7565b5b612fa1848285612f58565b509392505050565b600082601f830112612fbe57612fbd612ea2565b5b8135612fce848260208601612f67565b91505092915050565b60008060008060808587031215612ff157612ff0612a70565b5b6000612fff87828801612cbd565b945050602061301087828801612cbd565b935050604061302187828801612c08565b925050606085013567ffffffffffffffff81111561304257613041612a75565b5b61304e87828801612fa9565b91505092959194509250565b6000806040838503121561307157613070612a70565b5b600061307f85828601612cbd565b925050602061309085828601612cbd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130e157607f821691505b6020821081036130f4576130f361309a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613156602183612b40565b9150613161826130fa565b604082019050919050565b6000602082019050818103600083015261318581613149565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006131e8603d83612b40565b91506131f38261318c565b604082019050919050565b60006020820190508181036000830152613217816131db565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613254601883612b40565b915061325f8261321e565b602082019050919050565b6000602082019050818103600083015261328381613247565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006132e6602983612b40565b91506132f18261328a565b604082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613352601483612b40565b915061335d8261331c565b602082019050919050565b6000602082019050818103600083015261338181613345565b9050919050565b600081905092915050565b7f5468696e6b20436972636c652023000000000000000000000000000000000000600082015250565b60006133c9600e83613388565b91506133d482613393565b600e82019050919050565b60006133ea82612b35565b6133f48185613388565b9350613404818560208601612b51565b80840191505092915050565b600061341b826133bc565b915061342782846133df565b915081905092915050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b6000613468601a83613388565b915061347382613432565b601a82019050919050565b60006134898261345b565b915061349582846133df565b915081905092915050565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b60006134d6600183613388565b91506134e1826134a0565b600182019050919050565b7f226e616d65223a20220000000000000000000000000000000000000000000000600082015250565b6000613522600983613388565b915061352d826134ec565b600982019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b600061356e600283613388565b915061357982613538565b600282019050919050565b7f226465736372697074696f6e223a202200000000000000000000000000000000600082015250565b60006135ba601083613388565b91506135c582613584565b601082019050919050565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b6000613606600a83613388565b9150613611826135d0565b600a82019050919050565b7f226261636b67726f756e645f636f6c6f72223a20220000000000000000000000600082015250565b6000613652601583613388565b915061365d8261361c565b601582019050919050565b7f2261747472696275746573223a205b0000000000000000000000000000000000600082015250565b600061369e600f83613388565b91506136a982613668565b600f82019050919050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006136ea600183613388565b91506136f5826136b4565b600182019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613736600183613388565b915061374182613700565b600182019050919050565b6000613757826134c9565b915061376282613515565b915061376e82886133df565b915061377982613561565b9150613784826135ad565b915061379082876133df565b915061379b82613561565b91506137a6826135f9565b91506137b282866133df565b91506137bd82613561565b91506137c882613645565b91506137d482856133df565b91506137df82613561565b91506137ea82613691565b91506137f682846133df565b9150613801826136dd565b915061380c82613729565b91508190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000613851601d83613388565b915061385c8261381b565b601d82019050919050565b600061387282613844565b915061387e82846133df565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e5602683612b40565b91506138f082613889565b604082019050919050565b60006020820190508181036000830152613914816138d8565b9050919050565b60006040820190506139306000830185612c7c565b61393d6020830184612c7c565b9392505050565b60008151905061395381612e36565b92915050565b60006020828403121561396f5761396e612a70565b5b600061397d84828501613944565b91505092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006139e2602d83612b40565b91506139ed82613986565b604082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a4e602083612b40565b9150613a5982613a18565b602082019050919050565b60006020820190508181036000830152613a7d81613a41565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000613aba601b83612b40565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b2a82612be7565b9150613b3583612be7565b9250828201905080821115613b4d57613b4c613af0565b5b92915050565b7f43616e6e6f74206d696e74206d6f726520746f6b656e73207468616e20616c6c60008201527f6f776564207065722077616c6c65740000000000000000000000000000000000602082015250565b6000613baf602f83612b40565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b6000613bf082612be7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c2257613c21613af0565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613c63601983612b40565b9150613c6e82613c2d565b602082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222076696577426f783d223020302033323020333230223e0000602082015250565b6000613cf5603e83613388565b9150613d0082613c99565b603e82019050919050565b7f3c726563742077696474683d2233323022206865696768743d2233323022206660008201527f696c6c3d2223303030222f3e0000000000000000000000000000000000000000602082015250565b6000613d67602c83613388565b9150613d7282613d0b565b602c82019050919050565b7f3c67207472616e73666f726d3d227472616e736c61746528302c3029223e0000600082015250565b6000613db3601e83613388565b9150613dbe82613d7d565b601e82019050919050565b6000613dd482613ce8565b9150613ddf82613d5a565b9150613dea82613da6565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e5d82612be7565b9150613e6883612be7565b925082613e7857613e77613e23565b5b828204905092915050565b6000613e8e82612be7565b9150613e9983612be7565b9250828202613ea781612be7565b91508282048414831517613ebe57613ebd613af0565b5b5092915050565b6000819050919050565b613ee0613edb82612be7565b613ec5565b82525050565b7f6875650000000000000000000000000000000000000000000000000000000000600082015250565b6000613f1c600383613388565b9150613f2782613ee6565b600382019050919050565b6000613f3e8284613ecf565b602082019150613f4d82613f0f565b915081905092915050565b6000613f6382612be7565b9150613f6e83612be7565b925082613f7e57613f7d613e23565b5b828206905092915050565b7f7361740000000000000000000000000000000000000000000000000000000000600082015250565b6000613fbf600383613388565b9150613fca82613f89565b600382019050919050565b6000613fe18284613ecf565b602082019150613ff082613fb2565b915081905092915050565b7f68736c2800000000000000000000000000000000000000000000000000000000600082015250565b6000614031600483613388565b915061403c82613ffb565b600482019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b600061407d600183613388565b915061408882614047565b600182019050919050565b7f252c353425290000000000000000000000000000000000000000000000000000600082015250565b60006140c9600683613388565b91506140d482614093565b600682019050919050565b60006140ea82614024565b91506140f682856133df565b915061410182614070565b915061410d82846133df565b9150614118826140bc565b91508190509392505050565b600061412f82612be7565b915061413a83612be7565b925082820390508181111561415257614151613af0565b5b92915050565b7f3c636972636c652063783d220000000000000000000000000000000000000000600082015250565b600061418e600c83613388565b915061419982614158565b600c82019050919050565b7f222063793d220000000000000000000000000000000000000000000000000000600082015250565b60006141da600683613388565b91506141e5826141a4565b600682019050919050565b7f2220723d22000000000000000000000000000000000000000000000000000000600082015250565b6000614226600583613388565b9150614231826141f0565b600582019050919050565b7f222066696c6c3d22000000000000000000000000000000000000000000000000600082015250565b6000614272600883613388565b915061427d8261423c565b600882019050919050565b7f22207374726f6b653d2200000000000000000000000000000000000000000000600082015250565b60006142be600a83613388565b91506142c982614288565b600a82019050919050565b7f22207374726f6b652d77696474683d2200000000000000000000000000000000600082015250565b600061430a601083613388565b9150614315826142d4565b601082019050919050565b7f223e000000000000000000000000000000000000000000000000000000000000600082015250565b6000614356600283613388565b915061436182614320565b600282019050919050565b7f3c616e696d617465206174747269627574654e616d653d226379222076616c7560008201527f65733d2200000000000000000000000000000000000000000000000000000000602082015250565b60006143c8602483613388565b91506143d38261436c565b602482019050919050565b7f3b00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614414600183613388565b915061441f826143de565b600182019050919050565b7f3b22206475723d22000000000000000000000000000000000000000000000000600082015250565b6000614460600883613388565b915061446b8261442a565b600882019050919050565b7f732220726570656174436f756e743d22696e646566696e697465222f3e000000600082015250565b60006144ac601d83613388565b91506144b782614476565b601d82019050919050565b7f3c2f636972636c653e0000000000000000000000000000000000000000000000600082015250565b60006144f8600983613388565b9150614503826144c2565b600982019050919050565b600061451982614181565b9150614525828d6133df565b9150614530826141cd565b915061453c828c6133df565b915061454782614219565b9150614553828b6133df565b915061455e82614265565b915061456a828a6133df565b9150614575826142b1565b915061458182896133df565b915061458c826142fd565b915061459882886133df565b91506145a382614349565b91506145ae826143bb565b91506145ba82876133df565b91506145c582614407565b91506145d182866133df565b91506145dc82614407565b91506145e882856133df565b91506145f382614453565b91506145ff82846133df565b915061460a8261449f565b9150614615826144eb565b91508190509b9a5050505050505050505050565b600061463582856133df565b915061464182846133df565b91508190509392505050565b7f3c2f673e00000000000000000000000000000000000000000000000000000000600082015250565b6000614683600483613388565b915061468e8261464d565b600482019050919050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b60006146cf600683613388565b91506146da82614699565b600682019050919050565b60006146f182846133df565b91506146fc82614676565b9150614707826146c2565b915081905092915050565b7f7b2274726169745f74797065223a2022436972636c6520436f756e74222c202260008201527f76616c7565223a20000000000000000000000000000000000000000000000000602082015250565b600061476e602883613388565b915061477982614712565b602882019050919050565b7f7d2c000000000000000000000000000000000000000000000000000000000000600082015250565b60006147ba600283613388565b91506147c582614784565b600282019050919050565b7f7b2274726169745f74797065223a2022626f756e63655f686569676874222c2060008201527f2276616c7565223a202200000000000000000000000000000000000000000000602082015250565b600061482c602a83613388565b9150614837826147d0565b602a82019050919050565b7f202d200000000000000000000000000000000000000000000000000000000000600082015250565b6000614878600383613388565b915061488382614842565b600382019050919050565b7f20706978656c73227d2c00000000000000000000000000000000000000000000600082015250565b60006148c4600a83613388565b91506148cf8261488e565b600a82019050919050565b7f7b2274726169745f74797065223a20227370656564222c202276616c7565223a60008201527f2022000000000000000000000000000000000000000000000000000000000000602082015250565b6000614936602283613388565b9150614941826148da565b602282019050919050565b7f207365636f6e6473227d00000000000000000000000000000000000000000000600082015250565b6000614982600a83613388565b915061498d8261494c565b600a82019050919050565b60006149a382614761565b91506149af82886133df565b91506149ba826147ad565b91506149c58261481f565b91506149d182876133df565b91506149dc8261486b565b91506149e882866133df565b91506149f3826148b7565b91506149fe82614929565b9150614a0a82856133df565b9150614a158261486b565b9150614a2182846133df565b9150614a2c82614975565b91508190509695505050505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614a97602583612b40565b9150614aa282614a3b565b604082019050919050565b60006020820190508181036000830152614ac681614a8a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b29602483612b40565b9150614b3482614acd565b604082019050919050565b60006020820190508181036000830152614b5881614b1c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614bbb603283612b40565b9150614bc682614b5f565b604082019050919050565b60006020820190508181036000830152614bea81614bae565b9050919050565b7f6e756d436972636c657300000000000000000000000000000000000000000000600082015250565b6000614c27600a83613388565b9150614c3282614bf1565b600a82019050919050565b6000614c498284613ecf565b602082019150614c5882614c1a565b915081905092915050565b7f7261646975730000000000000000000000000000000000000000000000000000600082015250565b6000614c99600683613388565b9150614ca482614c63565b600682019050919050565b6000614cbb8285613ecf565b602082019150614cca82614c8c565b9150614cd68284613ecf565b6020820191508190509392505050565b7f64697374616e6365000000000000000000000000000000000000000000000000600082015250565b6000614d1c600883613388565b9150614d2782614ce6565b600882019050919050565b6000614d3e8285613ecf565b602082019150614d4d82614d0f565b9150614d598284613ecf565b6020820191508190509392505050565b7f7374726f6b655769647468000000000000000000000000000000000000000000600082015250565b6000614d9f600b83613388565b9150614daa82614d69565b600b82019050919050565b6000614dc18285613ecf565b602082019150614dd082614d92565b9150614ddc8284613ecf565b6020820191508190509392505050565b7f7370656564000000000000000000000000000000000000000000000000000000600082015250565b6000614e22600583613388565b9150614e2d82614dec565b600582019050919050565b6000614e448285613ecf565b602082019150614e5382614e15565b9150614e5f8284613ecf565b6020820191508190509392505050565b7f626f756e63654865696768740000000000000000000000000000000000000000600082015250565b6000614ea5600c83613388565b9150614eb082614e6f565b600c82019050919050565b6000614ec78285613ecf565b602082019150614ed682614e98565b9150614ee28284613ecf565b6020820191508190509392505050565b7f7374617274580000000000000000000000000000000000000000000000000000600082015250565b6000614f28600683613388565b9150614f3382614ef2565b600682019050919050565b6000614f4a8285613ecf565b602082019150614f5982614f1b565b9150614f658284613ecf565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614f9c82614f75565b614fa68185614f80565b9350614fb6818560208601612b51565b614fbf81612b7b565b840191505092915050565b6000608082019050614fdf6000830187612c7c565b614fec6020830186612c7c565b614ff96040830185612d12565b818103606083015261500b8184614f91565b905095945050505050565b60008151905061502581612aa6565b92915050565b60006020828403121561504157615040612a70565b5b600061504f84828501615016565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061508e602083612b40565b915061509982615058565b602082019050919050565b600060208201905081810360008301526150bd81615081565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006150fa601c83612b40565b9150615105826150c4565b602082019050919050565b60006020820190508181036000830152615129816150ed565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212208f09bb56adef813914ce478332f6cbab5cea97f367fd3f489fb9f7dd1a50d2bf64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c5468696e6b20436972636c65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052054484e4b000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde1461033d578063c87b56dd14610359578063d1bdb1d114610389578063e985e9c5146103a7578063f2fde38b146103d7578063f47c84c5146103f357610142565b8063715018a6146102bf5780638da5cb5b146102c957806395d89b41146102e7578063a0712d6814610305578063a22cb4651461032157610142565b806323b872dd1161010a57806323b872dd146101ff5780633ccfd60b1461021b57806341f434341461022557806342842e0e146102435780636352211e1461025f57806370a082311461028f57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190612ad2565b610411565b60405161016e9190612b1a565b60405180910390f35b61017f6104f3565b60405161018c9190612bc5565b60405180910390f35b6101af60048036038101906101aa9190612c1d565b610585565b6040516101bc9190612c8b565b60405180910390f35b6101df60048036038101906101da9190612cd2565b6105cb565b005b6101e96106e2565b6040516101f69190612d21565b60405180910390f35b61021960048036038101906102149190612d3c565b6106f3565b005b610223610742565b005b61022d61079a565b60405161023a9190612dee565b60405180910390f35b61025d60048036038101906102589190612d3c565b6107ac565b005b61027960048036038101906102749190612c1d565b6107fb565b6040516102869190612c8b565b60405180910390f35b6102a960048036038101906102a49190612e09565b610881565b6040516102b69190612d21565b60405180910390f35b6102c7610938565b005b6102d161094c565b6040516102de9190612c8b565b60405180910390f35b6102ef610976565b6040516102fc9190612bc5565b60405180910390f35b61031f600480360381019061031a9190612c1d565b610a08565b005b61033b60048036038101906103369190612e62565b610a15565b005b61035760048036038101906103529190612fd7565b610a2b565b005b610373600480360381019061036e9190612c1d565b610a7c565b6040516103809190612bc5565b60405180910390f35b610391610c1a565b60405161039e9190612d21565b60405180910390f35b6103c160048036038101906103bc919061305a565b610c1f565b6040516103ce9190612b1a565b60405180910390f35b6103f160048036038101906103ec9190612e09565b610cb3565b005b6103fb610d36565b6040516104089190612d21565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ec57506104eb82610d3c565b5b9050919050565b606060008054610502906130c9565b80601f016020809104026020016040519081016040528092919081815260200182805461052e906130c9565b801561057b5780601f106105505761010080835404028352916020019161057b565b820191906000526020600020905b81548152906001019060200180831161055e57829003601f168201915b5050505050905090565b600061059082610da6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105d6826107fb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d9061316c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610665610df1565b73ffffffffffffffffffffffffffffffffffffffff16148061069457506106938161068e610df1565b610c1f565b5b6106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca906131fe565b60405180910390fd5b6106dd8383610df9565b505050565b60006106ee6007610eb2565b905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107315761073033610ec0565b5b61073c848484610fbd565b50505050565b61074a61101d565b61075261094c565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610797573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107ea576107e933610ec0565b5b6107f584848461109b565b50505050565b600080610807836110bb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f9061326a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e8906132fc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094061101d565b61094a60006110f8565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610985906130c9565b80601f01602080910402602001604051908101604052809291908181526020018280546109b1906130c9565b80156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b610a1281336111be565b50565b610a27610a20610df1565b83836112b4565b5050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6957610a6833610ec0565b5b610a7585858585611420565b5050505050565b6060610a8782611482565b610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90613368565b60405180910390fd5b6000610ad1836114c3565b90506000610ade8461183b565b90506000610aeb8361194f565b90506000610af886611ab2565b604051602001610b089190613410565b604051602081830303815290604052905060006040518060400160405280600b81526020017f5468696e6b436972636c650000000000000000000000000000000000000000008152509050600083604051602001610b66919061347e565b604051602081830303815290604052905060006040518060400160405280600781526020017f233030303030300000000000000000000000000000000000000000000000000081525090506000848484848a604051602001610bcc95949392919061374c565b60405160208183030381529060405290506000610be88261194f565b905080604051602001610bfb9190613867565b6040516020818303038152906040529950505050505050505050919050565b600281565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610cbb61101d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906138fb565b60405180910390fd5b610d33816110f8565b50565b61138881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610daf81611482565b610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de59061326a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e6c836107fb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610fba576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f3792919061391b565b602060405180830381865afa158015610f54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f789190613959565b610fb957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fb09190612c8b565b60405180910390fd5b5b50565b610fce610fc8610df1565b82611b80565b61100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906139f8565b60405180910390fd5b611018838383611c15565b505050565b611025610df1565b73ffffffffffffffffffffffffffffffffffffffff1661104361094c565b73ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090613a64565b60405180910390fd5b565b6110b683838360405180602001604052806000815250610a2b565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113886111cb6007610eb2565b1061120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290613ad0565b60405180910390fd5b60028261121783610881565b6112219190613b1f565b1115611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613bc5565b60405180910390fd5b60005b828110156112af576000600161127b6007610eb2565b6112859190613b1f565b90506112918382611f0e565b61129b6007611f2c565b5080806112a790613be5565b915050611265565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613c79565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114139190612b1a565b60405180910390a3505050565b61143161142b610df1565b83611b80565b611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906139f8565b60405180910390fd5b61147c84848484611f42565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166114a4836110bb565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060006114d083611f9e565b905060006040516020016114e390613dc9565b604051602081830303815290604052905060005b82602001515181101561180e5760008360800151828151811061151d5761151c613df4565b5b60200260200101519050600084602001515161016861153c9190613e52565b90506000610168828561154f9190613e83565b896040516020016115609190613f32565b6040516020818303038152906040528051906020012060001c6115839190613b1f565b61158d9190613f58565b905060006032808a6040516020016115a59190613fd5565b6040516020818303038152906040528051906020012060001c6115c89190613f58565b6115d29190613b1f565b905060006115df83611ab2565b6115e883611ab2565b6040516020016115f99291906140df565b6040516020818303038152906040529050600061161584611ab2565b61161e84611ab2565b60405160200161162f9291906140df565b604051602081830303815290604052905060008960600151888151811061165957611658613df4565b5b60200260200101518a60200151898151811061167857611677613df4565b5b60200260200101518b60c001518a8151811061169757611696613df4565b5b60200260200101516116a99190613b1f565b6116b39190613b1f565b905060008a6060015189815181106116ce576116cd613df4565b5b60200260200101518b60a001518a815181106116ed576116ec613df4565b5b60200260200101516116ff9190613b1f565b9050600061170c83611ab2565b9050600061171983611ab2565b905060006117448e602001518d8151811061173757611736613df4565b5b6020026020010151611ab2565b9050600061176f8f606001518e8151811061176257611761613df4565b5b6020026020010151611ab2565b9050600061177c8d611ab2565b905060008585858c8c878a61179d8e6101406117989190614124565b611ab2565b8c8a6040516020016117b89a9998979695949392919061450e565b60405160208183030381529060405290508f816040516020016117dc929190614629565b6040516020818303038152906040529f505050505050505050505050505050808061180690613be5565b9150506114f7565b508060405160200161182091906146e5565b60405160208183030381529060405290508092505050919050565b6060600061184883611f9e565b905060008160200151519050600061185f82611ab2565b6118878460a0015160008151811061187a57611879613df4565b5b6020026020010151611ab2565b6118bf8560a0015160018760a00151516118a19190614124565b815181106118b2576118b1613df4565b5b6020026020010151611ab2565b6118e786608001516000815181106118da576118d9613df4565b5b6020026020010151611ab2565b61191f876080015160018960800151516119019190614124565b8151811061191257611911613df4565b5b6020026020010151611ab2565b604051602001611933959493929190614998565b6040516020818303038152906040529050809350505050919050565b6060600082510361197157604051806020016040528060008152509050611aad565b600060405180606001604052806040815260200161513160409139905060006003600285516119a09190613b1f565b6119aa9190613e52565b60046119b69190613e83565b67ffffffffffffffff8111156119cf576119ce612eac565b5b6040519080825280601f01601f191660200182016040528015611a015781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611a6d576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050611a12565b5050600386510660018114611a895760028114611a9c57611aa4565b603d6001830353603d6002830353611aa4565b603d60018303535b50505080925050505b919050565b606060006001611ac1846124a8565b01905060008167ffffffffffffffff811115611ae057611adf612eac565b5b6040519080825280601f01601f191660200182016040528015611b125781602001600182028036833780820191505090505b509050600082602001820190505b600115611b75578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b6957611b68613e23565b5b04945060008503611b20575b819350505050919050565b600080611b8c836107fb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bce5750611bcd8185610c1f565b5b80611c0c57508373ffffffffffffffffffffffffffffffffffffffff16611bf484610585565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c35826107fb565b73ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290614aad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190614b3f565b60405180910390fd5b611d0783838360016125fb565b8273ffffffffffffffffffffffffffffffffffffffff16611d27826107fb565b73ffffffffffffffffffffffffffffffffffffffff1614611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490614aad565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f098383836001612601565b505050565b611f28828260405180602001604052806000815250612607565b5050565b6001816000016000828254019250508190555050565b611f4d848484611c15565b611f5984848484612662565b611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90614bd1565b60405180910390fd5b50505050565b611fa6612a29565b600061016883604051602001611fbc9190613f32565b6040516020818303038152906040528051906020012060001c611fdf9190613f58565b905060006002600985604051602001611ff89190614c3d565b6040516020818303038152906040528051906020012060001c61201b9190613f58565b6120259190613b1f565b905060008167ffffffffffffffff81111561204357612042612eac565b5b6040519080825280602002602001820160405280156120715781602001602082028036833780820191505090505b50905060008267ffffffffffffffff8111156120905761208f612eac565b5b6040519080825280602002602001820160405280156120be5781602001602082028036833780820191505090505b50905060008367ffffffffffffffff8111156120dd576120dc612eac565b5b60405190808252806020026020018201604052801561210b5781602001602082028036833780820191505090505b50905060008467ffffffffffffffff81111561212a57612129612eac565b5b6040519080825280602002602001820160405280156121585781602001602082028036833780820191505090505b50905060008567ffffffffffffffff81111561217757612176612eac565b5b6040519080825280602002602001820160405280156121a55781602001602082028036833780820191505090505b50905060008667ffffffffffffffff8111156121c4576121c3612eac565b5b6040519080825280602002602001820160405280156121f25781602001602082028036833780820191505090505b50905060005b8781101561246557600f60298c83604051602001612217929190614caf565b6040516020818303038152906040528051906020012060001c61223a9190613f58565b6122449190613b1f565b87828151811061225757612256613df4565b5b602002602001018181525050602860508c8360405160200161227a929190614d32565b6040516020818303038152906040528051906020012060001c61229d9190613f58565b6122a79190613b1f565b8682815181106122ba576122b9613df4565b5b602002602001018181525050600560108c836040516020016122dd929190614db5565b6040516020818303038152906040528051906020012060001c6123009190613f58565b61230a9190613b1f565b85828151811061231d5761231c613df4565b5b6020026020010181815250506001600a8c83604051602001612340929190614e38565b6040516020818303038152906040528051906020012060001c6123639190613f58565b61236d9190613b1f565b8482815181106123805761237f613df4565b5b602002602001018181525050601460288c836040516020016123a3929190614ebb565b6040516020818303038152906040528051906020012060001c6123c69190613f58565b6123d09190613b1f565b8382815181106123e3576123e2613df4565b5b602002602001018181525050602860f08c83604051602001612406929190614f3e565b6040516020818303038152906040528051906020012060001c6124299190613f58565b6124339190613b1f565b82828151811061244657612445613df4565b5b602002602001018181525050808061245d90613be5565b9150506121f8565b506040518060e001604052808981526020018781526020018681526020018581526020018481526020018381526020018281525098505050505050505050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612506577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124fc576124fb613e23565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612543576d04ee2d6d415b85acef8100000000838161253957612538613e23565b5b0492506020810190505b662386f26fc10000831061257257662386f26fc10000838161256857612567613e23565b5b0492506010810190505b6305f5e100831061259b576305f5e100838161259157612590613e23565b5b0492506008810190505b61271083106125c05761271083816125b6576125b5613e23565b5b0492506004810190505b606483106125e357606483816125d9576125d8613e23565b5b0492506002810190505b600a83106125f2576001810190505b80915050919050565b50505050565b50505050565b61261183836127e9565b61261e6000848484612662565b61265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614bd1565b60405180910390fd5b505050565b60006126838473ffffffffffffffffffffffffffffffffffffffff16612a06565b156127dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126ac610df1565b8786866040518563ffffffff1660e01b81526004016126ce9493929190614fca565b6020604051808303816000875af192505050801561270a57506040513d601f19601f82011682018060405250810190612707919061502b565b60015b61278c573d806000811461273a576040519150601f19603f3d011682016040523d82523d6000602084013e61273f565b606091505b506000815103612784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277b90614bd1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127e1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f906150a4565b60405180910390fd5b61286181611482565b156128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289890615110565b60405180910390fd5b6128af6000838360016125fb565b6128b881611482565b156128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90615110565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a02600083836001612601565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060e00160405280600081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612aaf81612a7a565b8114612aba57600080fd5b50565b600081359050612acc81612aa6565b92915050565b600060208284031215612ae857612ae7612a70565b5b6000612af684828501612abd565b91505092915050565b60008115159050919050565b612b1481612aff565b82525050565b6000602082019050612b2f6000830184612b0b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b6f578082015181840152602081019050612b54565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b9782612b35565b612ba18185612b40565b9350612bb1818560208601612b51565b612bba81612b7b565b840191505092915050565b60006020820190508181036000830152612bdf8184612b8c565b905092915050565b6000819050919050565b612bfa81612be7565b8114612c0557600080fd5b50565b600081359050612c1781612bf1565b92915050565b600060208284031215612c3357612c32612a70565b5b6000612c4184828501612c08565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7582612c4a565b9050919050565b612c8581612c6a565b82525050565b6000602082019050612ca06000830184612c7c565b92915050565b612caf81612c6a565b8114612cba57600080fd5b50565b600081359050612ccc81612ca6565b92915050565b60008060408385031215612ce957612ce8612a70565b5b6000612cf785828601612cbd565b9250506020612d0885828601612c08565b9150509250929050565b612d1b81612be7565b82525050565b6000602082019050612d366000830184612d12565b92915050565b600080600060608486031215612d5557612d54612a70565b5b6000612d6386828701612cbd565b9350506020612d7486828701612cbd565b9250506040612d8586828701612c08565b9150509250925092565b6000819050919050565b6000612db4612daf612daa84612c4a565b612d8f565b612c4a565b9050919050565b6000612dc682612d99565b9050919050565b6000612dd882612dbb565b9050919050565b612de881612dcd565b82525050565b6000602082019050612e036000830184612ddf565b92915050565b600060208284031215612e1f57612e1e612a70565b5b6000612e2d84828501612cbd565b91505092915050565b612e3f81612aff565b8114612e4a57600080fd5b50565b600081359050612e5c81612e36565b92915050565b60008060408385031215612e7957612e78612a70565b5b6000612e8785828601612cbd565b9250506020612e9885828601612e4d565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ee482612b7b565b810181811067ffffffffffffffff82111715612f0357612f02612eac565b5b80604052505050565b6000612f16612a66565b9050612f228282612edb565b919050565b600067ffffffffffffffff821115612f4257612f41612eac565b5b612f4b82612b7b565b9050602081019050919050565b82818337600083830152505050565b6000612f7a612f7584612f27565b612f0c565b905082815260208101848484011115612f9657612f95612ea7565b5b612fa1848285612f58565b509392505050565b600082601f830112612fbe57612fbd612ea2565b5b8135612fce848260208601612f67565b91505092915050565b60008060008060808587031215612ff157612ff0612a70565b5b6000612fff87828801612cbd565b945050602061301087828801612cbd565b935050604061302187828801612c08565b925050606085013567ffffffffffffffff81111561304257613041612a75565b5b61304e87828801612fa9565b91505092959194509250565b6000806040838503121561307157613070612a70565b5b600061307f85828601612cbd565b925050602061309085828601612cbd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130e157607f821691505b6020821081036130f4576130f361309a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613156602183612b40565b9150613161826130fa565b604082019050919050565b6000602082019050818103600083015261318581613149565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006131e8603d83612b40565b91506131f38261318c565b604082019050919050565b60006020820190508181036000830152613217816131db565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613254601883612b40565b915061325f8261321e565b602082019050919050565b6000602082019050818103600083015261328381613247565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006132e6602983612b40565b91506132f18261328a565b604082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613352601483612b40565b915061335d8261331c565b602082019050919050565b6000602082019050818103600083015261338181613345565b9050919050565b600081905092915050565b7f5468696e6b20436972636c652023000000000000000000000000000000000000600082015250565b60006133c9600e83613388565b91506133d482613393565b600e82019050919050565b60006133ea82612b35565b6133f48185613388565b9350613404818560208601612b51565b80840191505092915050565b600061341b826133bc565b915061342782846133df565b915081905092915050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b6000613468601a83613388565b915061347382613432565b601a82019050919050565b60006134898261345b565b915061349582846133df565b915081905092915050565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b60006134d6600183613388565b91506134e1826134a0565b600182019050919050565b7f226e616d65223a20220000000000000000000000000000000000000000000000600082015250565b6000613522600983613388565b915061352d826134ec565b600982019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b600061356e600283613388565b915061357982613538565b600282019050919050565b7f226465736372697074696f6e223a202200000000000000000000000000000000600082015250565b60006135ba601083613388565b91506135c582613584565b601082019050919050565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b6000613606600a83613388565b9150613611826135d0565b600a82019050919050565b7f226261636b67726f756e645f636f6c6f72223a20220000000000000000000000600082015250565b6000613652601583613388565b915061365d8261361c565b601582019050919050565b7f2261747472696275746573223a205b0000000000000000000000000000000000600082015250565b600061369e600f83613388565b91506136a982613668565b600f82019050919050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006136ea600183613388565b91506136f5826136b4565b600182019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613736600183613388565b915061374182613700565b600182019050919050565b6000613757826134c9565b915061376282613515565b915061376e82886133df565b915061377982613561565b9150613784826135ad565b915061379082876133df565b915061379b82613561565b91506137a6826135f9565b91506137b282866133df565b91506137bd82613561565b91506137c882613645565b91506137d482856133df565b91506137df82613561565b91506137ea82613691565b91506137f682846133df565b9150613801826136dd565b915061380c82613729565b91508190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000613851601d83613388565b915061385c8261381b565b601d82019050919050565b600061387282613844565b915061387e82846133df565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e5602683612b40565b91506138f082613889565b604082019050919050565b60006020820190508181036000830152613914816138d8565b9050919050565b60006040820190506139306000830185612c7c565b61393d6020830184612c7c565b9392505050565b60008151905061395381612e36565b92915050565b60006020828403121561396f5761396e612a70565b5b600061397d84828501613944565b91505092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006139e2602d83612b40565b91506139ed82613986565b604082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a4e602083612b40565b9150613a5982613a18565b602082019050919050565b60006020820190508181036000830152613a7d81613a41565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000613aba601b83612b40565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b2a82612be7565b9150613b3583612be7565b9250828201905080821115613b4d57613b4c613af0565b5b92915050565b7f43616e6e6f74206d696e74206d6f726520746f6b656e73207468616e20616c6c60008201527f6f776564207065722077616c6c65740000000000000000000000000000000000602082015250565b6000613baf602f83612b40565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b6000613bf082612be7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c2257613c21613af0565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613c63601983612b40565b9150613c6e82613c2d565b602082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222076696577426f783d223020302033323020333230223e0000602082015250565b6000613cf5603e83613388565b9150613d0082613c99565b603e82019050919050565b7f3c726563742077696474683d2233323022206865696768743d2233323022206660008201527f696c6c3d2223303030222f3e0000000000000000000000000000000000000000602082015250565b6000613d67602c83613388565b9150613d7282613d0b565b602c82019050919050565b7f3c67207472616e73666f726d3d227472616e736c61746528302c3029223e0000600082015250565b6000613db3601e83613388565b9150613dbe82613d7d565b601e82019050919050565b6000613dd482613ce8565b9150613ddf82613d5a565b9150613dea82613da6565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e5d82612be7565b9150613e6883612be7565b925082613e7857613e77613e23565b5b828204905092915050565b6000613e8e82612be7565b9150613e9983612be7565b9250828202613ea781612be7565b91508282048414831517613ebe57613ebd613af0565b5b5092915050565b6000819050919050565b613ee0613edb82612be7565b613ec5565b82525050565b7f6875650000000000000000000000000000000000000000000000000000000000600082015250565b6000613f1c600383613388565b9150613f2782613ee6565b600382019050919050565b6000613f3e8284613ecf565b602082019150613f4d82613f0f565b915081905092915050565b6000613f6382612be7565b9150613f6e83612be7565b925082613f7e57613f7d613e23565b5b828206905092915050565b7f7361740000000000000000000000000000000000000000000000000000000000600082015250565b6000613fbf600383613388565b9150613fca82613f89565b600382019050919050565b6000613fe18284613ecf565b602082019150613ff082613fb2565b915081905092915050565b7f68736c2800000000000000000000000000000000000000000000000000000000600082015250565b6000614031600483613388565b915061403c82613ffb565b600482019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b600061407d600183613388565b915061408882614047565b600182019050919050565b7f252c353425290000000000000000000000000000000000000000000000000000600082015250565b60006140c9600683613388565b91506140d482614093565b600682019050919050565b60006140ea82614024565b91506140f682856133df565b915061410182614070565b915061410d82846133df565b9150614118826140bc565b91508190509392505050565b600061412f82612be7565b915061413a83612be7565b925082820390508181111561415257614151613af0565b5b92915050565b7f3c636972636c652063783d220000000000000000000000000000000000000000600082015250565b600061418e600c83613388565b915061419982614158565b600c82019050919050565b7f222063793d220000000000000000000000000000000000000000000000000000600082015250565b60006141da600683613388565b91506141e5826141a4565b600682019050919050565b7f2220723d22000000000000000000000000000000000000000000000000000000600082015250565b6000614226600583613388565b9150614231826141f0565b600582019050919050565b7f222066696c6c3d22000000000000000000000000000000000000000000000000600082015250565b6000614272600883613388565b915061427d8261423c565b600882019050919050565b7f22207374726f6b653d2200000000000000000000000000000000000000000000600082015250565b60006142be600a83613388565b91506142c982614288565b600a82019050919050565b7f22207374726f6b652d77696474683d2200000000000000000000000000000000600082015250565b600061430a601083613388565b9150614315826142d4565b601082019050919050565b7f223e000000000000000000000000000000000000000000000000000000000000600082015250565b6000614356600283613388565b915061436182614320565b600282019050919050565b7f3c616e696d617465206174747269627574654e616d653d226379222076616c7560008201527f65733d2200000000000000000000000000000000000000000000000000000000602082015250565b60006143c8602483613388565b91506143d38261436c565b602482019050919050565b7f3b00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614414600183613388565b915061441f826143de565b600182019050919050565b7f3b22206475723d22000000000000000000000000000000000000000000000000600082015250565b6000614460600883613388565b915061446b8261442a565b600882019050919050565b7f732220726570656174436f756e743d22696e646566696e697465222f3e000000600082015250565b60006144ac601d83613388565b91506144b782614476565b601d82019050919050565b7f3c2f636972636c653e0000000000000000000000000000000000000000000000600082015250565b60006144f8600983613388565b9150614503826144c2565b600982019050919050565b600061451982614181565b9150614525828d6133df565b9150614530826141cd565b915061453c828c6133df565b915061454782614219565b9150614553828b6133df565b915061455e82614265565b915061456a828a6133df565b9150614575826142b1565b915061458182896133df565b915061458c826142fd565b915061459882886133df565b91506145a382614349565b91506145ae826143bb565b91506145ba82876133df565b91506145c582614407565b91506145d182866133df565b91506145dc82614407565b91506145e882856133df565b91506145f382614453565b91506145ff82846133df565b915061460a8261449f565b9150614615826144eb565b91508190509b9a5050505050505050505050565b600061463582856133df565b915061464182846133df565b91508190509392505050565b7f3c2f673e00000000000000000000000000000000000000000000000000000000600082015250565b6000614683600483613388565b915061468e8261464d565b600482019050919050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b60006146cf600683613388565b91506146da82614699565b600682019050919050565b60006146f182846133df565b91506146fc82614676565b9150614707826146c2565b915081905092915050565b7f7b2274726169745f74797065223a2022436972636c6520436f756e74222c202260008201527f76616c7565223a20000000000000000000000000000000000000000000000000602082015250565b600061476e602883613388565b915061477982614712565b602882019050919050565b7f7d2c000000000000000000000000000000000000000000000000000000000000600082015250565b60006147ba600283613388565b91506147c582614784565b600282019050919050565b7f7b2274726169745f74797065223a2022626f756e63655f686569676874222c2060008201527f2276616c7565223a202200000000000000000000000000000000000000000000602082015250565b600061482c602a83613388565b9150614837826147d0565b602a82019050919050565b7f202d200000000000000000000000000000000000000000000000000000000000600082015250565b6000614878600383613388565b915061488382614842565b600382019050919050565b7f20706978656c73227d2c00000000000000000000000000000000000000000000600082015250565b60006148c4600a83613388565b91506148cf8261488e565b600a82019050919050565b7f7b2274726169745f74797065223a20227370656564222c202276616c7565223a60008201527f2022000000000000000000000000000000000000000000000000000000000000602082015250565b6000614936602283613388565b9150614941826148da565b602282019050919050565b7f207365636f6e6473227d00000000000000000000000000000000000000000000600082015250565b6000614982600a83613388565b915061498d8261494c565b600a82019050919050565b60006149a382614761565b91506149af82886133df565b91506149ba826147ad565b91506149c58261481f565b91506149d182876133df565b91506149dc8261486b565b91506149e882866133df565b91506149f3826148b7565b91506149fe82614929565b9150614a0a82856133df565b9150614a158261486b565b9150614a2182846133df565b9150614a2c82614975565b91508190509695505050505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614a97602583612b40565b9150614aa282614a3b565b604082019050919050565b60006020820190508181036000830152614ac681614a8a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b29602483612b40565b9150614b3482614acd565b604082019050919050565b60006020820190508181036000830152614b5881614b1c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614bbb603283612b40565b9150614bc682614b5f565b604082019050919050565b60006020820190508181036000830152614bea81614bae565b9050919050565b7f6e756d436972636c657300000000000000000000000000000000000000000000600082015250565b6000614c27600a83613388565b9150614c3282614bf1565b600a82019050919050565b6000614c498284613ecf565b602082019150614c5882614c1a565b915081905092915050565b7f7261646975730000000000000000000000000000000000000000000000000000600082015250565b6000614c99600683613388565b9150614ca482614c63565b600682019050919050565b6000614cbb8285613ecf565b602082019150614cca82614c8c565b9150614cd68284613ecf565b6020820191508190509392505050565b7f64697374616e6365000000000000000000000000000000000000000000000000600082015250565b6000614d1c600883613388565b9150614d2782614ce6565b600882019050919050565b6000614d3e8285613ecf565b602082019150614d4d82614d0f565b9150614d598284613ecf565b6020820191508190509392505050565b7f7374726f6b655769647468000000000000000000000000000000000000000000600082015250565b6000614d9f600b83613388565b9150614daa82614d69565b600b82019050919050565b6000614dc18285613ecf565b602082019150614dd082614d92565b9150614ddc8284613ecf565b6020820191508190509392505050565b7f7370656564000000000000000000000000000000000000000000000000000000600082015250565b6000614e22600583613388565b9150614e2d82614dec565b600582019050919050565b6000614e448285613ecf565b602082019150614e5382614e15565b9150614e5f8284613ecf565b6020820191508190509392505050565b7f626f756e63654865696768740000000000000000000000000000000000000000600082015250565b6000614ea5600c83613388565b9150614eb082614e6f565b600c82019050919050565b6000614ec78285613ecf565b602082019150614ed682614e98565b9150614ee28284613ecf565b6020820191508190509392505050565b7f7374617274580000000000000000000000000000000000000000000000000000600082015250565b6000614f28600683613388565b9150614f3382614ef2565b600682019050919050565b6000614f4a8285613ecf565b602082019150614f5982614f1b565b9150614f658284613ecf565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614f9c82614f75565b614fa68185614f80565b9350614fb6818560208601612b51565b614fbf81612b7b565b840191505092915050565b6000608082019050614fdf6000830187612c7c565b614fec6020830186612c7c565b614ff96040830185612d12565b818103606083015261500b8184614f91565b905095945050505050565b60008151905061502581612aa6565b92915050565b60006020828403121561504157615040612a70565b5b600061504f84828501615016565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061508e602083612b40565b915061509982615058565b602082019050919050565b600060208201905081810360008301526150bd81615081565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006150fa601c83612b40565b9150615105826150c4565b602082019050919050565b60006020820190508181036000830152615129816150ed565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212208f09bb56adef813914ce478332f6cbab5cea97f367fd3f489fb9f7dd1a50d2bf64736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c5468696e6b20436972636c65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052054484e4b000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Think Circle
Arg [1] : symbol (string): THNK

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 5468696e6b20436972636c650000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 2054484e4b000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

71054:8342:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54780:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55708:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57220:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56738:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78612:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78813:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78500:104;;;:::i;:::-;;7768:143;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78984:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55418:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55149:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34211:103;;;:::i;:::-;;33563:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55877:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71649:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57463:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79163:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77012:1480;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71220:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57689:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34469:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71172:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54780:305;54882:4;54934:25;54919:40;;;:11;:40;;;;:105;;;;54991:33;54976:48;;;:11;:48;;;;54919:105;:158;;;;55041:36;55065:11;55041:23;:36::i;:::-;54919:158;54899:178;;54780:305;;;:::o;55708:100::-;55762:13;55795:5;55788:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55708:100;:::o;57220:171::-;57296:7;57316:23;57331:7;57316:14;:23::i;:::-;57359:15;:24;57375:7;57359:24;;;;;;;;;;;;;;;;;;;;;57352:31;;57220:171;;;:::o;56738:416::-;56819:13;56835:23;56850:7;56835:14;:23::i;:::-;56819:39;;56883:5;56877:11;;:2;:11;;;56869:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;56977:5;56961:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;56986:37;57003:5;57010:12;:10;:12::i;:::-;56986:16;:37::i;:::-;56961:62;56939:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;57125:21;57134:2;57138:7;57125:8;:21::i;:::-;56808:346;56738:416;;:::o;78612:107::-;78656:7;78683:28;:18;:26;:28::i;:::-;78676:35;;78612:107;:::o;78813:163::-;78914:4;9284:10;9276:18;;:4;:18;;;9272:83;;9311:32;9332:10;9311:20;:32::i;:::-;9272:83;78931:37:::1;78950:4;78956:2;78960:7;78931:18;:37::i;:::-;78813:163:::0;;;;:::o;78500:104::-;33449:13;:11;:13::i;:::-;78556:7:::1;:5;:7::i;:::-;78548:25;;:48;78574:21;78548:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;78500:104::o:0;7768:143::-;184:42;7768:143;:::o;78984:171::-;79089:4;9284:10;9276:18;;:4;:18;;;9272:83;;9311:32;9332:10;9311:20;:32::i;:::-;9272:83;79106:41:::1;79129:4;79135:2;79139:7;79106:22;:41::i;:::-;78984:171:::0;;;;:::o;55418:223::-;55490:7;55510:13;55526:17;55535:7;55526:8;:17::i;:::-;55510:33;;55579:1;55562:19;;:5;:19;;;55554:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;55628:5;55621:12;;;55418:223;;;:::o;55149:207::-;55221:7;55266:1;55249:19;;:5;:19;;;55241:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55332:9;:16;55342:5;55332:16;;;;;;;;;;;;;;;;55325:23;;55149:207;;;:::o;34211:103::-;33449:13;:11;:13::i;:::-;34276:30:::1;34303:1;34276:18;:30::i;:::-;34211:103::o:0;33563:87::-;33609:7;33636:6;;;;;;;;;;;33629:13;;33563:87;:::o;55877:104::-;55933:13;55966:7;55959:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55877:104;:::o;71649:89::-;71701:29;71707:10;71719;71701:5;:29::i;:::-;71649:89;:::o;57463:155::-;57558:52;57577:12;:10;:12::i;:::-;57591:8;57601;57558:18;:52::i;:::-;57463:155;;:::o;79163:228::-;79314:4;9284:10;9276:18;;:4;:18;;;9272:83;;9311:32;9332:10;9311:20;:32::i;:::-;9272:83;79336:47:::1;79359:4;79365:2;79369:7;79378:4;79336:22;:47::i;:::-;79163:228:::0;;;;;:::o;77012:1480::-;77078:13;77112:17;77120:8;77112:7;:17::i;:::-;77104:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;77203:17;77223:21;77235:8;77223:11;:21::i;:::-;77203:41;;77294:24;77321:28;77340:8;77321:18;:28::i;:::-;77294:55;;77399:23;77425:25;77445:3;77425:13;:25::i;:::-;77399:51;;77502:18;77565:26;77582:8;77565:16;:26::i;:::-;77530:62;;;;;;;;:::i;:::-;;;;;;;;;;;;;77502:91;;77604:25;:41;;;;;;;;;;;;;;;;;;;77656:22;77735:9;77688:57;;;;;;;;:::i;:::-;;;;;;;;;;;;;77656:90;;77757:29;:41;;;;;;;;;;;;;;;;;;;77811:18;77923:4;77972:11;78022:8;78080:15;78139:10;77853:338;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77811:391;;78262:24;78289:26;78309:4;78289:13;:26::i;:::-;78262:53;;78472:10;78422:61;;;;;;;;:::i;:::-;;;;;;;;;;;;;78408:76;;;;;;;;;;;77012:1480;;;:::o;71220:49::-;71268:1;71220:49;:::o;57689:164::-;57786:4;57810:18;:25;57829:5;57810:25;;;;;;;;;;;;;;;:35;57836:8;57810:35;;;;;;;;;;;;;;;;;;;;;;;;;57803:42;;57689:164;;;;:::o;34469:201::-;33449:13;:11;:13::i;:::-;34578:1:::1;34558:22;;:8;:22;;::::0;34550:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;34634:28;34653:8;34634:18;:28::i;:::-;34469:201:::0;:::o;71172:41::-;71209:4;71172:41;:::o;47292:157::-;47377:4;47416:25;47401:40;;;:11;:40;;;;47394:47;;47292:157;;;:::o;67039:135::-;67121:16;67129:7;67121;:16::i;:::-;67113:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;67039:135;:::o;32114:98::-;32167:7;32194:10;32187:17;;32114:98;:::o;66318:174::-;66420:2;66393:15;:24;66409:7;66393:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;66476:7;66472:2;66438:46;;66447:23;66462:7;66447:14;:23::i;:::-;66438:46;;;;;;;;;;;;66318:174;;:::o;15643:114::-;15708:7;15735;:14;;;15728:21;;15643:114;;;:::o;9693:647::-;9932:1;184:42;9884:45;;;:49;9880:453;;;184:42;10183;;;10234:4;10241:8;10183:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10178:144;;10297:8;10278:28;;;;;;;;;;;:::i;:::-;;;;;;;;10178:144;9880:453;9693:647;:::o;57920:335::-;58115:41;58134:12;:10;:12::i;:::-;58148:7;58115:18;:41::i;:::-;58107:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;58219:28;58229:4;58235:2;58239:7;58219:9;:28::i;:::-;57920:335;;;:::o;33728:132::-;33803:12;:10;:12::i;:::-;33792:23;;:7;:5;:7::i;:::-;:23;;;33784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33728:132::o;58326:185::-;58464:39;58481:4;58487:2;58491:7;58464:39;;;;;;;;;;;;:16;:39::i;:::-;58326:185;;;:::o;60212:117::-;60278:7;60305;:16;60313:7;60305:16;;;;;;;;;;;;;;;;;;;;;60298:23;;60212:117;;;:::o;34830:191::-;34904:16;34923:6;;;;;;;;;;;34904:25;;34949:8;34940:6;;:17;;;;;;;;;;;;;;;;;;35004:8;34973:40;;34994:8;34973:40;;;;;;;;;;;;34893:128;34830:191;:::o;71746:493::-;71209:4;71822:28;:18;:26;:28::i;:::-;:41;71814:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;71268:1;71931:10;71914:14;71924:3;71914:9;:14::i;:::-;:27;;;;:::i;:::-;:52;;71906:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;72036:9;72031:201;72055:10;72051:1;:14;72031:201;;;72087:15;72136:1;72105:28;:18;:26;:28::i;:::-;:32;;;;:::i;:::-;72087:50;;72152:23;72162:3;72167:7;72152:9;:23::i;:::-;72190:30;:18;:28;:30::i;:::-;72072:160;72067:3;;;;;:::i;:::-;;;;72031:201;;;;71746:493;;:::o;66635:315::-;66790:8;66781:17;;:5;:17;;;66773:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;66877:8;66839:18;:25;66858:5;66839:25;;;;;;;;;;;;;;;:35;66865:8;66839:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;66923:8;66901:41;;66916:5;66901:41;;;66933:8;66901:41;;;;;;:::i;:::-;;;;;;;;66635:315;;;:::o;58582:322::-;58756:41;58775:12;:10;:12::i;:::-;58789:7;58756:18;:41::i;:::-;58748:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;58858:38;58872:4;58878:2;58882:7;58891:4;58858:13;:38::i;:::-;58582:322;;;;:::o;60642:128::-;60707:4;60760:1;60731:31;;:17;60740:7;60731:8;:17::i;:::-;:31;;;;60724:38;;60642:128;;;:::o;73741:2376::-;73803:13;73829:32;73864:30;73885:8;73864:20;:30::i;:::-;73829:65;;73907:17;73948:230;;;;;;;:::i;:::-;;;;;;;;;;;;;73907:282;;74207:9;74202:1819;74226:12;:19;;;:26;74222:1;:30;74202:1819;;;74274:16;74293:12;:18;;;74312:1;74293:21;;;;;;;;:::i;:::-;;;;;;;;74274:40;;74331:15;74355:12;:19;;;:26;74349:3;:32;;;;:::i;:::-;74331:50;;74396:11;74484:3;74472:7;74468:1;:11;;;;:::i;:::-;74446:8;74429:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;74419:44;;;;;;74411:53;;:69;;;;:::i;:::-;74410:77;;;;:::i;:::-;74396:91;;74502:11;74577:2;74572;74551:8;74534:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;74524:44;;;;;;74516:53;;:58;;;;:::i;:::-;:63;;;;:::i;:::-;74502:77;;74596:23;74654:21;74671:3;74654:16;:21::i;:::-;74682;74699:3;74682:16;:21::i;:::-;74629:85;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74596:119;;74730:25;74790:21;74807:3;74790:16;:21::i;:::-;74818;74835:3;74818:16;:21::i;:::-;74765:85;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74730:121;;74868:15;74936:12;:24;;;74961:1;74936:27;;;;;;;;:::i;:::-;;;;;;;;74911:12;:19;;;74931:1;74911:22;;;;;;;;:::i;:::-;;;;;;;;74886:12;:19;;;74906:1;74886:22;;;;;;;;:::i;:::-;;;;;;;;:47;;;;:::i;:::-;:77;;;;:::i;:::-;74868:95;;74978:15;75027:12;:24;;;75052:1;75027:27;;;;;;;;:::i;:::-;;;;;;;;74996:12;:25;;;75022:1;74996:28;;;;;;;;:::i;:::-;;;;;;;;:58;;;;:::i;:::-;74978:76;;75071:24;75098:25;75115:7;75098:16;:25::i;:::-;75071:52;;75138:24;75165:25;75182:7;75165:16;:25::i;:::-;75138:52;;75205:23;75231:40;75248:12;:19;;;75268:1;75248:22;;;;;;;;:::i;:::-;;;;;;;;75231:16;:40::i;:::-;75205:66;;75286:28;75317:45;75334:12;:24;;;75359:1;75334:27;;;;;;;;:::i;:::-;;;;;;;;75317:16;:45::i;:::-;75286:76;;75377:25;75405:26;75422:8;75405:16;:26::i;:::-;75377:54;;75448:20;75551:10;75573;75594:9;75617;75642:11;75675:14;75758:10;75775:31;75798:7;75792:3;:13;;;;:::i;:::-;75775:16;:31::i;:::-;75813:10;75837:11;75496:438;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75448:501;;75996:3;76001:6;75979:29;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75966:43;;74259:1762;;;;;;;;;;;;;;74254:3;;;;;:::i;:::-;;;;74202:1819;;;;76063:3;76046:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;76033:53;;76106:3;76099:10;;;;73741:2376;;;:::o;76129:873::-;76198:13;76224:32;76259:30;76280:8;76259:20;:30::i;:::-;76224:65;;76300:18;76321:12;:19;;;:26;76300:47;;76368:24;76495:28;76512:10;76495:16;:28::i;:::-;76594:46;76611:12;:25;;;76637:1;76611:28;;;;;;;;:::i;:::-;;;;;;;;76594:16;:46::i;:::-;76649:81;76666:12;:25;;;76727:1;76692:12;:25;;;:32;:36;;;;:::i;:::-;76666:63;;;;;;;;:::i;:::-;;;;;;;;76649:16;:81::i;:::-;76801:39;76818:12;:18;;;76837:1;76818:21;;;;;;;;:::i;:::-;;;;;;;;76801:16;:39::i;:::-;76849:67;76866:12;:18;;;76913:1;76885:12;:18;;;:25;:29;;;;:::i;:::-;76866:49;;;;;;;;:::i;:::-;;;;;;;;76849:16;:67::i;:::-;76416:529;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76368:588;;76984:10;76977:17;;;;;76129:873;;;:::o;11667:3097::-;11725:13;11977:1;11962:4;:11;:16;11958:31;;11980:9;;;;;;;;;;;;;;;;11958:31;12042:19;12064:6;;;;;;;;;;;;;;;;;12042:28;;12481:20;12540:1;12535;12521:4;:11;:15;;;;:::i;:::-;12520:21;;;;:::i;:::-;12515:1;:27;;;;:::i;:::-;12504:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12481:62;;12723:1;12716:5;12712:13;12827:2;12819:6;12815:15;12938:4;12990;12984:11;12978:4;12974:22;12900:1432;13024:6;13015:7;13012:19;12900:1432;;;13130:1;13121:7;13117:15;13106:26;;13169:7;13163:14;13822:4;13814:5;13810:2;13806:14;13802:25;13792:8;13788:40;13782:47;13771:9;13763:67;13876:1;13865:9;13861:17;13848:30;;13968:4;13960:5;13956:2;13952:14;13948:25;13938:8;13934:40;13928:47;13917:9;13909:67;14022:1;14011:9;14007:17;13994:30;;14113:4;14105:5;14102:1;14098:13;14094:24;14084:8;14080:39;14074:46;14063:9;14055:66;14167:1;14156:9;14152:17;14139:30;;14250:4;14243:5;14239:16;14229:8;14225:31;14219:38;14208:9;14200:58;14304:1;14293:9;14289:17;14276:30;;13051:1281;12900:1432;;;12904:107;;14494:1;14487:4;14481:11;14477:19;14515:1;14510:123;;;;14652:1;14647:73;;;;14470:250;;14510:123;14563:4;14559:1;14548:9;14544:17;14536:32;14613:4;14609:1;14598:9;14594:17;14586:32;14510:123;;14647:73;14700:4;14696:1;14685:9;14681:17;14673:32;14470:250;;12609:2122;;14750:6;14743:13;;;;11667:3097;;;;:::o;29541:716::-;29597:13;29648:14;29685:1;29665:17;29676:5;29665:10;:17::i;:::-;:21;29648:38;;29701:20;29735:6;29724:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29701:41;;29757:11;29886:6;29882:2;29878:15;29870:6;29866:28;29859:35;;29923:288;29930:4;29923:288;;;29955:5;;;;;;;;30097:8;30092:2;30085:5;30081:14;30076:30;30071:3;30063:44;30153:2;30144:11;;;;;;:::i;:::-;;;;;30187:1;30178:5;:10;29923:288;30174:21;29923:288;30232:6;30225:13;;;;;29541:716;;;:::o;60937:264::-;61030:4;61047:13;61063:23;61078:7;61063:14;:23::i;:::-;61047:39;;61116:5;61105:16;;:7;:16;;;:52;;;;61125:32;61142:5;61149:7;61125:16;:32::i;:::-;61105:52;:87;;;;61185:7;61161:31;;:20;61173:7;61161:11;:20::i;:::-;:31;;;61105:87;61097:96;;;60937:264;;;;:::o;64936:1263::-;65095:4;65068:31;;:23;65083:7;65068:14;:23::i;:::-;:31;;;65060:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;65174:1;65160:16;;:2;:16;;;65152:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;65230:42;65251:4;65257:2;65261:7;65270:1;65230:20;:42::i;:::-;65402:4;65375:31;;:23;65390:7;65375:14;:23::i;:::-;:31;;;65367:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;65520:15;:24;65536:7;65520:24;;;;;;;;;;;;65513:31;;;;;;;;;;;66015:1;65996:9;:15;66006:4;65996:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;66048:1;66031:9;:13;66041:2;66031:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;66090:2;66071:7;:16;66079:7;66071:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;66129:7;66125:2;66110:27;;66119:4;66110:27;;;;;;;;;;;;66150:41;66170:4;66176:2;66180:7;66189:1;66150:19;:41::i;:::-;64936:1263;;;:::o;61543:110::-;61619:26;61629:2;61633:7;61619:26;;;;;;;;;;;;:9;:26::i;:::-;61543:110;;:::o;15765:127::-;15872:1;15854:7;:14;;;:19;;;;;;;;;;;15765:127;:::o;59785:313::-;59941:28;59951:4;59957:2;59961:7;59941:9;:28::i;:::-;59988:47;60011:4;60017:2;60021:7;60030:4;59988:22;:47::i;:::-;59980:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;59785:313;;;;:::o;72249:1484::-;72320:19;;:::i;:::-;72352:11;72422:3;72401:8;72384:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;72374:44;;;;;;72366:53;;:59;;;;:::i;:::-;72352:73;;72438:18;72526:1;72522;72494:8;72477:40;;;;;;;;:::i;:::-;;;;;;;;;;;;;72467:51;;;;;;72459:60;;:64;;;;:::i;:::-;:68;;;;:::i;:::-;72438:89;;72538:23;72578:10;72564:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72538:51;;72600:25;72642:10;72628:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72600:53;;72664:28;72709:10;72695:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72664:56;;72731:22;72770:10;72756:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72731:50;;72792:29;72838:10;72824:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72792:57;;72860:23;72900:10;72886:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72860:51;;72929:9;72924:705;72948:10;72944:1;:14;72924:705;;;73059:2;73054;73027:8;73047:1;73010:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73000:50;;;;;;72992:59;;:64;;;;:::i;:::-;:69;;;;:::i;:::-;72980:6;72987:1;72980:9;;;;;;;;:::i;:::-;;;;;;;:81;;;;;73159:2;73154;73125:8;73147:1;73108:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73098:52;;;;;;73090:61;;:66;;;;:::i;:::-;:71;;;;:::i;:::-;73076:8;73085:1;73076:11;;;;;;;;:::i;:::-;;;;;;;:85;;;;;73265:1;73260:2;73228:8;73253:1;73211:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73201:55;;;;;;73193:64;;:69;;;;:::i;:::-;:73;;;;:::i;:::-;73176:11;73188:1;73176:14;;;;;;;;:::i;:::-;;;;;;;:90;;;;;73358:1;73353:2;73327:8;73346:1;73310:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73300:49;;;;;;73292:58;;:63;;;;:::i;:::-;:67;;;;:::i;:::-;73281:5;73287:1;73281:8;;;;;;;;:::i;:::-;;;;;;;:78;;;;;73465:2;73460;73427:8;73453:1;73410:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73400:56;;;;;;73392:65;;:70;;;;:::i;:::-;:75;;;;:::i;:::-;73374:12;73387:1;73374:15;;;;;;;;:::i;:::-;;;;;;;:93;;;;;73562:2;73556:3;73529:8;73549:1;73512:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73502:50;;;;;;73494:59;;:65;;;;:::i;:::-;:70;;;;:::i;:::-;73482:6;73489:1;73482:9;;;;;;;;:::i;:::-;;;;;;;:82;;;;;72960:3;;;;;:::i;:::-;;;;72924:705;;;;73648:77;;;;;;;;73661:3;73648:77;;;;73666:6;73648:77;;;;73674:8;73648:77;;;;73684:11;73648:77;;;;73697:5;73648:77;;;;73704:12;73648:77;;;;73718:6;73648:77;;;73641:84;;;;;;;;;;72249:1484;;;:::o;26407:922::-;26460:7;26480:14;26497:1;26480:18;;26547:6;26538:5;:15;26534:102;;26583:6;26574:15;;;;;;:::i;:::-;;;;;26618:2;26608:12;;;;26534:102;26663:6;26654:5;:15;26650:102;;26699:6;26690:15;;;;;;:::i;:::-;;;;;26734:2;26724:12;;;;26650:102;26779:6;26770:5;:15;26766:102;;26815:6;26806:15;;;;;;:::i;:::-;;;;;26850:2;26840:12;;;;26766:102;26895:5;26886;:14;26882:99;;26930:5;26921:14;;;;;;:::i;:::-;;;;;26964:1;26954:11;;;;26882:99;27008:5;26999;:14;26995:99;;27043:5;27034:14;;;;;;:::i;:::-;;;;;27077:1;27067:11;;;;26995:99;27121:5;27112;:14;27108:99;;27156:5;27147:14;;;;;;:::i;:::-;;;;;27190:1;27180:11;;;;27108:99;27234:5;27225;:14;27221:66;;27270:1;27260:11;;;;27221:66;27315:6;27308:13;;;26407:922;;;:::o;69323:159::-;;;;;:::o;70204:158::-;;;;;:::o;61880:319::-;62009:18;62015:2;62019:7;62009:5;:18::i;:::-;62060:53;62091:1;62095:2;62099:7;62108:4;62060:22;:53::i;:::-;62038:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;61880:319;;;:::o;67738:853::-;67892:4;67913:15;:2;:13;;;:15::i;:::-;67909:675;;;67965:2;67949:36;;;67986:12;:10;:12::i;:::-;68000:4;68006:7;68015:4;67949:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67945:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68207:1;68190:6;:13;:18;68186:328;;68233:60;;;;;;;;;;:::i;:::-;;;;;;;;68186:328;68464:6;68458:13;68449:6;68445:2;68441:15;68434:38;67945:584;68081:41;;;68071:51;;;:6;:51;;;;68064:58;;;;;67909:675;68568:4;68561:11;;67738:853;;;;;;;:::o;62535:942::-;62629:1;62615:16;;:2;:16;;;62607:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;62688:16;62696:7;62688;:16::i;:::-;62687:17;62679:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;62750:48;62779:1;62783:2;62787:7;62796:1;62750:20;:48::i;:::-;62897:16;62905:7;62897;:16::i;:::-;62896:17;62888:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63312:1;63295:9;:13;63305:2;63295:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;63356:2;63337:7;:16;63345:7;63337:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;63401:7;63397:2;63376:33;;63393:1;63376:33;;;;;;;;;;;;63422:47;63450:1;63454:2;63458:7;63467:1;63422:19;:47::i;:::-;62535:942;;:::o;36261:326::-;36321:4;36578:1;36556:7;:19;;;:23;36549:30;;36261:326;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:329::-;6924:6;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:53;7169:7;7160:6;7149:9;7145:22;7124:53;:::i;:::-;7114:63;;7070:117;6865:329;;;;:::o;7200:116::-;7270:21;7285:5;7270:21;:::i;:::-;7263:5;7260:32;7250:60;;7306:1;7303;7296:12;7250:60;7200:116;:::o;7322:133::-;7365:5;7403:6;7390:20;7381:29;;7419:30;7443:5;7419:30;:::i;:::-;7322:133;;;;:::o;7461:468::-;7526:6;7534;7583:2;7571:9;7562:7;7558:23;7554:32;7551:119;;;7589:79;;:::i;:::-;7551:119;7709:1;7734:53;7779:7;7770:6;7759:9;7755:22;7734:53;:::i;:::-;7724:63;;7680:117;7836:2;7862:50;7904:7;7895:6;7884:9;7880:22;7862:50;:::i;:::-;7852:60;;7807:115;7461:468;;;;;:::o;7935:117::-;8044:1;8041;8034:12;8058:117;8167:1;8164;8157:12;8181:180;8229:77;8226:1;8219:88;8326:4;8323:1;8316:15;8350:4;8347:1;8340:15;8367:281;8450:27;8472:4;8450:27;:::i;:::-;8442:6;8438:40;8580:6;8568:10;8565:22;8544:18;8532:10;8529:34;8526:62;8523:88;;;8591:18;;:::i;:::-;8523:88;8631:10;8627:2;8620:22;8410:238;8367:281;;:::o;8654:129::-;8688:6;8715:20;;:::i;:::-;8705:30;;8744:33;8772:4;8764:6;8744:33;:::i;:::-;8654:129;;;:::o;8789:307::-;8850:4;8940:18;8932:6;8929:30;8926:56;;;8962:18;;:::i;:::-;8926:56;9000:29;9022:6;9000:29;:::i;:::-;8992:37;;9084:4;9078;9074:15;9066:23;;8789:307;;;:::o;9102:146::-;9199:6;9194:3;9189;9176:30;9240:1;9231:6;9226:3;9222:16;9215:27;9102:146;;;:::o;9254:423::-;9331:5;9356:65;9372:48;9413:6;9372:48;:::i;:::-;9356:65;:::i;:::-;9347:74;;9444:6;9437:5;9430:21;9482:4;9475:5;9471:16;9520:3;9511:6;9506:3;9502:16;9499:25;9496:112;;;9527:79;;:::i;:::-;9496:112;9617:54;9664:6;9659:3;9654;9617:54;:::i;:::-;9337:340;9254:423;;;;;:::o;9696:338::-;9751:5;9800:3;9793:4;9785:6;9781:17;9777:27;9767:122;;9808:79;;:::i;:::-;9767:122;9925:6;9912:20;9950:78;10024:3;10016:6;10009:4;10001:6;9997:17;9950:78;:::i;:::-;9941:87;;9757:277;9696:338;;;;:::o;10040:943::-;10135:6;10143;10151;10159;10208:3;10196:9;10187:7;10183:23;10179:33;10176:120;;;10215:79;;:::i;:::-;10176:120;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:53;10533:7;10524:6;10513:9;10509:22;10488:53;:::i;:::-;10478:63;;10433:118;10590:2;10616:53;10661:7;10652:6;10641:9;10637:22;10616:53;:::i;:::-;10606:63;;10561:118;10746:2;10735:9;10731:18;10718:32;10777:18;10769:6;10766:30;10763:117;;;10799:79;;:::i;:::-;10763:117;10904:62;10958:7;10949:6;10938:9;10934:22;10904:62;:::i;:::-;10894:72;;10689:287;10040:943;;;;;;;:::o;10989:474::-;11057:6;11065;11114:2;11102:9;11093:7;11089:23;11085:32;11082:119;;;11120:79;;:::i;:::-;11082:119;11240:1;11265:53;11310:7;11301:6;11290:9;11286:22;11265:53;:::i;:::-;11255:63;;11211:117;11367:2;11393:53;11438:7;11429:6;11418:9;11414:22;11393:53;:::i;:::-;11383:63;;11338:118;10989:474;;;;;:::o;11469:180::-;11517:77;11514:1;11507:88;11614:4;11611:1;11604:15;11638:4;11635:1;11628:15;11655:320;11699:6;11736:1;11730:4;11726:12;11716:22;;11783:1;11777:4;11773:12;11804:18;11794:81;;11860:4;11852:6;11848:17;11838:27;;11794:81;11922:2;11914:6;11911:14;11891:18;11888:38;11885:84;;11941:18;;:::i;:::-;11885:84;11706:269;11655:320;;;:::o;11981:220::-;12121:34;12117:1;12109:6;12105:14;12098:58;12190:3;12185:2;12177:6;12173:15;12166:28;11981:220;:::o;12207:366::-;12349:3;12370:67;12434:2;12429:3;12370:67;:::i;:::-;12363:74;;12446:93;12535:3;12446:93;:::i;:::-;12564:2;12559:3;12555:12;12548:19;;12207:366;;;:::o;12579:419::-;12745:4;12783:2;12772:9;12768:18;12760:26;;12832:9;12826:4;12822:20;12818:1;12807:9;12803:17;12796:47;12860:131;12986:4;12860:131;:::i;:::-;12852:139;;12579:419;;;:::o;13004:248::-;13144:34;13140:1;13132:6;13128:14;13121:58;13213:31;13208:2;13200:6;13196:15;13189:56;13004:248;:::o;13258:366::-;13400:3;13421:67;13485:2;13480:3;13421:67;:::i;:::-;13414:74;;13497:93;13586:3;13497:93;:::i;:::-;13615:2;13610:3;13606:12;13599:19;;13258:366;;;:::o;13630:419::-;13796:4;13834:2;13823:9;13819:18;13811:26;;13883:9;13877:4;13873:20;13869:1;13858:9;13854:17;13847:47;13911:131;14037:4;13911:131;:::i;:::-;13903:139;;13630:419;;;:::o;14055:174::-;14195:26;14191:1;14183:6;14179:14;14172:50;14055:174;:::o;14235:366::-;14377:3;14398:67;14462:2;14457:3;14398:67;:::i;:::-;14391:74;;14474:93;14563:3;14474:93;:::i;:::-;14592:2;14587:3;14583:12;14576:19;;14235:366;;;:::o;14607:419::-;14773:4;14811:2;14800:9;14796:18;14788:26;;14860:9;14854:4;14850:20;14846:1;14835:9;14831:17;14824:47;14888:131;15014:4;14888:131;:::i;:::-;14880:139;;14607:419;;;:::o;15032:228::-;15172:34;15168:1;15160:6;15156:14;15149:58;15241:11;15236:2;15228:6;15224:15;15217:36;15032:228;:::o;15266:366::-;15408:3;15429:67;15493:2;15488:3;15429:67;:::i;:::-;15422:74;;15505:93;15594:3;15505:93;:::i;:::-;15623:2;15618:3;15614:12;15607:19;;15266:366;;;:::o;15638:419::-;15804:4;15842:2;15831:9;15827:18;15819:26;;15891:9;15885:4;15881:20;15877:1;15866:9;15862:17;15855:47;15919:131;16045:4;15919:131;:::i;:::-;15911:139;;15638:419;;;:::o;16063:170::-;16203:22;16199:1;16191:6;16187:14;16180:46;16063:170;:::o;16239:366::-;16381:3;16402:67;16466:2;16461:3;16402:67;:::i;:::-;16395:74;;16478:93;16567:3;16478:93;:::i;:::-;16596:2;16591:3;16587:12;16580:19;;16239:366;;;:::o;16611:419::-;16777:4;16815:2;16804:9;16800:18;16792:26;;16864:9;16858:4;16854:20;16850:1;16839:9;16835:17;16828:47;16892:131;17018:4;16892:131;:::i;:::-;16884:139;;16611:419;;;:::o;17036:148::-;17138:11;17175:3;17160:18;;17036:148;;;;:::o;17190:164::-;17330:16;17326:1;17318:6;17314:14;17307:40;17190:164;:::o;17360:402::-;17520:3;17541:85;17623:2;17618:3;17541:85;:::i;:::-;17534:92;;17635:93;17724:3;17635:93;:::i;:::-;17753:2;17748:3;17744:12;17737:19;;17360:402;;;:::o;17768:390::-;17874:3;17902:39;17935:5;17902:39;:::i;:::-;17957:89;18039:6;18034:3;17957:89;:::i;:::-;17950:96;;18055:65;18113:6;18108:3;18101:4;18094:5;18090:16;18055:65;:::i;:::-;18145:6;18140:3;18136:16;18129:23;;17878:280;17768:390;;;;:::o;18164:541::-;18397:3;18419:148;18563:3;18419:148;:::i;:::-;18412:155;;18584:95;18675:3;18666:6;18584:95;:::i;:::-;18577:102;;18696:3;18689:10;;18164:541;;;;:::o;18711:176::-;18851:28;18847:1;18839:6;18835:14;18828:52;18711:176;:::o;18893:402::-;19053:3;19074:85;19156:2;19151:3;19074:85;:::i;:::-;19067:92;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18893:402;;;:::o;19301:541::-;19534:3;19556:148;19700:3;19556:148;:::i;:::-;19549:155;;19721:95;19812:3;19803:6;19721:95;:::i;:::-;19714:102;;19833:3;19826:10;;19301:541;;;;:::o;19848:155::-;19988:3;19984:1;19976:6;19972:14;19965:27;19848:155;:::o;20013:416::-;20173:3;20198:84;20280:1;20275:3;20198:84;:::i;:::-;20191:91;;20295:93;20384:3;20295:93;:::i;:::-;20417:1;20412:3;20408:11;20401:18;;20013:416;;;:::o;20439:222::-;20583:66;20579:1;20571:6;20567:14;20560:90;20439:222;:::o;20671:416::-;20831:3;20856:84;20938:1;20933:3;20856:84;:::i;:::-;20849:91;;20953:93;21042:3;20953:93;:::i;:::-;21075:1;21070:3;21066:11;21059:18;;20671:416;;;:::o;21097:222::-;21241:66;21237:1;21229:6;21225:14;21218:90;21097:222;:::o;21329:416::-;21489:3;21514:84;21596:1;21591:3;21514:84;:::i;:::-;21507:91;;21611:93;21700:3;21611:93;:::i;:::-;21733:1;21728:3;21724:11;21717:18;;21329:416;;;:::o;21755:222::-;21899:66;21895:1;21887:6;21883:14;21876:90;21755:222;:::o;21987:418::-;22147:3;22172:85;22254:2;22249:3;22172:85;:::i;:::-;22165:92;;22270:93;22359:3;22270:93;:::i;:::-;22392:2;22387:3;22383:12;22376:19;;21987:418;;;:::o;22415:222::-;22559:66;22555:1;22547:6;22543:14;22536:90;22415:222;:::o;22647:418::-;22807:3;22832:85;22914:2;22909:3;22832:85;:::i;:::-;22825:92;;22930:93;23019:3;22930:93;:::i;:::-;23052:2;23047:3;23043:12;23036:19;;22647:418;;;:::o;23075:222::-;23219:66;23215:1;23207:6;23203:14;23196:90;23075:222;:::o;23307:418::-;23467:3;23492:85;23574:2;23569:3;23492:85;:::i;:::-;23485:92;;23590:93;23679:3;23590:93;:::i;:::-;23712:2;23707:3;23703:12;23696:19;;23307:418;;;:::o;23735:222::-;23879:66;23875:1;23867:6;23863:14;23856:90;23735:222;:::o;23967:418::-;24127:3;24152:85;24234:2;24229:3;24152:85;:::i;:::-;24145:92;;24250:93;24339:3;24250:93;:::i;:::-;24372:2;24367:3;24363:12;24356:19;;23967:418;;;:::o;24395:159::-;24539:3;24535:1;24527:6;24523:14;24516:27;24395:159;:::o;24564:416::-;24724:3;24749:84;24831:1;24826:3;24749:84;:::i;:::-;24742:91;;24846:93;24935:3;24846:93;:::i;:::-;24968:1;24963:3;24959:11;24952:18;;24564:416;;;:::o;24990:151::-;25130:3;25126:1;25118:6;25114:14;25107:27;24990:151;:::o;25147:400::-;25307:3;25328:84;25410:1;25405:3;25328:84;:::i;:::-;25321:91;;25421:93;25510:3;25421:93;:::i;:::-;25539:1;25534:3;25530:11;25523:18;;25147:400;;;:::o;25553:4107::-;27089:3;27111:148;27255:3;27111:148;:::i;:::-;27104:155;;27276:148;27420:3;27276:148;:::i;:::-;27269:155;;27441:95;27532:3;27523:6;27441:95;:::i;:::-;27434:102;;27553:148;27697:3;27553:148;:::i;:::-;27546:155;;27718:148;27862:3;27718:148;:::i;:::-;27711:155;;27883:95;27974:3;27965:6;27883:95;:::i;:::-;27876:102;;27995:148;28139:3;27995:148;:::i;:::-;27988:155;;28160:148;28304:3;28160:148;:::i;:::-;28153:155;;28325:95;28416:3;28407:6;28325:95;:::i;:::-;28318:102;;28437:148;28581:3;28437:148;:::i;:::-;28430:155;;28602:148;28746:3;28602:148;:::i;:::-;28595:155;;28767:95;28858:3;28849:6;28767:95;:::i;:::-;28760:102;;28879:148;29023:3;28879:148;:::i;:::-;28872:155;;29044:148;29188:3;29044:148;:::i;:::-;29037:155;;29209:95;29300:3;29291:6;29209:95;:::i;:::-;29202:102;;29321:148;29465:3;29321:148;:::i;:::-;29314:155;;29486:148;29630:3;29486:148;:::i;:::-;29479:155;;29651:3;29644:10;;25553:4107;;;;;;;;:::o;29666:179::-;29806:31;29802:1;29794:6;29790:14;29783:55;29666:179;:::o;29851:402::-;30011:3;30032:85;30114:2;30109:3;30032:85;:::i;:::-;30025:92;;30126:93;30215:3;30126:93;:::i;:::-;30244:2;30239:3;30235:12;30228:19;;29851:402;;;:::o;30259:541::-;30492:3;30514:148;30658:3;30514:148;:::i;:::-;30507:155;;30679:95;30770:3;30761:6;30679:95;:::i;:::-;30672:102;;30791:3;30784:10;;30259:541;;;;:::o;30806:225::-;30946:34;30942:1;30934:6;30930:14;30923:58;31015:8;31010:2;31002:6;30998:15;30991:33;30806:225;:::o;31037:366::-;31179:3;31200:67;31264:2;31259:3;31200:67;:::i;:::-;31193:74;;31276:93;31365:3;31276:93;:::i;:::-;31394:2;31389:3;31385:12;31378:19;;31037:366;;;:::o;31409:419::-;31575:4;31613:2;31602:9;31598:18;31590:26;;31662:9;31656:4;31652:20;31648:1;31637:9;31633:17;31626:47;31690:131;31816:4;31690:131;:::i;:::-;31682:139;;31409:419;;;:::o;31834:332::-;31955:4;31993:2;31982:9;31978:18;31970:26;;32006:71;32074:1;32063:9;32059:17;32050:6;32006:71;:::i;:::-;32087:72;32155:2;32144:9;32140:18;32131:6;32087:72;:::i;:::-;31834:332;;;;;:::o;32172:137::-;32226:5;32257:6;32251:13;32242:22;;32273:30;32297:5;32273:30;:::i;:::-;32172:137;;;;:::o;32315:345::-;32382:6;32431:2;32419:9;32410:7;32406:23;32402:32;32399:119;;;32437:79;;:::i;:::-;32399:119;32557:1;32582:61;32635:7;32626:6;32615:9;32611:22;32582:61;:::i;:::-;32572:71;;32528:125;32315:345;;;;:::o;32666:232::-;32806:34;32802:1;32794:6;32790:14;32783:58;32875:15;32870:2;32862:6;32858:15;32851:40;32666:232;:::o;32904:366::-;33046:3;33067:67;33131:2;33126:3;33067:67;:::i;:::-;33060:74;;33143:93;33232:3;33143:93;:::i;:::-;33261:2;33256:3;33252:12;33245:19;;32904:366;;;:::o;33276:419::-;33442:4;33480:2;33469:9;33465:18;33457:26;;33529:9;33523:4;33519:20;33515:1;33504:9;33500:17;33493:47;33557:131;33683:4;33557:131;:::i;:::-;33549:139;;33276:419;;;:::o;33701:182::-;33841:34;33837:1;33829:6;33825:14;33818:58;33701:182;:::o;33889:366::-;34031:3;34052:67;34116:2;34111:3;34052:67;:::i;:::-;34045:74;;34128:93;34217:3;34128:93;:::i;:::-;34246:2;34241:3;34237:12;34230:19;;33889:366;;;:::o;34261:419::-;34427:4;34465:2;34454:9;34450:18;34442:26;;34514:9;34508:4;34504:20;34500:1;34489:9;34485:17;34478:47;34542:131;34668:4;34542:131;:::i;:::-;34534:139;;34261:419;;;:::o;34686:177::-;34826:29;34822:1;34814:6;34810:14;34803:53;34686:177;:::o;34869:366::-;35011:3;35032:67;35096:2;35091:3;35032:67;:::i;:::-;35025:74;;35108:93;35197:3;35108:93;:::i;:::-;35226:2;35221:3;35217:12;35210:19;;34869:366;;;:::o;35241:419::-;35407:4;35445:2;35434:9;35430:18;35422:26;;35494:9;35488:4;35484:20;35480:1;35469:9;35465:17;35458:47;35522:131;35648:4;35522:131;:::i;:::-;35514:139;;35241:419;;;:::o;35666:180::-;35714:77;35711:1;35704:88;35811:4;35808:1;35801:15;35835:4;35832:1;35825:15;35852:191;35892:3;35911:20;35929:1;35911:20;:::i;:::-;35906:25;;35945:20;35963:1;35945:20;:::i;:::-;35940:25;;35988:1;35985;35981:9;35974:16;;36009:3;36006:1;36003:10;36000:36;;;36016:18;;:::i;:::-;36000:36;35852:191;;;;:::o;36049:234::-;36189:34;36185:1;36177:6;36173:14;36166:58;36258:17;36253:2;36245:6;36241:15;36234:42;36049:234;:::o;36289:366::-;36431:3;36452:67;36516:2;36511:3;36452:67;:::i;:::-;36445:74;;36528:93;36617:3;36528:93;:::i;:::-;36646:2;36641:3;36637:12;36630:19;;36289:366;;;:::o;36661:419::-;36827:4;36865:2;36854:9;36850:18;36842:26;;36914:9;36908:4;36904:20;36900:1;36889:9;36885:17;36878:47;36942:131;37068:4;36942:131;:::i;:::-;36934:139;;36661:419;;;:::o;37086:233::-;37125:3;37148:24;37166:5;37148:24;:::i;:::-;37139:33;;37194:66;37187:5;37184:77;37181:103;;37264:18;;:::i;:::-;37181:103;37311:1;37304:5;37300:13;37293:20;;37086:233;;;:::o;37325:175::-;37465:27;37461:1;37453:6;37449:14;37442:51;37325:175;:::o;37506:366::-;37648:3;37669:67;37733:2;37728:3;37669:67;:::i;:::-;37662:74;;37745:93;37834:3;37745:93;:::i;:::-;37863:2;37858:3;37854:12;37847:19;;37506:366;;;:::o;37878:419::-;38044:4;38082:2;38071:9;38067:18;38059:26;;38131:9;38125:4;38121:20;38117:1;38106:9;38102:17;38095:47;38159:131;38285:4;38159:131;:::i;:::-;38151:139;;37878:419;;;:::o;38303:315::-;38443:66;38439:1;38431:6;38427:14;38420:90;38544:66;38539:2;38531:6;38527:15;38520:91;38303:315;:::o;38624:402::-;38784:3;38805:85;38887:2;38882:3;38805:85;:::i;:::-;38798:92;;38899:93;38988:3;38899:93;:::i;:::-;39017:2;39012:3;39008:12;39001:19;;38624:402;;;:::o;39032:315::-;39172:66;39168:1;39160:6;39156:14;39149:90;39273:66;39268:2;39260:6;39256:15;39249:91;39032:315;:::o;39353:402::-;39513:3;39534:85;39616:2;39611:3;39534:85;:::i;:::-;39527:92;;39628:93;39717:3;39628:93;:::i;:::-;39746:2;39741:3;39737:12;39730:19;;39353:402;;;:::o;39761:214::-;39901:66;39897:1;39889:6;39885:14;39878:90;39761:214;:::o;39981:402::-;40141:3;40162:85;40244:2;40239:3;40162:85;:::i;:::-;40155:92;;40256:93;40345:3;40256:93;:::i;:::-;40374:2;40369:3;40365:12;40358:19;;39981:402;;;:::o;40389:913::-;40776:3;40798:148;40942:3;40798:148;:::i;:::-;40791:155;;40963:148;41107:3;40963:148;:::i;:::-;40956:155;;41128:148;41272:3;41128:148;:::i;:::-;41121:155;;41293:3;41286:10;;40389:913;;;:::o;41308:180::-;41356:77;41353:1;41346:88;41453:4;41450:1;41443:15;41477:4;41474:1;41467:15;41494:180;41542:77;41539:1;41532:88;41639:4;41636:1;41629:15;41663:4;41660:1;41653:15;41680:185;41720:1;41737:20;41755:1;41737:20;:::i;:::-;41732:25;;41771:20;41789:1;41771:20;:::i;:::-;41766:25;;41810:1;41800:35;;41815:18;;:::i;:::-;41800:35;41857:1;41854;41850:9;41845:14;;41680:185;;;;:::o;41871:410::-;41911:7;41934:20;41952:1;41934:20;:::i;:::-;41929:25;;41968:20;41986:1;41968:20;:::i;:::-;41963:25;;42023:1;42020;42016:9;42045:30;42063:11;42045:30;:::i;:::-;42034:41;;42224:1;42215:7;42211:15;42208:1;42205:22;42185:1;42178:9;42158:83;42135:139;;42254:18;;:::i;:::-;42135:139;41919:362;41871:410;;;;:::o;42287:79::-;42326:7;42355:5;42344:16;;42287:79;;;:::o;42372:157::-;42477:45;42497:24;42515:5;42497:24;:::i;:::-;42477:45;:::i;:::-;42472:3;42465:58;42372:157;;:::o;42535:153::-;42675:5;42671:1;42663:6;42659:14;42652:29;42535:153;:::o;42694:400::-;42854:3;42875:84;42957:1;42952:3;42875:84;:::i;:::-;42868:91;;42968:93;43057:3;42968:93;:::i;:::-;43086:1;43081:3;43077:11;43070:18;;42694:400;;;:::o;43100:522::-;43313:3;43328:75;43399:3;43390:6;43328:75;:::i;:::-;43428:2;43423:3;43419:12;43412:19;;43448:148;43592:3;43448:148;:::i;:::-;43441:155;;43613:3;43606:10;;43100:522;;;;:::o;43628:176::-;43660:1;43677:20;43695:1;43677:20;:::i;:::-;43672:25;;43711:20;43729:1;43711:20;:::i;:::-;43706:25;;43750:1;43740:35;;43755:18;;:::i;:::-;43740:35;43796:1;43793;43789:9;43784:14;;43628:176;;;;:::o;43810:153::-;43950:5;43946:1;43938:6;43934:14;43927:29;43810:153;:::o;43969:400::-;44129:3;44150:84;44232:1;44227:3;44150:84;:::i;:::-;44143:91;;44243:93;44332:3;44243:93;:::i;:::-;44361:1;44356:3;44352:11;44345:18;;43969:400;;;:::o;44375:522::-;44588:3;44603:75;44674:3;44665:6;44603:75;:::i;:::-;44703:2;44698:3;44694:12;44687:19;;44723:148;44867:3;44723:148;:::i;:::-;44716:155;;44888:3;44881:10;;44375:522;;;;:::o;44903:158::-;45043:6;45039:1;45031:6;45027:14;45020:30;44903:158;:::o;45071:416::-;45231:3;45256:84;45338:1;45333:3;45256:84;:::i;:::-;45249:91;;45353:93;45442:3;45353:93;:::i;:::-;45475:1;45470:3;45466:11;45459:18;;45071:416;;;:::o;45497:159::-;45641:3;45637:1;45629:6;45625:14;45618:27;45497:159;:::o;45666:416::-;45826:3;45851:84;45933:1;45928:3;45851:84;:::i;:::-;45844:91;;45948:93;46037:3;45948:93;:::i;:::-;46070:1;46065:3;46061:11;46054:18;;45666:416;;;:::o;46092:156::-;46232:8;46228:1;46220:6;46216:14;46209:32;46092:156;:::o;46254:400::-;46414:3;46435:84;46517:1;46512:3;46435:84;:::i;:::-;46428:91;;46528:93;46617:3;46528:93;:::i;:::-;46646:1;46641:3;46637:11;46630:18;;46254:400;;;:::o;46660:1233::-;47143:3;47165:148;47309:3;47165:148;:::i;:::-;47158:155;;47330:95;47421:3;47412:6;47330:95;:::i;:::-;47323:102;;47442:148;47586:3;47442:148;:::i;:::-;47435:155;;47607:95;47698:3;47689:6;47607:95;:::i;:::-;47600:102;;47719:148;47863:3;47719:148;:::i;:::-;47712:155;;47884:3;47877:10;;46660:1233;;;;;:::o;47899:194::-;47939:4;47959:20;47977:1;47959:20;:::i;:::-;47954:25;;47993:20;48011:1;47993:20;:::i;:::-;47988:25;;48037:1;48034;48030:9;48022:17;;48061:1;48055:4;48052:11;48049:37;;;48066:18;;:::i;:::-;48049:37;47899:194;;;;:::o;48099:214::-;48239:66;48235:1;48227:6;48223:14;48216:90;48099:214;:::o;48319:402::-;48479:3;48500:85;48582:2;48577:3;48500:85;:::i;:::-;48493:92;;48594:93;48683:3;48594:93;:::i;:::-;48712:2;48707:3;48703:12;48696:19;;48319:402;;;:::o;48727:214::-;48867:66;48863:1;48855:6;48851:14;48844:90;48727:214;:::o;48947:400::-;49107:3;49128:84;49210:1;49205:3;49128:84;:::i;:::-;49121:91;;49221:93;49310:3;49221:93;:::i;:::-;49339:1;49334:3;49330:11;49323:18;;48947:400;;;:::o;49353:214::-;49493:66;49489:1;49481:6;49477:14;49470:90;49353:214;:::o;49573:400::-;49733:3;49754:84;49836:1;49831:3;49754:84;:::i;:::-;49747:91;;49847:93;49936:3;49847:93;:::i;:::-;49965:1;49960:3;49956:11;49949:18;;49573:400;;;:::o;49979:214::-;50119:66;50115:1;50107:6;50103:14;50096:90;49979:214;:::o;50199:400::-;50359:3;50380:84;50462:1;50457:3;50380:84;:::i;:::-;50373:91;;50473:93;50562:3;50473:93;:::i;:::-;50591:1;50586:3;50582:11;50575:18;;50199:400;;;:::o;50605:214::-;50745:66;50741:1;50733:6;50729:14;50722:90;50605:214;:::o;50825:402::-;50985:3;51006:85;51088:2;51083:3;51006:85;:::i;:::-;50999:92;;51100:93;51189:3;51100:93;:::i;:::-;51218:2;51213:3;51209:12;51202:19;;50825:402;;;:::o;51233:214::-;51373:66;51369:1;51361:6;51357:14;51350:90;51233:214;:::o;51453:402::-;51613:3;51634:85;51716:2;51711:3;51634:85;:::i;:::-;51627:92;;51728:93;51817:3;51728:93;:::i;:::-;51846:2;51841:3;51837:12;51830:19;;51453:402;;;:::o;51861:214::-;52001:66;51997:1;51989:6;51985:14;51978:90;51861:214;:::o;52081:400::-;52241:3;52262:84;52344:1;52339:3;52262:84;:::i;:::-;52255:91;;52355:93;52444:3;52355:93;:::i;:::-;52473:1;52468:3;52464:11;52457:18;;52081:400;;;:::o;52487:315::-;52627:66;52623:1;52615:6;52611:14;52604:90;52728:66;52723:2;52715:6;52711:15;52704:91;52487:315;:::o;52808:402::-;52968:3;52989:85;53071:2;53066:3;52989:85;:::i;:::-;52982:92;;53083:93;53172:3;53083:93;:::i;:::-;53201:2;53196:3;53192:12;53185:19;;52808:402;;;:::o;53216:151::-;53356:3;53352:1;53344:6;53340:14;53333:27;53216:151;:::o;53373:400::-;53533:3;53554:84;53636:1;53631:3;53554:84;:::i;:::-;53547:91;;53647:93;53736:3;53647:93;:::i;:::-;53765:1;53760:3;53756:11;53749:18;;53373:400;;;:::o;53779:214::-;53919:66;53915:1;53907:6;53903:14;53896:90;53779:214;:::o;53999:400::-;54159:3;54180:84;54262:1;54257:3;54180:84;:::i;:::-;54173:91;;54273:93;54362:3;54273:93;:::i;:::-;54391:1;54386:3;54382:11;54375:18;;53999:400;;;:::o;54405:214::-;54545:66;54541:1;54533:6;54529:14;54522:90;54405:214;:::o;54625:402::-;54785:3;54806:85;54888:2;54883:3;54806:85;:::i;:::-;54799:92;;54900:93;54989:3;54900:93;:::i;:::-;55018:2;55013:3;55009:12;55002:19;;54625:402;;;:::o;55033:159::-;55173:11;55169:1;55161:6;55157:14;55150:35;55033:159;:::o;55198:400::-;55358:3;55379:84;55461:1;55456:3;55379:84;:::i;:::-;55372:91;;55472:93;55561:3;55472:93;:::i;:::-;55590:1;55585:3;55581:11;55574:18;;55198:400;;;:::o;55604:5173::-;57481:3;57503:148;57647:3;57503:148;:::i;:::-;57496:155;;57668:95;57759:3;57750:6;57668:95;:::i;:::-;57661:102;;57780:148;57924:3;57780:148;:::i;:::-;57773:155;;57945:95;58036:3;58027:6;57945:95;:::i;:::-;57938:102;;58057:148;58201:3;58057:148;:::i;:::-;58050:155;;58222:95;58313:3;58304:6;58222:95;:::i;:::-;58215:102;;58334:148;58478:3;58334:148;:::i;:::-;58327:155;;58499:95;58590:3;58581:6;58499:95;:::i;:::-;58492:102;;58611:148;58755:3;58611:148;:::i;:::-;58604:155;;58776:95;58867:3;58858:6;58776:95;:::i;:::-;58769:102;;58888:148;59032:3;58888:148;:::i;:::-;58881:155;;59053:95;59144:3;59135:6;59053:95;:::i;:::-;59046:102;;59165:148;59309:3;59165:148;:::i;:::-;59158:155;;59330:148;59474:3;59330:148;:::i;:::-;59323:155;;59495:95;59586:3;59577:6;59495:95;:::i;:::-;59488:102;;59607:148;59751:3;59607:148;:::i;:::-;59600:155;;59772:95;59863:3;59854:6;59772:95;:::i;:::-;59765:102;;59884:148;60028:3;59884:148;:::i;:::-;59877:155;;60049:95;60140:3;60131:6;60049:95;:::i;:::-;60042:102;;60161:148;60305:3;60161:148;:::i;:::-;60154:155;;60326:95;60417:3;60408:6;60326:95;:::i;:::-;60319:102;;60438:148;60582:3;60438:148;:::i;:::-;60431:155;;60603:148;60747:3;60603:148;:::i;:::-;60596:155;;60768:3;60761:10;;55604:5173;;;;;;;;;;;;;:::o;60783:435::-;60963:3;60985:95;61076:3;61067:6;60985:95;:::i;:::-;60978:102;;61097:95;61188:3;61179:6;61097:95;:::i;:::-;61090:102;;61209:3;61202:10;;60783:435;;;;;:::o;61224:154::-;61364:6;61360:1;61352:6;61348:14;61341:30;61224:154;:::o;61384:400::-;61544:3;61565:84;61647:1;61642:3;61565:84;:::i;:::-;61558:91;;61658:93;61747:3;61658:93;:::i;:::-;61776:1;61771:3;61767:11;61760:18;;61384:400;;;:::o;61790:156::-;61930:8;61926:1;61918:6;61914:14;61907:32;61790:156;:::o;61952:400::-;62112:3;62133:84;62215:1;62210:3;62133:84;:::i;:::-;62126:91;;62226:93;62315:3;62226:93;:::i;:::-;62344:1;62339:3;62335:11;62328:18;;61952:400;;;:::o;62358:807::-;62692:3;62714:95;62805:3;62796:6;62714:95;:::i;:::-;62707:102;;62826:148;62970:3;62826:148;:::i;:::-;62819:155;;62991:148;63135:3;62991:148;:::i;:::-;62984:155;;63156:3;63149:10;;62358:807;;;;:::o;63171:315::-;63311:66;63307:1;63299:6;63295:14;63288:90;63412:66;63407:2;63399:6;63395:15;63388:91;63171:315;:::o;63492:402::-;63652:3;63673:85;63755:2;63750:3;63673:85;:::i;:::-;63666:92;;63767:93;63856:3;63767:93;:::i;:::-;63885:2;63880:3;63876:12;63869:19;;63492:402;;;:::o;63900:144::-;64036:4;64032:1;64024:6;64020:14;64013:28;63900:144;:::o;64046:384::-;64206:3;64223:84;64305:1;64300:3;64223:84;:::i;:::-;64216:91;;64312:93;64401:3;64312:93;:::i;:::-;64426:1;64421:3;64417:11;64410:18;;64046:384;;;:::o;64432:303::-;64568:66;64564:1;64556:6;64552:14;64545:90;64665:66;64660:2;64652:6;64648:15;64641:91;64432:303;:::o;64737:386::-;64897:3;64914:85;64996:2;64991:3;64914:85;:::i;:::-;64907:92;;65004:93;65093:3;65004:93;:::i;:::-;65118:2;65113:3;65109:12;65102:19;;64737:386;;;:::o;65125:145::-;65261:5;65257:1;65249:6;65245:14;65238:29;65125:145;:::o;65272:384::-;65432:3;65449:84;65531:1;65526:3;65449:84;:::i;:::-;65442:91;;65538:93;65627:3;65538:93;:::i;:::-;65652:1;65647:3;65643:11;65636:18;;65272:384;;;:::o;65658:206::-;65794:66;65790:1;65782:6;65778:14;65771:90;65658:206;:::o;65866:386::-;66026:3;66043:85;66125:2;66120:3;66043:85;:::i;:::-;66036:92;;66133:93;66222:3;66133:93;:::i;:::-;66247:2;66242:3;66238:12;66231:19;;65866:386;;;:::o;66254:303::-;66390:66;66386:1;66378:6;66374:14;66367:90;66487:66;66482:2;66474:6;66470:15;66463:91;66254:303;:::o;66559:386::-;66719:3;66736:85;66818:2;66813:3;66736:85;:::i;:::-;66729:92;;66826:93;66915:3;66826:93;:::i;:::-;66940:2;66935:3;66931:12;66924:19;;66559:386;;;:::o;66947:206::-;67083:66;67079:1;67071:6;67067:14;67060:90;66947:206;:::o;67155:386::-;67315:3;67332:85;67414:2;67409:3;67332:85;:::i;:::-;67325:92;;67422:93;67511:3;67422:93;:::i;:::-;67536:2;67531:3;67527:12;67520:19;;67155:386;;;:::o;67543:2983::-;68675:3;68693:148;68837:3;68693:148;:::i;:::-;68686:155;;68854:95;68945:3;68936:6;68854:95;:::i;:::-;68847:102;;68962:148;69106:3;68962:148;:::i;:::-;68955:155;;69123:148;69267:3;69123:148;:::i;:::-;69116:155;;69284:95;69375:3;69366:6;69284:95;:::i;:::-;69277:102;;69392:148;69536:3;69392:148;:::i;:::-;69385:155;;69553:95;69644:3;69635:6;69553:95;:::i;:::-;69546:102;;69661:148;69805:3;69661:148;:::i;:::-;69654:155;;69822:148;69966:3;69822:148;:::i;:::-;69815:155;;69983:95;70074:3;70065:6;69983:95;:::i;:::-;69976:102;;70091:148;70235:3;70091:148;:::i;:::-;70084:155;;70252:95;70343:3;70334:6;70252:95;:::i;:::-;70245:102;;70360:148;70504:3;70360:148;:::i;:::-;70353:155;;70521:3;70514:10;;67543:2983;;;;;;;;:::o;70528:212::-;70664:34;70660:1;70652:6;70648:14;70641:58;70729:7;70724:2;70716:6;70712:15;70705:32;70528:212;:::o;70742:350::-;70884:3;70901:67;70965:2;70960:3;70901:67;:::i;:::-;70894:74;;70973:93;71062:3;70973:93;:::i;:::-;71087:2;71082:3;71078:12;71071:19;;70742:350;;;:::o;71094:403::-;71260:4;71294:2;71283:9;71279:18;71271:26;;71339:9;71333:4;71329:20;71325:1;71314:9;71310:17;71303:47;71363:131;71489:4;71363:131;:::i;:::-;71355:139;;71094:403;;;:::o;71499:211::-;71635:34;71631:1;71623:6;71619:14;71612:58;71700:6;71695:2;71687:6;71683:15;71676:31;71499:211;:::o;71712:350::-;71854:3;71871:67;71935:2;71930:3;71871:67;:::i;:::-;71864:74;;71943:93;72032:3;71943:93;:::i;:::-;72057:2;72052:3;72048:12;72041:19;;71712:350;;;:::o;72064:403::-;72230:4;72264:2;72253:9;72249:18;72241:26;;72309:9;72303:4;72299:20;72295:1;72284:9;72280:17;72273:47;72333:131;72459:4;72333:131;:::i;:::-;72325:139;;72064:403;;;:::o;72469:225::-;72605:34;72601:1;72593:6;72589:14;72582:58;72670:20;72665:2;72657:6;72653:15;72646:45;72469:225;:::o;72696:350::-;72838:3;72855:67;72919:2;72914:3;72855:67;:::i;:::-;72848:74;;72927:93;73016:3;72927:93;:::i;:::-;73041:2;73036:3;73032:12;73025:19;;72696:350;;;:::o;73048:403::-;73214:4;73248:2;73237:9;73233:18;73225:26;;73293:9;73287:4;73283:20;73279:1;73268:9;73264:17;73257:47;73317:131;73443:4;73317:131;:::i;:::-;73309:139;;73048:403;;;:::o;73453:152::-;73589:12;73585:1;73577:6;73573:14;73566:36;73453:152;:::o;73607:386::-;73767:3;73784:85;73866:2;73861:3;73784:85;:::i;:::-;73777:92;;73874:93;73963:3;73874:93;:::i;:::-;73988:2;73983:3;73979:12;73972:19;;73607:386;;;:::o;73995:502::-;74208:3;74219:75;74290:3;74281:6;74219:75;:::i;:::-;74315:2;74310:3;74306:12;74299:19;;74331:148;74475:3;74331:148;:::i;:::-;74324:155;;74492:3;74485:10;;73995:502;;;;:::o;74499:148::-;74635:8;74631:1;74623:6;74619:14;74612:32;74499:148;:::o;74649:384::-;74809:3;74826:84;74908:1;74903:3;74826:84;:::i;:::-;74819:91;;74915:93;75004:3;74915:93;:::i;:::-;75029:1;75024:3;75020:11;75013:18;;74649:384;;;:::o;75035:635::-;75276:3;75287:75;75358:3;75349:6;75287:75;:::i;:::-;75383:2;75378:3;75374:12;75367:19;;75399:148;75543:3;75399:148;:::i;:::-;75392:155;;75553:75;75624:3;75615:6;75553:75;:::i;:::-;75649:2;75644:3;75640:12;75633:19;;75665:3;75658:10;;75035:635;;;;;:::o;75672:150::-;75808:10;75804:1;75796:6;75792:14;75785:34;75672:150;:::o;75824:384::-;75984:3;76001:84;76083:1;76078:3;76001:84;:::i;:::-;75994:91;;76090:93;76179:3;76090:93;:::i;:::-;76204:1;76199:3;76195:11;76188:18;;75824:384;;;:::o;76210:635::-;76451:3;76462:75;76533:3;76524:6;76462:75;:::i;:::-;76558:2;76553:3;76549:12;76542:19;;76574:148;76718:3;76574:148;:::i;:::-;76567:155;;76728:75;76799:3;76790:6;76728:75;:::i;:::-;76824:2;76819:3;76815:12;76808:19;;76840:3;76833:10;;76210:635;;;;;:::o;76847:153::-;76983:13;76979:1;76971:6;76967:14;76960:37;76847:153;:::o;77002:386::-;77162:3;77179:85;77261:2;77256:3;77179:85;:::i;:::-;77172:92;;77269:93;77358:3;77269:93;:::i;:::-;77383:2;77378:3;77374:12;77367:19;;77002:386;;;:::o;77390:635::-;77631:3;77642:75;77713:3;77704:6;77642:75;:::i;:::-;77738:2;77733:3;77729:12;77722:19;;77754:148;77898:3;77754:148;:::i;:::-;77747:155;;77908:75;77979:3;77970:6;77908:75;:::i;:::-;78004:2;77999:3;77995:12;77988:19;;78020:3;78013:10;;77390:635;;;;;:::o;78027:147::-;78163:7;78159:1;78151:6;78147:14;78140:31;78027:147;:::o;78176:384::-;78336:3;78353:84;78435:1;78430:3;78353:84;:::i;:::-;78346:91;;78442:93;78531:3;78442:93;:::i;:::-;78556:1;78551:3;78547:11;78540:18;;78176:384;;;:::o;78562:635::-;78803:3;78814:75;78885:3;78876:6;78814:75;:::i;:::-;78910:2;78905:3;78901:12;78894:19;;78926:148;79070:3;78926:148;:::i;:::-;78919:155;;79080:75;79151:3;79142:6;79080:75;:::i;:::-;79176:2;79171:3;79167:12;79160:19;;79192:3;79185:10;;78562:635;;;;;:::o;79199:154::-;79335:14;79331:1;79323:6;79319:14;79312:38;79199:154;:::o;79355:386::-;79515:3;79532:85;79614:2;79609:3;79532:85;:::i;:::-;79525:92;;79622:93;79711:3;79622:93;:::i;:::-;79736:2;79731:3;79727:12;79720:19;;79355:386;;;:::o;79743:635::-;79984:3;79995:75;80066:3;80057:6;79995:75;:::i;:::-;80091:2;80086:3;80082:12;80075:19;;80107:148;80251:3;80107:148;:::i;:::-;80100:155;;80261:75;80332:3;80323:6;80261:75;:::i;:::-;80357:2;80352:3;80348:12;80341:19;;80373:3;80366:10;;79743:635;;;;;:::o;80380:148::-;80516:8;80512:1;80504:6;80500:14;80493:32;80380:148;:::o;80530:384::-;80690:3;80707:84;80789:1;80784:3;80707:84;:::i;:::-;80700:91;;80796:93;80885:3;80796:93;:::i;:::-;80910:1;80905:3;80901:11;80894:18;;80530:384;;;:::o;80916:635::-;81157:3;81168:75;81239:3;81230:6;81168:75;:::i;:::-;81264:2;81259:3;81255:12;81248:19;;81280:148;81424:3;81280:148;:::i;:::-;81273:155;;81434:75;81505:3;81496:6;81434:75;:::i;:::-;81530:2;81525:3;81521:12;81514:19;;81546:3;81539:10;;80916:635;;;;;:::o;81553:90::-;81604:6;81634:5;81628:12;81618:22;;81553:90;;;:::o;81645:156::-;81728:11;81758:6;81753:3;81746:19;81794:4;81789:3;81785:14;81770:29;;81645:156;;;;:::o;81803:353::-;81889:3;81913:38;81945:5;81913:38;:::i;:::-;81963:70;82026:6;82021:3;81963:70;:::i;:::-;81956:77;;82038:65;82096:6;82091:3;82084:4;82077:5;82073:16;82038:65;:::i;:::-;82124:29;82146:6;82124:29;:::i;:::-;82119:3;82115:39;82108:46;;81893:263;81803:353;;;;:::o;82158:612::-;82353:4;82387:3;82376:9;82372:19;82364:27;;82397:71;82465:1;82454:9;82450:17;82441:6;82397:71;:::i;:::-;82474:72;82542:2;82531:9;82527:18;82518:6;82474:72;:::i;:::-;82552;82620:2;82609:9;82605:18;82596:6;82552:72;:::i;:::-;82667:9;82661:4;82657:20;82652:2;82641:9;82637:18;82630:48;82691:76;82762:4;82753:6;82691:76;:::i;:::-;82683:84;;82158:612;;;;;;;:::o;82772:129::-;82828:5;82855:6;82849:13;82840:22;;82867:32;82893:5;82867:32;:::i;:::-;82772:129;;;;:::o;82903:325::-;82972:6;83017:2;83005:9;82996:7;82992:23;82988:32;82985:119;;;83023:79;;:::i;:::-;82985:119;83135:1;83156:63;83211:7;83202:6;83191:9;83187:22;83156:63;:::i;:::-;83146:73;;83110:115;82903:325;;;;:::o;83230:174::-;83366:34;83362:1;83354:6;83350:14;83343:58;83230:174;:::o;83406:350::-;83548:3;83565:67;83629:2;83624:3;83565:67;:::i;:::-;83558:74;;83637:93;83726:3;83637:93;:::i;:::-;83751:2;83746:3;83742:12;83735:19;;83406:350;;;:::o;83758:403::-;83924:4;83958:2;83947:9;83943:18;83935:26;;84003:9;83997:4;83993:20;83989:1;83978:9;83974:17;83967:47;84027:131;84153:4;84027:131;:::i;:::-;84019:139;;83758:403;;;:::o;84163:170::-;84299:30;84295:1;84287:6;84283:14;84276:54;84163:170;:::o;84335:350::-;84477:3;84494:67;84558:2;84553:3;84494:67;:::i;:::-;84487:74;;84566:93;84655:3;84566:93;:::i;:::-;84680:2;84675:3;84671:12;84664:19;;84335:350;;;:::o;84687:403::-;84853:4;84887:2;84876:9;84872:18;84864:26;;84932:9;84926:4;84922:20;84918:1;84907:9;84903:17;84896:47;84956:131;85082:4;84956:131;:::i;:::-;84948:139;;84687:403;;;:::o

Swarm Source

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