ETH Price: $3,402.64 (-1.22%)
Gas: 5 Gwei

Token

VPEPE (VPEPE)
 

Overview

Max Total Supply

420,690,000,000,000 VPEPE

Holders

161

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 VPEPE

Value
$0.00
0xd0563f930bfb434a1bbddf84ae39986efd8f3d86
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:
Token

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-18
*/

// File: IPancakePair.sol

pragma solidity ^0.8.4;

interface IPancakePair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}
// File: ISwapFactory.sol


pragma solidity ^0.8.4;

interface ISwapFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external returns (address pair);
}
// File: ISwapRouter.sol


pragma solidity ^0.8.4;

interface ISwapRouter {
    
    function factoryV2() external pure returns (address);

    function factory() external pure returns (address);

    function WETH() external pure returns (address);
    
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to
    ) external;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
    
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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 addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```solidity
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```solidity
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: TOKEN\AutoBuyToken10.sol


pragma solidity ^0.8.4;








contract TokenDistributor {
    constructor (address token) {
        ERC20(token).approve(msg.sender, uint(~uint256(0)));
    }
}

contract Token is ERC20,Ownable,AccessControl {
    bytes32 private constant MANAGER_ROLE = keccak256("MANAGER_ROLE");
    using SafeMath for uint256;
    ISwapRouter private uniswapV2Router;
    address public uniswapV2Pair;
    address public usdt;
    uint256 public startTradeBlock;
    address admin;
    address fundAddr;
    uint256 public fundCount;
    mapping(address => bool) private whiteList;
    TokenDistributor public _tokenDistributor;
    
    constructor()ERC20("VPEPE", "VPEPE") {
        admin=  0x5FcE9E8c66f959c69841Cef746D5b2d5EfD4C0b4;
        //admin=msg.sender;
        fundAddr=0x3dd1807d88CE60dd1eE886be2F5baDBf8DAeaa0A;
        uint256 total=420690000000000*10**decimals();
        _mint(admin, total);
        _grantRole(DEFAULT_ADMIN_ROLE,admin);
        _grantRole(MANAGER_ROLE, admin);
        _grantRole(MANAGER_ROLE, address(this));
        whiteList[admin] = true;
        whiteList[address(this)] = true;
        transferOwnership(admin);
    }
    function initPair(address _token,address _swap)external onlyRole(MANAGER_ROLE){
        usdt=_token;//0x3dd1807d88CE60dd1eE886be2F5baDBf8DAeaa0A;//usdt test
        address swap=_swap;//0x3dd1807d88CE60dd1eE886be2F5baDBf8DAeaa0A;//bsc test
        uniswapV2Router = ISwapRouter(swap);
        uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(address(this), usdt);
        ERC20(usdt).approve(address(uniswapV2Router), type(uint256).max);
        _approve(address(this), address(uniswapV2Router),type(uint256).max);
        _approve(address(this), address(this),type(uint256).max);
        _approve(admin, address(uniswapV2Router),type(uint256).max);
        _tokenDistributor = new TokenDistributor(address(this));
    }
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }
   
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "amount must gt 0");
        
        if(from != uniswapV2Pair && to != uniswapV2Pair) {
            _funTransfer(from, to, amount);
            return;
        }
        if(from == uniswapV2Pair) {
            require(startTradeBlock>0, "not open");
            super._transfer(from, address(this), amount.mul(1).div(100));
            fundCount+=amount.mul(1).div(100);
            super._transfer(from, to, amount.mul(99).div(100));
            return;
        }
        if(to == uniswapV2Pair) {
            if(whiteList[from]){
                super._transfer(from, to, amount);
                return;
            }
            super._transfer(from, address(this), amount.mul(1).div(100));
            fundCount+=amount.mul(1).div(100);
            swapUsdt(fundCount+amount,fundAddr);
            fundCount=0;
            super._transfer(from, to, amount.mul(99).div(100));
            return;
        }
    }
    function _funTransfer(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        super._transfer(sender, recipient, tAmount);
    }
    bool private inSwap;
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }
    function autoSwap(uint256 _count)public{
        ERC20(usdt).transferFrom(msg.sender, address(this), _count);
        swapTokenToDistributor(_count);
    }
    function swapToken(uint256 tokenAmount,address to) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uint256 balance = IERC20(usdt).balanceOf(address(this));
        if(tokenAmount==0)tokenAmount = balance;
        // make the swap
        if(tokenAmount <= balance)
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CA
            path,
            address(to),
            block.timestamp
        );
    }
    function swapTokenToDistributor(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uint256 balance = IERC20(usdt).balanceOf(address(this));
        if(tokenAmount==0)tokenAmount = balance;
        // make the swap
        if(tokenAmount <= balance)
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CA
            path,
            address(_tokenDistributor),
            block.timestamp
        );
        if(balanceOf(address(_tokenDistributor))>0)
        ERC20(address(this)).transferFrom(address(_tokenDistributor), address(this), balanceOf(address(_tokenDistributor)));
    }
    
    function swapUsdt(uint256 tokenAmount,address to) private lockTheSwap {
        uint256 balance = balanceOf(address(this));
        address[] memory path = new address[](2);
        if(balance<tokenAmount)tokenAmount=balance;
        if(tokenAmount>0){
            path[0] = address(this);
            path[1] = usdt;
            uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp);
        }
    }

    function startTrade(address[] calldata adrs) public onlyRole(MANAGER_ROLE) {
        startTradeBlock = block.number;
        for(uint i=0;i<adrs.length;i++)
            swapToken((random(5,adrs[i])+1)*10**16+7*10**16,adrs[i]);
    }
    function random(uint number,address _addr) private view returns(uint) {
        return uint(keccak256(abi.encodePacked(block.timestamp,block.difficulty,  _addr))) % number;
    }

    function errorToken(address _token) external onlyRole(MANAGER_ROLE){
        ERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this)));
    }
    
    function withdawOwner(uint256 amount) public onlyRole(MANAGER_ROLE){
        payable(msg.sender).transfer(amount);
    }
    receive () external payable  {
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenDistributor","outputs":[{"internalType":"contract TokenDistributor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"autoSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"errorToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_swap","type":"address"}],"name":"initPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"adrs","type":"address[]"}],"name":"startTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradeBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f56504550450000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f565045504500000000000000000000000000000000000000000000000000000081525081600390816200008f919062000b17565b508060049081620000a1919062000b17565b505050620000c4620000b8620003a160201b60201c565b620003a960201b60201c565b735fce9e8c66f959c69841cef746d5b2d5efd4c0b4600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733dd1807d88ce60dd1ee886be2f5badbf8daeaa0a600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000620001806200046f60201b60201c565b600a6200018e919062000d8e565b66017e9d8602b400620001a2919062000ddf565b9050620001d8600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200047860201b60201c565b6200020f6000801b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005e560201b60201c565b620002637f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005e560201b60201c565b620002957f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0830620005e560201b60201c565b6001600e6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200039a600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620006d760201b60201c565b5062001020565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e19062000e8b565b60405180910390fd5b620004fe600083836200076d60201b60201c565b806002600082825462000512919062000ead565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005c5919062000ef9565b60405180910390a3620005e1600083836200077260201b60201c565b5050565b620005f782826200077760201b60201c565b620006d35760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000678620003a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620006e7620007e260201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007509062000f8c565b60405180910390fd5b6200076a81620003a960201b60201c565b50565b505050565b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b620007f2620003a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008186200087360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000871576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008689062000ffe565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200091f57607f821691505b602082108103620009355762000934620008d7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200099f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000960565b620009ab868362000960565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009f8620009f2620009ec84620009c3565b620009cd565b620009c3565b9050919050565b6000819050919050565b62000a1483620009d7565b62000a2c62000a2382620009ff565b8484546200096d565b825550505050565b600090565b62000a4362000a34565b62000a5081848462000a09565b505050565b5b8181101562000a785762000a6c60008262000a39565b60018101905062000a56565b5050565b601f82111562000ac75762000a91816200093b565b62000a9c8462000950565b8101602085101562000aac578190505b62000ac462000abb8562000950565b83018262000a55565b50505b505050565b600082821c905092915050565b600062000aec6000198460080262000acc565b1980831691505092915050565b600062000b07838362000ad9565b9150826002028217905092915050565b62000b22826200089d565b67ffffffffffffffff81111562000b3e5762000b3d620008a8565b5b62000b4a825462000906565b62000b5782828562000a7c565b600060209050601f83116001811462000b8f576000841562000b7a578287015190505b62000b86858262000af9565b86555062000bf6565b601f19841662000b9f866200093b565b60005b8281101562000bc95784890151825560018201915060208501945060208101905062000ba2565b8683101562000be9578489015162000be5601f89168262000ad9565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000c8c5780860481111562000c645762000c6362000bfe565b5b600185161562000c745780820291505b808102905062000c848562000c2d565b945062000c44565b94509492505050565b60008262000ca7576001905062000d7a565b8162000cb7576000905062000d7a565b816001811462000cd0576002811462000cdb5762000d11565b600191505062000d7a565b60ff84111562000cf05762000cef62000bfe565b5b8360020a91508482111562000d0a5762000d0962000bfe565b5b5062000d7a565b5060208310610133831016604e8410600b841016171562000d4b5782820a90508381111562000d455762000d4462000bfe565b5b62000d7a565b62000d5a848484600162000c3a565b9250905081840481111562000d745762000d7362000bfe565b5b81810290505b9392505050565b600060ff82169050919050565b600062000d9b82620009c3565b915062000da88362000d81565b925062000dd77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c95565b905092915050565b600062000dec82620009c3565b915062000df983620009c3565b925082820262000e0981620009c3565b9150828204841483151762000e235762000e2262000bfe565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e73601f8362000e2a565b915062000e808262000e3b565b602082019050919050565b6000602082019050818103600083015262000ea68162000e64565b9050919050565b600062000eba82620009c3565b915062000ec783620009c3565b925082820190508082111562000ee25762000ee162000bfe565b5b92915050565b62000ef381620009c3565b82525050565b600060208201905062000f10600083018462000ee8565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000f7460268362000e2a565b915062000f818262000f16565b604082019050919050565b6000602082019050818103600083015262000fa78162000f65565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fe660208362000e2a565b915062000ff38262000fae565b602082019050919050565b60006020820190508181036000830152620010198162000fd7565b9050919050565b61471e80620010306000396000f3fe6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e919062003058565b62000888565b604051620002539190620030a7565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b6040516200028391906200315e565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b2919062003222565b6200099f565b604051620002c79190620030a7565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f791906200327a565b60405180910390f35b3480156200030d57600080fd5b506200032c600480360381019062000326919062003297565b620009d0565b005b3480156200033b57600080fd5b506200035a6004803603810190620003549190620032c9565b62000a48565b604051620003699190620030a7565b60405180910390f35b3480156200037f57600080fd5b506200039e600480360381019062000398919062003360565b62000a7d565b604051620003ad9190620033a3565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc9190620033c0565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b919062003418565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b919062003453565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a9190620033c0565b62000af3565b005b3480156200047f57600080fd5b506200049e600480360381019062000498919062003222565b62000b7d565b604051620004ad9190620030a7565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd91906200327a565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d919062003418565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d91906200327a565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c919062003470565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a9190620034b7565b6200106d565b604051620005af91906200327a565b60405180910390f35b348015620005c557600080fd5b50620005d0620010b5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f8919062003557565b620010cd565b005b3480156200060d57600080fd5b5062000618620011d1565b60405162000627919062003617565b60405180910390f35b3480156200063d57600080fd5b5062000648620011f7565b60405162000657919062003418565b60405180910390f35b3480156200066d57600080fd5b506200068c6004803603810190620006869190620033c0565b62001221565b6040516200069b9190620030a7565b60405180910390f35b348015620006b157600080fd5b50620006bc6200128c565b604051620006cb91906200315e565b60405180910390f35b348015620006e157600080fd5b50620006ec62001326565b604051620006fb9190620033a3565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a919062003222565b6200132d565b6040516200073f9190620030a7565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e919062003222565b620013ad565b604051620007839190620030a7565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b29190620033c0565b620013d4565b005b348015620007c757600080fd5b50620007e66004803603810190620007e09190620034b7565b620013fb565b005b348015620007f557600080fd5b506200081460048036038101906200080e919062003470565b6200152d565b6040516200082391906200327a565b60405180910390f35b3480156200083957600080fd5b5062000858600480360381019062000852919062003297565b620015b4565b005b3480156200086757600080fd5b50620008866004803603810190620008809190620034b7565b6200166a565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd82620016f4565b5b9050919050565b606060038054620009169062003663565b80601f0160208091040260200160405190810160405280929190818152602001828054620009449062003663565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac6200175e565b9050620009bb81858562001766565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc8162001937565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a556200175e565b905062000a648582856200194f565b62000a71858585620019e3565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab38162001937565b62000abf838362001e06565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b64906200370e565b60405180910390fd5b62000b79828262001eec565b5050565b60008062000b8a6200175e565b905062000bb181858562000b9f85896200152d565b62000bab91906200375f565b62001766565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a8162001937565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d359190620037b1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000d93929190620037e3565b6020604051808303816000875af115801562000db3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd99190620037b1565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eba92919062003810565b6020604051808303816000875af115801562000eda573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f0091906200386e565b5062000f5030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000f7d30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000fee600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b3060405162000ffd9062002fe3565b62001009919062003418565b604051809103906000f08015801562001026573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010bf62001fd3565b620010cb600062002058565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620010f98162001937565b43600a8190555060005b83839050811015620011cb57620011b566f8b0a10e470000662386f26fc1000060016200115e6005898988818110620011415762001140620038a0565b5b9050602002016020810190620011589190620034b7565b6200211e565b6200116a91906200375f565b620011769190620038cf565b6200118291906200375f565b858584818110620011985762001197620038a0565b5b9050602002016020810190620011af9190620034b7565b62002165565b8080620011c2906200391a565b91505062001103565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200129d9062003663565b80601f0160208091040260200160405190810160405280929190818152602001828054620012cb9062003663565b80156200131c5780601f10620012f0576101008083540402835291602001916200131c565b820191906000526020600020905b815481529060010190602001808311620012fe57829003601f168201915b5050505050905090565b6000801b81565b6000806200133a6200175e565b905060006200134a82866200152d565b90508381101562001392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200138990620039dd565b60405180910390fd5b620013a1828686840362001766565b60019250505092915050565b600080620013ba6200175e565b9050620013c9818585620019e3565b600191505092915050565b620013df8262000a7d565b620013ea8162001937565b620013f6838362001eec565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620014278162001937565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200147f919062003418565b602060405180830381865afa1580156200149d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014c3919062003a16565b6040518363ffffffff1660e01b8152600401620014e292919062003810565b6020604051808303816000875af115801562001502573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200152891906200386e565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016159392919062003a48565b6020604051808303816000875af115801562001635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165b91906200386e565b5062001667816200240e565b50565b6200167462001fd3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620016e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016dd9062003afb565b60405180910390fd5b620016f18162002058565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620017d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017cf9062003b93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018419062003c2b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200192a91906200327a565b60405180910390a3505050565b6200194c81620019466200175e565b620027e3565b50565b60006200195d84846200152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114620019dd5781811015620019cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620019c49062003c9d565b60405180910390fd5b620019dc848484840362001766565b5b50505050565b6000811162001a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a209062003d0f565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001ad65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001aef5762001ae983838362002873565b62001e01565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001c46576000600a541162001b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001b849062003d81565b60405180910390fd5b62001bc4833062001bbe606462001baf6001876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001bef606462001be06001846200288590919063ffffffff16565b6200289d90919063ffffffff16565b600d600082825462001c0291906200375f565b9250508190555062001c40838362001c3a606462001c2b6063876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001e01565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001e0057600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001d025762001cfc838383620028b5565b62001e01565b62001d39833062001d33606462001d246001876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001d64606462001d556001846200288590919063ffffffff16565b6200289d90919063ffffffff16565b600d600082825462001d7791906200375f565b9250508190555062001dbb81600d5462001d9291906200375f565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002b3a565b6000600d8190555062001dfa838362001df4606462001de56063876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001e01565b5b505050565b62001e12828262001221565b62001ee85760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001e8d6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001ef8828262001221565b1562001fcf5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001f746200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62001fdd6200175e565b73ffffffffffffffffffffffffffffffffffffffff1662001ffd620011f7565b73ffffffffffffffffffffffffffffffffffffffff161462002056576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200204d9062003df3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082424484604051602001620021389392919062003e8a565b6040516020818303038152906040528051906020012060001c6200215d919062003efc565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620021a0576200219f62003f34565b5b604051908082528060200260200182016040528015620021cf5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106200220c576200220b620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200225e576200225d620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620022f7919062003418565b602060405180830381865afa15801562002315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200233b919062003a16565b9050600084036200234a578093505b808411620023ed57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b8152600401620023b895949392919062004074565b600060405180830381600087803b158015620023d357600080fd5b505af1158015620023e8573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562002449576200244862003f34565b5b604051908082528060200260200182016040528015620024785781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620024b557620024b4620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620025075762002506620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620025a0919062003418565b602060405180830381865afa158015620025be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025e4919062003a16565b905060008303620025f3578092505b808311620026b857600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200268395949392919062004074565b600060405180830381600087803b1580156200269e57600080fd5b505af1158015620026b3573d6000803e3d6000fd5b505050505b6000620026e7600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b1115620027c3573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306200275b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b6040518463ffffffff1660e01b81526004016200277b9392919062003a48565b6020604051808303816000875af11580156200279b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027c191906200386e565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b620027ef828262001221565b6200286f57620027ff8162002d4f565b6200280f8360001c602062002d7e565b60405160200162002822929190620041ba565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200286691906200315e565b60405180910390fd5b5050565b62002880838383620028b5565b505050565b60008183620028959190620038cf565b905092915050565b60008183620028ad9190620041fc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362002927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200291e90620042aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362002999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620029909062004342565b60405180910390fd5b620029a683838362002fd9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002a2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a2690620043da565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002b1f91906200327a565b60405180910390a362002b3484848462002fde565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002b62306200106d565b90506000600267ffffffffffffffff81111562002b845762002b8362003f34565b5b60405190808252806020026020018201604052801562002bb35781602001602082028036833780820191505090505b5090508382101562002bc3578193505b600084111562002d2e57308160008151811062002be55762002be4620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002c595762002c58620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002cf995949392919062004074565b600060405180830381600087803b15801562002d1457600080fd5b505af115801562002d29573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002d778273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002d7e565b9050919050565b60606000600283600262002d939190620038cf565b62002d9f91906200375f565b67ffffffffffffffff81111562002dbb5762002dba62003f34565b5b6040519080825280601f01601f19166020018201604052801562002dee5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002e295762002e28620038a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002e905762002e8f620038a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002ed29190620038cf565b62002ede91906200375f565b90505b600181111562002f88577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002f245762002f23620038a0565b5b1a60f81b82828151811062002f3e5762002f3d620038a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508062002f8090620043fc565b905062002ee1565b506000841462002fcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fc6906200447a565b60405180910390fd5b8091505092915050565b505050565b505050565b61024c806200449d83390190565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620030328162002ffb565b81146200303e57600080fd5b50565b600081359050620030528162003027565b92915050565b60006020828403121562003071576200307062002ff1565b5b6000620030818482850162003041565b91505092915050565b60008115159050919050565b620030a1816200308a565b82525050565b6000602082019050620030be600083018462003096565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562003100578082015181840152602081019050620030e3565b60008484015250505050565b6000601f19601f8301169050919050565b60006200312a82620030c4565b620031368185620030cf565b935062003148818560208601620030e0565b62003153816200310c565b840191505092915050565b600060208201905081810360008301526200317a81846200311d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620031af8262003182565b9050919050565b620031c181620031a2565b8114620031cd57600080fd5b50565b600081359050620031e181620031b6565b92915050565b6000819050919050565b620031fc81620031e7565b81146200320857600080fd5b50565b6000813590506200321c81620031f1565b92915050565b600080604083850312156200323c576200323b62002ff1565b5b60006200324c85828601620031d0565b92505060206200325f858286016200320b565b9150509250929050565b6200327481620031e7565b82525050565b600060208201905062003291600083018462003269565b92915050565b600060208284031215620032b057620032af62002ff1565b5b6000620032c0848285016200320b565b91505092915050565b600080600060608486031215620032e557620032e462002ff1565b5b6000620032f586828701620031d0565b93505060206200330886828701620031d0565b92505060406200331b868287016200320b565b9150509250925092565b6000819050919050565b6200333a8162003325565b81146200334657600080fd5b50565b6000813590506200335a816200332f565b92915050565b60006020828403121562003379576200337862002ff1565b5b6000620033898482850162003349565b91505092915050565b6200339d8162003325565b82525050565b6000602082019050620033ba600083018462003392565b92915050565b60008060408385031215620033da57620033d962002ff1565b5b6000620033ea8582860162003349565b9250506020620033fd85828601620031d0565b9150509250929050565b6200341281620031a2565b82525050565b60006020820190506200342f600083018462003407565b92915050565b600060ff82169050919050565b6200344d8162003435565b82525050565b60006020820190506200346a600083018462003442565b92915050565b600080604083850312156200348a576200348962002ff1565b5b60006200349a85828601620031d0565b9250506020620034ad85828601620031d0565b9150509250929050565b600060208284031215620034d057620034cf62002ff1565b5b6000620034e084828501620031d0565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112620035115762003510620034e9565b5b8235905067ffffffffffffffff811115620035315762003530620034ee565b5b60208301915083602082028301111562003550576200354f620034f3565b5b9250929050565b6000806020838503121562003571576200357062002ff1565b5b600083013567ffffffffffffffff81111562003592576200359162002ff6565b5b620035a085828601620034f8565b92509250509250929050565b6000819050919050565b6000620035d7620035d1620035cb8462003182565b620035ac565b62003182565b9050919050565b6000620035eb82620035b6565b9050919050565b6000620035ff82620035de565b9050919050565b6200361181620035f2565b82525050565b60006020820190506200362e600083018462003606565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200367c57607f821691505b60208210810362003692576200369162003634565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000620036f6602f83620030cf565b9150620037038262003698565b604082019050919050565b600060208201905081810360008301526200372981620036e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200376c82620031e7565b91506200377983620031e7565b925082820190508082111562003794576200379362003730565b5b92915050565b600081519050620037ab81620031b6565b92915050565b600060208284031215620037ca57620037c962002ff1565b5b6000620037da848285016200379a565b91505092915050565b6000604082019050620037fa600083018562003407565b62003809602083018462003407565b9392505050565b600060408201905062003827600083018562003407565b62003836602083018462003269565b9392505050565b62003848816200308a565b81146200385457600080fd5b50565b60008151905062003868816200383d565b92915050565b60006020828403121562003887576200388662002ff1565b5b6000620038978482850162003857565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000620038dc82620031e7565b9150620038e983620031e7565b9250828202620038f981620031e7565b9150828204841483151762003913576200391262003730565b5b5092915050565b60006200392782620031e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036200395c576200395b62003730565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000620039c5602583620030cf565b9150620039d28262003967565b604082019050919050565b60006020820190508181036000830152620039f881620039b6565b9050919050565b60008151905062003a1081620031f1565b92915050565b60006020828403121562003a2f5762003a2e62002ff1565b5b600062003a3f84828501620039ff565b91505092915050565b600060608201905062003a5f600083018662003407565b62003a6e602083018562003407565b62003a7d604083018462003269565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062003ae3602683620030cf565b915062003af08262003a85565b604082019050919050565b6000602082019050818103600083015262003b168162003ad4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062003b7b602483620030cf565b915062003b888262003b1d565b604082019050919050565b6000602082019050818103600083015262003bae8162003b6c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062003c13602283620030cf565b915062003c208262003bb5565b604082019050919050565b6000602082019050818103600083015262003c468162003c04565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062003c85601d83620030cf565b915062003c928262003c4d565b602082019050919050565b6000602082019050818103600083015262003cb88162003c76565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600062003cf7601083620030cf565b915062003d048262003cbf565b602082019050919050565b6000602082019050818103600083015262003d2a8162003ce8565b9050919050565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b600062003d69600883620030cf565b915062003d768262003d31565b602082019050919050565b6000602082019050818103600083015262003d9c8162003d5a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062003ddb602083620030cf565b915062003de88262003da3565b602082019050919050565b6000602082019050818103600083015262003e0e8162003dcc565b9050919050565b6000819050919050565b62003e3462003e2e82620031e7565b62003e15565b82525050565b60008160601b9050919050565b600062003e548262003e3a565b9050919050565b600062003e688262003e47565b9050919050565b62003e8462003e7e82620031a2565b62003e5b565b82525050565b600062003e98828662003e1f565b60208201915062003eaa828562003e1f565b60208201915062003ebc828462003e6f565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062003f0982620031e7565b915062003f1683620031e7565b92508262003f295762003f2862003ecd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600062003f8e62003f8862003f828462003f63565b620035ac565b620031e7565b9050919050565b62003fa08162003f6d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62003fdd81620031a2565b82525050565b600062003ff1838362003fd2565b60208301905092915050565b6000602082019050919050565b6000620040178262003fa6565b62004023818562003fb1565b9350620040308362003fc2565b8060005b83811015620040675781516200404b888262003fe3565b9750620040588362003ffd565b92505060018101905062004034565b5085935050505092915050565b600060a0820190506200408b600083018862003269565b6200409a602083018762003f95565b8181036040830152620040ae81866200400a565b9050620040bf606083018562003407565b620040ce608083018462003269565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006200411b601783620040d8565b91506200412882620040e3565b601782019050919050565b60006200414082620030c4565b6200414c8185620040d8565b93506200415e818560208601620030e0565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000620041a2601183620040d8565b9150620041af826200416a565b601182019050919050565b6000620041c7826200410c565b9150620041d5828562004133565b9150620041e28262004193565b9150620041f0828462004133565b91508190509392505050565b60006200420982620031e7565b91506200421683620031e7565b92508262004229576200422862003ecd565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062004292602583620030cf565b91506200429f8262004234565b604082019050919050565b60006020820190508181036000830152620042c58162004283565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200432a602383620030cf565b91506200433782620042cc565b604082019050919050565b600060208201905081810360008301526200435d816200431b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000620043c2602683620030cf565b9150620043cf8262004364565b604082019050919050565b60006020820190508181036000830152620043f581620043b3565b9050919050565b60006200440982620031e7565b9150600082036200441f576200441e62003730565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600062004462602083620030cf565b91506200446f826200442a565b602082019050919050565b60006020820190508181036000830152620044958162004453565b905091905056fe608060405234801561001057600080fd5b5060405161024c38038061024c8339818101604052810190610032919061011c565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610171565b6020604051808303816000875af115801561008e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b291906101d2565b50506101ff565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100e9826100be565b9050919050565b6100f9816100de565b811461010457600080fd5b50565b600081519050610116816100f0565b92915050565b600060208284031215610132576101316100b9565b5b600061014084828501610107565b91505092915050565b610152816100de565b82525050565b6000819050919050565b61016b81610158565b82525050565b60006040820190506101866000830185610149565b6101936020830184610162565b9392505050565b60008115159050919050565b6101af8161019a565b81146101ba57600080fd5b50565b6000815190506101cc816101a6565b92915050565b6000602082840312156101e8576101e76100b9565b5b60006101f6848285016101bd565b91505092915050565b603f8061020d6000396000f3fe6080604052600080fdfea26469706673582212209716f86ac10e10c50102e6a2c4bbc3c2ac1888b0c9ccdef8ba207abd223c55bc64736f6c63430008120033a26469706673582212207474703395bfbd4293c79f5d9214b241778d0a3c0334a4a390d4e490fa84d51264736f6c63430008120033

Deployed Bytecode

0x6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e919062003058565b62000888565b604051620002539190620030a7565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b6040516200028391906200315e565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b2919062003222565b6200099f565b604051620002c79190620030a7565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f791906200327a565b60405180910390f35b3480156200030d57600080fd5b506200032c600480360381019062000326919062003297565b620009d0565b005b3480156200033b57600080fd5b506200035a6004803603810190620003549190620032c9565b62000a48565b604051620003699190620030a7565b60405180910390f35b3480156200037f57600080fd5b506200039e600480360381019062000398919062003360565b62000a7d565b604051620003ad9190620033a3565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc9190620033c0565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b919062003418565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b919062003453565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a9190620033c0565b62000af3565b005b3480156200047f57600080fd5b506200049e600480360381019062000498919062003222565b62000b7d565b604051620004ad9190620030a7565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd91906200327a565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d919062003418565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d91906200327a565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c919062003470565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a9190620034b7565b6200106d565b604051620005af91906200327a565b60405180910390f35b348015620005c557600080fd5b50620005d0620010b5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f8919062003557565b620010cd565b005b3480156200060d57600080fd5b5062000618620011d1565b60405162000627919062003617565b60405180910390f35b3480156200063d57600080fd5b5062000648620011f7565b60405162000657919062003418565b60405180910390f35b3480156200066d57600080fd5b506200068c6004803603810190620006869190620033c0565b62001221565b6040516200069b9190620030a7565b60405180910390f35b348015620006b157600080fd5b50620006bc6200128c565b604051620006cb91906200315e565b60405180910390f35b348015620006e157600080fd5b50620006ec62001326565b604051620006fb9190620033a3565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a919062003222565b6200132d565b6040516200073f9190620030a7565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e919062003222565b620013ad565b604051620007839190620030a7565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b29190620033c0565b620013d4565b005b348015620007c757600080fd5b50620007e66004803603810190620007e09190620034b7565b620013fb565b005b348015620007f557600080fd5b506200081460048036038101906200080e919062003470565b6200152d565b6040516200082391906200327a565b60405180910390f35b3480156200083957600080fd5b5062000858600480360381019062000852919062003297565b620015b4565b005b3480156200086757600080fd5b50620008866004803603810190620008809190620034b7565b6200166a565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd82620016f4565b5b9050919050565b606060038054620009169062003663565b80601f0160208091040260200160405190810160405280929190818152602001828054620009449062003663565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac6200175e565b9050620009bb81858562001766565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc8162001937565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a556200175e565b905062000a648582856200194f565b62000a71858585620019e3565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab38162001937565b62000abf838362001e06565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b64906200370e565b60405180910390fd5b62000b79828262001eec565b5050565b60008062000b8a6200175e565b905062000bb181858562000b9f85896200152d565b62000bab91906200375f565b62001766565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a8162001937565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d359190620037b1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000d93929190620037e3565b6020604051808303816000875af115801562000db3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd99190620037b1565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eba92919062003810565b6020604051808303816000875af115801562000eda573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f0091906200386e565b5062000f5030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000f7d30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000fee600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b3060405162000ffd9062002fe3565b62001009919062003418565b604051809103906000f08015801562001026573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010bf62001fd3565b620010cb600062002058565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620010f98162001937565b43600a8190555060005b83839050811015620011cb57620011b566f8b0a10e470000662386f26fc1000060016200115e6005898988818110620011415762001140620038a0565b5b9050602002016020810190620011589190620034b7565b6200211e565b6200116a91906200375f565b620011769190620038cf565b6200118291906200375f565b858584818110620011985762001197620038a0565b5b9050602002016020810190620011af9190620034b7565b62002165565b8080620011c2906200391a565b91505062001103565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200129d9062003663565b80601f0160208091040260200160405190810160405280929190818152602001828054620012cb9062003663565b80156200131c5780601f10620012f0576101008083540402835291602001916200131c565b820191906000526020600020905b815481529060010190602001808311620012fe57829003601f168201915b5050505050905090565b6000801b81565b6000806200133a6200175e565b905060006200134a82866200152d565b90508381101562001392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200138990620039dd565b60405180910390fd5b620013a1828686840362001766565b60019250505092915050565b600080620013ba6200175e565b9050620013c9818585620019e3565b600191505092915050565b620013df8262000a7d565b620013ea8162001937565b620013f6838362001eec565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620014278162001937565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200147f919062003418565b602060405180830381865afa1580156200149d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014c3919062003a16565b6040518363ffffffff1660e01b8152600401620014e292919062003810565b6020604051808303816000875af115801562001502573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200152891906200386e565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016159392919062003a48565b6020604051808303816000875af115801562001635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165b91906200386e565b5062001667816200240e565b50565b6200167462001fd3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620016e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016dd9062003afb565b60405180910390fd5b620016f18162002058565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620017d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017cf9062003b93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018419062003c2b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200192a91906200327a565b60405180910390a3505050565b6200194c81620019466200175e565b620027e3565b50565b60006200195d84846200152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114620019dd5781811015620019cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620019c49062003c9d565b60405180910390fd5b620019dc848484840362001766565b5b50505050565b6000811162001a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a209062003d0f565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001ad65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001aef5762001ae983838362002873565b62001e01565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001c46576000600a541162001b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001b849062003d81565b60405180910390fd5b62001bc4833062001bbe606462001baf6001876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001bef606462001be06001846200288590919063ffffffff16565b6200289d90919063ffffffff16565b600d600082825462001c0291906200375f565b9250508190555062001c40838362001c3a606462001c2b6063876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001e01565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001e0057600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001d025762001cfc838383620028b5565b62001e01565b62001d39833062001d33606462001d246001876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001d64606462001d556001846200288590919063ffffffff16565b6200289d90919063ffffffff16565b600d600082825462001d7791906200375f565b9250508190555062001dbb81600d5462001d9291906200375f565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002b3a565b6000600d8190555062001dfa838362001df4606462001de56063876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001e01565b5b505050565b62001e12828262001221565b62001ee85760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001e8d6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001ef8828262001221565b1562001fcf5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001f746200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62001fdd6200175e565b73ffffffffffffffffffffffffffffffffffffffff1662001ffd620011f7565b73ffffffffffffffffffffffffffffffffffffffff161462002056576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200204d9062003df3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082424484604051602001620021389392919062003e8a565b6040516020818303038152906040528051906020012060001c6200215d919062003efc565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620021a0576200219f62003f34565b5b604051908082528060200260200182016040528015620021cf5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106200220c576200220b620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200225e576200225d620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620022f7919062003418565b602060405180830381865afa15801562002315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200233b919062003a16565b9050600084036200234a578093505b808411620023ed57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b8152600401620023b895949392919062004074565b600060405180830381600087803b158015620023d357600080fd5b505af1158015620023e8573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562002449576200244862003f34565b5b604051908082528060200260200182016040528015620024785781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620024b557620024b4620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620025075762002506620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620025a0919062003418565b602060405180830381865afa158015620025be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025e4919062003a16565b905060008303620025f3578092505b808311620026b857600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200268395949392919062004074565b600060405180830381600087803b1580156200269e57600080fd5b505af1158015620026b3573d6000803e3d6000fd5b505050505b6000620026e7600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b1115620027c3573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306200275b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b6040518463ffffffff1660e01b81526004016200277b9392919062003a48565b6020604051808303816000875af11580156200279b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027c191906200386e565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b620027ef828262001221565b6200286f57620027ff8162002d4f565b6200280f8360001c602062002d7e565b60405160200162002822929190620041ba565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200286691906200315e565b60405180910390fd5b5050565b62002880838383620028b5565b505050565b60008183620028959190620038cf565b905092915050565b60008183620028ad9190620041fc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362002927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200291e90620042aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362002999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620029909062004342565b60405180910390fd5b620029a683838362002fd9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002a2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a2690620043da565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002b1f91906200327a565b60405180910390a362002b3484848462002fde565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002b62306200106d565b90506000600267ffffffffffffffff81111562002b845762002b8362003f34565b5b60405190808252806020026020018201604052801562002bb35781602001602082028036833780820191505090505b5090508382101562002bc3578193505b600084111562002d2e57308160008151811062002be55762002be4620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002c595762002c58620038a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002cf995949392919062004074565b600060405180830381600087803b15801562002d1457600080fd5b505af115801562002d29573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002d778273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002d7e565b9050919050565b60606000600283600262002d939190620038cf565b62002d9f91906200375f565b67ffffffffffffffff81111562002dbb5762002dba62003f34565b5b6040519080825280601f01601f19166020018201604052801562002dee5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002e295762002e28620038a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002e905762002e8f620038a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002ed29190620038cf565b62002ede91906200375f565b90505b600181111562002f88577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002f245762002f23620038a0565b5b1a60f81b82828151811062002f3e5762002f3d620038a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508062002f8090620043fc565b905062002ee1565b506000841462002fcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fc6906200447a565b60405180910390fd5b8091505092915050565b505050565b505050565b61024c806200449d83390190565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620030328162002ffb565b81146200303e57600080fd5b50565b600081359050620030528162003027565b92915050565b60006020828403121562003071576200307062002ff1565b5b6000620030818482850162003041565b91505092915050565b60008115159050919050565b620030a1816200308a565b82525050565b6000602082019050620030be600083018462003096565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562003100578082015181840152602081019050620030e3565b60008484015250505050565b6000601f19601f8301169050919050565b60006200312a82620030c4565b620031368185620030cf565b935062003148818560208601620030e0565b62003153816200310c565b840191505092915050565b600060208201905081810360008301526200317a81846200311d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620031af8262003182565b9050919050565b620031c181620031a2565b8114620031cd57600080fd5b50565b600081359050620031e181620031b6565b92915050565b6000819050919050565b620031fc81620031e7565b81146200320857600080fd5b50565b6000813590506200321c81620031f1565b92915050565b600080604083850312156200323c576200323b62002ff1565b5b60006200324c85828601620031d0565b92505060206200325f858286016200320b565b9150509250929050565b6200327481620031e7565b82525050565b600060208201905062003291600083018462003269565b92915050565b600060208284031215620032b057620032af62002ff1565b5b6000620032c0848285016200320b565b91505092915050565b600080600060608486031215620032e557620032e462002ff1565b5b6000620032f586828701620031d0565b93505060206200330886828701620031d0565b92505060406200331b868287016200320b565b9150509250925092565b6000819050919050565b6200333a8162003325565b81146200334657600080fd5b50565b6000813590506200335a816200332f565b92915050565b60006020828403121562003379576200337862002ff1565b5b6000620033898482850162003349565b91505092915050565b6200339d8162003325565b82525050565b6000602082019050620033ba600083018462003392565b92915050565b60008060408385031215620033da57620033d962002ff1565b5b6000620033ea8582860162003349565b9250506020620033fd85828601620031d0565b9150509250929050565b6200341281620031a2565b82525050565b60006020820190506200342f600083018462003407565b92915050565b600060ff82169050919050565b6200344d8162003435565b82525050565b60006020820190506200346a600083018462003442565b92915050565b600080604083850312156200348a576200348962002ff1565b5b60006200349a85828601620031d0565b9250506020620034ad85828601620031d0565b9150509250929050565b600060208284031215620034d057620034cf62002ff1565b5b6000620034e084828501620031d0565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112620035115762003510620034e9565b5b8235905067ffffffffffffffff811115620035315762003530620034ee565b5b60208301915083602082028301111562003550576200354f620034f3565b5b9250929050565b6000806020838503121562003571576200357062002ff1565b5b600083013567ffffffffffffffff81111562003592576200359162002ff6565b5b620035a085828601620034f8565b92509250509250929050565b6000819050919050565b6000620035d7620035d1620035cb8462003182565b620035ac565b62003182565b9050919050565b6000620035eb82620035b6565b9050919050565b6000620035ff82620035de565b9050919050565b6200361181620035f2565b82525050565b60006020820190506200362e600083018462003606565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200367c57607f821691505b60208210810362003692576200369162003634565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000620036f6602f83620030cf565b9150620037038262003698565b604082019050919050565b600060208201905081810360008301526200372981620036e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200376c82620031e7565b91506200377983620031e7565b925082820190508082111562003794576200379362003730565b5b92915050565b600081519050620037ab81620031b6565b92915050565b600060208284031215620037ca57620037c962002ff1565b5b6000620037da848285016200379a565b91505092915050565b6000604082019050620037fa600083018562003407565b62003809602083018462003407565b9392505050565b600060408201905062003827600083018562003407565b62003836602083018462003269565b9392505050565b62003848816200308a565b81146200385457600080fd5b50565b60008151905062003868816200383d565b92915050565b60006020828403121562003887576200388662002ff1565b5b6000620038978482850162003857565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000620038dc82620031e7565b9150620038e983620031e7565b9250828202620038f981620031e7565b9150828204841483151762003913576200391262003730565b5b5092915050565b60006200392782620031e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036200395c576200395b62003730565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000620039c5602583620030cf565b9150620039d28262003967565b604082019050919050565b60006020820190508181036000830152620039f881620039b6565b9050919050565b60008151905062003a1081620031f1565b92915050565b60006020828403121562003a2f5762003a2e62002ff1565b5b600062003a3f84828501620039ff565b91505092915050565b600060608201905062003a5f600083018662003407565b62003a6e602083018562003407565b62003a7d604083018462003269565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062003ae3602683620030cf565b915062003af08262003a85565b604082019050919050565b6000602082019050818103600083015262003b168162003ad4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062003b7b602483620030cf565b915062003b888262003b1d565b604082019050919050565b6000602082019050818103600083015262003bae8162003b6c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062003c13602283620030cf565b915062003c208262003bb5565b604082019050919050565b6000602082019050818103600083015262003c468162003c04565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062003c85601d83620030cf565b915062003c928262003c4d565b602082019050919050565b6000602082019050818103600083015262003cb88162003c76565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600062003cf7601083620030cf565b915062003d048262003cbf565b602082019050919050565b6000602082019050818103600083015262003d2a8162003ce8565b9050919050565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b600062003d69600883620030cf565b915062003d768262003d31565b602082019050919050565b6000602082019050818103600083015262003d9c8162003d5a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062003ddb602083620030cf565b915062003de88262003da3565b602082019050919050565b6000602082019050818103600083015262003e0e8162003dcc565b9050919050565b6000819050919050565b62003e3462003e2e82620031e7565b62003e15565b82525050565b60008160601b9050919050565b600062003e548262003e3a565b9050919050565b600062003e688262003e47565b9050919050565b62003e8462003e7e82620031a2565b62003e5b565b82525050565b600062003e98828662003e1f565b60208201915062003eaa828562003e1f565b60208201915062003ebc828462003e6f565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062003f0982620031e7565b915062003f1683620031e7565b92508262003f295762003f2862003ecd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600062003f8e62003f8862003f828462003f63565b620035ac565b620031e7565b9050919050565b62003fa08162003f6d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62003fdd81620031a2565b82525050565b600062003ff1838362003fd2565b60208301905092915050565b6000602082019050919050565b6000620040178262003fa6565b62004023818562003fb1565b9350620040308362003fc2565b8060005b83811015620040675781516200404b888262003fe3565b9750620040588362003ffd565b92505060018101905062004034565b5085935050505092915050565b600060a0820190506200408b600083018862003269565b6200409a602083018762003f95565b8181036040830152620040ae81866200400a565b9050620040bf606083018562003407565b620040ce608083018462003269565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006200411b601783620040d8565b91506200412882620040e3565b601782019050919050565b60006200414082620030c4565b6200414c8185620040d8565b93506200415e818560208601620030e0565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000620041a2601183620040d8565b9150620041af826200416a565b601182019050919050565b6000620041c7826200410c565b9150620041d5828562004133565b9150620041e28262004193565b9150620041f0828462004133565b91508190509392505050565b60006200420982620031e7565b91506200421683620031e7565b92508262004229576200422862003ecd565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062004292602583620030cf565b91506200429f8262004234565b604082019050919050565b60006020820190508181036000830152620042c58162004283565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200432a602383620030cf565b91506200433782620042cc565b604082019050919050565b600060208201905081810360008301526200435d816200431b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000620043c2602683620030cf565b9150620043cf8262004364565b604082019050919050565b60006020820190508181036000830152620043f581620043b3565b9050919050565b60006200440982620031e7565b9150600082036200441f576200441e62003730565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600062004462602083620030cf565b91506200446f826200442a565b602082019050919050565b60006020820190508181036000830152620044958162004453565b905091905056fe608060405234801561001057600080fd5b5060405161024c38038061024c8339818101604052810190610032919061011c565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610171565b6020604051808303816000875af115801561008e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b291906101d2565b50506101ff565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100e9826100be565b9050919050565b6100f9816100de565b811461010457600080fd5b50565b600081519050610116816100f0565b92915050565b600060208284031215610132576101316100b9565b5b600061014084828501610107565b91505092915050565b610152816100de565b82525050565b6000819050919050565b61016b81610158565b82525050565b60006040820190506101866000830185610149565b6101936020830184610162565b9392505050565b60008115159050919050565b6101af8161019a565b81146101ba57600080fd5b50565b6000815190506101cc816101a6565b92915050565b6000602082840312156101e8576101e76100b9565b5b60006101f6848285016101bd565b91505092915050565b603f8061020d6000396000f3fe6080604052600080fdfea26469706673582212209716f86ac10e10c50102e6a2c4bbc3c2ac1888b0c9ccdef8ba207abd223c55bc64736f6c63430008120033a26469706673582212207474703395bfbd4293c79f5d9214b241778d0a3c0334a4a390d4e490fa84d51264736f6c63430008120033

Deployed Bytecode Sourcemap

62931:6110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37630:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51720:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54080:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52849:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68873:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54861:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39453:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39894:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63166:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64698:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41038:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55531:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63272:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63131:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63192:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63944:748;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53020:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45175:103;;;;;;;;;;;;;:::i;:::-;;68270:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63352:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44534:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37926:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51939:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37031:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56272:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53353:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40334:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68700:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53609:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66198:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45433:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37630:204;37715:4;37754:32;37739:47;;;:11;:47;;;;:87;;;;37790:36;37814:11;37790:23;:36::i;:::-;37739:87;37732:94;;37630:204;;;:::o;51720:100::-;51774:13;51807:5;51800:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51720:100;:::o;54080:201::-;54163:4;54180:13;54196:12;:10;:12::i;:::-;54180:28;;54219:32;54228:5;54235:7;54244:6;54219:8;:32::i;:::-;54269:4;54262:11;;;54080:201;;;;:::o;52849:108::-;52910:7;52937:12;;52930:19;;52849:108;:::o;68873:122::-;63024:25;37522:16;37533:4;37522:10;:16::i;:::-;68959:10:::1;68951:28;;:36;68980:6;68951:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68873:122:::0;;:::o;54861:261::-;54958:4;54975:15;54993:12;:10;:12::i;:::-;54975:30;;55016:38;55032:4;55038:7;55047:6;55016:15;:38::i;:::-;55065:27;55075:4;55081:2;55085:6;55065:9;:27::i;:::-;55110:4;55103:11;;;54861:261;;;;;:::o;39453:131::-;39527:7;39554:6;:12;39561:4;39554:12;;;;;;;;;;;:22;;;39547:29;;39453:131;;;:::o;39894:147::-;39977:18;39990:4;39977:12;:18::i;:::-;37522:16;37533:4;37522:10;:16::i;:::-;40008:25:::1;40019:4;40025:7;40008:10;:25::i;:::-;39894:147:::0;;;:::o;63166:19::-;;;;;;;;;;;;;:::o;64698:92::-;64756:5;64781:1;64774:8;;64698:92;:::o;41038:218::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:23;;;41126:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;41222:26;41234:4;41240:7;41222:11;:26::i;:::-;41038:218;;:::o;55531:238::-;55619:4;55636:13;55652:12;:10;:12::i;:::-;55636:28;;55675:64;55684:5;55691:7;55728:10;55700:25;55710:5;55717:7;55700:9;:25::i;:::-;:38;;;;:::i;:::-;55675:8;:64::i;:::-;55757:4;55750:11;;;55531:238;;;;:::o;63272:24::-;;;;:::o;63131:28::-;;;;;;;;;;;;;:::o;63192:30::-;;;;:::o;63944:748::-;63024:25;37522:16;37533:4;37522:10;:16::i;:::-;64038:6:::1;64033:4;;:11;;;;;;;;;;;;;;;;;;64111:12;64124:5;64111:18;;64225:4;64195:15;;:35;;;;;;;;;;;;;;;;;;64270:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64257:50;;;64316:4;64323;;;;;;;;;;;64257:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64241:13;;:87;;;;;;;;;;;;;;;;;;64345:4;;;;;;;;;;;64339:19;;;64367:15;;;;;;;;;;;64385:17;64339:64;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64414:67;64431:4;64446:15;;;;;;;;;;;64463:17;64414:8;:67::i;:::-;64492:56;64509:4;64524;64530:17;64492:8;:56::i;:::-;64559:59;64568:5;;;;;;;;;;;64583:15;;;;;;;;;;;64600:17;64559:8;:59::i;:::-;64678:4;64649:35;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64629:17;;:55;;;;;;;;;;;;;;;;;;64022:670;63944:748:::0;;;:::o;53020:127::-;53094:7;53121:9;:18;53131:7;53121:18;;;;;;;;;;;;;;;;53114:25;;53020:127;;;:::o;45175:103::-;44420:13;:11;:13::i;:::-;45240:30:::1;45267:1;45240:18;:30::i;:::-;45175:103::o:0;68270:236::-;63024:25;37522:16;37533:4;37522:10;:16::i;:::-;68374:12:::1;68356:15;:30;;;;68401:6;68397:101;68412:4;;:11;;68410:1;:13;68397:101;;;68442:56;68481:8;68474:6;68471:1;68453:17;68460:1;68462:4;;68467:1;68462:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;68453:6;:17::i;:::-;:19;;;;:::i;:::-;68452:28;;;;:::i;:::-;:37;;;;:::i;:::-;68490:4;;68495:1;68490:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;68442:9;:56::i;:::-;68424:3;;;;;:::i;:::-;;;;68397:101;;;;68270:236:::0;;;:::o;63352:41::-;;;;;;;;;;;;;:::o;44534:87::-;44580:7;44607:6;;;;;;;;;;;44600:13;;44534:87;:::o;37926:147::-;38012:4;38036:6;:12;38043:4;38036:12;;;;;;;;;;;:20;;:29;38057:7;38036:29;;;;;;;;;;;;;;;;;;;;;;;;;38029:36;;37926:147;;;;:::o;51939:104::-;51995:13;52028:7;52021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51939:104;:::o;37031:49::-;37076:4;37031:49;;;:::o;56272:436::-;56365:4;56382:13;56398:12;:10;:12::i;:::-;56382:28;;56421:24;56448:25;56458:5;56465:7;56448:9;:25::i;:::-;56421:52;;56512:15;56492:16;:35;;56484:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56605:60;56614:5;56621:7;56649:15;56630:16;:34;56605:8;:60::i;:::-;56696:4;56689:11;;;;56272:436;;;;:::o;53353:193::-;53432:4;53449:13;53465:12;:10;:12::i;:::-;53449:28;;53488;53498:5;53505:2;53509:6;53488:9;:28::i;:::-;53534:4;53527:11;;;53353:193;;;;:::o;40334:149::-;40418:18;40431:4;40418:12;:18::i;:::-;37522:16;37533:4;37522:10;:16::i;:::-;40449:26:::1;40461:4;40467:7;40449:11;:26::i;:::-;40334:149:::0;;;:::o;68700:161::-;63024:25;37522:16;37533:4;37522:10;:16::i;:::-;68784:6:::1;68778:22;;;68801:10;68820:6;68813:24;;;68846:4;68813:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68778:75;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68700:161:::0;;:::o;53609:151::-;53698:7;53725:11;:18;53737:5;53725:18;;;;;;;;;;;;;;;:27;53744:7;53725:27;;;;;;;;;;;;;;;;53718:34;;53609:151;;;;:::o;66198:158::-;66254:4;;;;;;;;;;;66248:24;;;66273:10;66293:4;66300:6;66248:59;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66318:30;66341:6;66318:22;:30::i;:::-;66198:158;:::o;45433:201::-;44420:13;:11;:13::i;:::-;45542:1:::1;45522:22;;:8;:22;;::::0;45514:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;45598:28;45617:8;45598:18;:28::i;:::-;45433:201:::0;:::o;6567:157::-;6652:4;6691:25;6676:40;;;:11;:40;;;;6669:47;;6567:157;;;:::o;34712:98::-;34765:7;34792:10;34785:17;;34712:98;:::o;60265:346::-;60384:1;60367:19;;:5;:19;;;60359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60465:1;60446:21;;:7;:21;;;60438:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60549:6;60519:11;:18;60531:5;60519:18;;;;;;;;;;;;;;;:27;60538:7;60519:27;;;;;;;;;;;;;;;:36;;;;60587:7;60571:32;;60580:5;60571:32;;;60596:6;60571:32;;;;;;:::i;:::-;;;;;;;;60265:346;;;:::o;38377:105::-;38444:30;38455:4;38461:12;:10;:12::i;:::-;38444:10;:30::i;:::-;38377:105;:::o;60902:419::-;61003:24;61030:25;61040:5;61047:7;61030:9;:25::i;:::-;61003:52;;61090:17;61070:16;:37;61066:248;;61152:6;61132:16;:26;;61124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61236:51;61245:5;61252:7;61280:6;61261:16;:25;61236:8;:51::i;:::-;61066:248;60992:329;60902:419;;;:::o;64801:1085::-;64942:1;64933:6;:10;64925:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;64996:13;;;;;;;;;;;64988:21;;:4;:21;;;;:44;;;;;65019:13;;;;;;;;;;;65013:19;;:2;:19;;;;64988:44;64985:127;;;65049:30;65062:4;65068:2;65072:6;65049:12;:30::i;:::-;65094:7;;64985:127;65133:13;;;;;;;;;;;65125:21;;:4;:21;;;65122:300;;65187:1;65171:15;;:17;65163:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;65216:60;65232:4;65246;65253:22;65271:3;65253:13;65264:1;65253:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65216:15;:60::i;:::-;65302:22;65320:3;65302:13;65313:1;65302:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65291:9;;:33;;;;;;;:::i;:::-;;;;;;;;65339:50;65355:4;65361:2;65365:23;65384:3;65365:14;65376:2;65365:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;65339:15;:50::i;:::-;65404:7;;65122:300;65441:13;;;;;;;;;;;65435:19;;:2;:19;;;65432:447;;65474:9;:15;65484:4;65474:15;;;;;;;;;;;;;;;;;;;;;;;;;65471:112;;;65509:33;65525:4;65531:2;65535:6;65509:15;:33::i;:::-;65561:7;;65471:112;65597:60;65613:4;65627;65634:22;65652:3;65634:13;65645:1;65634:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65597:15;:60::i;:::-;65683:22;65701:3;65683:13;65694:1;65683:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65672:9;;:33;;;;;;;:::i;:::-;;;;;;;;65720:35;65739:6;65729:9;;:16;;;;:::i;:::-;65746:8;;;;;;;;;;;65720;:35::i;:::-;65780:1;65770:9;:11;;;;65796:50;65812:4;65818:2;65822:23;65841:3;65822:14;65833:2;65822:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;65796:15;:50::i;:::-;65861:7;;65432:447;64801:1085;;;;:::o;42635:238::-;42719:22;42727:4;42733:7;42719;:22::i;:::-;42714:152;;42790:4;42758:6;:12;42765:4;42758:12;;;;;;;;;;;:20;;:29;42779:7;42758:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;42841:12;:10;:12::i;:::-;42814:40;;42832:7;42814:40;;42826:4;42814:40;;;;;;;;;;42714:152;42635:238;;:::o;43053:239::-;43137:22;43145:4;43151:7;43137;:22::i;:::-;43133:152;;;43208:5;43176:6;:12;43183:4;43176:12;;;;;;;;;;;:20;;:29;43197:7;43176:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;43260:12;:10;:12::i;:::-;43233:40;;43251:7;43233:40;;43245:4;43233:40;;;;;;;;;;43133:152;43053:239;;:::o;44699:132::-;44774:12;:10;:12::i;:::-;44763:23;;:7;:5;:7::i;:::-;:23;;;44755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44699:132::o;45794:191::-;45868:16;45887:6;;;;;;;;;;;45868:25;;45913:8;45904:6;;:17;;;;;;;;;;;;;;;;;;45968:8;45937:40;;45958:8;45937:40;;;;;;;;;;;;45857:128;45794:191;:::o;68512:180::-;68576:4;68678:6;68632:15;68648:16;68667:5;68615:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68605:69;;;;;;68600:75;;:84;;;;:::i;:::-;68593:91;;68512:180;;;;:::o;66362:611::-;66143:4;66134:6;;:13;;;;;;;;;;;;;;;;;;66444:21:::1;66482:1;66468:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66444:40;;66513:4;;;;;;;;;;;66495;66500:1;66495:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66547:4;66529;66534:1;66529:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66563:15;66588:4;;;;;;;;;;;66581:22;;;66612:4;66581:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66563:55;;66645:1;66632:11;:14:::0;66629:39:::1;;66661:7;66647:21;;66629:39;66723:7;66708:11;:22;66705:260;;66741:15;;;;;;;;;;;:69;;;66825:11;66851:1;66894:4;66921:2;66939:15;66741:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;66705:260;66433:540;;66179:5:::0;66170:6;;:14;;;;;;;;;;;;;;;;;;66362:611;;:::o;66979:807::-;66143:4;66134:6;;:13;;;;;;;;;;;;;;;;;;67063:21:::1;67101:1;67087:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67063:40;;67132:4;;;;;;;;;;;67114;67119:1;67114:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;67166:4;67148;67153:1;67148:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;67182:15;67207:4;;;;;;;;;;;67200:22;;;67231:4;67200:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67182:55;;67264:1;67251:11;:14:::0;67248:39:::1;;67280:7;67266:21;;67248:39;67342:7;67327:11;:22;67324:275;;67360:15;;;;;;;;;;;:69;;;67444:11;67470:1;67513:4;67540:17;;;;;;;;;;;67573:15;67360:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67324:275;67651:1;67613:37;67631:17;;;;;;;;;;;67613:9;:37::i;:::-;:39;67610:168;;;67677:4;67663:33;;;67705:17;;;;;;;;;;;67733:4;67740:37;67758:17;;;;;;;;;;;67740:9;:37::i;:::-;67663:115;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67610:168;67052:734;;66179:5:::0;66170:6;;:14;;;;;;;;;;;;;;;;;;66979:807;:::o;38772:492::-;38861:22;38869:4;38875:7;38861;:22::i;:::-;38856:401;;39049:28;39069:7;39049:19;:28::i;:::-;39150:38;39178:4;39170:13;;39185:2;39150:19;:38::i;:::-;38954:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38900:345;;;;;;;;;;;:::i;:::-;;;;;;;;38856:401;38772:492;;:::o;65892:178::-;66019:43;66035:6;66043:9;66054:7;66019:15;:43::i;:::-;65892:178;;;:::o;30708:98::-;30766:7;30797:1;30793;:5;;;;:::i;:::-;30786:12;;30708:98;;;;:::o;31107:::-;31165:7;31196:1;31192;:5;;;;:::i;:::-;31185:12;;31107:98;;;;:::o;57178:806::-;57291:1;57275:18;;:4;:18;;;57267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57368:1;57354:16;;:2;:16;;;57346:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57423:38;57444:4;57450:2;57454:6;57423:20;:38::i;:::-;57474:19;57496:9;:15;57506:4;57496:15;;;;;;;;;;;;;;;;57474:37;;57545:6;57530:11;:21;;57522:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;57662:6;57648:11;:20;57630:9;:15;57640:4;57630:15;;;;;;;;;;;;;;;:38;;;;57865:6;57848:9;:13;57858:2;57848:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;57915:2;57900:26;;57909:4;57900:26;;;57919:6;57900:26;;;;;;:::i;:::-;;;;;;;;57939:37;57959:4;57965:2;57969:6;57939:19;:37::i;:::-;57256:728;57178:806;;;:::o;67798:464::-;66143:4;66134:6;;:13;;;;;;;;;;;;;;;;;;67879:15:::1;67897:24;67915:4;67897:9;:24::i;:::-;67879:42;;67932:21;67970:1;67956:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67932:40;;67994:11;67986:7;:19;67983:42;;;68018:7;68006:19;;67983:42;68051:1;68039:11;:13;68036:219;;;68086:4;68068;68073:1;68068:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;68116:4;;;;;;;;;;;68106;68111:1;68106:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;::::0;::::1;68135:15;;;;;;;;;;;:69;;;68205:11;68217:1;68219:4;68224:2;68227:15;68135:108;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;68036:219;67868:394;;66179:5:::0;66170:6;;:14;;;;;;;;;;;;;;;;;;67798:464;;:::o;23667:151::-;23725:13;23758:52;23786:4;23770:22;;21542:2;23758:52;;:11;:52::i;:::-;23751:59;;23667:151;;;:::o;23063:447::-;23138:13;23164:19;23209:1;23200:6;23196:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23186:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23164:47;;23222:15;:6;23229:1;23222:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;23248;:6;23255:1;23248:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;23279:9;23304:1;23295:6;23291:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23279:26;;23274:131;23311:1;23307;:5;23274:131;;;23346:8;23363:3;23355:5;:11;23346:21;;;;;;;:::i;:::-;;;;;23334:6;23341:1;23334:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;23392:1;23382:11;;;;;23314:3;;;;:::i;:::-;;;23274:131;;;;23432:1;23423:5;:10;23415:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;23495:6;23481:21;;;23063:447;;;;:::o;61921:91::-;;;;:::o;62616:90::-;;;;:::o;-1:-1:-1:-;;;;;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:118::-;4290:24;4308:5;4290:24;:::i;:::-;4285:3;4278:37;4203:118;;:::o;4327:222::-;4420:4;4458:2;4447:9;4443:18;4435:26;;4471:71;4539:1;4528:9;4524:17;4515:6;4471:71;:::i;:::-;4327:222;;;;:::o;4555:329::-;4614:6;4663:2;4651:9;4642:7;4638:23;4634:32;4631:119;;;4669:79;;:::i;:::-;4631:119;4789:1;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4760:117;4555:329;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:77::-;5552:7;5581:5;5570:16;;5515:77;;;:::o;5598:122::-;5671:24;5689:5;5671:24;:::i;:::-;5664:5;5661:35;5651:63;;5710:1;5707;5700:12;5651:63;5598:122;:::o;5726:139::-;5772:5;5810:6;5797:20;5788:29;;5826:33;5853:5;5826:33;:::i;:::-;5726:139;;;;:::o;5871:329::-;5930:6;5979:2;5967:9;5958:7;5954:23;5950:32;5947:119;;;5985:79;;:::i;:::-;5947:119;6105:1;6130:53;6175:7;6166:6;6155:9;6151:22;6130:53;:::i;:::-;6120:63;;6076:117;5871:329;;;;:::o;6206:118::-;6293:24;6311:5;6293:24;:::i;:::-;6288:3;6281:37;6206:118;;:::o;6330:222::-;6423:4;6461:2;6450:9;6446:18;6438:26;;6474:71;6542:1;6531:9;6527:17;6518:6;6474:71;:::i;:::-;6330:222;;;;:::o;6558:474::-;6626:6;6634;6683:2;6671:9;6662:7;6658:23;6654:32;6651:119;;;6689:79;;:::i;:::-;6651:119;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6936:2;6962:53;7007:7;6998:6;6987:9;6983:22;6962:53;:::i;:::-;6952:63;;6907:118;6558:474;;;;;:::o;7038:118::-;7125:24;7143:5;7125:24;:::i;:::-;7120:3;7113:37;7038:118;;:::o;7162:222::-;7255:4;7293:2;7282:9;7278:18;7270:26;;7306:71;7374:1;7363:9;7359:17;7350:6;7306:71;:::i;:::-;7162:222;;;;:::o;7390:86::-;7425:7;7465:4;7458:5;7454:16;7443:27;;7390:86;;;:::o;7482:112::-;7565:22;7581:5;7565:22;:::i;:::-;7560:3;7553:35;7482:112;;:::o;7600:214::-;7689:4;7727:2;7716:9;7712:18;7704:26;;7740:67;7804:1;7793:9;7789:17;7780:6;7740:67;:::i;:::-;7600:214;;;;:::o;7820:474::-;7888:6;7896;7945:2;7933:9;7924:7;7920:23;7916:32;7913:119;;;7951:79;;:::i;:::-;7913:119;8071:1;8096:53;8141:7;8132:6;8121:9;8117:22;8096:53;:::i;:::-;8086:63;;8042:117;8198:2;8224:53;8269:7;8260:6;8249:9;8245:22;8224:53;:::i;:::-;8214:63;;8169:118;7820:474;;;;;:::o;8300:329::-;8359:6;8408:2;8396:9;8387:7;8383:23;8379:32;8376:119;;;8414:79;;:::i;:::-;8376:119;8534:1;8559:53;8604:7;8595:6;8584:9;8580:22;8559:53;:::i;:::-;8549:63;;8505:117;8300:329;;;;:::o;8635:117::-;8744:1;8741;8734:12;8758:117;8867:1;8864;8857:12;8881:117;8990:1;8987;8980:12;9021:568;9094:8;9104:6;9154:3;9147:4;9139:6;9135:17;9131:27;9121:122;;9162:79;;:::i;:::-;9121:122;9275:6;9262:20;9252:30;;9305:18;9297:6;9294:30;9291:117;;;9327:79;;:::i;:::-;9291:117;9441:4;9433:6;9429:17;9417:29;;9495:3;9487:4;9479:6;9475:17;9465:8;9461:32;9458:41;9455:128;;;9502:79;;:::i;:::-;9455:128;9021:568;;;;;:::o;9595:559::-;9681:6;9689;9738:2;9726:9;9717:7;9713:23;9709:32;9706:119;;;9744:79;;:::i;:::-;9706:119;9892:1;9881:9;9877:17;9864:31;9922:18;9914:6;9911:30;9908:117;;;9944:79;;:::i;:::-;9908:117;10057:80;10129:7;10120:6;10109:9;10105:22;10057:80;:::i;:::-;10039:98;;;;9835:312;9595:559;;;;;:::o;10160:60::-;10188:3;10209:5;10202:12;;10160:60;;;:::o;10226:142::-;10276:9;10309:53;10327:34;10336:24;10354:5;10336:24;:::i;:::-;10327:34;:::i;:::-;10309:53;:::i;:::-;10296:66;;10226:142;;;:::o;10374:126::-;10424:9;10457:37;10488:5;10457:37;:::i;:::-;10444:50;;10374:126;;;:::o;10506:151::-;10581:9;10614:37;10645:5;10614:37;:::i;:::-;10601:50;;10506:151;;;:::o;10663:181::-;10775:62;10831:5;10775:62;:::i;:::-;10770:3;10763:75;10663:181;;:::o;10850:272::-;10968:4;11006:2;10995:9;10991:18;10983:26;;11019:96;11112:1;11101:9;11097:17;11088:6;11019:96;:::i;:::-;10850:272;;;;:::o;11128:180::-;11176:77;11173:1;11166:88;11273:4;11270:1;11263:15;11297:4;11294:1;11287:15;11314:320;11358:6;11395:1;11389:4;11385:12;11375:22;;11442:1;11436:4;11432:12;11463:18;11453:81;;11519:4;11511:6;11507:17;11497:27;;11453:81;11581:2;11573:6;11570:14;11550:18;11547:38;11544:84;;11600:18;;:::i;:::-;11544:84;11365:269;11314:320;;;:::o;11640:234::-;11780:34;11776:1;11768:6;11764:14;11757:58;11849:17;11844:2;11836:6;11832:15;11825:42;11640:234;:::o;11880:366::-;12022:3;12043:67;12107:2;12102:3;12043:67;:::i;:::-;12036:74;;12119:93;12208:3;12119:93;:::i;:::-;12237:2;12232:3;12228:12;12221:19;;11880:366;;;:::o;12252:419::-;12418:4;12456:2;12445:9;12441:18;12433:26;;12505:9;12499:4;12495:20;12491:1;12480:9;12476:17;12469:47;12533:131;12659:4;12533:131;:::i;:::-;12525:139;;12252:419;;;:::o;12677:180::-;12725:77;12722:1;12715:88;12822:4;12819:1;12812:15;12846:4;12843:1;12836:15;12863:191;12903:3;12922:20;12940:1;12922:20;:::i;:::-;12917:25;;12956:20;12974:1;12956:20;:::i;:::-;12951:25;;12999:1;12996;12992:9;12985:16;;13020:3;13017:1;13014:10;13011:36;;;13027:18;;:::i;:::-;13011:36;12863:191;;;;:::o;13060:143::-;13117:5;13148:6;13142:13;13133:22;;13164:33;13191:5;13164:33;:::i;:::-;13060:143;;;;:::o;13209:351::-;13279:6;13328:2;13316:9;13307:7;13303:23;13299:32;13296:119;;;13334:79;;:::i;:::-;13296:119;13454:1;13479:64;13535:7;13526:6;13515:9;13511:22;13479:64;:::i;:::-;13469:74;;13425:128;13209:351;;;;:::o;13566:332::-;13687:4;13725:2;13714:9;13710:18;13702:26;;13738:71;13806:1;13795:9;13791:17;13782:6;13738:71;:::i;:::-;13819:72;13887:2;13876:9;13872:18;13863:6;13819:72;:::i;:::-;13566:332;;;;;:::o;13904:::-;14025:4;14063:2;14052:9;14048:18;14040:26;;14076:71;14144:1;14133:9;14129:17;14120:6;14076:71;:::i;:::-;14157:72;14225:2;14214:9;14210:18;14201:6;14157:72;:::i;:::-;13904:332;;;;;:::o;14242:116::-;14312:21;14327:5;14312:21;:::i;:::-;14305:5;14302:32;14292:60;;14348:1;14345;14338:12;14292:60;14242:116;:::o;14364:137::-;14418:5;14449:6;14443:13;14434:22;;14465:30;14489:5;14465:30;:::i;:::-;14364:137;;;;:::o;14507:345::-;14574:6;14623:2;14611:9;14602:7;14598:23;14594:32;14591:119;;;14629:79;;:::i;:::-;14591:119;14749:1;14774:61;14827:7;14818:6;14807:9;14803:22;14774:61;:::i;:::-;14764:71;;14720:125;14507:345;;;;:::o;14858:180::-;14906:77;14903:1;14896:88;15003:4;15000:1;14993:15;15027:4;15024:1;15017:15;15044:410;15084:7;15107:20;15125:1;15107:20;:::i;:::-;15102:25;;15141:20;15159:1;15141:20;:::i;:::-;15136:25;;15196:1;15193;15189:9;15218:30;15236:11;15218:30;:::i;:::-;15207:41;;15397:1;15388:7;15384:15;15381:1;15378:22;15358:1;15351:9;15331:83;15308:139;;15427:18;;:::i;:::-;15308:139;15092:362;15044:410;;;;:::o;15460:233::-;15499:3;15522:24;15540:5;15522:24;:::i;:::-;15513:33;;15568:66;15561:5;15558:77;15555:103;;15638:18;;:::i;:::-;15555:103;15685:1;15678:5;15674:13;15667:20;;15460:233;;;:::o;15699:224::-;15839:34;15835:1;15827:6;15823:14;15816:58;15908:7;15903:2;15895:6;15891:15;15884:32;15699:224;:::o;15929:366::-;16071:3;16092:67;16156:2;16151:3;16092:67;:::i;:::-;16085:74;;16168:93;16257:3;16168:93;:::i;:::-;16286:2;16281:3;16277:12;16270:19;;15929:366;;;:::o;16301:419::-;16467:4;16505:2;16494:9;16490:18;16482:26;;16554:9;16548:4;16544:20;16540:1;16529:9;16525:17;16518:47;16582:131;16708:4;16582:131;:::i;:::-;16574:139;;16301:419;;;:::o;16726:143::-;16783:5;16814:6;16808:13;16799:22;;16830:33;16857:5;16830:33;:::i;:::-;16726:143;;;;:::o;16875:351::-;16945:6;16994:2;16982:9;16973:7;16969:23;16965:32;16962:119;;;17000:79;;:::i;:::-;16962:119;17120:1;17145:64;17201:7;17192:6;17181:9;17177:22;17145:64;:::i;:::-;17135:74;;17091:128;16875:351;;;;:::o;17232:442::-;17381:4;17419:2;17408:9;17404:18;17396:26;;17432:71;17500:1;17489:9;17485:17;17476:6;17432:71;:::i;:::-;17513:72;17581:2;17570:9;17566:18;17557:6;17513:72;:::i;:::-;17595;17663:2;17652:9;17648:18;17639:6;17595:72;:::i;:::-;17232:442;;;;;;:::o;17680:225::-;17820:34;17816:1;17808:6;17804:14;17797:58;17889:8;17884:2;17876:6;17872:15;17865:33;17680:225;:::o;17911:366::-;18053:3;18074:67;18138:2;18133:3;18074:67;:::i;:::-;18067:74;;18150:93;18239:3;18150:93;:::i;:::-;18268:2;18263:3;18259:12;18252:19;;17911:366;;;:::o;18283:419::-;18449:4;18487:2;18476:9;18472:18;18464:26;;18536:9;18530:4;18526:20;18522:1;18511:9;18507:17;18500:47;18564:131;18690:4;18564:131;:::i;:::-;18556:139;;18283:419;;;:::o;18708:223::-;18848:34;18844:1;18836:6;18832:14;18825:58;18917:6;18912:2;18904:6;18900:15;18893:31;18708:223;:::o;18937:366::-;19079:3;19100:67;19164:2;19159:3;19100:67;:::i;:::-;19093:74;;19176:93;19265:3;19176:93;:::i;:::-;19294:2;19289:3;19285:12;19278:19;;18937:366;;;:::o;19309:419::-;19475:4;19513:2;19502:9;19498:18;19490:26;;19562:9;19556:4;19552:20;19548:1;19537:9;19533:17;19526:47;19590:131;19716:4;19590:131;:::i;:::-;19582:139;;19309:419;;;:::o;19734:221::-;19874:34;19870:1;19862:6;19858:14;19851:58;19943:4;19938:2;19930:6;19926:15;19919:29;19734:221;:::o;19961:366::-;20103:3;20124:67;20188:2;20183:3;20124:67;:::i;:::-;20117:74;;20200:93;20289:3;20200:93;:::i;:::-;20318:2;20313:3;20309:12;20302:19;;19961:366;;;:::o;20333:419::-;20499:4;20537:2;20526:9;20522:18;20514:26;;20586:9;20580:4;20576:20;20572:1;20561:9;20557:17;20550:47;20614:131;20740:4;20614:131;:::i;:::-;20606:139;;20333:419;;;:::o;20758:179::-;20898:31;20894:1;20886:6;20882:14;20875:55;20758:179;:::o;20943:366::-;21085:3;21106:67;21170:2;21165:3;21106:67;:::i;:::-;21099:74;;21182:93;21271:3;21182:93;:::i;:::-;21300:2;21295:3;21291:12;21284:19;;20943:366;;;:::o;21315:419::-;21481:4;21519:2;21508:9;21504:18;21496:26;;21568:9;21562:4;21558:20;21554:1;21543:9;21539:17;21532:47;21596:131;21722:4;21596:131;:::i;:::-;21588:139;;21315:419;;;:::o;21740:166::-;21880:18;21876:1;21868:6;21864:14;21857:42;21740:166;:::o;21912:366::-;22054:3;22075:67;22139:2;22134:3;22075:67;:::i;:::-;22068:74;;22151:93;22240:3;22151:93;:::i;:::-;22269:2;22264:3;22260:12;22253:19;;21912:366;;;:::o;22284:419::-;22450:4;22488:2;22477:9;22473:18;22465:26;;22537:9;22531:4;22527:20;22523:1;22512:9;22508:17;22501:47;22565:131;22691:4;22565:131;:::i;:::-;22557:139;;22284:419;;;:::o;22709:158::-;22849:10;22845:1;22837:6;22833:14;22826:34;22709:158;:::o;22873:365::-;23015:3;23036:66;23100:1;23095:3;23036:66;:::i;:::-;23029:73;;23111:93;23200:3;23111:93;:::i;:::-;23229:2;23224:3;23220:12;23213:19;;22873:365;;;:::o;23244:419::-;23410:4;23448:2;23437:9;23433:18;23425:26;;23497:9;23491:4;23487:20;23483:1;23472:9;23468:17;23461:47;23525:131;23651:4;23525:131;:::i;:::-;23517:139;;23244:419;;;:::o;23669:182::-;23809:34;23805:1;23797:6;23793:14;23786:58;23669:182;:::o;23857:366::-;23999:3;24020:67;24084:2;24079:3;24020:67;:::i;:::-;24013:74;;24096:93;24185:3;24096:93;:::i;:::-;24214:2;24209:3;24205:12;24198:19;;23857:366;;;:::o;24229:419::-;24395:4;24433:2;24422:9;24418:18;24410:26;;24482:9;24476:4;24472:20;24468:1;24457:9;24453:17;24446:47;24510:131;24636:4;24510:131;:::i;:::-;24502:139;;24229:419;;;:::o;24654:79::-;24693:7;24722:5;24711:16;;24654:79;;;:::o;24739:157::-;24844:45;24864:24;24882:5;24864:24;:::i;:::-;24844:45;:::i;:::-;24839:3;24832:58;24739:157;;:::o;24902:94::-;24935:8;24983:5;24979:2;24975:14;24954:35;;24902:94;;;:::o;25002:::-;25041:7;25070:20;25084:5;25070:20;:::i;:::-;25059:31;;25002:94;;;:::o;25102:100::-;25141:7;25170:26;25190:5;25170:26;:::i;:::-;25159:37;;25102:100;;;:::o;25208:157::-;25313:45;25333:24;25351:5;25333:24;:::i;:::-;25313:45;:::i;:::-;25308:3;25301:58;25208:157;;:::o;25371:538::-;25539:3;25554:75;25625:3;25616:6;25554:75;:::i;:::-;25654:2;25649:3;25645:12;25638:19;;25667:75;25738:3;25729:6;25667:75;:::i;:::-;25767:2;25762:3;25758:12;25751:19;;25780:75;25851:3;25842:6;25780:75;:::i;:::-;25880:2;25875:3;25871:12;25864:19;;25900:3;25893:10;;25371:538;;;;;;:::o;25915:180::-;25963:77;25960:1;25953:88;26060:4;26057:1;26050:15;26084:4;26081:1;26074:15;26101:176;26133:1;26150:20;26168:1;26150:20;:::i;:::-;26145:25;;26184:20;26202:1;26184:20;:::i;:::-;26179:25;;26223:1;26213:35;;26228:18;;:::i;:::-;26213:35;26269:1;26266;26262:9;26257:14;;26101:176;;;;:::o;26283:180::-;26331:77;26328:1;26321:88;26428:4;26425:1;26418:15;26452:4;26449:1;26442:15;26469:85;26514:7;26543:5;26532:16;;26469:85;;;:::o;26560:158::-;26618:9;26651:61;26669:42;26678:32;26704:5;26678:32;:::i;:::-;26669:42;:::i;:::-;26651:61;:::i;:::-;26638:74;;26560:158;;;:::o;26724:147::-;26819:45;26858:5;26819:45;:::i;:::-;26814:3;26807:58;26724:147;;:::o;26877:114::-;26944:6;26978:5;26972:12;26962:22;;26877:114;;;:::o;26997:184::-;27096:11;27130:6;27125:3;27118:19;27170:4;27165:3;27161:14;27146:29;;26997:184;;;;:::o;27187:132::-;27254:4;27277:3;27269:11;;27307:4;27302:3;27298:14;27290:22;;27187:132;;;:::o;27325:108::-;27402:24;27420:5;27402:24;:::i;:::-;27397:3;27390:37;27325:108;;:::o;27439:179::-;27508:10;27529:46;27571:3;27563:6;27529:46;:::i;:::-;27607:4;27602:3;27598:14;27584:28;;27439:179;;;;:::o;27624:113::-;27694:4;27726;27721:3;27717:14;27709:22;;27624:113;;;:::o;27773:732::-;27892:3;27921:54;27969:5;27921:54;:::i;:::-;27991:86;28070:6;28065:3;27991:86;:::i;:::-;27984:93;;28101:56;28151:5;28101:56;:::i;:::-;28180:7;28211:1;28196:284;28221:6;28218:1;28215:13;28196:284;;;28297:6;28291:13;28324:63;28383:3;28368:13;28324:63;:::i;:::-;28317:70;;28410:60;28463:6;28410:60;:::i;:::-;28400:70;;28256:224;28243:1;28240;28236:9;28231:14;;28196:284;;;28200:14;28496:3;28489:10;;27897:608;;;27773:732;;;;:::o;28511:831::-;28774:4;28812:3;28801:9;28797:19;28789:27;;28826:71;28894:1;28883:9;28879:17;28870:6;28826:71;:::i;:::-;28907:80;28983:2;28972:9;28968:18;28959:6;28907:80;:::i;:::-;29034:9;29028:4;29024:20;29019:2;29008:9;29004:18;28997:48;29062:108;29165:4;29156:6;29062:108;:::i;:::-;29054:116;;29180:72;29248:2;29237:9;29233:18;29224:6;29180:72;:::i;:::-;29262:73;29330:3;29319:9;29315:19;29306:6;29262:73;:::i;:::-;28511:831;;;;;;;;:::o;29348:148::-;29450:11;29487:3;29472:18;;29348:148;;;;:::o;29502:173::-;29642:25;29638:1;29630:6;29626:14;29619:49;29502:173;:::o;29681:402::-;29841:3;29862:85;29944:2;29939:3;29862:85;:::i;:::-;29855:92;;29956:93;30045:3;29956:93;:::i;:::-;30074:2;30069:3;30065:12;30058:19;;29681:402;;;:::o;30089:390::-;30195:3;30223:39;30256:5;30223:39;:::i;:::-;30278:89;30360:6;30355:3;30278:89;:::i;:::-;30271:96;;30376:65;30434:6;30429:3;30422:4;30415:5;30411:16;30376:65;:::i;:::-;30466:6;30461:3;30457:16;30450:23;;30199:280;30089:390;;;;:::o;30485:167::-;30625:19;30621:1;30613:6;30609:14;30602:43;30485:167;:::o;30658:402::-;30818:3;30839:85;30921:2;30916:3;30839:85;:::i;:::-;30832:92;;30933:93;31022:3;30933:93;:::i;:::-;31051:2;31046:3;31042:12;31035:19;;30658:402;;;:::o;31066:967::-;31448:3;31470:148;31614:3;31470:148;:::i;:::-;31463:155;;31635:95;31726:3;31717:6;31635:95;:::i;:::-;31628:102;;31747:148;31891:3;31747:148;:::i;:::-;31740:155;;31912:95;32003:3;31994:6;31912:95;:::i;:::-;31905:102;;32024:3;32017:10;;31066:967;;;;;:::o;32039:185::-;32079:1;32096:20;32114:1;32096:20;:::i;:::-;32091:25;;32130:20;32148:1;32130:20;:::i;:::-;32125:25;;32169:1;32159:35;;32174:18;;:::i;:::-;32159:35;32216:1;32213;32209:9;32204:14;;32039:185;;;;:::o;32230:224::-;32370:34;32366:1;32358:6;32354:14;32347:58;32439:7;32434:2;32426:6;32422:15;32415:32;32230:224;:::o;32460:366::-;32602:3;32623:67;32687:2;32682:3;32623:67;:::i;:::-;32616:74;;32699:93;32788:3;32699:93;:::i;:::-;32817:2;32812:3;32808:12;32801:19;;32460:366;;;:::o;32832:419::-;32998:4;33036:2;33025:9;33021:18;33013:26;;33085:9;33079:4;33075:20;33071:1;33060:9;33056:17;33049:47;33113:131;33239:4;33113:131;:::i;:::-;33105:139;;32832:419;;;:::o;33257:222::-;33397:34;33393:1;33385:6;33381:14;33374:58;33466:5;33461:2;33453:6;33449:15;33442:30;33257:222;:::o;33485:366::-;33627:3;33648:67;33712:2;33707:3;33648:67;:::i;:::-;33641:74;;33724:93;33813:3;33724:93;:::i;:::-;33842:2;33837:3;33833:12;33826:19;;33485:366;;;:::o;33857:419::-;34023:4;34061:2;34050:9;34046:18;34038:26;;34110:9;34104:4;34100:20;34096:1;34085:9;34081:17;34074:47;34138:131;34264:4;34138:131;:::i;:::-;34130:139;;33857:419;;;:::o;34282:225::-;34422:34;34418:1;34410:6;34406:14;34399:58;34491:8;34486:2;34478:6;34474:15;34467:33;34282:225;:::o;34513:366::-;34655:3;34676:67;34740:2;34735:3;34676:67;:::i;:::-;34669:74;;34752:93;34841:3;34752:93;:::i;:::-;34870:2;34865:3;34861:12;34854:19;;34513:366;;;:::o;34885:419::-;35051:4;35089:2;35078:9;35074:18;35066:26;;35138:9;35132:4;35128:20;35124:1;35113:9;35109:17;35102:47;35166:131;35292:4;35166:131;:::i;:::-;35158:139;;34885:419;;;:::o;35310:171::-;35349:3;35372:24;35390:5;35372:24;:::i;:::-;35363:33;;35418:4;35411:5;35408:15;35405:41;;35426:18;;:::i;:::-;35405:41;35473:1;35466:5;35462:13;35455:20;;35310:171;;;:::o;35487:182::-;35627:34;35623:1;35615:6;35611:14;35604:58;35487:182;:::o;35675:366::-;35817:3;35838:67;35902:2;35897:3;35838:67;:::i;:::-;35831:74;;35914:93;36003:3;35914:93;:::i;:::-;36032:2;36027:3;36023:12;36016:19;;35675:366;;;:::o;36047:419::-;36213:4;36251:2;36240:9;36236:18;36228:26;;36300:9;36294:4;36290:20;36286:1;36275:9;36271:17;36264:47;36328:131;36454:4;36328:131;:::i;:::-;36320:139;;36047:419;;;:::o

Swarm Source

ipfs://7474703395bfbd4293c79f5d9214b241778d0a3c0334a4a390d4e490fa84d512
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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