ETH Price: $3,276.48 (+0.95%)
Gas: 1 Gwei

Pepemon (PEPEMON)
 

Overview

TokenID

10059

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
PEPEMON

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-08
*/

/**
https://pepemoncards.com
https://twitter.com/pepemoncards
https://t.me/pepemon404
*/

//SPDX-License-Identifier: UNLICENSED

/*
The Official Pepemon Contract - ERC404

*/
pragma solidity ^0.8.0;
// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol


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

pragma solidity ^0.8.20;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant NOT_ENTERED = 1;
    uint256 private constant ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

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


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

pragma solidity ^0.8.20;

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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


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

pragma solidity ^0.8.20;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    bool private _paused;

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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


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

pragma solidity ^0.8.20;


/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is specified at deployment time in the constructor for `Ownable`. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        if (pendingOwner() != sender) {
            revert OwnableUnauthorizedAccount(sender);
        }
        _transferOwnership(sender);
    }
}

// File: contracts/ERC404.sol

pragma solidity ^0.8.0;


abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

/// @notice ERC404
///         A gas-efficient, mixed ERC20 / ERC721 implementation
///         with native liquidity and fractionalization.
///
///         This is an experimental standard designed to integrate
///         with pre-existing ERC20 / ERC721 support as smoothly as
///         possible.
///
/// @dev    In order to support full functionality of ERC20 and ERC721
///         supply assumptions are made that slightly constraint usage.
///         Ensure decimals are sufficiently large (standard 18 recommended)
///         as ids are effectively encoded in the lowest range of amounts.
///
///         NFTs are spent on ERC20 functions in a FILO queue, this is by
///         design.
///
abstract contract ERC404 is Ownable2Step {
    // Events
    event ERC20Transfer(
        address indexed from,
        address indexed to,
        uint256 amount
    );
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed id
    );
    event ERC721Approval(
        address indexed owner,
        address indexed spender,
        uint256 indexed id
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    // Errors
    error NotFound();
    error AlreadyExists();
    error InvalidRecipient();
    error InvalidSender();
    error UnsafeRecipient();
    error Unauthorized();
    error InvalidOwner();

    // Metadata
    /// @dev Token name
    string public name;

    /// @dev Token symbol
    string public symbol;

    /// @dev Decimals for fractional representation
    uint8 public immutable decimals;

    /// @dev Total supply in fractionalized representation
    uint256 public immutable totalSupply;

    /// @dev Current mint counter, monotonically increasing to ensure accurate ownership
    uint256 public minted;

    // Mappings
    /// @dev Balance of user in fractional representation
    mapping(address => uint256) public balanceOf;

    /// @dev Allowance of user in fractional representation
    mapping(address => mapping(address => uint256)) public allowance;

    /// @dev Approval in native representaion
    mapping(uint256 => address) public getApproved;

    /// @dev Approval for all in native representation
    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /// @dev Owner of id in native representation
    mapping(uint256 => address) internal _ownerOf;

    /// @dev Array of owned ids in native representation
    mapping(address => uint256[]) internal _owned;

    /// @dev Tracks indices for the _owned mapping
    mapping(uint256 => uint256) internal _ownedIndex;

    /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
    mapping(address => bool) public whitelist;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner
    ) Ownable(_owner) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);
    }

    /// @notice Initialization function to set pairs / etc
    ///         saving gas by avoiding mint / burn on unnecessary targets
    function setWhitelist(address target, bool state) public onlyOwner {
        whitelist[target] = state;
    }

    /// @notice Function to find owner of a given native token
    function ownerOf(uint256 id) public view virtual returns (address owner) {
        owner = _ownerOf[id];

        if (owner == address(0)) {
            revert NotFound();
        }
    }

    /// @notice tokenURI must be implemented by child contract
    function tokenURI(uint256 id) public view virtual returns (string memory);

    /// @notice Function for token approvals
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function approve(
        address spender,
        uint256 amountOrId
    ) public virtual returns (bool) {
        if (amountOrId <= minted && amountOrId > 0) {
            address owner = _ownerOf[amountOrId];

            if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
                revert Unauthorized();
            }

            getApproved[amountOrId] = spender;

            emit Approval(owner, spender, amountOrId);
        } else {
            allowance[msg.sender][spender] = amountOrId;

            emit Approval(msg.sender, spender, amountOrId);
        }

        return true;
    }

    /// @notice Function native approvals
    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(
        address from,
        address to,
        uint256 amountOrId
    ) public virtual {
        if (amountOrId <= minted) {
            if (from != _ownerOf[amountOrId]) {
                revert InvalidSender();
            }

            if (to == address(0)) {
                revert InvalidRecipient();
            }

            if (
                msg.sender != from &&
                !isApprovedForAll[from][msg.sender] &&
                msg.sender != getApproved[amountOrId]
            ) {
                revert Unauthorized();
            }

            balanceOf[from] -= _getUnit();

            unchecked {
                balanceOf[to] += _getUnit();
            }

            _ownerOf[amountOrId] = to;
            delete getApproved[amountOrId];

            // update _owned for sender
            uint256 updatedId = _owned[from][_owned[from].length - 1];
            _owned[from][_ownedIndex[amountOrId]] = updatedId;
            // pop
            _owned[from].pop();
            // update index for the moved id
            _ownedIndex[updatedId] = _ownedIndex[amountOrId];
            // push token to to owned
            _owned[to].push(amountOrId);
            // update index for to owned
            _ownedIndex[amountOrId] = _owned[to].length - 1;

            emit Transfer(from, to, amountOrId);
            emit ERC20Transfer(from, to, _getUnit());
        } else {
            uint256 allowed = allowance[from][msg.sender];

            if (allowed != type(uint256).max)
                allowance[from][msg.sender] = allowed - amountOrId;

            _transfer(from, to, amountOrId);
        }
    }

    /// @notice Function for fractional transfers
    function transfer(
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    /// @notice Function for native transfers with contract support
    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Function for native transfers with contract support and callback data
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Internal function for fractional transfers
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual returns (bool) {
        uint256 unit = _getUnit();
        uint256 balanceBeforeSender = balanceOf[from];
        uint256 balanceBeforeReceiver = balanceOf[to];

        balanceOf[from] -= amount;

        unchecked {
            balanceOf[to] += amount;
        }

        // Skip burn for certain addresses to save gas
        if (!whitelist[from]) {
            uint256 tokens_to_burn = (balanceBeforeSender / unit) -
                (balanceOf[from] / unit);
            for (uint256 i = 0; i < tokens_to_burn; i++) {
                _burn(from);
            }
        }

        // Skip minting for certain addresses to save gas
        if (!whitelist[to]) {
            uint256 tokens_to_mint = (balanceOf[to] / unit) -
                (balanceBeforeReceiver / unit);
            for (uint256 i = 0; i < tokens_to_mint; i++) {
                _mint(to);
            }
        }

        emit ERC20Transfer(from, to, amount);
        return true;
    }

    // Internal utility logic
    function _getUnit() internal view returns (uint256) {
        return 10 ** decimals;
    }

    function _mint(address to) internal virtual {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

        emit Transfer(address(0), to, id);
    }

    function _burn(address from) internal virtual {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        emit Transfer(from, address(0), id);
    }

    function _setNameSymbol(
        string memory _name,
        string memory _symbol
    ) internal {
        name = _name;
        symbol = _symbol;
    }
}
// File: contracts/Pepemon.sol







contract PEPEMON is ERC404, Pausable, ReentrancyGuard {
    string public baseTokenURI;
    uint256 public buyLimit;
    uint256 public sellLimit;
    uint256 public txLimit;
    mapping (address => uint256) public userBuylimit;
    mapping (address => uint256) public userSelllimit;
    using Strings for uint256;
    bool public applyTxLimit;

    constructor(
        address _owner,
        uint256 _initialSupply,
        uint8 _decimal,
        uint256 _buylimit,
        uint256 _selllimit
    ) ERC404("Pepemon", "PEPEMON", _decimal, _initialSupply, _owner) {
        balanceOf[_owner] = _initialSupply * 10 ** _decimal;
        buyLimit = _buylimit * 10 ** _decimal;
        sellLimit = _selllimit * 10 ** _decimal;
        txLimit = 10 * 10 ** _decimal;
    }

    function setLimit(uint256 _buylimit, uint256 _selllimit) public onlyOwner{
        buyLimit = _buylimit;
        sellLimit = _selllimit;
    }

    function _mint(
        address to
    ) internal override whenNotPaused{
        return super._mint(to);
    }

    function startApplyingLimit() external onlyOwner{
        applyTxLimit = true;
    }

    function stopApplyingLimit() external onlyOwner{
        applyTxLimit = false;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override virtual whenNotPaused returns (bool){
        if(applyTxLimit){
            require(amount < txLimit, "exceed tx limit");
        }
        if(!whitelist[from]){
            userSelllimit[from] += amount;
            require(userSelllimit[from] <= sellLimit, "not allowed anymore to sell");
        }
        if(!whitelist[to]){
            userBuylimit[to] += amount;
            require(userBuylimit[to] <= buyLimit, "not allowed anymore to buy");
        }
        return super._transfer(from, to, amount);
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }

    function setNameSymbol(
        string memory _name,
        string memory _symbol
    ) public onlyOwner {
        _setNameSymbol(_name, _symbol);
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        return bytes(baseTokenURI).length > 0 ? string.concat(baseTokenURI, id.toString(), ".json") : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint8","name":"_decimal","type":"uint8"},{"internalType":"uint256","name":"_buylimit","type":"uint256"},{"internalType":"uint256","name":"_selllimit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"applyTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","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":"id","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":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buylimit","type":"uint256"},{"internalType":"uint256","name":"_selllimit","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startApplyingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopApplyingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountOrId","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":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userBuylimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userSelllimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c060405234801562000010575f80fd5b506040516200455238038062004552833981810160405281019062000036919062000448565b6040518060400160405280600781526020017f506570656d6f6e000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f504550454d4f4e00000000000000000000000000000000000000000000000000815250848688805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000119575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001109190620004dd565b60405180910390fd5b6200012a816200027760201b60201c565b5084600290816200013c919062000753565b5083600390816200014e919062000753565b508260ff1660808160ff1681525050608051600a6200016e9190620009b4565b826200017b919062000a04565b60a0818152505050505050505f600d5f6101000a81548160ff0219169083151502179055506001600e8190555082600a620001b79190620009b4565b84620001c4919062000a04565b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555082600a620002149190620009b4565b8262000221919062000a04565b60108190555082600a620002369190620009b4565b8162000243919062000a04565b60118190555082600a620002589190620009b4565b600a62000266919062000a04565b601281905550505050505062000a4e565b60015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055620002ac81620002af60201b60201c565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200039f8262000374565b9050919050565b620003b18162000393565b8114620003bc575f80fd5b50565b5f81519050620003cf81620003a6565b92915050565b5f819050919050565b620003e981620003d5565b8114620003f4575f80fd5b50565b5f815190506200040781620003de565b92915050565b5f60ff82169050919050565b62000424816200040d565b81146200042f575f80fd5b50565b5f81519050620004428162000419565b92915050565b5f805f805f60a0868803121562000464576200046362000370565b5b5f6200047388828901620003bf565b95505060206200048688828901620003f7565b9450506040620004998882890162000432565b9350506060620004ac88828901620003f7565b9250506080620004bf88828901620003f7565b9150509295509295909350565b620004d78162000393565b82525050565b5f602082019050620004f25f830184620004cc565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200057457607f821691505b6020821081036200058a57620005896200052f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005b1565b620005fa8683620005b1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6200063b620006356200062f84620003d5565b62000612565b620003d5565b9050919050565b5f819050919050565b62000656836200061b565b6200066e620006658262000642565b848454620005bd565b825550505050565b5f90565b6200068462000676565b620006918184846200064b565b505050565b5b81811015620006b857620006ac5f826200067a565b60018101905062000697565b5050565b601f8211156200070757620006d18162000590565b620006dc84620005a2565b81016020851015620006ec578190505b62000704620006fb85620005a2565b83018262000696565b50505b505050565b5f82821c905092915050565b5f620007295f19846008026200070c565b1980831691505092915050565b5f62000743838362000718565b9150826002028217905092915050565b6200075e82620004f8565b67ffffffffffffffff8111156200077a576200077962000502565b5b6200078682546200055c565b62000793828285620006bc565b5f60209050601f831160018114620007c9575f8415620007b4578287015190505b620007c0858262000736565b8655506200082f565b601f198416620007d98662000590565b5f5b828110156200080257848901518255600182019150602085019450602081019050620007db565b868310156200082257848901516200081e601f89168262000718565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620008c15780860481111562000899576200089862000837565b5b6001851615620008a95780820291505b8081029050620008b98562000864565b945062000879565b94509492505050565b5f82620008db5760019050620009ad565b81620008ea575f9050620009ad565b81600181146200090357600281146200090e5762000944565b6001915050620009ad565b60ff84111562000923576200092262000837565b5b8360020a9150848211156200093d576200093c62000837565b5b50620009ad565b5060208310610133831016604e8410600b84101617156200097e5782820a90508381111562000978576200097762000837565b5b620009ad565b6200098d848484600162000870565b92509050818404811115620009a757620009a662000837565b5b81810290505b9392505050565b5f620009c082620003d5565b9150620009cd836200040d565b9250620009fc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008ca565b905092915050565b5f62000a1082620003d5565b915062000a1d83620003d5565b925082820262000a2d81620003d5565b9150828204841483151762000a475762000a4662000837565b5b5092915050565b60805160a051613adb62000a775f395f610a8801525f81816112cf0152611c460152613adb5ff3fe608060405234801561000f575f80fd5b5060043610610225575f3560e01c8063715018a61161012e578063c87b56dd116100b6578063e30c39781161007a578063e30c39781461063f578063e985e9c51461065d578063f0306ea41461068d578063f2fde38b14610697578063f349b173146106b357610225565b8063c87b56dd14610575578063d547cfb7146105a5578063dd62ed3e146105c3578063e0df5b6f146105f3578063e2d6f33a1461060f57610225565b80639b19251a116100fd5780639b19251a146104d3578063a22cb46514610503578063a9059cbb1461051f578063b88d4fde1461054f578063c6a6035a1461056b57610225565b8063715018a61461048357806379ba50971461048d5780638da5cb5b1461049757806395d89b41146104b557610225565b80634f02c420116101b1578063589210d911610180578063589210d9146103c95780635c975abb146103e75780636352211e146104055780636caae8321461043557806370a082311461045357610225565b80634f02c420146103555780634f91e48c14610373578063504334c21461039157806353d6fd59146103ad57610225565b80631e70b6df116101f85780631e70b6df146102c5578063207add91146102e357806323b872dd146102ff578063313ce5671461031b57806342842e0e1461033957610225565b806306fdde0314610229578063081812fc14610247578063095ea7b31461027757806318160ddd146102a7575b5f80fd5b6102316106e3565b60405161023e9190612b55565b60405180910390f35b610261600480360381019061025c9190612bb9565b61076f565b60405161026e9190612c23565b60405180910390f35b610291600480360381019061028c9190612c66565b61079f565b60405161029e9190612cbe565b60405180910390f35b6102af610a86565b6040516102bc9190612ce6565b60405180910390f35b6102cd610aaa565b6040516102da9190612cbe565b60405180910390f35b6102fd60048036038101906102f89190612cff565b610abc565b005b61031960048036038101906103149190612d3d565b610ad6565b005b6103236112cd565b6040516103309190612da8565b60405180910390f35b610353600480360381019061034e9190612d3d565b6112f1565b005b61035d611420565b60405161036a9190612ce6565b60405180910390f35b61037b611426565b6040516103889190612ce6565b60405180910390f35b6103ab60048036038101906103a69190612eed565b61142c565b005b6103c760048036038101906103c29190612f8d565b611442565b005b6103d16114a2565b6040516103de9190612ce6565b60405180910390f35b6103ef6114a8565b6040516103fc9190612cbe565b60405180910390f35b61041f600480360381019061041a9190612bb9565b6114bd565b60405161042c9190612c23565b60405180910390f35b61043d61155b565b60405161044a9190612ce6565b60405180910390f35b61046d60048036038101906104689190612fcb565b611561565b60405161047a9190612ce6565b60405180910390f35b61048b611576565b005b610495611589565b005b61049f611617565b6040516104ac9190612c23565b60405180910390f35b6104bd61163e565b6040516104ca9190612b55565b60405180910390f35b6104ed60048036038101906104e89190612fcb565b6116ca565b6040516104fa9190612cbe565b60405180910390f35b61051d60048036038101906105189190612f8d565b6116e7565b005b61053960048036038101906105349190612c66565b6117df565b6040516105469190612cbe565b60405180910390f35b61056960048036038101906105649190613053565b6117f3565b005b610573611928565b005b61058f600480360381019061058a9190612bb9565b61194c565b60405161059c9190612b55565b60405180910390f35b6105ad6119aa565b6040516105ba9190612b55565b60405180910390f35b6105dd60048036038101906105d891906130d7565b611a36565b6040516105ea9190612ce6565b60405180910390f35b61060d60048036038101906106089190613115565b611a56565b005b61062960048036038101906106249190612fcb565b611a71565b6040516106369190612ce6565b60405180910390f35b610647611a86565b6040516106549190612c23565b60405180910390f35b610677600480360381019061067291906130d7565b611aae565b6040516106849190612cbe565b60405180910390f35b610695611ad8565b005b6106b160048036038101906106ac9190612fcb565b611afb565b005b6106cd60048036038101906106c89190612fcb565b611ba7565b6040516106da9190612ce6565b60405180910390f35b600280546106f090613189565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90613189565b80156107675780601f1061073e57610100808354040283529160200191610767565b820191905f5260205f20905b81548152906001019060200180831161074a57829003601f168201915b505050505081565b6007602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60045482111580156107b157505f82115b15610999575f60095f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156108a8575060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156108df576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360075f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161098b9190612ce6565b60405180910390a350610a7c565b8160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a739190612ce6565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60155f9054906101000a900460ff1681565b610ac4611bbc565b81601081905550806011819055505050565b600454811161118e5760095f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610b74576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd9576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c97575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610cff575060075f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610d36576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3e611c43565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d8991906131e6565b92505081905550610d98611c43565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610eee91906131e6565b81548110610eff57610efe613219565b5b905f5260205f200154905080600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600b5f8581526020019081526020015f205481548110610f6b57610f6a613219565b5b905f5260205f200181905550600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610fc457610fc3613246565b5b600190038181905f5260205f20015f90559055600b5f8381526020019081526020015f2054600b5f8381526020019081526020015f2081905550600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506110ac91906131e6565b600b5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487611173611c43565b6040516111809190612ce6565b60405180910390a3506112c8565b5f60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112ba57818161123d91906131e6565b60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b6112c5848484611c76565b50505b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112fc838383610ad6565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113e4575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401611382939291906132a6565b6020604051808303815f875af115801561139e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c29190613343565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561141b576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60045481565b60115481565b611434611bbc565b61143e8282611f34565b5050565b61144a611bbc565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60105481565b5f600d5f9054906101000a900460ff16905090565b5f60095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611556576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60125481565b6005602052805f5260405f205f915090505481565b61157e611bbc565b6115875f611f58565b565b5f611592611f88565b90508073ffffffffffffffffffffffffffffffffffffffff166115b3611a86565b73ffffffffffffffffffffffffffffffffffffffff161461160b57806040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116029190612c23565b60405180910390fd5b61161481611f58565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6003805461164b90613189565b80601f016020809104026020016040519081016040528092919081815260200182805461167790613189565b80156116c25780601f10611699576101008083540402835291602001916116c2565b820191905f5260205f20905b8154815290600101906020018083116116a557829003601f168201915b505050505081565b600c602052805f5260405f205f915054906101000a900460ff1681565b8060085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117d39190612cbe565b60405180910390a35050565b5f6117eb338484611c76565b905092915050565b6117fe858585610ad6565b5f8473ffffffffffffffffffffffffffffffffffffffff163b141580156118ea575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b815260040161188895949392919061339a565b6020604051808303815f875af11580156118a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c89190613343565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611921576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b611930611bbc565b600160155f6101000a81548160ff021916908315150217905550565b60605f600f805461195c90613189565b9050116119775760405180602001604052805f8152506119a3565b600f61198283611f8f565b6040516020016119939291906134d8565b6040516020818303038152906040525b9050919050565b600f80546119b790613189565b80601f01602080910402602001604051908101604052809291908181526020018280546119e390613189565b8015611a2e5780601f10611a0557610100808354040283529160200191611a2e565b820191905f5260205f20905b815481529060010190602001808311611a1157829003601f168201915b505050505081565b6006602052815f5260405f20602052805f5260405f205f91509150505481565b611a5e611bbc565b80600f9081611a6d9190613695565b5050565b6013602052805f5260405f205f915090505481565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b611ae0611bbc565b5f60155f6101000a81548160ff021916908315150217905550565b611b03611bbc565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611b62611617565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6014602052805f5260405f205f915090505481565b611bc4611f88565b73ffffffffffffffffffffffffffffffffffffffff16611be2611617565b73ffffffffffffffffffffffffffffffffffffffff1614611c4157611c05611f88565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611c389190612c23565b60405180910390fd5b565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a611c719190613893565b905090565b5f611c7f612059565b60155f9054906101000a900460ff1615611cd8576012548210611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613927565b60405180910390fd5b5b600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611dfc578160145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611d729190613945565b9250508190555060115460145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df2906139c2565b60405180910390fd5b5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611f20578160135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611e969190613945565b9250508190555060105460135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613a2a565b60405180910390fd5b5b611f2b84848461209a565b90509392505050565b8160029081611f439190613695565b508060039081611f539190613695565b505050565b60015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055611f85816123de565b50565b5f33905090565b60605f6001611f9d8461249f565b0190505f8167ffffffffffffffff811115611fbb57611fba612dc9565b5b6040519080825280601f01601f191660200182016040528015611fed5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561204e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161204357612042613a48565b5b0494505f8503611ffa575b819350505050919050565b6120616114a8565b15612098576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f806120a4611c43565b90505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460055f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461217491906131e6565b925050819055508460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600c5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612298575f8360055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461225d9190613a75565b84846122699190613a75565b61227391906131e6565b90505f5b8181101561229557612288896125f0565b8080600101915050612277565b50505b600c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661236b575f83826122f39190613a75565b8460055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461233c9190613a75565b61234691906131e6565b90505f5b818110156123685761235b88612835565b808060010191505061234a565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516123c89190612ce6565b60405180910390a3600193505050509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124fb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124f1576124f0613a48565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612538576d04ee2d6d415b85acef8100000000838161252e5761252d613a48565b5b0492506020810190505b662386f26fc10000831061256757662386f26fc10000838161255d5761255c613a48565b5b0492506010810190505b6305f5e1008310612590576305f5e100838161258657612585613a48565b5b0492506008810190505b61271083106125b55761271083816125ab576125aa613a48565b5b0492506004810190505b606483106125d857606483816125ce576125cd613a48565b5b0492506002810190505b600a83106125e7576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612655576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126e091906131e6565b815481106126f1576126f0613219565b5b905f5260205f2001549050600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061274957612748613246565b5b600190038181905f5260205f20015f90559055600b5f8281526020019081526020015f205f905560095f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61283d612059565b61284681612849565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ae576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f81548092919060010191905055505f60045490505f73ffffffffffffffffffffffffffffffffffffffff1660095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461295a576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a5791906131e6565b600b5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612b02578082015181840152602081019050612ae7565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612b2782612acb565b612b318185612ad5565b9350612b41818560208601612ae5565b612b4a81612b0d565b840191505092915050565b5f6020820190508181035f830152612b6d8184612b1d565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612b9881612b86565b8114612ba2575f80fd5b50565b5f81359050612bb381612b8f565b92915050565b5f60208284031215612bce57612bcd612b7e565b5b5f612bdb84828501612ba5565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c0d82612be4565b9050919050565b612c1d81612c03565b82525050565b5f602082019050612c365f830184612c14565b92915050565b612c4581612c03565b8114612c4f575f80fd5b50565b5f81359050612c6081612c3c565b92915050565b5f8060408385031215612c7c57612c7b612b7e565b5b5f612c8985828601612c52565b9250506020612c9a85828601612ba5565b9150509250929050565b5f8115159050919050565b612cb881612ca4565b82525050565b5f602082019050612cd15f830184612caf565b92915050565b612ce081612b86565b82525050565b5f602082019050612cf95f830184612cd7565b92915050565b5f8060408385031215612d1557612d14612b7e565b5b5f612d2285828601612ba5565b9250506020612d3385828601612ba5565b9150509250929050565b5f805f60608486031215612d5457612d53612b7e565b5b5f612d6186828701612c52565b9350506020612d7286828701612c52565b9250506040612d8386828701612ba5565b9150509250925092565b5f60ff82169050919050565b612da281612d8d565b82525050565b5f602082019050612dbb5f830184612d99565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612dff82612b0d565b810181811067ffffffffffffffff82111715612e1e57612e1d612dc9565b5b80604052505050565b5f612e30612b75565b9050612e3c8282612df6565b919050565b5f67ffffffffffffffff821115612e5b57612e5a612dc9565b5b612e6482612b0d565b9050602081019050919050565b828183375f83830152505050565b5f612e91612e8c84612e41565b612e27565b905082815260208101848484011115612ead57612eac612dc5565b5b612eb8848285612e71565b509392505050565b5f82601f830112612ed457612ed3612dc1565b5b8135612ee4848260208601612e7f565b91505092915050565b5f8060408385031215612f0357612f02612b7e565b5b5f83013567ffffffffffffffff811115612f2057612f1f612b82565b5b612f2c85828601612ec0565b925050602083013567ffffffffffffffff811115612f4d57612f4c612b82565b5b612f5985828601612ec0565b9150509250929050565b612f6c81612ca4565b8114612f76575f80fd5b50565b5f81359050612f8781612f63565b92915050565b5f8060408385031215612fa357612fa2612b7e565b5b5f612fb085828601612c52565b9250506020612fc185828601612f79565b9150509250929050565b5f60208284031215612fe057612fdf612b7e565b5b5f612fed84828501612c52565b91505092915050565b5f80fd5b5f80fd5b5f8083601f84011261301357613012612dc1565b5b8235905067ffffffffffffffff8111156130305761302f612ff6565b5b60208301915083600182028301111561304c5761304b612ffa565b5b9250929050565b5f805f805f6080868803121561306c5761306b612b7e565b5b5f61307988828901612c52565b955050602061308a88828901612c52565b945050604061309b88828901612ba5565b935050606086013567ffffffffffffffff8111156130bc576130bb612b82565b5b6130c888828901612ffe565b92509250509295509295909350565b5f80604083850312156130ed576130ec612b7e565b5b5f6130fa85828601612c52565b925050602061310b85828601612c52565b9150509250929050565b5f6020828403121561312a57613129612b7e565b5b5f82013567ffffffffffffffff81111561314757613146612b82565b5b61315384828501612ec0565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806131a057607f821691505b6020821081036131b3576131b261315c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6131f082612b86565b91506131fb83612b86565b9250828203905081811115613213576132126131b9565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6132915f83613273565b915061329c82613283565b5f82019050919050565b5f6080820190506132b95f830186612c14565b6132c66020830185612c14565b6132d36040830184612cd7565b81810360608301526132e481613286565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613322816132ee565b811461332c575f80fd5b50565b5f8151905061333d81613319565b92915050565b5f6020828403121561335857613357612b7e565b5b5f6133658482850161332f565b91505092915050565b5f6133798385613273565b9350613386838584612e71565b61338f83612b0d565b840190509392505050565b5f6080820190506133ad5f830188612c14565b6133ba6020830187612c14565b6133c76040830186612cd7565b81810360608301526133da81848661336e565b90509695505050505050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f815461340e81613189565b61341881866133e6565b9450600182165f8114613432576001811461344757613479565b60ff1983168652811515820286019350613479565b613450856133f0565b5f5b8381101561347157815481890152600182019150602081019050613452565b838801955050505b50505092915050565b5f61348c82612acb565b61349681856133e6565b93506134a6818560208601612ae5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f6134e38285613402565b91506134ef8284613482565b91506134fa826134b2565b6005820191508190509392505050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613519565b61355e8683613519565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61359961359461358f84612b86565b613576565b612b86565b9050919050565b5f819050919050565b6135b28361357f565b6135c66135be826135a0565b848454613525565b825550505050565b5f90565b6135da6135ce565b6135e58184846135a9565b505050565b5b81811015613608576135fd5f826135d2565b6001810190506135eb565b5050565b601f82111561364d5761361e816133f0565b6136278461350a565b81016020851015613636578190505b61364a6136428561350a565b8301826135ea565b50505b505050565b5f82821c905092915050565b5f61366d5f1984600802613652565b1980831691505092915050565b5f613685838361365e565b9150826002028217905092915050565b61369e82612acb565b67ffffffffffffffff8111156136b7576136b6612dc9565b5b6136c18254613189565b6136cc82828561360c565b5f60209050601f8311600181146136fd575f84156136eb578287015190505b6136f5858261367a565b86555061375c565b601f19841661370b866133f0565b5f5b828110156137325784890151825560018201915060208501945060208101905061370d565b8683101561374f578489015161374b601f89168261365e565b8355505b6001600288020188555050505b505050505050565b5f8160011c9050919050565b5f808291508390505b60018511156137b957808604811115613795576137946131b9565b5b60018516156137a45780820291505b80810290506137b285613764565b9450613779565b94509492505050565b5f826137d1576001905061388c565b816137de575f905061388c565b81600181146137f457600281146137fe5761382d565b600191505061388c565b60ff8411156138105761380f6131b9565b5b8360020a915084821115613827576138266131b9565b5b5061388c565b5060208310610133831016604e8410600b84101617156138625782820a90508381111561385d5761385c6131b9565b5b61388c565b61386f8484846001613770565b92509050818404811115613886576138856131b9565b5b81810290505b9392505050565b5f61389d82612b86565b91506138a883612d8d565b92506138d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846137c2565b905092915050565b7f657863656564207478206c696d697400000000000000000000000000000000005f82015250565b5f613911600f83612ad5565b915061391c826138dd565b602082019050919050565b5f6020820190508181035f83015261393e81613905565b9050919050565b5f61394f82612b86565b915061395a83612b86565b9250828201905080821115613972576139716131b9565b5b92915050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000005f82015250565b5f6139ac601b83612ad5565b91506139b782613978565b602082019050919050565b5f6020820190508181035f8301526139d9816139a0565b9050919050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000005f82015250565b5f613a14601a83612ad5565b9150613a1f826139e0565b602082019050919050565b5f6020820190508181035f830152613a4181613a08565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613a7f82612b86565b9150613a8a83612b86565b925082613a9a57613a99613a48565b5b82820490509291505056fea2646970667358221220405737b973eb5b84f6796ca1ae3fbce4db61d84e592bae7f870a0fac6cbf8d5f64736f6c63430008180033000000000000000000000000a9a6d58e2970bdfbf92693b739f9154f21385e0e0000000000000000000000000000000000000000000000000000000000003a98000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610225575f3560e01c8063715018a61161012e578063c87b56dd116100b6578063e30c39781161007a578063e30c39781461063f578063e985e9c51461065d578063f0306ea41461068d578063f2fde38b14610697578063f349b173146106b357610225565b8063c87b56dd14610575578063d547cfb7146105a5578063dd62ed3e146105c3578063e0df5b6f146105f3578063e2d6f33a1461060f57610225565b80639b19251a116100fd5780639b19251a146104d3578063a22cb46514610503578063a9059cbb1461051f578063b88d4fde1461054f578063c6a6035a1461056b57610225565b8063715018a61461048357806379ba50971461048d5780638da5cb5b1461049757806395d89b41146104b557610225565b80634f02c420116101b1578063589210d911610180578063589210d9146103c95780635c975abb146103e75780636352211e146104055780636caae8321461043557806370a082311461045357610225565b80634f02c420146103555780634f91e48c14610373578063504334c21461039157806353d6fd59146103ad57610225565b80631e70b6df116101f85780631e70b6df146102c5578063207add91146102e357806323b872dd146102ff578063313ce5671461031b57806342842e0e1461033957610225565b806306fdde0314610229578063081812fc14610247578063095ea7b31461027757806318160ddd146102a7575b5f80fd5b6102316106e3565b60405161023e9190612b55565b60405180910390f35b610261600480360381019061025c9190612bb9565b61076f565b60405161026e9190612c23565b60405180910390f35b610291600480360381019061028c9190612c66565b61079f565b60405161029e9190612cbe565b60405180910390f35b6102af610a86565b6040516102bc9190612ce6565b60405180910390f35b6102cd610aaa565b6040516102da9190612cbe565b60405180910390f35b6102fd60048036038101906102f89190612cff565b610abc565b005b61031960048036038101906103149190612d3d565b610ad6565b005b6103236112cd565b6040516103309190612da8565b60405180910390f35b610353600480360381019061034e9190612d3d565b6112f1565b005b61035d611420565b60405161036a9190612ce6565b60405180910390f35b61037b611426565b6040516103889190612ce6565b60405180910390f35b6103ab60048036038101906103a69190612eed565b61142c565b005b6103c760048036038101906103c29190612f8d565b611442565b005b6103d16114a2565b6040516103de9190612ce6565b60405180910390f35b6103ef6114a8565b6040516103fc9190612cbe565b60405180910390f35b61041f600480360381019061041a9190612bb9565b6114bd565b60405161042c9190612c23565b60405180910390f35b61043d61155b565b60405161044a9190612ce6565b60405180910390f35b61046d60048036038101906104689190612fcb565b611561565b60405161047a9190612ce6565b60405180910390f35b61048b611576565b005b610495611589565b005b61049f611617565b6040516104ac9190612c23565b60405180910390f35b6104bd61163e565b6040516104ca9190612b55565b60405180910390f35b6104ed60048036038101906104e89190612fcb565b6116ca565b6040516104fa9190612cbe565b60405180910390f35b61051d60048036038101906105189190612f8d565b6116e7565b005b61053960048036038101906105349190612c66565b6117df565b6040516105469190612cbe565b60405180910390f35b61056960048036038101906105649190613053565b6117f3565b005b610573611928565b005b61058f600480360381019061058a9190612bb9565b61194c565b60405161059c9190612b55565b60405180910390f35b6105ad6119aa565b6040516105ba9190612b55565b60405180910390f35b6105dd60048036038101906105d891906130d7565b611a36565b6040516105ea9190612ce6565b60405180910390f35b61060d60048036038101906106089190613115565b611a56565b005b61062960048036038101906106249190612fcb565b611a71565b6040516106369190612ce6565b60405180910390f35b610647611a86565b6040516106549190612c23565b60405180910390f35b610677600480360381019061067291906130d7565b611aae565b6040516106849190612cbe565b60405180910390f35b610695611ad8565b005b6106b160048036038101906106ac9190612fcb565b611afb565b005b6106cd60048036038101906106c89190612fcb565b611ba7565b6040516106da9190612ce6565b60405180910390f35b600280546106f090613189565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90613189565b80156107675780601f1061073e57610100808354040283529160200191610767565b820191905f5260205f20905b81548152906001019060200180831161074a57829003601f168201915b505050505081565b6007602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60045482111580156107b157505f82115b15610999575f60095f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156108a8575060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156108df576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360075f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161098b9190612ce6565b60405180910390a350610a7c565b8160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a739190612ce6565b60405180910390a35b6001905092915050565b7f00000000000000000000000000000000000000000000032d26d12e980b60000081565b60155f9054906101000a900460ff1681565b610ac4611bbc565b81601081905550806011819055505050565b600454811161118e5760095f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610b74576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd9576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c97575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610cff575060075f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610d36576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3e611c43565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d8991906131e6565b92505081905550610d98611c43565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610eee91906131e6565b81548110610eff57610efe613219565b5b905f5260205f200154905080600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600b5f8581526020019081526020015f205481548110610f6b57610f6a613219565b5b905f5260205f200181905550600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610fc457610fc3613246565b5b600190038181905f5260205f20015f90559055600b5f8381526020019081526020015f2054600b5f8381526020019081526020015f2081905550600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506110ac91906131e6565b600b5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487611173611c43565b6040516111809190612ce6565b60405180910390a3506112c8565b5f60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112ba57818161123d91906131e6565b60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b6112c5848484611c76565b50505b505050565b7f000000000000000000000000000000000000000000000000000000000000001281565b6112fc838383610ad6565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113e4575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401611382939291906132a6565b6020604051808303815f875af115801561139e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c29190613343565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561141b576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60045481565b60115481565b611434611bbc565b61143e8282611f34565b5050565b61144a611bbc565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60105481565b5f600d5f9054906101000a900460ff16905090565b5f60095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611556576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60125481565b6005602052805f5260405f205f915090505481565b61157e611bbc565b6115875f611f58565b565b5f611592611f88565b90508073ffffffffffffffffffffffffffffffffffffffff166115b3611a86565b73ffffffffffffffffffffffffffffffffffffffff161461160b57806040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116029190612c23565b60405180910390fd5b61161481611f58565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6003805461164b90613189565b80601f016020809104026020016040519081016040528092919081815260200182805461167790613189565b80156116c25780601f10611699576101008083540402835291602001916116c2565b820191905f5260205f20905b8154815290600101906020018083116116a557829003601f168201915b505050505081565b600c602052805f5260405f205f915054906101000a900460ff1681565b8060085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117d39190612cbe565b60405180910390a35050565b5f6117eb338484611c76565b905092915050565b6117fe858585610ad6565b5f8473ffffffffffffffffffffffffffffffffffffffff163b141580156118ea575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b815260040161188895949392919061339a565b6020604051808303815f875af11580156118a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c89190613343565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611921576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b611930611bbc565b600160155f6101000a81548160ff021916908315150217905550565b60605f600f805461195c90613189565b9050116119775760405180602001604052805f8152506119a3565b600f61198283611f8f565b6040516020016119939291906134d8565b6040516020818303038152906040525b9050919050565b600f80546119b790613189565b80601f01602080910402602001604051908101604052809291908181526020018280546119e390613189565b8015611a2e5780601f10611a0557610100808354040283529160200191611a2e565b820191905f5260205f20905b815481529060010190602001808311611a1157829003601f168201915b505050505081565b6006602052815f5260405f20602052805f5260405f205f91509150505481565b611a5e611bbc565b80600f9081611a6d9190613695565b5050565b6013602052805f5260405f205f915090505481565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b611ae0611bbc565b5f60155f6101000a81548160ff021916908315150217905550565b611b03611bbc565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611b62611617565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6014602052805f5260405f205f915090505481565b611bc4611f88565b73ffffffffffffffffffffffffffffffffffffffff16611be2611617565b73ffffffffffffffffffffffffffffffffffffffff1614611c4157611c05611f88565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611c389190612c23565b60405180910390fd5b565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a611c719190613893565b905090565b5f611c7f612059565b60155f9054906101000a900460ff1615611cd8576012548210611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613927565b60405180910390fd5b5b600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611dfc578160145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611d729190613945565b9250508190555060115460145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df2906139c2565b60405180910390fd5b5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611f20578160135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611e969190613945565b9250508190555060105460135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613a2a565b60405180910390fd5b5b611f2b84848461209a565b90509392505050565b8160029081611f439190613695565b508060039081611f539190613695565b505050565b60015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055611f85816123de565b50565b5f33905090565b60605f6001611f9d8461249f565b0190505f8167ffffffffffffffff811115611fbb57611fba612dc9565b5b6040519080825280601f01601f191660200182016040528015611fed5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561204e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161204357612042613a48565b5b0494505f8503611ffa575b819350505050919050565b6120616114a8565b15612098576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f806120a4611c43565b90505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460055f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461217491906131e6565b925050819055508460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600c5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612298575f8360055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461225d9190613a75565b84846122699190613a75565b61227391906131e6565b90505f5b8181101561229557612288896125f0565b8080600101915050612277565b50505b600c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661236b575f83826122f39190613a75565b8460055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461233c9190613a75565b61234691906131e6565b90505f5b818110156123685761235b88612835565b808060010191505061234a565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516123c89190612ce6565b60405180910390a3600193505050509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124fb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124f1576124f0613a48565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612538576d04ee2d6d415b85acef8100000000838161252e5761252d613a48565b5b0492506020810190505b662386f26fc10000831061256757662386f26fc10000838161255d5761255c613a48565b5b0492506010810190505b6305f5e1008310612590576305f5e100838161258657612585613a48565b5b0492506008810190505b61271083106125b55761271083816125ab576125aa613a48565b5b0492506004810190505b606483106125d857606483816125ce576125cd613a48565b5b0492506002810190505b600a83106125e7576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612655576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126e091906131e6565b815481106126f1576126f0613219565b5b905f5260205f2001549050600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061274957612748613246565b5b600190038181905f5260205f20015f90559055600b5f8281526020019081526020015f205f905560095f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61283d612059565b61284681612849565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ae576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f81548092919060010191905055505f60045490505f73ffffffffffffffffffffffffffffffffffffffff1660095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461295a576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a5791906131e6565b600b5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612b02578082015181840152602081019050612ae7565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612b2782612acb565b612b318185612ad5565b9350612b41818560208601612ae5565b612b4a81612b0d565b840191505092915050565b5f6020820190508181035f830152612b6d8184612b1d565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612b9881612b86565b8114612ba2575f80fd5b50565b5f81359050612bb381612b8f565b92915050565b5f60208284031215612bce57612bcd612b7e565b5b5f612bdb84828501612ba5565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c0d82612be4565b9050919050565b612c1d81612c03565b82525050565b5f602082019050612c365f830184612c14565b92915050565b612c4581612c03565b8114612c4f575f80fd5b50565b5f81359050612c6081612c3c565b92915050565b5f8060408385031215612c7c57612c7b612b7e565b5b5f612c8985828601612c52565b9250506020612c9a85828601612ba5565b9150509250929050565b5f8115159050919050565b612cb881612ca4565b82525050565b5f602082019050612cd15f830184612caf565b92915050565b612ce081612b86565b82525050565b5f602082019050612cf95f830184612cd7565b92915050565b5f8060408385031215612d1557612d14612b7e565b5b5f612d2285828601612ba5565b9250506020612d3385828601612ba5565b9150509250929050565b5f805f60608486031215612d5457612d53612b7e565b5b5f612d6186828701612c52565b9350506020612d7286828701612c52565b9250506040612d8386828701612ba5565b9150509250925092565b5f60ff82169050919050565b612da281612d8d565b82525050565b5f602082019050612dbb5f830184612d99565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612dff82612b0d565b810181811067ffffffffffffffff82111715612e1e57612e1d612dc9565b5b80604052505050565b5f612e30612b75565b9050612e3c8282612df6565b919050565b5f67ffffffffffffffff821115612e5b57612e5a612dc9565b5b612e6482612b0d565b9050602081019050919050565b828183375f83830152505050565b5f612e91612e8c84612e41565b612e27565b905082815260208101848484011115612ead57612eac612dc5565b5b612eb8848285612e71565b509392505050565b5f82601f830112612ed457612ed3612dc1565b5b8135612ee4848260208601612e7f565b91505092915050565b5f8060408385031215612f0357612f02612b7e565b5b5f83013567ffffffffffffffff811115612f2057612f1f612b82565b5b612f2c85828601612ec0565b925050602083013567ffffffffffffffff811115612f4d57612f4c612b82565b5b612f5985828601612ec0565b9150509250929050565b612f6c81612ca4565b8114612f76575f80fd5b50565b5f81359050612f8781612f63565b92915050565b5f8060408385031215612fa357612fa2612b7e565b5b5f612fb085828601612c52565b9250506020612fc185828601612f79565b9150509250929050565b5f60208284031215612fe057612fdf612b7e565b5b5f612fed84828501612c52565b91505092915050565b5f80fd5b5f80fd5b5f8083601f84011261301357613012612dc1565b5b8235905067ffffffffffffffff8111156130305761302f612ff6565b5b60208301915083600182028301111561304c5761304b612ffa565b5b9250929050565b5f805f805f6080868803121561306c5761306b612b7e565b5b5f61307988828901612c52565b955050602061308a88828901612c52565b945050604061309b88828901612ba5565b935050606086013567ffffffffffffffff8111156130bc576130bb612b82565b5b6130c888828901612ffe565b92509250509295509295909350565b5f80604083850312156130ed576130ec612b7e565b5b5f6130fa85828601612c52565b925050602061310b85828601612c52565b9150509250929050565b5f6020828403121561312a57613129612b7e565b5b5f82013567ffffffffffffffff81111561314757613146612b82565b5b61315384828501612ec0565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806131a057607f821691505b6020821081036131b3576131b261315c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6131f082612b86565b91506131fb83612b86565b9250828203905081811115613213576132126131b9565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6132915f83613273565b915061329c82613283565b5f82019050919050565b5f6080820190506132b95f830186612c14565b6132c66020830185612c14565b6132d36040830184612cd7565b81810360608301526132e481613286565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613322816132ee565b811461332c575f80fd5b50565b5f8151905061333d81613319565b92915050565b5f6020828403121561335857613357612b7e565b5b5f6133658482850161332f565b91505092915050565b5f6133798385613273565b9350613386838584612e71565b61338f83612b0d565b840190509392505050565b5f6080820190506133ad5f830188612c14565b6133ba6020830187612c14565b6133c76040830186612cd7565b81810360608301526133da81848661336e565b90509695505050505050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f815461340e81613189565b61341881866133e6565b9450600182165f8114613432576001811461344757613479565b60ff1983168652811515820286019350613479565b613450856133f0565b5f5b8381101561347157815481890152600182019150602081019050613452565b838801955050505b50505092915050565b5f61348c82612acb565b61349681856133e6565b93506134a6818560208601612ae5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f6134e38285613402565b91506134ef8284613482565b91506134fa826134b2565b6005820191508190509392505050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613519565b61355e8683613519565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61359961359461358f84612b86565b613576565b612b86565b9050919050565b5f819050919050565b6135b28361357f565b6135c66135be826135a0565b848454613525565b825550505050565b5f90565b6135da6135ce565b6135e58184846135a9565b505050565b5b81811015613608576135fd5f826135d2565b6001810190506135eb565b5050565b601f82111561364d5761361e816133f0565b6136278461350a565b81016020851015613636578190505b61364a6136428561350a565b8301826135ea565b50505b505050565b5f82821c905092915050565b5f61366d5f1984600802613652565b1980831691505092915050565b5f613685838361365e565b9150826002028217905092915050565b61369e82612acb565b67ffffffffffffffff8111156136b7576136b6612dc9565b5b6136c18254613189565b6136cc82828561360c565b5f60209050601f8311600181146136fd575f84156136eb578287015190505b6136f5858261367a565b86555061375c565b601f19841661370b866133f0565b5f5b828110156137325784890151825560018201915060208501945060208101905061370d565b8683101561374f578489015161374b601f89168261365e565b8355505b6001600288020188555050505b505050505050565b5f8160011c9050919050565b5f808291508390505b60018511156137b957808604811115613795576137946131b9565b5b60018516156137a45780820291505b80810290506137b285613764565b9450613779565b94509492505050565b5f826137d1576001905061388c565b816137de575f905061388c565b81600181146137f457600281146137fe5761382d565b600191505061388c565b60ff8411156138105761380f6131b9565b5b8360020a915084821115613827576138266131b9565b5b5061388c565b5060208310610133831016604e8410600b84101617156138625782820a90508381111561385d5761385c6131b9565b5b61388c565b61386f8484846001613770565b92509050818404811115613886576138856131b9565b5b81810290505b9392505050565b5f61389d82612b86565b91506138a883612d8d565b92506138d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846137c2565b905092915050565b7f657863656564207478206c696d697400000000000000000000000000000000005f82015250565b5f613911600f83612ad5565b915061391c826138dd565b602082019050919050565b5f6020820190508181035f83015261393e81613905565b9050919050565b5f61394f82612b86565b915061395a83612b86565b9250828201905080821115613972576139716131b9565b5b92915050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000005f82015250565b5f6139ac601b83612ad5565b91506139b782613978565b602082019050919050565b5f6020820190508181035f8301526139d9816139a0565b9050919050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000005f82015250565b5f613a14601a83612ad5565b9150613a1f826139e0565b602082019050919050565b5f6020820190508181035f830152613a4181613a08565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613a7f82612b86565b9150613a8a83612b86565b925082613a9a57613a99613a48565b5b82820490509291505056fea2646970667358221220405737b973eb5b84f6796ca1ae3fbce4db61d84e592bae7f870a0fac6cbf8d5f64736f6c63430008180033

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

000000000000000000000000a9a6d58e2970bdfbf92693b739f9154f21385e0e0000000000000000000000000000000000000000000000000000000000003a98000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : _owner (address): 0xa9A6d58E2970bdFBf92693B739F9154f21385e0e
Arg [1] : _initialSupply (uint256): 15000
Arg [2] : _decimal (uint8): 18
Arg [3] : _buylimit (uint256): 100
Arg [4] : _selllimit (uint256): 100

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000a9a6d58e2970bdfbf92693b739f9154f21385e0e
Arg [1] : 0000000000000000000000000000000000000000000000000000000000003a98
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064


Deployed Bytecode Sourcemap

43655:2384:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34733:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35444:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37275:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34969:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43982:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44453:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38324:1716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34869:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40336:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35104:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43779:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45680:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36604:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43749:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26515:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36787:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43810:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35210:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29888:103;;;:::i;:::-;;32525:235;;;:::i;:::-;;29213:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34787:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36055:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37968:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40099:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40836:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44729:86;;;:::i;:::-;;45846:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43716:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35324:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45566:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43839:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31613:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35555:68;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44823:86;;;:::i;:::-;;31913:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43894:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34733:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35444:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;37275:642::-;37378:4;37413:6;;37399:10;:20;;:38;;;;;37436:1;37423:10;:14;37399:38;37395:491;;;37454:13;37470:8;:20;37479:10;37470:20;;;;;;;;;;;;;;;;;;;;;37454:36;;37525:5;37511:19;;:10;:19;;;;:59;;;;;37535:16;:23;37552:5;37535:23;;;;;;;;;;;;;;;:35;37559:10;37535:35;;;;;;;;;;;;;;;;;;;;;;;;;37534:36;37511:59;37507:121;;;37598:14;;;;;;;;;;;;;;37507:121;37670:7;37644:11;:23;37656:10;37644:23;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;37715:7;37699:36;;37708:5;37699:36;;;37724:10;37699:36;;;;;;:::i;:::-;;;;;;;;37439:308;37395:491;;;37801:10;37768:9;:21;37778:10;37768:21;;;;;;;;;;;;;;;:30;37790:7;37768:30;;;;;;;;;;;;;;;:43;;;;37854:7;37833:41;;37842:10;37833:41;;;37863:10;37833:41;;;;;;:::i;:::-;;;;;;;;37395:491;37905:4;37898:11;;37275:642;;;;:::o;34969:36::-;;;:::o;43982:24::-;;;;;;;;;;;;;:::o;44453:145::-;29099:13;:11;:13::i;:::-;44548:9:::1;44537:8;:20;;;;44580:10;44568:9;:22;;;;44453:145:::0;;:::o;38324:1716::-;38470:6;;38456:10;:20;38452:1581;;38505:8;:20;38514:10;38505:20;;;;;;;;;;;;;;;;;;;;;38497:28;;:4;:28;;;38493:91;;38553:15;;;;;;;;;;;;;;38493:91;38618:1;38604:16;;:2;:16;;;38600:82;;38648:18;;;;;;;;;;;;;;38600:82;38734:4;38720:18;;:10;:18;;;;:74;;;;;38760:16;:22;38777:4;38760:22;;;;;;;;;;;;;;;:34;38783:10;38760:34;;;;;;;;;;;;;;;;;;;;;;;;;38759:35;38720:74;:132;;;;;38829:11;:23;38841:10;38829:23;;;;;;;;;;;;;;;;;;;;;38815:37;;:10;:37;;;;38720:132;38698:226;;;38894:14;;;;;;;;;;;;;;38698:226;38959:10;:8;:10::i;:::-;38940:9;:15;38950:4;38940:15;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;39032:10;:8;:10::i;:::-;39015:9;:13;39025:2;39015:13;;;;;;;;;;;;;;;;:27;;;;;;;;;;;39097:2;39074:8;:20;39083:10;39074:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;39121:11;:23;39133:10;39121:23;;;;;;;;;;;;39114:30;;;;;;;;;;;39202:17;39222:6;:12;39229:4;39222:12;;;;;;;;;;;;;;;39257:1;39235:6;:12;39242:4;39235:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;39222:37;;;;;;;;:::i;:::-;;;;;;;;;;39202:57;;39314:9;39274:6;:12;39281:4;39274:12;;;;;;;;;;;;;;;39287:11;:23;39299:10;39287:23;;;;;;;;;;;;39274:37;;;;;;;;:::i;:::-;;;;;;;;;:49;;;;39358:6;:12;39365:4;39358:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39462:11;:23;39474:10;39462:23;;;;;;;;;;;;39437:11;:22;39449:9;39437:22;;;;;;;;;;;:48;;;;39539:6;:10;39546:2;39539:10;;;;;;;;;;;;;;;39555;39539:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39669:1;39649:6;:10;39656:2;39649:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;39623:11;:23;39635:10;39623:23;;;;;;;;;;;:47;;;;39711:10;39707:2;39692:30;;39701:4;39692:30;;;;;;;;;;;;39762:2;39742:35;;39756:4;39742:35;;;39766:10;:8;:10::i;:::-;39742:35;;;;;;:::i;:::-;;;;;;;;38478:1311;38452:1581;;;39810:15;39828:9;:15;39838:4;39828:15;;;;;;;;;;;;;;;:27;39844:10;39828:27;;;;;;;;;;;;;;;;39810:45;;39887:17;39876:7;:28;39872:101;;39963:10;39953:7;:20;;;;:::i;:::-;39923:9;:15;39933:4;39923:15;;;;;;;;;;;;;;;:27;39939:10;39923:27;;;;;;;;;;;;;;;:50;;;;39872:101;39990:31;40000:4;40006:2;40010:10;39990:9;:31::i;:::-;;39795:238;38452:1581;38324:1716;;;:::o;34869:31::-;;;:::o;40336:405::-;40460:26;40473:4;40479:2;40483;40460:12;:26::i;:::-;40535:1;40517:2;:14;;;:19;;:154;;;;;40631:40;;;40553:118;;;40568:2;40553:35;;;40589:10;40601:4;40607:2;40553:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:118;;;;;40517:154;40499:235;;;40705:17;;;;;;;;;;;;;;40499:235;40336:405;;;:::o;35104:21::-;;;;:::o;43779:24::-;;;;:::o;45680:158::-;29099:13;:11;:13::i;:::-;45800:30:::1;45815:5;45822:7;45800:14;:30::i;:::-;45680:158:::0;;:::o;36604:111::-;29099:13;:11;:13::i;:::-;36702:5:::1;36682:9;:17;36692:6;36682:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;36604:111:::0;;:::o;43749:23::-;;;;:::o;26515:86::-;26562:4;26586:7;;;;;;;;;;;26579:14;;26515:86;:::o;36787:193::-;36845:13;36879:8;:12;36888:2;36879:12;;;;;;;;;;;;;;;;;;;;;36871:20;;36925:1;36908:19;;:5;:19;;;36904:69;;36951:10;;;;;;;;;;;;;;36904:69;36787:193;;;:::o;43810:22::-;;;;:::o;35210:44::-;;;;;;;;;;;;;;;;;:::o;29888:103::-;29099:13;:11;:13::i;:::-;29953:30:::1;29980:1;29953:18;:30::i;:::-;29888:103::o:0;32525:235::-;32578:14;32595:12;:10;:12::i;:::-;32578:29;;32640:6;32622:24;;:14;:12;:14::i;:::-;:24;;;32618:98;;32697:6;32670:34;;;;;;;;;;;:::i;:::-;;;;;;;;32618:98;32726:26;32745:6;32726:18;:26::i;:::-;32567:193;32525:235::o;29213:87::-;29259:7;29286:6;;;;;;;;;;;29279:13;;29213:87;:::o;34787:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36055:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;37968:207::-;38095:8;38054:16;:28;38071:10;38054:28;;;;;;;;;;;;;;;:38;38083:8;38054:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;38148:8;38121:46;;38136:10;38121:46;;;38158:8;38121:46;;;;;;:::i;:::-;;;;;;;;37968:207;;:::o;40099:160::-;40194:4;40218:33;40228:10;40240:2;40244:6;40218:9;:33::i;:::-;40211:40;;40099:160;;;;:::o;40836:437::-;40990:26;41003:4;41009:2;41013;40990:12;:26::i;:::-;41065:1;41047:2;:14;;;:19;;:156;;;;;41163:40;;;41083:120;;;41098:2;41083:35;;;41119:10;41131:4;41137:2;41141:4;;41083:63;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:120;;;;;41047:156;41029:237;;;41237:17;;;;;;;;;;;;;;41029:237;40836:437;;;;;:::o;44729:86::-;29099:13;:11;:13::i;:::-;44803:4:::1;44788:12;;:19;;;;;;;;;;;;;;;;;;44729:86::o:0;45846:190::-;45906:13;45968:1;45945:12;45939:26;;;;;:::i;:::-;;;:30;:89;;;;;;;;;;;;;;;;;45986:12;46000:13;:2;:11;:13::i;:::-;45972:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45939:89;45932:96;;45846:190;;;:::o;43716:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35324:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45566:106::-;29099:13;:11;:13::i;:::-;45655:9:::1;45640:12;:24;;;;;;:::i;:::-;;45566:106:::0;:::o;43839:48::-;;;;;;;;;;;;;;;;;:::o;31613:101::-;31666:7;31693:13;;;;;;;;;;;31686:20;;31613:101;:::o;35555:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44823:86::-;29099:13;:11;:13::i;:::-;44896:5:::1;44881:12;;:20;;;;;;;;;;;;;;;;;;44823:86::o:0;31913:181::-;29099:13;:11;:13::i;:::-;32019:8:::1;32003:13;;:24;;;;;;;;;;;;;;;;;;32077:8;32043:43;;32068:7;:5;:7::i;:::-;32043:43;;;;;;;;;;;;31913:181:::0;:::o;43894:49::-;;;;;;;;;;;;;;;;;:::o;29378:166::-;29449:12;:10;:12::i;:::-;29438:23;;:7;:5;:7::i;:::-;:23;;;29434:103;;29512:12;:10;:12::i;:::-;29485:40;;;;;;;;;;;:::i;:::-;;;;;;;;29434:103;29378:166::o;42481:92::-;42524:7;42557:8;42551:2;:14;;;;:::i;:::-;42544:21;;42481:92;:::o;44917:641::-;45061:4;26120:19;:17;:19::i;:::-;45080:12:::1;;;;;;;;;;;45077:87;;;45125:7;;45116:6;:16;45108:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;45077:87;45178:9;:15;45188:4;45178:15;;;;;;;;;;;;;;;;;;;;;;;;;45174:163;;45232:6;45209:13;:19;45223:4;45209:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;45284:9;;45261:13;:19;45275:4;45261:19;;;;;;;;;;;;;;;;:32;;45253:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45174:163;45351:9;:13;45361:2;45351:13;;;;;;;;;;;;;;;;;;;;;;;;;45347:153;;45400:6;45380:12;:16;45393:2;45380:16;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;45449:8;;45429:12;:16;45442:2;45429:16;;;;;;;;;;;;;;;;:28;;45421:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45347:153;45517:33;45533:4;45539:2;45543:6;45517:15;:33::i;:::-;45510:40;;44917:641:::0;;;;;:::o;43444:160::-;43564:5;43557:4;:12;;;;;;:::i;:::-;;43589:7;43580:6;:16;;;;;;:::i;:::-;;43444:160;;:::o;32284:156::-;32374:13;;32367:20;;;;;;;;;;;32398:34;32423:8;32398:24;:34::i;:::-;32284:156;:::o;24294:98::-;24347:7;24374:10;24367:17;;24294:98;:::o;21064:718::-;21120:13;21171:14;21208:1;21188:17;21199:5;21188:10;:17::i;:::-;:21;21171:38;;21224:20;21258:6;21247:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21224:41;;21280:11;21409:6;21405:2;21401:15;21393:6;21389:28;21382:35;;21446:290;21453:4;21446:290;;;21478:5;;;;;;;;21620:10;21615:2;21608:5;21604:14;21599:32;21594:3;21586:46;21678:2;21669:11;;;;;;:::i;:::-;;;;;21712:1;21703:5;:10;21446:290;21699:21;21446:290;21757:6;21750:13;;;;;21064:718;;;:::o;26674:132::-;26740:8;:6;:8::i;:::-;26736:63;;;26772:15;;;;;;;;;;;;;;26736:63;26674:132::o;41341:1101::-;41462:4;41479:12;41494:10;:8;:10::i;:::-;41479:25;;41515:27;41545:9;:15;41555:4;41545:15;;;;;;;;;;;;;;;;41515:45;;41571:29;41603:9;:13;41613:2;41603:13;;;;;;;;;;;;;;;;41571:45;;41648:6;41629:9;:15;41639:4;41629:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;41709:6;41692:9;:13;41702:2;41692:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;41800:9;:15;41810:4;41800:15;;;;;;;;;;;;;;;;;;;;;;;;;41795:251;;41832:22;41924:4;41906:9;:15;41916:4;41906:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;41880:4;41858:19;:26;;;;:::i;:::-;41857:72;;;;:::i;:::-;41832:97;;41949:9;41944:91;41968:14;41964:1;:18;41944:91;;;42008:11;42014:4;42008:5;:11::i;:::-;41984:3;;;;;;;41944:91;;;;41817:229;41795:251;42122:9;:13;42132:2;42122:13;;;;;;;;;;;;;;;;;;;;;;;;;42117:247;;42152:22;42244:4;42220:21;:28;;;;:::i;:::-;42194:4;42178:9;:13;42188:2;42178:13;;;;;;;;;;;;;;;;:20;;;;:::i;:::-;42177:72;;;;:::i;:::-;42152:97;;42269:9;42264:89;42288:14;42284:1;:18;42264:89;;;42328:9;42334:2;42328:5;:9::i;:::-;42304:3;;;;;;;42264:89;;;;42137:227;42117:247;42401:2;42381:31;;42395:4;42381:31;;;42405:6;42381:31;;;;;;:::i;:::-;;;;;;;;42430:4;42423:11;;;;;41341:1101;;;;;:::o;30526:191::-;30600:16;30619:6;;;;;;;;;;;30600:25;;30645:8;30636:6;;:17;;;;;;;;;;;;;;;;;;30700:8;30669:40;;30690:8;30669:40;;;;;;;;;;;;30589:128;30526:191;:::o;17468:948::-;17521:7;17541:14;17558:1;17541:18;;17608:8;17599:5;:17;17595:106;;17646:8;17637:17;;;;;;:::i;:::-;;;;;17683:2;17673:12;;;;17595:106;17728:8;17719:5;:17;17715:106;;17766:8;17757:17;;;;;;:::i;:::-;;;;;17803:2;17793:12;;;;17715:106;17848:8;17839:5;:17;17835:106;;17886:8;17877:17;;;;;;:::i;:::-;;;;;17923:2;17913:12;;;;17835:106;17968:7;17959:5;:16;17955:103;;18005:7;17996:16;;;;;;:::i;:::-;;;;;18041:1;18031:11;;;;17955:103;18085:7;18076:5;:16;18072:103;;18122:7;18113:16;;;;;;:::i;:::-;;;;;18158:1;18148:11;;;;18072:103;18202:7;18193:5;:16;18189:103;;18239:7;18230:16;;;;;;:::i;:::-;;;;;18275:1;18265:11;;;;18189:103;18319:7;18310:5;:16;18306:68;;18357:1;18347:11;;;;18306:68;18402:6;18395:13;;;17468:948;;;:::o;43063:373::-;43140:1;43124:18;;:4;:18;;;43120:73;;43166:15;;;;;;;;;;;;;;43120:73;43205:10;43218:6;:12;43225:4;43218:12;;;;;;;;;;;;;;;43253:1;43231:6;:12;43238:4;43231:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;43218:37;;;;;;;;:::i;:::-;;;;;;;;;;43205:50;;43266:6;:12;43273:4;43266:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43302:11;:15;43314:2;43302:15;;;;;;;;;;;43295:22;;;43335:8;:12;43344:2;43335:12;;;;;;;;;;;;43328:19;;;;;;;;;;;43365:11;:15;43377:2;43365:15;;;;;;;;;;;;43358:22;;;;;;;;;;;43425:2;43421:1;43398:30;;43407:4;43398:30;;;;;;;;;;;;43109:327;43063:373;:::o;44606:115::-;26120:19;:17;:19::i;:::-;44698:15:::1;44710:2;44698:11;:15::i;:::-;44606:115:::0;:::o;42581:474::-;42654:1;42640:16;;:2;:16;;;42636:74;;42680:18;;;;;;;;;;;;;;42636:74;42747:6;;:8;;;;;;;;;;;;;42779:10;42792:6;;42779:19;;42839:1;42815:26;;:8;:12;42824:2;42815:12;;;;;;;;;;;;;;;;;;;;;:26;;;42811:81;;42865:15;;;;;;;;;;;;;;42811:81;42919:2;42904:8;:12;42913:2;42904:12;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;42932:6;:10;42939:2;42932:10;;;;;;;;;;;;;;;42948:2;42932:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000:1;42980:6;:10;42987:2;42980:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;42962:11;:15;42974:2;42962:15;;;;;;;;;;;:39;;;;43044:2;43040;43019:28;;43036:1;43019:28;;;;;;;;;;;;42625:430;42581:474;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:77;1713:7;1742:5;1731:16;;1676:77;;;:::o;1759:122::-;1832:24;1850:5;1832:24;:::i;:::-;1825:5;1822:35;1812:63;;1871:1;1868;1861:12;1812:63;1759:122;:::o;1887:139::-;1933:5;1971:6;1958:20;1949:29;;1987:33;2014:5;1987:33;:::i;:::-;1887:139;;;;:::o;2032:329::-;2091:6;2140:2;2128:9;2119:7;2115:23;2111:32;2108:119;;;2146:79;;:::i;:::-;2108:119;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2032:329;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:118::-;2688:24;2706:5;2688:24;:::i;:::-;2683:3;2676:37;2601:118;;:::o;2725:222::-;2818:4;2856:2;2845:9;2841:18;2833:26;;2869:71;2937:1;2926:9;2922:17;2913:6;2869:71;:::i;:::-;2725:222;;;;:::o;2953:122::-;3026:24;3044:5;3026:24;:::i;:::-;3019:5;3016:35;3006:63;;3065:1;3062;3055:12;3006:63;2953:122;:::o;3081:139::-;3127:5;3165:6;3152:20;3143:29;;3181:33;3208:5;3181:33;:::i;:::-;3081:139;;;;:::o;3226:474::-;3294:6;3302;3351:2;3339:9;3330:7;3326:23;3322:32;3319:119;;;3357:79;;:::i;:::-;3319:119;3477:1;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3448:117;3604:2;3630:53;3675:7;3666:6;3655:9;3651:22;3630:53;:::i;:::-;3620:63;;3575:118;3226:474;;;;;:::o;3706:90::-;3740:7;3783:5;3776:13;3769:21;3758:32;;3706:90;;;:::o;3802:109::-;3883:21;3898:5;3883:21;:::i;:::-;3878:3;3871:34;3802:109;;:::o;3917:210::-;4004:4;4042:2;4031:9;4027:18;4019:26;;4055:65;4117:1;4106:9;4102:17;4093:6;4055:65;:::i;:::-;3917:210;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:474::-;4553:6;4561;4610:2;4598:9;4589:7;4585:23;4581:32;4578:119;;;4616:79;;:::i;:::-;4578:119;4736:1;4761:53;4806:7;4797:6;4786:9;4782:22;4761:53;:::i;:::-;4751:63;;4707:117;4863:2;4889:53;4934:7;4925:6;4914:9;4910:22;4889:53;:::i;:::-;4879:63;;4834:118;4485:474;;;;;:::o;4965:619::-;5042:6;5050;5058;5107:2;5095:9;5086:7;5082:23;5078:32;5075:119;;;5113:79;;:::i;:::-;5075:119;5233:1;5258:53;5303:7;5294:6;5283:9;5279:22;5258:53;:::i;:::-;5248:63;;5204:117;5360:2;5386:53;5431:7;5422:6;5411:9;5407:22;5386:53;:::i;:::-;5376:63;;5331:118;5488:2;5514:53;5559:7;5550:6;5539:9;5535:22;5514:53;:::i;:::-;5504:63;;5459:118;4965:619;;;;;:::o;5590:86::-;5625:7;5665:4;5658:5;5654:16;5643:27;;5590:86;;;:::o;5682:112::-;5765:22;5781:5;5765:22;:::i;:::-;5760:3;5753:35;5682:112;;:::o;5800:214::-;5889:4;5927:2;5916:9;5912:18;5904:26;;5940:67;6004:1;5993:9;5989:17;5980:6;5940:67;:::i;:::-;5800:214;;;;:::o;6020:117::-;6129:1;6126;6119:12;6143:117;6252:1;6249;6242:12;6266:180;6314:77;6311:1;6304:88;6411:4;6408:1;6401:15;6435:4;6432:1;6425:15;6452:281;6535:27;6557:4;6535:27;:::i;:::-;6527:6;6523:40;6665:6;6653:10;6650:22;6629:18;6617:10;6614:34;6611:62;6608:88;;;6676:18;;:::i;:::-;6608:88;6716:10;6712:2;6705:22;6495:238;6452:281;;:::o;6739:129::-;6773:6;6800:20;;:::i;:::-;6790:30;;6829:33;6857:4;6849:6;6829:33;:::i;:::-;6739:129;;;:::o;6874:308::-;6936:4;7026:18;7018:6;7015:30;7012:56;;;7048:18;;:::i;:::-;7012:56;7086:29;7108:6;7086:29;:::i;:::-;7078:37;;7170:4;7164;7160:15;7152:23;;6874:308;;;:::o;7188:146::-;7285:6;7280:3;7275;7262:30;7326:1;7317:6;7312:3;7308:16;7301:27;7188:146;;;:::o;7340:425::-;7418:5;7443:66;7459:49;7501:6;7459:49;:::i;:::-;7443:66;:::i;:::-;7434:75;;7532:6;7525:5;7518:21;7570:4;7563:5;7559:16;7608:3;7599:6;7594:3;7590:16;7587:25;7584:112;;;7615:79;;:::i;:::-;7584:112;7705:54;7752:6;7747:3;7742;7705:54;:::i;:::-;7424:341;7340:425;;;;;:::o;7785:340::-;7841:5;7890:3;7883:4;7875:6;7871:17;7867:27;7857:122;;7898:79;;:::i;:::-;7857:122;8015:6;8002:20;8040:79;8115:3;8107:6;8100:4;8092:6;8088:17;8040:79;:::i;:::-;8031:88;;7847:278;7785:340;;;;:::o;8131:834::-;8219:6;8227;8276:2;8264:9;8255:7;8251:23;8247:32;8244:119;;;8282:79;;:::i;:::-;8244:119;8430:1;8419:9;8415:17;8402:31;8460:18;8452:6;8449:30;8446:117;;;8482:79;;:::i;:::-;8446:117;8587:63;8642:7;8633:6;8622:9;8618:22;8587:63;:::i;:::-;8577:73;;8373:287;8727:2;8716:9;8712:18;8699:32;8758:18;8750:6;8747:30;8744:117;;;8780:79;;:::i;:::-;8744:117;8885:63;8940:7;8931:6;8920:9;8916:22;8885:63;:::i;:::-;8875:73;;8670:288;8131:834;;;;;:::o;8971:116::-;9041:21;9056:5;9041:21;:::i;:::-;9034:5;9031:32;9021:60;;9077:1;9074;9067:12;9021:60;8971:116;:::o;9093:133::-;9136:5;9174:6;9161:20;9152:29;;9190:30;9214:5;9190:30;:::i;:::-;9093:133;;;;:::o;9232:468::-;9297:6;9305;9354:2;9342:9;9333:7;9329:23;9325:32;9322:119;;;9360:79;;:::i;:::-;9322:119;9480:1;9505:53;9550:7;9541:6;9530:9;9526:22;9505:53;:::i;:::-;9495:63;;9451:117;9607:2;9633:50;9675:7;9666:6;9655:9;9651:22;9633:50;:::i;:::-;9623:60;;9578:115;9232:468;;;;;:::o;9706:329::-;9765:6;9814:2;9802:9;9793:7;9789:23;9785:32;9782:119;;;9820:79;;:::i;:::-;9782:119;9940:1;9965:53;10010:7;10001:6;9990:9;9986:22;9965:53;:::i;:::-;9955:63;;9911:117;9706:329;;;;:::o;10041:117::-;10150:1;10147;10140:12;10164:117;10273:1;10270;10263:12;10300:552;10357:8;10367:6;10417:3;10410:4;10402:6;10398:17;10394:27;10384:122;;10425:79;;:::i;:::-;10384:122;10538:6;10525:20;10515:30;;10568:18;10560:6;10557:30;10554:117;;;10590:79;;:::i;:::-;10554:117;10704:4;10696:6;10692:17;10680:29;;10758:3;10750:4;10742:6;10738:17;10728:8;10724:32;10721:41;10718:128;;;10765:79;;:::i;:::-;10718:128;10300:552;;;;;:::o;10858:963::-;10955:6;10963;10971;10979;10987;11036:3;11024:9;11015:7;11011:23;11007:33;11004:120;;;11043:79;;:::i;:::-;11004:120;11163:1;11188:53;11233:7;11224:6;11213:9;11209:22;11188:53;:::i;:::-;11178:63;;11134:117;11290:2;11316:53;11361:7;11352:6;11341:9;11337:22;11316:53;:::i;:::-;11306:63;;11261:118;11418:2;11444:53;11489:7;11480:6;11469:9;11465:22;11444:53;:::i;:::-;11434:63;;11389:118;11574:2;11563:9;11559:18;11546:32;11605:18;11597:6;11594:30;11591:117;;;11627:79;;:::i;:::-;11591:117;11740:64;11796:7;11787:6;11776:9;11772:22;11740:64;:::i;:::-;11722:82;;;;11517:297;10858:963;;;;;;;;:::o;11827:474::-;11895:6;11903;11952:2;11940:9;11931:7;11927:23;11923:32;11920:119;;;11958:79;;:::i;:::-;11920:119;12078:1;12103:53;12148:7;12139:6;12128:9;12124:22;12103:53;:::i;:::-;12093:63;;12049:117;12205:2;12231:53;12276:7;12267:6;12256:9;12252:22;12231:53;:::i;:::-;12221:63;;12176:118;11827:474;;;;;:::o;12307:509::-;12376:6;12425:2;12413:9;12404:7;12400:23;12396:32;12393:119;;;12431:79;;:::i;:::-;12393:119;12579:1;12568:9;12564:17;12551:31;12609:18;12601:6;12598:30;12595:117;;;12631:79;;:::i;:::-;12595:117;12736:63;12791:7;12782:6;12771:9;12767:22;12736:63;:::i;:::-;12726:73;;12522:287;12307:509;;;;:::o;12822:180::-;12870:77;12867:1;12860:88;12967:4;12964:1;12957:15;12991:4;12988:1;12981:15;13008:320;13052:6;13089:1;13083:4;13079:12;13069:22;;13136:1;13130:4;13126:12;13157:18;13147:81;;13213:4;13205:6;13201:17;13191:27;;13147:81;13275:2;13267:6;13264:14;13244:18;13241:38;13238:84;;13294:18;;:::i;:::-;13238:84;13059:269;13008:320;;;:::o;13334:180::-;13382:77;13379:1;13372:88;13479:4;13476:1;13469:15;13503:4;13500:1;13493:15;13520:194;13560:4;13580:20;13598:1;13580:20;:::i;:::-;13575:25;;13614:20;13632:1;13614:20;:::i;:::-;13609:25;;13658:1;13655;13651:9;13643:17;;13682:1;13676:4;13673:11;13670:37;;;13687:18;;:::i;:::-;13670:37;13520:194;;;;:::o;13720:180::-;13768:77;13765:1;13758:88;13865:4;13862:1;13855:15;13889:4;13886:1;13879:15;13906:180;13954:77;13951:1;13944:88;14051:4;14048:1;14041:15;14075:4;14072:1;14065:15;14092:168;14175:11;14209:6;14204:3;14197:19;14249:4;14244:3;14240:14;14225:29;;14092:168;;;;:::o;14266:114::-;;:::o;14386:362::-;14527:3;14548:65;14611:1;14606:3;14548:65;:::i;:::-;14541:72;;14622:93;14711:3;14622:93;:::i;:::-;14740:1;14735:3;14731:11;14724:18;;14386:362;;;:::o;14754:748::-;15003:4;15041:3;15030:9;15026:19;15018:27;;15055:71;15123:1;15112:9;15108:17;15099:6;15055:71;:::i;:::-;15136:72;15204:2;15193:9;15189:18;15180:6;15136:72;:::i;:::-;15218;15286:2;15275:9;15271:18;15262:6;15218:72;:::i;:::-;15337:9;15331:4;15327:20;15322:2;15311:9;15307:18;15300:48;15365:130;15490:4;15365:130;:::i;:::-;15357:138;;14754:748;;;;;;:::o;15508:149::-;15544:7;15584:66;15577:5;15573:78;15562:89;;15508:149;;;:::o;15663:120::-;15735:23;15752:5;15735:23;:::i;:::-;15728:5;15725:34;15715:62;;15773:1;15770;15763:12;15715:62;15663:120;:::o;15789:141::-;15845:5;15876:6;15870:13;15861:22;;15892:32;15918:5;15892:32;:::i;:::-;15789:141;;;;:::o;15936:349::-;16005:6;16054:2;16042:9;16033:7;16029:23;16025:32;16022:119;;;16060:79;;:::i;:::-;16022:119;16180:1;16205:63;16260:7;16251:6;16240:9;16236:22;16205:63;:::i;:::-;16195:73;;16151:127;15936:349;;;;:::o;16313:314::-;16409:3;16430:70;16493:6;16488:3;16430:70;:::i;:::-;16423:77;;16510:56;16559:6;16554:3;16547:5;16510:56;:::i;:::-;16591:29;16613:6;16591:29;:::i;:::-;16586:3;16582:39;16575:46;;16313:314;;;;;:::o;16633:660::-;16838:4;16876:3;16865:9;16861:19;16853:27;;16890:71;16958:1;16947:9;16943:17;16934:6;16890:71;:::i;:::-;16971:72;17039:2;17028:9;17024:18;17015:6;16971:72;:::i;:::-;17053;17121:2;17110:9;17106:18;17097:6;17053:72;:::i;:::-;17172:9;17166:4;17162:20;17157:2;17146:9;17142:18;17135:48;17200:86;17281:4;17272:6;17264;17200:86;:::i;:::-;17192:94;;16633:660;;;;;;;;:::o;17299:148::-;17401:11;17438:3;17423:18;;17299:148;;;;:::o;17453:141::-;17502:4;17525:3;17517:11;;17548:3;17545:1;17538:14;17582:4;17579:1;17569:18;17561:26;;17453:141;;;:::o;17624:874::-;17727:3;17764:5;17758:12;17793:36;17819:9;17793:36;:::i;:::-;17845:89;17927:6;17922:3;17845:89;:::i;:::-;17838:96;;17965:1;17954:9;17950:17;17981:1;17976:166;;;;18156:1;18151:341;;;;17943:549;;17976:166;18060:4;18056:9;18045;18041:25;18036:3;18029:38;18122:6;18115:14;18108:22;18100:6;18096:35;18091:3;18087:45;18080:52;;17976:166;;18151:341;18218:38;18250:5;18218:38;:::i;:::-;18278:1;18292:154;18306:6;18303:1;18300:13;18292:154;;;18380:7;18374:14;18370:1;18365:3;18361:11;18354:35;18430:1;18421:7;18417:15;18406:26;;18328:4;18325:1;18321:12;18316:17;;18292:154;;;18475:6;18470:3;18466:16;18459:23;;18158:334;;17943:549;;17731:767;;17624:874;;;;:::o;18504:390::-;18610:3;18638:39;18671:5;18638:39;:::i;:::-;18693:89;18775:6;18770:3;18693:89;:::i;:::-;18686:96;;18791:65;18849:6;18844:3;18837:4;18830:5;18826:16;18791:65;:::i;:::-;18881:6;18876:3;18872:16;18865:23;;18614:280;18504:390;;;;:::o;18900:182::-;19068:7;19063:3;19056:20;18900:182;:::o;19088:693::-;19355:3;19377:92;19465:3;19456:6;19377:92;:::i;:::-;19370:99;;19486:95;19577:3;19568:6;19486:95;:::i;:::-;19479:102;;19591:137;19724:3;19591:137;:::i;:::-;19753:1;19748:3;19744:11;19737:18;;19772:3;19765:10;;19088:693;;;;;:::o;19787:93::-;19824:6;19871:2;19866;19859:5;19855:14;19851:23;19841:33;;19787:93;;;:::o;19886:107::-;19930:8;19980:5;19974:4;19970:16;19949:37;;19886:107;;;;:::o;19999:393::-;20068:6;20118:1;20106:10;20102:18;20141:97;20171:66;20160:9;20141:97;:::i;:::-;20259:39;20289:8;20278:9;20259:39;:::i;:::-;20247:51;;20331:4;20327:9;20320:5;20316:21;20307:30;;20380:4;20370:8;20366:19;20359:5;20356:30;20346:40;;20075:317;;19999:393;;;;;:::o;20398:60::-;20426:3;20447:5;20440:12;;20398:60;;;:::o;20464:142::-;20514:9;20547:53;20565:34;20574:24;20592:5;20574:24;:::i;:::-;20565:34;:::i;:::-;20547:53;:::i;:::-;20534:66;;20464:142;;;:::o;20612:75::-;20655:3;20676:5;20669:12;;20612:75;;;:::o;20693:269::-;20803:39;20834:7;20803:39;:::i;:::-;20864:91;20913:41;20937:16;20913:41;:::i;:::-;20905:6;20898:4;20892:11;20864:91;:::i;:::-;20858:4;20851:105;20769:193;20693:269;;;:::o;20968:73::-;21013:3;20968:73;:::o;21047:189::-;21124:32;;:::i;:::-;21165:65;21223:6;21215;21209:4;21165:65;:::i;:::-;21100:136;21047:189;;:::o;21242:186::-;21302:120;21319:3;21312:5;21309:14;21302:120;;;21373:39;21410:1;21403:5;21373:39;:::i;:::-;21346:1;21339:5;21335:13;21326:22;;21302:120;;;21242:186;;:::o;21434:543::-;21535:2;21530:3;21527:11;21524:446;;;21569:38;21601:5;21569:38;:::i;:::-;21653:29;21671:10;21653:29;:::i;:::-;21643:8;21639:44;21836:2;21824:10;21821:18;21818:49;;;21857:8;21842:23;;21818:49;21880:80;21936:22;21954:3;21936:22;:::i;:::-;21926:8;21922:37;21909:11;21880:80;:::i;:::-;21539:431;;21524:446;21434:543;;;:::o;21983:117::-;22037:8;22087:5;22081:4;22077:16;22056:37;;21983:117;;;;:::o;22106:169::-;22150:6;22183:51;22231:1;22227:6;22219:5;22216:1;22212:13;22183:51;:::i;:::-;22179:56;22264:4;22258;22254:15;22244:25;;22157:118;22106:169;;;;:::o;22280:295::-;22356:4;22502:29;22527:3;22521:4;22502:29;:::i;:::-;22494:37;;22564:3;22561:1;22557:11;22551:4;22548:21;22540:29;;22280:295;;;;:::o;22580:1395::-;22697:37;22730:3;22697:37;:::i;:::-;22799:18;22791:6;22788:30;22785:56;;;22821:18;;:::i;:::-;22785:56;22865:38;22897:4;22891:11;22865:38;:::i;:::-;22950:67;23010:6;23002;22996:4;22950:67;:::i;:::-;23044:1;23068:4;23055:17;;23100:2;23092:6;23089:14;23117:1;23112:618;;;;23774:1;23791:6;23788:77;;;23840:9;23835:3;23831:19;23825:26;23816:35;;23788:77;23891:67;23951:6;23944:5;23891:67;:::i;:::-;23885:4;23878:81;23747:222;23082:887;;23112:618;23164:4;23160:9;23152:6;23148:22;23198:37;23230:4;23198:37;:::i;:::-;23257:1;23271:208;23285:7;23282:1;23279:14;23271:208;;;23364:9;23359:3;23355:19;23349:26;23341:6;23334:42;23415:1;23407:6;23403:14;23393:24;;23462:2;23451:9;23447:18;23434:31;;23308:4;23305:1;23301:12;23296:17;;23271:208;;;23507:6;23498:7;23495:19;23492:179;;;23565:9;23560:3;23556:19;23550:26;23608:48;23650:4;23642:6;23638:17;23627:9;23608:48;:::i;:::-;23600:6;23593:64;23515:156;23492:179;23717:1;23713;23705:6;23701:14;23697:22;23691:4;23684:36;23119:611;;;23082:887;;22672:1303;;;22580:1395;;:::o;23981:102::-;24023:8;24070:5;24067:1;24063:13;24042:34;;23981:102;;;:::o;24089:848::-;24150:5;24157:4;24181:6;24172:15;;24205:5;24196:14;;24219:712;24240:1;24230:8;24227:15;24219:712;;;24335:4;24330:3;24326:14;24320:4;24317:24;24314:50;;;24344:18;;:::i;:::-;24314:50;24394:1;24384:8;24380:16;24377:451;;;24809:4;24802:5;24798:16;24789:25;;24377:451;24859:4;24853;24849:15;24841:23;;24889:32;24912:8;24889:32;:::i;:::-;24877:44;;24219:712;;;24089:848;;;;;;;:::o;24943:1073::-;24997:5;25188:8;25178:40;;25209:1;25200:10;;25211:5;;25178:40;25237:4;25227:36;;25254:1;25245:10;;25256:5;;25227:36;25323:4;25371:1;25366:27;;;;25407:1;25402:191;;;;25316:277;;25366:27;25384:1;25375:10;;25386:5;;;25402:191;25447:3;25437:8;25434:17;25431:43;;;25454:18;;:::i;:::-;25431:43;25503:8;25500:1;25496:16;25487:25;;25538:3;25531:5;25528:14;25525:40;;;25545:18;;:::i;:::-;25525:40;25578:5;;;25316:277;;25702:2;25692:8;25689:16;25683:3;25677:4;25674:13;25670:36;25652:2;25642:8;25639:16;25634:2;25628:4;25625:12;25621:35;25605:111;25602:246;;;25758:8;25752:4;25748:19;25739:28;;25793:3;25786:5;25783:14;25780:40;;;25800:18;;:::i;:::-;25780:40;25833:5;;25602:246;25873:42;25911:3;25901:8;25895:4;25892:1;25873:42;:::i;:::-;25858:57;;;;25947:4;25942:3;25938:14;25931:5;25928:25;25925:51;;;25956:18;;:::i;:::-;25925:51;26005:4;25998:5;25994:16;25985:25;;24943:1073;;;;;;:::o;26022:281::-;26080:5;26104:23;26122:4;26104:23;:::i;:::-;26096:31;;26148:25;26164:8;26148:25;:::i;:::-;26136:37;;26192:104;26229:66;26219:8;26213:4;26192:104;:::i;:::-;26183:113;;26022:281;;;;:::o;26309:165::-;26449:17;26445:1;26437:6;26433:14;26426:41;26309:165;:::o;26480:366::-;26622:3;26643:67;26707:2;26702:3;26643:67;:::i;:::-;26636:74;;26719:93;26808:3;26719:93;:::i;:::-;26837:2;26832:3;26828:12;26821:19;;26480:366;;;:::o;26852:419::-;27018:4;27056:2;27045:9;27041:18;27033:26;;27105:9;27099:4;27095:20;27091:1;27080:9;27076:17;27069:47;27133:131;27259:4;27133:131;:::i;:::-;27125:139;;26852:419;;;:::o;27277:191::-;27317:3;27336:20;27354:1;27336:20;:::i;:::-;27331:25;;27370:20;27388:1;27370:20;:::i;:::-;27365:25;;27413:1;27410;27406:9;27399:16;;27434:3;27431:1;27428:10;27425:36;;;27441:18;;:::i;:::-;27425:36;27277:191;;;;:::o;27474:177::-;27614:29;27610:1;27602:6;27598:14;27591:53;27474:177;:::o;27657:366::-;27799:3;27820:67;27884:2;27879:3;27820:67;:::i;:::-;27813:74;;27896:93;27985:3;27896:93;:::i;:::-;28014:2;28009:3;28005:12;27998:19;;27657:366;;;:::o;28029:419::-;28195:4;28233:2;28222:9;28218:18;28210:26;;28282:9;28276:4;28272:20;28268:1;28257:9;28253:17;28246:47;28310:131;28436:4;28310:131;:::i;:::-;28302:139;;28029:419;;;:::o;28454:176::-;28594:28;28590:1;28582:6;28578:14;28571:52;28454:176;:::o;28636:366::-;28778:3;28799:67;28863:2;28858:3;28799:67;:::i;:::-;28792:74;;28875:93;28964:3;28875:93;:::i;:::-;28993:2;28988:3;28984:12;28977:19;;28636:366;;;:::o;29008:419::-;29174:4;29212:2;29201:9;29197:18;29189:26;;29261:9;29255:4;29251:20;29247:1;29236:9;29232:17;29225:47;29289:131;29415:4;29289:131;:::i;:::-;29281:139;;29008:419;;;:::o;29433:180::-;29481:77;29478:1;29471:88;29578:4;29575:1;29568:15;29602:4;29599:1;29592:15;29619:185;29659:1;29676:20;29694:1;29676:20;:::i;:::-;29671:25;;29710:20;29728:1;29710:20;:::i;:::-;29705:25;;29749:1;29739:35;;29754:18;;:::i;:::-;29739:35;29796:1;29793;29789:9;29784:14;;29619:185;;;;:::o

Swarm Source

ipfs://405737b973eb5b84f6796ca1ae3fbce4db61d84e592bae7f870a0fac6cbf8d5f
Loading...
Loading
Loading...
Loading
[ 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.