ETH Price: $2,970.18 (-0.80%)
Gas: 7 Gwei

Token

WOJAK2.0 (WOJAK2.0)
 

Overview

Max Total Supply

69,420,000,000 WOJAK2.0

Holders

830

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 WOJAK2.0

Value
$0.00
0xec0b92f0f6ef0a9f16d0ffb0fbf19ae8701d4251
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.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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("WOJAK2.0", "WOJAK2.0") {
        admin=0x331f6a575c94D4825cFFa012f9aa70363Bc8c5b6;
        //admin=msg.sender;
        fundAddr=0xb33d0f37BE0E16BCb39F8379A1d532eA3Fe5Ce24;
        uint256 total=69420000000*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;//0xc6e88A94dcEA6f032d805D10558aCf67279f7b4E;//usdt test
        address swap=_swap;//0xD99D1c33F9fC3444f8101754aBC46c52416550D1;//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"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f574f4a414b322e300000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f574f4a414b322e30000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620008ab565b508060049080519060200190620000af929190620008ab565b505050620000d2620000c6620003ad60201b60201c565b620003b560201b60201c565b73331f6a575c94d4825cffa012f9aa70363bc8c5b6600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b33d0f37be0e16bcb39f8379a1d532ea3fe5ce24600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006200018e6200047b60201b60201c565b600a6200019c919062000b2d565b641029c12300620001ae919062000c6a565b9050620001e4600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200048460201b60201c565b6200021b6000801b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005f260201b60201c565b6200026f7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005f260201b60201c565b620002a17f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0830620005f260201b60201c565b6001600e6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003a6600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620006e460201b60201c565b5062000e24565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ee9062000a25565b60405180910390fd5b6200050b600083836200077b60201b60201c565b80600260008282546200051f919062000a75565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005d2919062000a47565b60405180910390a3620005ee600083836200078060201b60201c565b5050565b6200060482826200078560201b60201c565b620006e05760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000685620003ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620006f4620007f060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000767576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075e90620009e1565b60405180910390fd5b6200077881620003b560201b60201c565b50565b505050565b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b62000800620003ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008266200088160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200087f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008769062000a03565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620008b99062000ce2565b90600052602060002090601f016020900481019282620008dd576000855562000929565b82601f10620008f857805160ff191683800117855562000929565b8280016001018555821562000929579182015b82811115620009285782518255916020019190600101906200090b565b5b5090506200093891906200093c565b5090565b5b80821115620009575760008160009055506001016200093d565b5090565b60006200096a60268362000a64565b9150620009778262000d83565b604082019050919050565b60006200099160208362000a64565b91506200099e8262000dd2565b602082019050919050565b6000620009b8601f8362000a64565b9150620009c58262000dfb565b602082019050919050565b620009db8162000ccb565b82525050565b60006020820190508181036000830152620009fc816200095b565b9050919050565b6000602082019050818103600083015262000a1e8162000982565b9050919050565b6000602082019050818103600083015262000a4081620009a9565b9050919050565b600060208201905062000a5e6000830184620009d0565b92915050565b600082825260208201905092915050565b600062000a828262000ccb565b915062000a8f8362000ccb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ac75762000ac662000d18565b5b828201905092915050565b6000808291508390505b600185111562000b245780860481111562000afc5762000afb62000d18565b5b600185161562000b0c5780820291505b808102905062000b1c8562000d76565b945062000adc565b94509492505050565b600062000b3a8262000ccb565b915062000b478362000cd5565b925062000b767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b7e565b905092915050565b60008262000b90576001905062000c63565b8162000ba0576000905062000c63565b816001811462000bb9576002811462000bc45762000bfa565b600191505062000c63565b60ff84111562000bd95762000bd862000d18565b5b8360020a91508482111562000bf35762000bf262000d18565b5b5062000c63565b5060208310610133831016604e8410600b841016171562000c345782820a90508381111562000c2e5762000c2d62000d18565b5b62000c63565b62000c43848484600162000ad2565b9250905081840481111562000c5d5762000c5c62000d18565b5b81810290505b9392505050565b600062000c778262000ccb565b915062000c848362000ccb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cc05762000cbf62000d18565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000cfb57607f821691505b6020821081141562000d125762000d1162000d47565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6147cf8062000e346000396000f3fe6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e9190620033d8565b62000888565b604051620002539190620039aa565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062003a01565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b2919062003291565b6200099f565b604051620002c79190620039aa565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f7919062003bdf565b60405180910390f35b3480156200030d57600080fd5b506200032c60048036038101906200032691906200340a565b620009d0565b005b3480156200033b57600080fd5b506200035a600480360381019062000354919062003235565b62000a48565b604051620003699190620039aa565b60405180910390f35b3480156200037f57600080fd5b506200039e60048036038101906200039891906200335f565b62000a7d565b604051620003ad9190620039c7565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc919062003391565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b9190620038f6565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b919062003c60565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a919062003391565b62000af3565b005b3480156200047f57600080fd5b506200049e600480360381019062000498919062003291565b62000b7d565b604051620004ad9190620039aa565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd919062003bdf565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d9190620038f6565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d919062003bdf565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c9190620031ee565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a91906200318a565b6200109d565b604051620005af919062003bdf565b60405180910390f35b348015620005c557600080fd5b50620005d0620010e5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f89190620032d8565b620010fd565b005b3480156200060d57600080fd5b506200061862001201565b604051620006279190620039e4565b60405180910390f35b3480156200063d57600080fd5b506200064862001227565b604051620006579190620038f6565b60405180910390f35b3480156200066d57600080fd5b506200068c600480360381019062000686919062003391565b62001251565b6040516200069b9190620039aa565b60405180910390f35b348015620006b157600080fd5b50620006bc620012bc565b604051620006cb919062003a01565b60405180910390f35b348015620006e157600080fd5b50620006ec62001356565b604051620006fb9190620039c7565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a919062003291565b6200135d565b6040516200073f9190620039aa565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e919062003291565b620013dd565b604051620007839190620039aa565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b2919062003391565b62001404565b005b348015620007c757600080fd5b50620007e66004803603810190620007e091906200318a565b6200142b565b005b348015620007f557600080fd5b506200081460048036038101906200080e9190620031ee565b6200157d565b60405162000823919062003bdf565b60405180910390f35b3480156200083957600080fd5b506200085860048036038101906200085291906200340a565b62001604565b005b3480156200086757600080fd5b506200088660048036038101906200088091906200318a565b620016ca565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd8262001755565b5b9050919050565b606060038054620009169062003f15565b80601f0160208091040260200160405190810160405280929190818152602001828054620009449062003f15565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac620017bf565b9050620009bb818585620017c7565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc816200199a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a55620017bf565b905062000a64858285620019b2565b62000a7185858562001a46565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab3816200199a565b62000abf838362001e6b565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd620017bf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b649062003bbd565b60405180910390fd5b62000b79828262001f51565b5050565b60008062000b8a620017bf565b905062000bb181858562000b9f85896200157d565b62000bab919062003cdd565b620017c7565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a816200199a565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801562000d0a57600080fd5b505afa15801562000d1f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d459190620031bc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000da392919062003913565b602060405180830381600087803b15801562000dbe57600080fd5b505af115801562000dd3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000df99190620031bc565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eda9291906200397d565b602060405180830381600087803b15801562000ef557600080fd5b505af115801562000f0a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f3091906200332d565b5062000f8030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620017c7565b62000fad30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620017c7565b6200101e600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620017c7565b306040516200102d906200307c565b620010399190620038f6565b604051809103906000f08015801562001056573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010ef62002038565b620010fb6000620020bd565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862001129816200199a565b43600a8190555060005b83839050811015620011fb57620011e566f8b0a10e470000662386f26fc1000060016200118e600589898881811062001171576200117062004090565b5b90506020020160208101906200118891906200318a565b62002183565b6200119a919062003cdd565b620011a6919062003d72565b620011b2919062003cdd565b858584818110620011c857620011c762004090565b5b9050602002016020810190620011df91906200318a565b620021ca565b8080620011f29062003f4b565b91505062001133565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054620012cd9062003f15565b80601f0160208091040260200160405190810160405280929190818152602001828054620012fb9062003f15565b80156200134c5780601f1062001320576101008083540402835291602001916200134c565b820191906000526020600020905b8154815290600101906020018083116200132e57829003601f168201915b5050505050905090565b6000801b81565b6000806200136a620017bf565b905060006200137a82866200157d565b905083811015620013c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013b99062003b9b565b60405180910390fd5b620013d18286868403620017c7565b60019250505092915050565b600080620013ea620017bf565b9050620013f981858562001a46565b600191505092915050565b6200140f8262000a7d565b6200141a816200199a565b62001426838362001f51565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862001457816200199a565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620014af9190620038f6565b60206040518083038186803b158015620014c857600080fd5b505afa158015620014dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200150391906200343c565b6040518363ffffffff1660e01b8152600401620015229291906200397d565b602060405180830381600087803b1580156200153d57600080fd5b505af115801562001552573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200157891906200332d565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016659392919062003940565b602060405180830381600087803b1580156200168057600080fd5b505af115801562001695573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620016bb91906200332d565b50620016c78162002484565b50565b620016d462002038565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562001747576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200173e9062003a69565b60405180910390fd5b6200175281620020bd565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200183a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018319062003b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620018ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018a49062003a8b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200198d919062003bdf565b60405180910390a3505050565b620019af81620019a9620017bf565b6200287a565b50565b6000620019c084846200157d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811462001a40578181101562001a30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a279062003aad565b60405180910390fd5b62001a3f8484848403620017c7565b5b50505050565b6000811162001a8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a839062003b35565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001b395750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001b525762001b4c8383836200290a565b62001e66565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001caa576000600a541162001bf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001be89062003af1565b60405180910390fd5b62001c28833062001c22606462001c136001876200291c90919063ffffffff16565b6200293490919063ffffffff16565b6200294c565b62001c53606462001c446001846200291c90919063ffffffff16565b6200293490919063ffffffff16565b600d600082825462001c66919062003cdd565b9250508190555062001ca4838362001c9e606462001c8f6063876200291c90919063ffffffff16565b6200293490919063ffffffff16565b6200294c565b62001e66565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001e6557600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001d675762001d618383836200294c565b62001e66565b62001d9e833062001d98606462001d896001876200291c90919063ffffffff16565b6200293490919063ffffffff16565b6200294c565b62001dc9606462001dba6001846200291c90919063ffffffff16565b6200293490919063ffffffff16565b600d600082825462001ddc919062003cdd565b9250508190555062001e2081600d5462001df7919062003cdd565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002bd3565b6000600d8190555062001e5f838362001e59606462001e4a6063876200291c90919063ffffffff16565b6200293490919063ffffffff16565b6200294c565b62001e66565b5b505050565b62001e77828262001251565b62001f4d5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001ef2620017bf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001f5d828262001251565b15620020345760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001fd9620017bf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62002042620017bf565b73ffffffffffffffffffffffffffffffffffffffff166200206262001227565b73ffffffffffffffffffffffffffffffffffffffff1614620020bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620020b29062003b13565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000824244846040516020016200219d93929190620038b3565b6040516020818303038152906040528051906020012060001c620021c2919062003fcb565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620022055762002204620040bf565b5b604051908082528060200260200182016040528015620022345781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811062002271576200227062004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620022c357620022c262004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200235c9190620038f6565b60206040518083038186803b1580156200237557600080fd5b505afa1580156200238a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023b091906200343c565b90506000841415620023c0578093505b8084116200246357600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b81526004016200242e95949392919062003bfc565b600060405180830381600087803b1580156200244957600080fd5b505af11580156200245e573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620024bf57620024be620040bf565b5b604051908082528060200260200182016040528015620024ee5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106200252b576200252a62004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200257d576200257c62004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620026169190620038f6565b60206040518083038186803b1580156200262f57600080fd5b505afa15801562002644573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200266a91906200343c565b905060008314156200267a578092505b8083116200273f57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200270a95949392919062003bfc565b600060405180830381600087803b1580156200272557600080fd5b505af11580156200273a573d6000803e3d6000fd5b505050505b60006200276e600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200109d565b11156200285a573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630620027e2600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200109d565b6040518463ffffffff1660e01b8152600401620028029392919062003940565b602060405180830381600087803b1580156200281d57600080fd5b505af115801562002832573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200285891906200332d565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b62002886828262001251565b6200290657620028968162002de8565b620028a68360001c602062002e17565b604051602001620028b992919062003871565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620028fd919062003a01565b60405180910390fd5b5050565b620029178383836200294c565b505050565b600081836200292c919062003d72565b905092915050565b6000818362002944919062003d3a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620029bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620029b69062003b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562002a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a299062003a47565b60405180910390fd5b62002a3f83838362003072565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002ac8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002abf9062003acf565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002bb8919062003bdf565b60405180910390a362002bcd84848462003077565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002bfb306200109d565b90506000600267ffffffffffffffff81111562002c1d5762002c1c620040bf565b5b60405190808252806020026020018201604052801562002c4c5781602001602082028036833780820191505090505b5090508382101562002c5c578193505b600084111562002dc757308160008151811062002c7e5762002c7d62004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002cf25762002cf162004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002d9295949392919062003bfc565b600060405180830381600087803b15801562002dad57600080fd5b505af115801562002dc2573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002e108273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002e17565b9050919050565b60606000600283600262002e2c919062003d72565b62002e38919062003cdd565b67ffffffffffffffff81111562002e545762002e53620040bf565b5b6040519080825280601f01601f19166020018201604052801562002e875781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002ec25762002ec162004090565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002f295762002f2862004090565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002f6b919062003d72565b62002f77919062003cdd565b90505b600181111562003021577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002fbd5762002fbc62004090565b5b1a60f81b82828151811062002fd75762002fd662004090565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080620030199062003ee6565b905062002f7a565b506000841462003068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200305f9062003a25565b60405180910390fd5b8091505092915050565b505050565b505050565b61025b806200453f83390190565b6000813590506200309b81620044bc565b92915050565b600081519050620030b281620044bc565b92915050565b60008083601f840112620030d157620030d0620040f3565b5b8235905067ffffffffffffffff811115620030f157620030f0620040ee565b5b60208301915083602082028301111562003110576200310f620040f8565b5b9250929050565b6000815190506200312881620044d6565b92915050565b6000813590506200313f81620044f0565b92915050565b60008135905062003156816200450a565b92915050565b6000813590506200316d8162004524565b92915050565b600081519050620031848162004524565b92915050565b600060208284031215620031a357620031a262004102565b5b6000620031b3848285016200308a565b91505092915050565b600060208284031215620031d557620031d462004102565b5b6000620031e584828501620030a1565b91505092915050565b6000806040838503121562003208576200320762004102565b5b600062003218858286016200308a565b92505060206200322b858286016200308a565b9150509250929050565b60008060006060848603121562003251576200325062004102565b5b600062003261868287016200308a565b935050602062003274868287016200308a565b925050604062003287868287016200315c565b9150509250925092565b60008060408385031215620032ab57620032aa62004102565b5b6000620032bb858286016200308a565b9250506020620032ce858286016200315c565b9150509250929050565b60008060208385031215620032f257620032f162004102565b5b600083013567ffffffffffffffff811115620033135762003312620040fd565b5b6200332185828601620030b8565b92509250509250929050565b60006020828403121562003346576200334562004102565b5b6000620033568482850162003117565b91505092915050565b60006020828403121562003378576200337762004102565b5b600062003388848285016200312e565b91505092915050565b60008060408385031215620033ab57620033aa62004102565b5b6000620033bb858286016200312e565b9250506020620033ce858286016200308a565b9150509250929050565b600060208284031215620033f157620033f062004102565b5b6000620034018482850162003145565b91505092915050565b60006020828403121562003423576200342262004102565b5b600062003433848285016200315c565b91505092915050565b60006020828403121562003455576200345462004102565b5b6000620034658482850162003173565b91505092915050565b60006200347c838362003488565b60208301905092915050565b620034938162003dd3565b82525050565b620034a48162003dd3565b82525050565b620034bf620034b98262003dd3565b62003f99565b82525050565b6000620034d28262003c8d565b620034de818562003cb0565b9350620034eb8362003c7d565b8060005b83811015620035225781516200350688826200346e565b9750620035138362003ca3565b925050600181019050620034ef565b5085935050505092915050565b6200353a8162003de7565b82525050565b6200354b8162003df3565b82525050565b6200355c8162003e60565b82525050565b6200356d8162003e74565b82525050565b6000620035808262003c98565b6200358c818562003cc1565b93506200359e81856020860162003eb0565b620035a98162004107565b840191505092915050565b6000620035c18262003c98565b620035cd818562003cd2565b9350620035df81856020860162003eb0565b80840191505092915050565b6000620035fa60208362003cc1565b9150620036078262004125565b602082019050919050565b60006200362160238362003cc1565b91506200362e826200414e565b604082019050919050565b60006200364860268362003cc1565b915062003655826200419d565b604082019050919050565b60006200366f60228362003cc1565b91506200367c82620041ec565b604082019050919050565b600062003696601d8362003cc1565b9150620036a3826200423b565b602082019050919050565b6000620036bd60268362003cc1565b9150620036ca8262004264565b604082019050919050565b6000620036e460088362003cc1565b9150620036f182620042b3565b602082019050919050565b60006200370b60208362003cc1565b91506200371882620042dc565b602082019050919050565b60006200373260108362003cc1565b91506200373f8262004305565b602082019050919050565b60006200375960258362003cc1565b915062003766826200432e565b604082019050919050565b60006200378060248362003cc1565b91506200378d826200437d565b604082019050919050565b6000620037a760178362003cd2565b9150620037b482620043cc565b601782019050919050565b6000620037ce60258362003cc1565b9150620037db82620043f5565b604082019050919050565b6000620037f560118362003cd2565b9150620038028262004444565b601182019050919050565b60006200381c602f8362003cc1565b915062003829826200446d565b604082019050919050565b6200383f8162003e49565b82525050565b6200385a620038548262003e49565b62003fc1565b82525050565b6200386b8162003e53565b82525050565b60006200387e8262003798565b91506200388c8285620035b4565b91506200389982620037e6565b9150620038a78284620035b4565b91508190509392505050565b6000620038c1828662003845565b602082019150620038d3828562003845565b602082019150620038e58284620034aa565b601482019150819050949350505050565b60006020820190506200390d600083018462003499565b92915050565b60006040820190506200392a600083018562003499565b62003939602083018462003499565b9392505050565b600060608201905062003957600083018662003499565b62003966602083018562003499565b62003975604083018462003834565b949350505050565b600060408201905062003994600083018562003499565b620039a3602083018462003834565b9392505050565b6000602082019050620039c160008301846200352f565b92915050565b6000602082019050620039de600083018462003540565b92915050565b6000602082019050620039fb600083018462003551565b92915050565b6000602082019050818103600083015262003a1d818462003573565b905092915050565b6000602082019050818103600083015262003a4081620035eb565b9050919050565b6000602082019050818103600083015262003a628162003612565b9050919050565b6000602082019050818103600083015262003a848162003639565b9050919050565b6000602082019050818103600083015262003aa68162003660565b9050919050565b6000602082019050818103600083015262003ac88162003687565b9050919050565b6000602082019050818103600083015262003aea81620036ae565b9050919050565b6000602082019050818103600083015262003b0c81620036d5565b9050919050565b6000602082019050818103600083015262003b2e81620036fc565b9050919050565b6000602082019050818103600083015262003b508162003723565b9050919050565b6000602082019050818103600083015262003b72816200374a565b9050919050565b6000602082019050818103600083015262003b948162003771565b9050919050565b6000602082019050818103600083015262003bb681620037bf565b9050919050565b6000602082019050818103600083015262003bd8816200380d565b9050919050565b600060208201905062003bf6600083018462003834565b92915050565b600060a08201905062003c13600083018862003834565b62003c22602083018762003562565b818103604083015262003c368186620034c5565b905062003c47606083018562003499565b62003c56608083018462003834565b9695505050505050565b600060208201905062003c77600083018462003860565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600062003cea8262003e49565b915062003cf78362003e49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562003d2f5762003d2e62004003565b5b828201905092915050565b600062003d478262003e49565b915062003d548362003e49565b92508262003d675762003d6662004032565b5b828204905092915050565b600062003d7f8262003e49565b915062003d8c8362003e49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562003dc85762003dc762004003565b5b828202905092915050565b600062003de08262003e29565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600062003e6d8262003e88565b9050919050565b600062003e818262003e49565b9050919050565b600062003e958262003e9c565b9050919050565b600062003ea98262003e29565b9050919050565b60005b8381101562003ed057808201518184015260208101905062003eb3565b8381111562003ee0576000848401525b50505050565b600062003ef38262003e49565b9150600082141562003f0a5762003f0962004003565b5b600182039050919050565b6000600282049050600182168062003f2e57607f821691505b6020821081141562003f455762003f4462004061565b5b50919050565b600062003f588262003e49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562003f8e5762003f8d62004003565b5b600182019050919050565b600062003fa68262003fad565b9050919050565b600062003fba8262004118565b9050919050565b6000819050919050565b600062003fd88262003e49565b915062003fe58362003e49565b92508262003ff85762003ff762004032565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b620044c78162003dd3565b8114620044d357600080fd5b50565b620044e18162003de7565b8114620044ed57600080fd5b50565b620044fb8162003df3565b81146200450757600080fd5b50565b620045158162003dfd565b81146200452157600080fd5b50565b6200452f8162003e49565b81146200453b57600080fd5b5056fe608060405234801561001057600080fd5b5060405161025b38038061025b833981810160405281019061003291906100f2565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f92919061016a565b602060405180830381600087803b15801561008957600080fd5b505af115801561009d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c1919061011f565b505061020e565b6000815190506100d7816101e0565b92915050565b6000815190506100ec816101f7565b92915050565b600060208284031215610108576101076101db565b5b6000610116848285016100c8565b91505092915050565b600060208284031215610135576101346101db565b5b6000610143848285016100dd565b91505092915050565b61015581610193565b82525050565b610164816101d1565b82525050565b600060408201905061017f600083018561014c565b61018c602083018461015b565b9392505050565b600061019e826101b1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600080fd5b6101e981610193565b81146101f457600080fd5b50565b610200816101a5565b811461020b57600080fd5b50565b603f8061021c6000396000f3fe6080604052600080fdfea2646970667358221220f63b109e4cb73d0316d81738cfa985d84dbafb493ade95cf8535f3661806c2f464736f6c63430008070033a26469706673582212207b3b0c4b38253ec5140e02e3719b7ba12bba742584749294b089d8a08ff1246e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e9190620033d8565b62000888565b604051620002539190620039aa565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062003a01565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b2919062003291565b6200099f565b604051620002c79190620039aa565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f7919062003bdf565b60405180910390f35b3480156200030d57600080fd5b506200032c60048036038101906200032691906200340a565b620009d0565b005b3480156200033b57600080fd5b506200035a600480360381019062000354919062003235565b62000a48565b604051620003699190620039aa565b60405180910390f35b3480156200037f57600080fd5b506200039e60048036038101906200039891906200335f565b62000a7d565b604051620003ad9190620039c7565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc919062003391565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b9190620038f6565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b919062003c60565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a919062003391565b62000af3565b005b3480156200047f57600080fd5b506200049e600480360381019062000498919062003291565b62000b7d565b604051620004ad9190620039aa565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd919062003bdf565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d9190620038f6565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d919062003bdf565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c9190620031ee565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a91906200318a565b6200109d565b604051620005af919062003bdf565b60405180910390f35b348015620005c557600080fd5b50620005d0620010e5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f89190620032d8565b620010fd565b005b3480156200060d57600080fd5b506200061862001201565b604051620006279190620039e4565b60405180910390f35b3480156200063d57600080fd5b506200064862001227565b604051620006579190620038f6565b60405180910390f35b3480156200066d57600080fd5b506200068c600480360381019062000686919062003391565b62001251565b6040516200069b9190620039aa565b60405180910390f35b348015620006b157600080fd5b50620006bc620012bc565b604051620006cb919062003a01565b60405180910390f35b348015620006e157600080fd5b50620006ec62001356565b604051620006fb9190620039c7565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a919062003291565b6200135d565b6040516200073f9190620039aa565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e919062003291565b620013dd565b604051620007839190620039aa565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b2919062003391565b62001404565b005b348015620007c757600080fd5b50620007e66004803603810190620007e091906200318a565b6200142b565b005b348015620007f557600080fd5b506200081460048036038101906200080e9190620031ee565b6200157d565b60405162000823919062003bdf565b60405180910390f35b3480156200083957600080fd5b506200085860048036038101906200085291906200340a565b62001604565b005b3480156200086757600080fd5b506200088660048036038101906200088091906200318a565b620016ca565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd8262001755565b5b9050919050565b606060038054620009169062003f15565b80601f0160208091040260200160405190810160405280929190818152602001828054620009449062003f15565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac620017bf565b9050620009bb818585620017c7565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc816200199a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a55620017bf565b905062000a64858285620019b2565b62000a7185858562001a46565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab3816200199a565b62000abf838362001e6b565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd620017bf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b649062003bbd565b60405180910390fd5b62000b79828262001f51565b5050565b60008062000b8a620017bf565b905062000bb181858562000b9f85896200157d565b62000bab919062003cdd565b620017c7565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a816200199a565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801562000d0a57600080fd5b505afa15801562000d1f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d459190620031bc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000da392919062003913565b602060405180830381600087803b15801562000dbe57600080fd5b505af115801562000dd3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000df99190620031bc565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eda9291906200397d565b602060405180830381600087803b15801562000ef557600080fd5b505af115801562000f0a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f3091906200332d565b5062000f8030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620017c7565b62000fad30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620017c7565b6200101e600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620017c7565b306040516200102d906200307c565b620010399190620038f6565b604051809103906000f08015801562001056573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010ef62002038565b620010fb6000620020bd565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862001129816200199a565b43600a8190555060005b83839050811015620011fb57620011e566f8b0a10e470000662386f26fc1000060016200118e600589898881811062001171576200117062004090565b5b90506020020160208101906200118891906200318a565b62002183565b6200119a919062003cdd565b620011a6919062003d72565b620011b2919062003cdd565b858584818110620011c857620011c762004090565b5b9050602002016020810190620011df91906200318a565b620021ca565b8080620011f29062003f4b565b91505062001133565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054620012cd9062003f15565b80601f0160208091040260200160405190810160405280929190818152602001828054620012fb9062003f15565b80156200134c5780601f1062001320576101008083540402835291602001916200134c565b820191906000526020600020905b8154815290600101906020018083116200132e57829003601f168201915b5050505050905090565b6000801b81565b6000806200136a620017bf565b905060006200137a82866200157d565b905083811015620013c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013b99062003b9b565b60405180910390fd5b620013d18286868403620017c7565b60019250505092915050565b600080620013ea620017bf565b9050620013f981858562001a46565b600191505092915050565b6200140f8262000a7d565b6200141a816200199a565b62001426838362001f51565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862001457816200199a565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620014af9190620038f6565b60206040518083038186803b158015620014c857600080fd5b505afa158015620014dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200150391906200343c565b6040518363ffffffff1660e01b8152600401620015229291906200397d565b602060405180830381600087803b1580156200153d57600080fd5b505af115801562001552573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200157891906200332d565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016659392919062003940565b602060405180830381600087803b1580156200168057600080fd5b505af115801562001695573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620016bb91906200332d565b50620016c78162002484565b50565b620016d462002038565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562001747576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200173e9062003a69565b60405180910390fd5b6200175281620020bd565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200183a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018319062003b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620018ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018a49062003a8b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200198d919062003bdf565b60405180910390a3505050565b620019af81620019a9620017bf565b6200287a565b50565b6000620019c084846200157d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811462001a40578181101562001a30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a279062003aad565b60405180910390fd5b62001a3f8484848403620017c7565b5b50505050565b6000811162001a8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a839062003b35565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001b395750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001b525762001b4c8383836200290a565b62001e66565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001caa576000600a541162001bf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001be89062003af1565b60405180910390fd5b62001c28833062001c22606462001c136001876200291c90919063ffffffff16565b6200293490919063ffffffff16565b6200294c565b62001c53606462001c446001846200291c90919063ffffffff16565b6200293490919063ffffffff16565b600d600082825462001c66919062003cdd565b9250508190555062001ca4838362001c9e606462001c8f6063876200291c90919063ffffffff16565b6200293490919063ffffffff16565b6200294c565b62001e66565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001e6557600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001d675762001d618383836200294c565b62001e66565b62001d9e833062001d98606462001d896001876200291c90919063ffffffff16565b6200293490919063ffffffff16565b6200294c565b62001dc9606462001dba6001846200291c90919063ffffffff16565b6200293490919063ffffffff16565b600d600082825462001ddc919062003cdd565b9250508190555062001e2081600d5462001df7919062003cdd565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002bd3565b6000600d8190555062001e5f838362001e59606462001e4a6063876200291c90919063ffffffff16565b6200293490919063ffffffff16565b6200294c565b62001e66565b5b505050565b62001e77828262001251565b62001f4d5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001ef2620017bf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001f5d828262001251565b15620020345760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001fd9620017bf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62002042620017bf565b73ffffffffffffffffffffffffffffffffffffffff166200206262001227565b73ffffffffffffffffffffffffffffffffffffffff1614620020bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620020b29062003b13565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000824244846040516020016200219d93929190620038b3565b6040516020818303038152906040528051906020012060001c620021c2919062003fcb565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620022055762002204620040bf565b5b604051908082528060200260200182016040528015620022345781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811062002271576200227062004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620022c357620022c262004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200235c9190620038f6565b60206040518083038186803b1580156200237557600080fd5b505afa1580156200238a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023b091906200343c565b90506000841415620023c0578093505b8084116200246357600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b81526004016200242e95949392919062003bfc565b600060405180830381600087803b1580156200244957600080fd5b505af11580156200245e573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620024bf57620024be620040bf565b5b604051908082528060200260200182016040528015620024ee5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106200252b576200252a62004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200257d576200257c62004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620026169190620038f6565b60206040518083038186803b1580156200262f57600080fd5b505afa15801562002644573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200266a91906200343c565b905060008314156200267a578092505b8083116200273f57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200270a95949392919062003bfc565b600060405180830381600087803b1580156200272557600080fd5b505af11580156200273a573d6000803e3d6000fd5b505050505b60006200276e600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200109d565b11156200285a573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630620027e2600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200109d565b6040518463ffffffff1660e01b8152600401620028029392919062003940565b602060405180830381600087803b1580156200281d57600080fd5b505af115801562002832573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200285891906200332d565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b62002886828262001251565b6200290657620028968162002de8565b620028a68360001c602062002e17565b604051602001620028b992919062003871565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620028fd919062003a01565b60405180910390fd5b5050565b620029178383836200294c565b505050565b600081836200292c919062003d72565b905092915050565b6000818362002944919062003d3a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620029bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620029b69062003b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562002a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a299062003a47565b60405180910390fd5b62002a3f83838362003072565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002ac8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002abf9062003acf565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002bb8919062003bdf565b60405180910390a362002bcd84848462003077565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002bfb306200109d565b90506000600267ffffffffffffffff81111562002c1d5762002c1c620040bf565b5b60405190808252806020026020018201604052801562002c4c5781602001602082028036833780820191505090505b5090508382101562002c5c578193505b600084111562002dc757308160008151811062002c7e5762002c7d62004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002cf25762002cf162004090565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002d9295949392919062003bfc565b600060405180830381600087803b15801562002dad57600080fd5b505af115801562002dc2573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002e108273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002e17565b9050919050565b60606000600283600262002e2c919062003d72565b62002e38919062003cdd565b67ffffffffffffffff81111562002e545762002e53620040bf565b5b6040519080825280601f01601f19166020018201604052801562002e875781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002ec25762002ec162004090565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002f295762002f2862004090565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002f6b919062003d72565b62002f77919062003cdd565b90505b600181111562003021577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002fbd5762002fbc62004090565b5b1a60f81b82828151811062002fd75762002fd662004090565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080620030199062003ee6565b905062002f7a565b506000841462003068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200305f9062003a25565b60405180910390fd5b8091505092915050565b505050565b505050565b61025b806200453f83390190565b6000813590506200309b81620044bc565b92915050565b600081519050620030b281620044bc565b92915050565b60008083601f840112620030d157620030d0620040f3565b5b8235905067ffffffffffffffff811115620030f157620030f0620040ee565b5b60208301915083602082028301111562003110576200310f620040f8565b5b9250929050565b6000815190506200312881620044d6565b92915050565b6000813590506200313f81620044f0565b92915050565b60008135905062003156816200450a565b92915050565b6000813590506200316d8162004524565b92915050565b600081519050620031848162004524565b92915050565b600060208284031215620031a357620031a262004102565b5b6000620031b3848285016200308a565b91505092915050565b600060208284031215620031d557620031d462004102565b5b6000620031e584828501620030a1565b91505092915050565b6000806040838503121562003208576200320762004102565b5b600062003218858286016200308a565b92505060206200322b858286016200308a565b9150509250929050565b60008060006060848603121562003251576200325062004102565b5b600062003261868287016200308a565b935050602062003274868287016200308a565b925050604062003287868287016200315c565b9150509250925092565b60008060408385031215620032ab57620032aa62004102565b5b6000620032bb858286016200308a565b9250506020620032ce858286016200315c565b9150509250929050565b60008060208385031215620032f257620032f162004102565b5b600083013567ffffffffffffffff811115620033135762003312620040fd565b5b6200332185828601620030b8565b92509250509250929050565b60006020828403121562003346576200334562004102565b5b6000620033568482850162003117565b91505092915050565b60006020828403121562003378576200337762004102565b5b600062003388848285016200312e565b91505092915050565b60008060408385031215620033ab57620033aa62004102565b5b6000620033bb858286016200312e565b9250506020620033ce858286016200308a565b9150509250929050565b600060208284031215620033f157620033f062004102565b5b6000620034018482850162003145565b91505092915050565b60006020828403121562003423576200342262004102565b5b600062003433848285016200315c565b91505092915050565b60006020828403121562003455576200345462004102565b5b6000620034658482850162003173565b91505092915050565b60006200347c838362003488565b60208301905092915050565b620034938162003dd3565b82525050565b620034a48162003dd3565b82525050565b620034bf620034b98262003dd3565b62003f99565b82525050565b6000620034d28262003c8d565b620034de818562003cb0565b9350620034eb8362003c7d565b8060005b83811015620035225781516200350688826200346e565b9750620035138362003ca3565b925050600181019050620034ef565b5085935050505092915050565b6200353a8162003de7565b82525050565b6200354b8162003df3565b82525050565b6200355c8162003e60565b82525050565b6200356d8162003e74565b82525050565b6000620035808262003c98565b6200358c818562003cc1565b93506200359e81856020860162003eb0565b620035a98162004107565b840191505092915050565b6000620035c18262003c98565b620035cd818562003cd2565b9350620035df81856020860162003eb0565b80840191505092915050565b6000620035fa60208362003cc1565b9150620036078262004125565b602082019050919050565b60006200362160238362003cc1565b91506200362e826200414e565b604082019050919050565b60006200364860268362003cc1565b915062003655826200419d565b604082019050919050565b60006200366f60228362003cc1565b91506200367c82620041ec565b604082019050919050565b600062003696601d8362003cc1565b9150620036a3826200423b565b602082019050919050565b6000620036bd60268362003cc1565b9150620036ca8262004264565b604082019050919050565b6000620036e460088362003cc1565b9150620036f182620042b3565b602082019050919050565b60006200370b60208362003cc1565b91506200371882620042dc565b602082019050919050565b60006200373260108362003cc1565b91506200373f8262004305565b602082019050919050565b60006200375960258362003cc1565b915062003766826200432e565b604082019050919050565b60006200378060248362003cc1565b91506200378d826200437d565b604082019050919050565b6000620037a760178362003cd2565b9150620037b482620043cc565b601782019050919050565b6000620037ce60258362003cc1565b9150620037db82620043f5565b604082019050919050565b6000620037f560118362003cd2565b9150620038028262004444565b601182019050919050565b60006200381c602f8362003cc1565b915062003829826200446d565b604082019050919050565b6200383f8162003e49565b82525050565b6200385a620038548262003e49565b62003fc1565b82525050565b6200386b8162003e53565b82525050565b60006200387e8262003798565b91506200388c8285620035b4565b91506200389982620037e6565b9150620038a78284620035b4565b91508190509392505050565b6000620038c1828662003845565b602082019150620038d3828562003845565b602082019150620038e58284620034aa565b601482019150819050949350505050565b60006020820190506200390d600083018462003499565b92915050565b60006040820190506200392a600083018562003499565b62003939602083018462003499565b9392505050565b600060608201905062003957600083018662003499565b62003966602083018562003499565b62003975604083018462003834565b949350505050565b600060408201905062003994600083018562003499565b620039a3602083018462003834565b9392505050565b6000602082019050620039c160008301846200352f565b92915050565b6000602082019050620039de600083018462003540565b92915050565b6000602082019050620039fb600083018462003551565b92915050565b6000602082019050818103600083015262003a1d818462003573565b905092915050565b6000602082019050818103600083015262003a4081620035eb565b9050919050565b6000602082019050818103600083015262003a628162003612565b9050919050565b6000602082019050818103600083015262003a848162003639565b9050919050565b6000602082019050818103600083015262003aa68162003660565b9050919050565b6000602082019050818103600083015262003ac88162003687565b9050919050565b6000602082019050818103600083015262003aea81620036ae565b9050919050565b6000602082019050818103600083015262003b0c81620036d5565b9050919050565b6000602082019050818103600083015262003b2e81620036fc565b9050919050565b6000602082019050818103600083015262003b508162003723565b9050919050565b6000602082019050818103600083015262003b72816200374a565b9050919050565b6000602082019050818103600083015262003b948162003771565b9050919050565b6000602082019050818103600083015262003bb681620037bf565b9050919050565b6000602082019050818103600083015262003bd8816200380d565b9050919050565b600060208201905062003bf6600083018462003834565b92915050565b600060a08201905062003c13600083018862003834565b62003c22602083018762003562565b818103604083015262003c368186620034c5565b905062003c47606083018562003499565b62003c56608083018462003834565b9695505050505050565b600060208201905062003c77600083018462003860565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600062003cea8262003e49565b915062003cf78362003e49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562003d2f5762003d2e62004003565b5b828201905092915050565b600062003d478262003e49565b915062003d548362003e49565b92508262003d675762003d6662004032565b5b828204905092915050565b600062003d7f8262003e49565b915062003d8c8362003e49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562003dc85762003dc762004003565b5b828202905092915050565b600062003de08262003e29565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600062003e6d8262003e88565b9050919050565b600062003e818262003e49565b9050919050565b600062003e958262003e9c565b9050919050565b600062003ea98262003e29565b9050919050565b60005b8381101562003ed057808201518184015260208101905062003eb3565b8381111562003ee0576000848401525b50505050565b600062003ef38262003e49565b9150600082141562003f0a5762003f0962004003565b5b600182039050919050565b6000600282049050600182168062003f2e57607f821691505b6020821081141562003f455762003f4462004061565b5b50919050565b600062003f588262003e49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562003f8e5762003f8d62004003565b5b600182019050919050565b600062003fa68262003fad565b9050919050565b600062003fba8262004118565b9050919050565b6000819050919050565b600062003fd88262003e49565b915062003fe58362003e49565b92508262003ff85762003ff762004032565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b620044c78162003dd3565b8114620044d357600080fd5b50565b620044e18162003de7565b8114620044ed57600080fd5b50565b620044fb8162003df3565b81146200450757600080fd5b50565b620045158162003dfd565b81146200452157600080fd5b50565b6200452f8162003e49565b81146200453b57600080fd5b5056fe608060405234801561001057600080fd5b5060405161025b38038061025b833981810160405281019061003291906100f2565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f92919061016a565b602060405180830381600087803b15801561008957600080fd5b505af115801561009d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c1919061011f565b505061020e565b6000815190506100d7816101e0565b92915050565b6000815190506100ec816101f7565b92915050565b600060208284031215610108576101076101db565b5b6000610116848285016100c8565b91505092915050565b600060208284031215610135576101346101db565b5b6000610143848285016100dd565b91505092915050565b61015581610193565b82525050565b610164816101d1565b82525050565b600060408201905061017f600083018561014c565b61018c602083018461015b565b9392505050565b600061019e826101b1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600080fd5b6101e981610193565b81146101f457600080fd5b50565b610200816101a5565b811461020b57600080fd5b50565b603f8061021c6000396000f3fe6080604052600080fdfea2646970667358221220f63b109e4cb73d0316d81738cfa985d84dbafb493ade95cf8535f3661806c2f464736f6c63430008070033a26469706673582212207b3b0c4b38253ec5140e02e3719b7ba12bba742584749294b089d8a08ff1246e64736f6c63430008070033

Deployed Bytecode Sourcemap

62933:6110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37632:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54082:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52851:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68875:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54863:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39455:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39896:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63168:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64700:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41040:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55533:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63274:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63133:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63194:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63946:748;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53022:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45177:103;;;;;;;;;;;;;:::i;:::-;;68272:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63354:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44536:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37928:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37033:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56274:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53355:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40336:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68702:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53611:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66200:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45435:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37632:204;37717:4;37756:32;37741:47;;;:11;:47;;;;:87;;;;37792:36;37816:11;37792:23;:36::i;:::-;37741:87;37734:94;;37632:204;;;:::o;51722:100::-;51776:13;51809:5;51802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51722:100;:::o;54082:201::-;54165:4;54182:13;54198:12;:10;:12::i;:::-;54182:28;;54221:32;54230:5;54237:7;54246:6;54221:8;:32::i;:::-;54271:4;54264:11;;;54082:201;;;;:::o;52851:108::-;52912:7;52939:12;;52932:19;;52851:108;:::o;68875:122::-;63026:25;37524:16;37535:4;37524:10;:16::i;:::-;68961:10:::1;68953:28;;:36;68982:6;68953:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68875:122:::0;;:::o;54863:261::-;54960:4;54977:15;54995:12;:10;:12::i;:::-;54977:30;;55018:38;55034:4;55040:7;55049:6;55018:15;:38::i;:::-;55067:27;55077:4;55083:2;55087:6;55067:9;:27::i;:::-;55112:4;55105:11;;;54863:261;;;;;:::o;39455:131::-;39529:7;39556:6;:12;39563:4;39556:12;;;;;;;;;;;:22;;;39549:29;;39455:131;;;:::o;39896:147::-;39979:18;39992:4;39979:12;:18::i;:::-;37524:16;37535:4;37524:10;:16::i;:::-;40010:25:::1;40021:4;40027:7;40010:10;:25::i;:::-;39896:147:::0;;;:::o;63168:19::-;;;;;;;;;;;;;:::o;64700:92::-;64758:5;64783:1;64776:8;;64700:92;:::o;41040:218::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:23;;;41128:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;41224:26;41236:4;41242:7;41224:11;:26::i;:::-;41040:218;;:::o;55533:238::-;55621:4;55638:13;55654:12;:10;:12::i;:::-;55638:28;;55677:64;55686:5;55693:7;55730:10;55702:25;55712:5;55719:7;55702:9;:25::i;:::-;:38;;;;:::i;:::-;55677:8;:64::i;:::-;55759:4;55752:11;;;55533:238;;;;:::o;63274:24::-;;;;:::o;63133:28::-;;;;;;;;;;;;;:::o;63194:30::-;;;;:::o;63946:748::-;63026:25;37524:16;37535:4;37524:10;:16::i;:::-;64040:6:::1;64035:4;;:11;;;;;;;;;;;;;;;;;;64113:12;64126:5;64113:18;;64227:4;64197:15;;:35;;;;;;;;;;;;;;;;;;64272:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64259:50;;;64318:4;64325;;;;;;;;;;;64259:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64243:13;;:87;;;;;;;;;;;;;;;;;;64347:4;;;;;;;;;;;64341:19;;;64369:15;;;;;;;;;;;64387:17;64341:64;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64416:67;64433:4;64448:15;;;;;;;;;;;64465:17;64416:8;:67::i;:::-;64494:56;64511:4;64526;64532:17;64494:8;:56::i;:::-;64561:59;64570:5;;;;;;;;;;;64585:15;;;;;;;;;;;64602:17;64561:8;:59::i;:::-;64680:4;64651:35;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64631:17;;:55;;;;;;;;;;;;;;;;;;64024:670;63946:748:::0;;;:::o;53022:127::-;53096:7;53123:9;:18;53133:7;53123:18;;;;;;;;;;;;;;;;53116:25;;53022:127;;;:::o;45177:103::-;44422:13;:11;:13::i;:::-;45242:30:::1;45269:1;45242:18;:30::i;:::-;45177:103::o:0;68272:236::-;63026:25;37524:16;37535:4;37524:10;:16::i;:::-;68376:12:::1;68358:15;:30;;;;68403:6;68399:101;68414:4;;:11;;68412:1;:13;68399:101;;;68444:56;68483:8;68476:6;68473:1;68455:17;68462:1;68464:4;;68469:1;68464:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;68455:6;:17::i;:::-;:19;;;;:::i;:::-;68454:28;;;;:::i;:::-;:37;;;;:::i;:::-;68492:4;;68497:1;68492:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;68444:9;:56::i;:::-;68426:3;;;;;:::i;:::-;;;;68399:101;;;;68272:236:::0;;;:::o;63354:41::-;;;;;;;;;;;;;:::o;44536:87::-;44582:7;44609:6;;;;;;;;;;;44602:13;;44536:87;:::o;37928:147::-;38014:4;38038:6;:12;38045:4;38038:12;;;;;;;;;;;:20;;:29;38059:7;38038:29;;;;;;;;;;;;;;;;;;;;;;;;;38031:36;;37928:147;;;;:::o;51941:104::-;51997:13;52030:7;52023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51941:104;:::o;37033:49::-;37078:4;37033:49;;;:::o;56274:436::-;56367:4;56384:13;56400:12;:10;:12::i;:::-;56384:28;;56423:24;56450:25;56460:5;56467:7;56450:9;:25::i;:::-;56423:52;;56514:15;56494:16;:35;;56486:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56607:60;56616:5;56623:7;56651:15;56632:16;:34;56607:8;:60::i;:::-;56698:4;56691:11;;;;56274:436;;;;:::o;53355:193::-;53434:4;53451:13;53467:12;:10;:12::i;:::-;53451:28;;53490;53500:5;53507:2;53511:6;53490:9;:28::i;:::-;53536:4;53529:11;;;53355:193;;;;:::o;40336:149::-;40420:18;40433:4;40420:12;:18::i;:::-;37524:16;37535:4;37524:10;:16::i;:::-;40451:26:::1;40463:4;40469:7;40451:11;:26::i;:::-;40336:149:::0;;;:::o;68702:161::-;63026:25;37524:16;37535:4;37524:10;:16::i;:::-;68786:6:::1;68780:22;;;68803:10;68822:6;68815:24;;;68848:4;68815:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68780:75;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68702:161:::0;;:::o;53611:151::-;53700:7;53727:11;:18;53739:5;53727:18;;;;;;;;;;;;;;;:27;53746:7;53727:27;;;;;;;;;;;;;;;;53720:34;;53611:151;;;;:::o;66200:158::-;66256:4;;;;;;;;;;;66250:24;;;66275:10;66295:4;66302:6;66250:59;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66320:30;66343:6;66320:22;:30::i;:::-;66200:158;:::o;45435:201::-;44422:13;:11;:13::i;:::-;45544:1:::1;45524:22;;:8;:22;;;;45516:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45600:28;45619:8;45600:18;:28::i;:::-;45435:201:::0;:::o;6569:157::-;6654:4;6693:25;6678:40;;;:11;:40;;;;6671:47;;6569:157;;;:::o;34714:98::-;34767:7;34794:10;34787:17;;34714:98;:::o;60267:346::-;60386:1;60369:19;;:5;:19;;;;60361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60467:1;60448:21;;:7;:21;;;;60440:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60551:6;60521:11;:18;60533:5;60521:18;;;;;;;;;;;;;;;:27;60540:7;60521:27;;;;;;;;;;;;;;;:36;;;;60589:7;60573:32;;60582:5;60573:32;;;60598:6;60573:32;;;;;;:::i;:::-;;;;;;;;60267:346;;;:::o;38379:105::-;38446:30;38457:4;38463:12;:10;:12::i;:::-;38446:10;:30::i;:::-;38379:105;:::o;60904:419::-;61005:24;61032:25;61042:5;61049:7;61032:9;:25::i;:::-;61005:52;;61092:17;61072:16;:37;61068:248;;61154:6;61134:16;:26;;61126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61238:51;61247:5;61254:7;61282:6;61263:16;:25;61238:8;:51::i;:::-;61068:248;60994:329;60904:419;;;:::o;64803:1085::-;64944:1;64935:6;:10;64927:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;64998:13;;;;;;;;;;;64990:21;;:4;:21;;;;:44;;;;;65021:13;;;;;;;;;;;65015:19;;:2;:19;;;;64990:44;64987:127;;;65051:30;65064:4;65070:2;65074:6;65051:12;:30::i;:::-;65096:7;;64987:127;65135:13;;;;;;;;;;;65127:21;;:4;:21;;;65124:300;;;65189:1;65173:15;;:17;65165:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;65218:60;65234:4;65248;65255:22;65273:3;65255:13;65266:1;65255:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65218:15;:60::i;:::-;65304:22;65322:3;65304:13;65315:1;65304:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65293:9;;:33;;;;;;;:::i;:::-;;;;;;;;65341:50;65357:4;65363:2;65367:23;65386:3;65367:14;65378:2;65367:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;65341:15;:50::i;:::-;65406:7;;65124:300;65443:13;;;;;;;;;;;65437:19;;:2;:19;;;65434:447;;;65476:9;:15;65486:4;65476:15;;;;;;;;;;;;;;;;;;;;;;;;;65473:112;;;65511:33;65527:4;65533:2;65537:6;65511:15;:33::i;:::-;65563:7;;65473:112;65599:60;65615:4;65629;65636:22;65654:3;65636:13;65647:1;65636:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65599:15;:60::i;:::-;65685:22;65703:3;65685:13;65696:1;65685:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65674:9;;:33;;;;;;;:::i;:::-;;;;;;;;65722:35;65741:6;65731:9;;:16;;;;:::i;:::-;65748:8;;;;;;;;;;;65722;:35::i;:::-;65782:1;65772:9;:11;;;;65798:50;65814:4;65820:2;65824:23;65843:3;65824:14;65835:2;65824:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;65798:15;:50::i;:::-;65863:7;;65434:447;64803:1085;;;;:::o;42637:238::-;42721:22;42729:4;42735:7;42721;:22::i;:::-;42716:152;;42792:4;42760:6;:12;42767:4;42760:12;;;;;;;;;;;:20;;:29;42781:7;42760:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;42843:12;:10;:12::i;:::-;42816:40;;42834:7;42816:40;;42828:4;42816:40;;;;;;;;;;42716:152;42637:238;;:::o;43055:239::-;43139:22;43147:4;43153:7;43139;:22::i;:::-;43135:152;;;43210:5;43178:6;:12;43185:4;43178:12;;;;;;;;;;;:20;;:29;43199:7;43178:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;43262:12;:10;:12::i;:::-;43235:40;;43253:7;43235:40;;43247:4;43235:40;;;;;;;;;;43135:152;43055:239;;:::o;44701:132::-;44776:12;:10;:12::i;:::-;44765:23;;:7;:5;:7::i;:::-;:23;;;44757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44701:132::o;45796:191::-;45870:16;45889:6;;;;;;;;;;;45870:25;;45915:8;45906:6;;:17;;;;;;;;;;;;;;;;;;45970:8;45939:40;;45960:8;45939:40;;;;;;;;;;;;45859:128;45796:191;:::o;68514:180::-;68578:4;68680:6;68634:15;68650:16;68669:5;68617:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68607:69;;;;;;68602:75;;:84;;;;:::i;:::-;68595:91;;68514:180;;;;:::o;66364:611::-;66145:4;66136:6;;:13;;;;;;;;;;;;;;;;;;66446:21:::1;66484:1;66470:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66446:40;;66515:4;;;;;;;;;;;66497;66502:1;66497:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66549:4;66531;66536:1;66531:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66565:15;66590:4;;;;;;;;;;;66583:22;;;66614:4;66583:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66565:55;;66647:1;66634:11;:14;66631:39;;;66663:7;66649:21;;66631:39;66725:7;66710:11;:22;66707:260;;66743:15;;;;;;;;;;;:69;;;66827:11;66853:1;66896:4;66923:2;66941:15;66743:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;66707:260;66435:540;;66181:5:::0;66172:6;;:14;;;;;;;;;;;;;;;;;;66364:611;;:::o;66981:807::-;66145:4;66136:6;;:13;;;;;;;;;;;;;;;;;;67065:21:::1;67103:1;67089:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67065:40;;67134:4;;;;;;;;;;;67116;67121:1;67116:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;67168:4;67150;67155:1;67150:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;67184:15;67209:4;;;;;;;;;;;67202:22;;;67233:4;67202:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67184:55;;67266:1;67253:11;:14;67250:39;;;67282:7;67268:21;;67250:39;67344:7;67329:11;:22;67326:275;;67362:15;;;;;;;;;;;:69;;;67446:11;67472:1;67515:4;67542:17;;;;;;;;;;;67575:15;67362:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67326:275;67653:1;67615:37;67633:17;;;;;;;;;;;67615:9;:37::i;:::-;:39;67612:168;;;67679:4;67665:33;;;67707:17;;;;;;;;;;;67735:4;67742:37;67760:17;;;;;;;;;;;67742:9;:37::i;:::-;67665:115;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67612:168;67054:734;;66181:5:::0;66172:6;;:14;;;;;;;;;;;;;;;;;;66981:807;:::o;38774:492::-;38863:22;38871:4;38877:7;38863;:22::i;:::-;38858:401;;39051:28;39071:7;39051:19;:28::i;:::-;39152:38;39180:4;39172:13;;39187:2;39152:19;:38::i;:::-;38956:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38902:345;;;;;;;;;;;:::i;:::-;;;;;;;;38858:401;38774:492;;:::o;65894:178::-;66021:43;66037:6;66045:9;66056:7;66021:15;:43::i;:::-;65894:178;;;:::o;30710:98::-;30768:7;30799:1;30795;:5;;;;:::i;:::-;30788:12;;30710:98;;;;:::o;31109:::-;31167:7;31198:1;31194;:5;;;;:::i;:::-;31187:12;;31109:98;;;;:::o;57180:806::-;57293:1;57277:18;;:4;:18;;;;57269:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57370:1;57356:16;;:2;:16;;;;57348:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57425:38;57446:4;57452:2;57456:6;57425:20;:38::i;:::-;57476:19;57498:9;:15;57508:4;57498:15;;;;;;;;;;;;;;;;57476:37;;57547:6;57532:11;:21;;57524:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;57664:6;57650:11;:20;57632:9;:15;57642:4;57632:15;;;;;;;;;;;;;;;:38;;;;57867:6;57850:9;:13;57860:2;57850:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;57917:2;57902:26;;57911:4;57902:26;;;57921:6;57902:26;;;;;;:::i;:::-;;;;;;;;57941:37;57961:4;57967:2;57971:6;57941:19;:37::i;:::-;57258:728;57180:806;;;:::o;67800:464::-;66145:4;66136:6;;:13;;;;;;;;;;;;;;;;;;67881:15:::1;67899:24;67917:4;67899:9;:24::i;:::-;67881:42;;67934:21;67972:1;67958:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67934:40;;67996:11;67988:7;:19;67985:42;;;68020:7;68008:19;;67985:42;68053:1;68041:11;:13;68038:219;;;68088:4;68070;68075:1;68070:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;68118:4;;;;;;;;;;;68108;68113:1;68108:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;::::0;::::1;68137:15;;;;;;;;;;;:69;;;68207:11;68219:1;68221:4;68226:2;68229:15;68137:108;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;68038:219;67870:394;;66181:5:::0;66172:6;;:14;;;;;;;;;;;;;;;;;;67800:464;;:::o;23669:151::-;23727:13;23760:52;23788:4;23772:22;;21544:2;23760:52;;:11;:52::i;:::-;23753:59;;23669:151;;;:::o;23065:447::-;23140:13;23166:19;23211:1;23202:6;23198:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23188:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23166:47;;23224:15;:6;23231:1;23224:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;23250;:6;23257:1;23250:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;23281:9;23306:1;23297:6;23293:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23281:26;;23276:131;23313:1;23309;:5;23276:131;;;23348:8;23365:3;23357:5;:11;23348:21;;;;;;;:::i;:::-;;;;;23336:6;23343:1;23336:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;23394:1;23384:11;;;;;23316:3;;;;:::i;:::-;;;23276:131;;;;23434:1;23425:5;:10;23417:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;23497:6;23483:21;;;23065:447;;;;:::o;61923:91::-;;;;:::o;62618:90::-;;;;:::o;-1:-1:-1:-;;;;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;152:143;;;;:::o;318:568::-;391:8;401:6;451:3;444:4;436:6;432:17;428:27;418:122;;459:79;;:::i;:::-;418:122;572:6;559:20;549:30;;602:18;594:6;591:30;588:117;;;624:79;;:::i;:::-;588:117;738:4;730:6;726:17;714:29;;792:3;784:4;776:6;772:17;762:8;758:32;755:41;752:128;;;799:79;;:::i;:::-;752:128;318:568;;;;;:::o;892:137::-;946:5;977:6;971:13;962:22;;993:30;1017:5;993:30;:::i;:::-;892:137;;;;:::o;1035:139::-;1081:5;1119:6;1106:20;1097:29;;1135:33;1162:5;1135:33;:::i;:::-;1035:139;;;;:::o;1180:137::-;1225:5;1263:6;1250:20;1241:29;;1279:32;1305:5;1279:32;:::i;:::-;1180:137;;;;:::o;1323:139::-;1369:5;1407:6;1394:20;1385:29;;1423:33;1450:5;1423:33;:::i;:::-;1323:139;;;;:::o;1468:143::-;1525:5;1556:6;1550:13;1541:22;;1572:33;1599:5;1572:33;:::i;:::-;1468:143;;;;:::o;1617:329::-;1676:6;1725:2;1713:9;1704:7;1700:23;1696:32;1693:119;;;1731:79;;:::i;:::-;1693:119;1851:1;1876:53;1921:7;1912:6;1901:9;1897:22;1876:53;:::i;:::-;1866:63;;1822:117;1617:329;;;;:::o;1952:351::-;2022:6;2071:2;2059:9;2050:7;2046:23;2042:32;2039:119;;;2077:79;;:::i;:::-;2039:119;2197:1;2222:64;2278:7;2269:6;2258:9;2254:22;2222:64;:::i;:::-;2212:74;;2168:128;1952:351;;;;:::o;2309:474::-;2377:6;2385;2434:2;2422:9;2413:7;2409:23;2405:32;2402:119;;;2440:79;;:::i;:::-;2402:119;2560:1;2585:53;2630:7;2621:6;2610:9;2606:22;2585:53;:::i;:::-;2575:63;;2531:117;2687:2;2713:53;2758:7;2749:6;2738:9;2734:22;2713:53;:::i;:::-;2703:63;;2658:118;2309:474;;;;;:::o;2789:619::-;2866:6;2874;2882;2931:2;2919:9;2910:7;2906:23;2902:32;2899:119;;;2937:79;;:::i;:::-;2899:119;3057:1;3082:53;3127:7;3118:6;3107:9;3103:22;3082:53;:::i;:::-;3072:63;;3028:117;3184:2;3210:53;3255:7;3246:6;3235:9;3231:22;3210:53;:::i;:::-;3200:63;;3155:118;3312:2;3338:53;3383:7;3374:6;3363:9;3359:22;3338:53;:::i;:::-;3328:63;;3283:118;2789:619;;;;;:::o;3414:474::-;3482:6;3490;3539:2;3527:9;3518:7;3514:23;3510:32;3507:119;;;3545:79;;:::i;:::-;3507:119;3665:1;3690:53;3735:7;3726:6;3715:9;3711:22;3690:53;:::i;:::-;3680:63;;3636:117;3792:2;3818:53;3863:7;3854:6;3843:9;3839:22;3818:53;:::i;:::-;3808:63;;3763:118;3414:474;;;;;:::o;3894:559::-;3980:6;3988;4037:2;4025:9;4016:7;4012:23;4008:32;4005:119;;;4043:79;;:::i;:::-;4005:119;4191:1;4180:9;4176:17;4163:31;4221:18;4213:6;4210:30;4207:117;;;4243:79;;:::i;:::-;4207:117;4356:80;4428:7;4419:6;4408:9;4404:22;4356:80;:::i;:::-;4338:98;;;;4134:312;3894:559;;;;;:::o;4459:345::-;4526:6;4575:2;4563:9;4554:7;4550:23;4546:32;4543:119;;;4581:79;;:::i;:::-;4543:119;4701:1;4726:61;4779:7;4770:6;4759:9;4755:22;4726:61;:::i;:::-;4716:71;;4672:125;4459:345;;;;:::o;4810:329::-;4869:6;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;4810:329;;;;:::o;5145:474::-;5213:6;5221;5270:2;5258:9;5249:7;5245:23;5241:32;5238:119;;;5276:79;;:::i;:::-;5238:119;5396:1;5421:53;5466:7;5457:6;5446:9;5442:22;5421:53;:::i;:::-;5411:63;;5367:117;5523:2;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5494:118;5145:474;;;;;:::o;5625:327::-;5683:6;5732:2;5720:9;5711:7;5707:23;5703:32;5700:119;;;5738:79;;:::i;:::-;5700:119;5858:1;5883:52;5927:7;5918:6;5907:9;5903:22;5883:52;:::i;:::-;5873:62;;5829:116;5625:327;;;;:::o;5958:329::-;6017:6;6066:2;6054:9;6045:7;6041:23;6037:32;6034:119;;;6072:79;;:::i;:::-;6034:119;6192:1;6217:53;6262:7;6253:6;6242:9;6238:22;6217:53;:::i;:::-;6207:63;;6163:117;5958:329;;;;:::o;6293:351::-;6363:6;6412:2;6400:9;6391:7;6387:23;6383:32;6380:119;;;6418:79;;:::i;:::-;6380:119;6538:1;6563:64;6619:7;6610:6;6599:9;6595:22;6563:64;:::i;:::-;6553:74;;6509:128;6293:351;;;;:::o;6650:179::-;6719:10;6740:46;6782:3;6774:6;6740:46;:::i;:::-;6818:4;6813:3;6809:14;6795:28;;6650:179;;;;:::o;6835:108::-;6912:24;6930:5;6912:24;:::i;:::-;6907:3;6900:37;6835:108;;:::o;6949:118::-;7036:24;7054:5;7036:24;:::i;:::-;7031:3;7024:37;6949:118;;:::o;7073:157::-;7178:45;7198:24;7216:5;7198:24;:::i;:::-;7178:45;:::i;:::-;7173:3;7166:58;7073:157;;:::o;7266:732::-;7385:3;7414:54;7462:5;7414:54;:::i;:::-;7484:86;7563:6;7558:3;7484:86;:::i;:::-;7477:93;;7594:56;7644:5;7594:56;:::i;:::-;7673:7;7704:1;7689:284;7714:6;7711:1;7708:13;7689:284;;;7790:6;7784:13;7817:63;7876:3;7861:13;7817:63;:::i;:::-;7810:70;;7903:60;7956:6;7903:60;:::i;:::-;7893:70;;7749:224;7736:1;7733;7729:9;7724:14;;7689:284;;;7693:14;7989:3;7982:10;;7390:608;;;7266:732;;;;:::o;8004:109::-;8085:21;8100:5;8085:21;:::i;:::-;8080:3;8073:34;8004:109;;:::o;8119:118::-;8206:24;8224:5;8206:24;:::i;:::-;8201:3;8194:37;8119:118;;:::o;8243:181::-;8355:62;8411:5;8355:62;:::i;:::-;8350:3;8343:75;8243:181;;:::o;8430:147::-;8525:45;8564:5;8525:45;:::i;:::-;8520:3;8513:58;8430:147;;:::o;8583:364::-;8671:3;8699:39;8732:5;8699:39;:::i;:::-;8754:71;8818:6;8813:3;8754:71;:::i;:::-;8747:78;;8834:52;8879:6;8874:3;8867:4;8860:5;8856:16;8834:52;:::i;:::-;8911:29;8933:6;8911:29;:::i;:::-;8906:3;8902:39;8895:46;;8675:272;8583:364;;;;:::o;8953:377::-;9059:3;9087:39;9120:5;9087:39;:::i;:::-;9142:89;9224:6;9219:3;9142:89;:::i;:::-;9135:96;;9240:52;9285:6;9280:3;9273:4;9266:5;9262:16;9240:52;:::i;:::-;9317:6;9312:3;9308:16;9301:23;;9063:267;8953:377;;;;:::o;9336:366::-;9478:3;9499:67;9563:2;9558:3;9499:67;:::i;:::-;9492:74;;9575:93;9664:3;9575:93;:::i;:::-;9693:2;9688:3;9684:12;9677:19;;9336:366;;;:::o;9708:::-;9850:3;9871:67;9935:2;9930:3;9871:67;:::i;:::-;9864:74;;9947:93;10036:3;9947:93;:::i;:::-;10065:2;10060:3;10056:12;10049:19;;9708:366;;;:::o;10080:::-;10222:3;10243:67;10307:2;10302:3;10243:67;:::i;:::-;10236:74;;10319:93;10408:3;10319:93;:::i;:::-;10437:2;10432:3;10428:12;10421:19;;10080:366;;;:::o;10452:::-;10594:3;10615:67;10679:2;10674:3;10615:67;:::i;:::-;10608:74;;10691:93;10780:3;10691:93;:::i;:::-;10809:2;10804:3;10800:12;10793:19;;10452:366;;;:::o;10824:::-;10966:3;10987:67;11051:2;11046:3;10987:67;:::i;:::-;10980:74;;11063:93;11152:3;11063:93;:::i;:::-;11181:2;11176:3;11172:12;11165:19;;10824:366;;;:::o;11196:::-;11338:3;11359:67;11423:2;11418:3;11359:67;:::i;:::-;11352:74;;11435:93;11524:3;11435:93;:::i;:::-;11553:2;11548:3;11544:12;11537:19;;11196:366;;;:::o;11568:365::-;11710:3;11731:66;11795:1;11790:3;11731:66;:::i;:::-;11724:73;;11806:93;11895:3;11806:93;:::i;:::-;11924:2;11919:3;11915:12;11908:19;;11568:365;;;:::o;11939:366::-;12081:3;12102:67;12166:2;12161:3;12102:67;:::i;:::-;12095:74;;12178:93;12267:3;12178:93;:::i;:::-;12296:2;12291:3;12287:12;12280:19;;11939:366;;;:::o;12311:::-;12453:3;12474:67;12538:2;12533:3;12474:67;:::i;:::-;12467:74;;12550:93;12639:3;12550:93;:::i;:::-;12668:2;12663:3;12659:12;12652:19;;12311:366;;;:::o;12683:::-;12825:3;12846:67;12910:2;12905:3;12846:67;:::i;:::-;12839:74;;12922:93;13011:3;12922:93;:::i;:::-;13040:2;13035:3;13031:12;13024:19;;12683:366;;;:::o;13055:::-;13197:3;13218:67;13282:2;13277:3;13218:67;:::i;:::-;13211:74;;13294:93;13383:3;13294:93;:::i;:::-;13412:2;13407:3;13403:12;13396:19;;13055:366;;;:::o;13427:402::-;13587:3;13608:85;13690:2;13685:3;13608:85;:::i;:::-;13601:92;;13702:93;13791:3;13702:93;:::i;:::-;13820:2;13815:3;13811:12;13804:19;;13427:402;;;:::o;13835:366::-;13977:3;13998:67;14062:2;14057:3;13998:67;:::i;:::-;13991:74;;14074:93;14163:3;14074:93;:::i;:::-;14192:2;14187:3;14183:12;14176:19;;13835:366;;;:::o;14207:402::-;14367:3;14388:85;14470:2;14465:3;14388:85;:::i;:::-;14381:92;;14482:93;14571:3;14482:93;:::i;:::-;14600:2;14595:3;14591:12;14584:19;;14207:402;;;:::o;14615:366::-;14757:3;14778:67;14842:2;14837:3;14778:67;:::i;:::-;14771:74;;14854:93;14943:3;14854:93;:::i;:::-;14972:2;14967:3;14963:12;14956:19;;14615:366;;;:::o;14987:118::-;15074:24;15092:5;15074:24;:::i;:::-;15069:3;15062:37;14987:118;;:::o;15111:157::-;15216:45;15236:24;15254:5;15236:24;:::i;:::-;15216:45;:::i;:::-;15211:3;15204:58;15111:157;;:::o;15274:112::-;15357:22;15373:5;15357:22;:::i;:::-;15352:3;15345:35;15274:112;;:::o;15392:967::-;15774:3;15796:148;15940:3;15796:148;:::i;:::-;15789:155;;15961:95;16052:3;16043:6;15961:95;:::i;:::-;15954:102;;16073:148;16217:3;16073:148;:::i;:::-;16066:155;;16238:95;16329:3;16320:6;16238:95;:::i;:::-;16231:102;;16350:3;16343:10;;15392:967;;;;;:::o;16365:538::-;16533:3;16548:75;16619:3;16610:6;16548:75;:::i;:::-;16648:2;16643:3;16639:12;16632:19;;16661:75;16732:3;16723:6;16661:75;:::i;:::-;16761:2;16756:3;16752:12;16745:19;;16774:75;16845:3;16836:6;16774:75;:::i;:::-;16874:2;16869:3;16865:12;16858:19;;16894:3;16887:10;;16365:538;;;;;;:::o;16909:222::-;17002:4;17040:2;17029:9;17025:18;17017:26;;17053:71;17121:1;17110:9;17106:17;17097:6;17053:71;:::i;:::-;16909:222;;;;:::o;17137:332::-;17258:4;17296:2;17285:9;17281:18;17273:26;;17309:71;17377:1;17366:9;17362:17;17353:6;17309:71;:::i;:::-;17390:72;17458:2;17447:9;17443:18;17434:6;17390:72;:::i;:::-;17137:332;;;;;:::o;17475:442::-;17624:4;17662:2;17651:9;17647:18;17639:26;;17675:71;17743:1;17732:9;17728:17;17719:6;17675:71;:::i;:::-;17756:72;17824:2;17813:9;17809:18;17800:6;17756:72;:::i;:::-;17838;17906:2;17895:9;17891:18;17882:6;17838:72;:::i;:::-;17475:442;;;;;;:::o;17923:332::-;18044:4;18082:2;18071:9;18067:18;18059:26;;18095:71;18163:1;18152:9;18148:17;18139:6;18095:71;:::i;:::-;18176:72;18244:2;18233:9;18229:18;18220:6;18176:72;:::i;:::-;17923:332;;;;;:::o;18261:210::-;18348:4;18386:2;18375:9;18371:18;18363:26;;18399:65;18461:1;18450:9;18446:17;18437:6;18399:65;:::i;:::-;18261:210;;;;:::o;18477:222::-;18570:4;18608:2;18597:9;18593:18;18585:26;;18621:71;18689:1;18678:9;18674:17;18665:6;18621:71;:::i;:::-;18477:222;;;;:::o;18705:272::-;18823:4;18861:2;18850:9;18846:18;18838:26;;18874:96;18967:1;18956:9;18952:17;18943:6;18874:96;:::i;:::-;18705:272;;;;:::o;18983:313::-;19096:4;19134:2;19123:9;19119:18;19111:26;;19183:9;19177:4;19173:20;19169:1;19158:9;19154:17;19147:47;19211:78;19284:4;19275:6;19211:78;:::i;:::-;19203:86;;18983:313;;;;:::o;19302:419::-;19468:4;19506:2;19495:9;19491:18;19483:26;;19555:9;19549:4;19545:20;19541:1;19530:9;19526:17;19519:47;19583:131;19709:4;19583:131;:::i;:::-;19575:139;;19302:419;;;:::o;19727:::-;19893:4;19931:2;19920:9;19916:18;19908:26;;19980:9;19974:4;19970:20;19966:1;19955:9;19951:17;19944:47;20008:131;20134:4;20008:131;:::i;:::-;20000:139;;19727:419;;;:::o;20152:::-;20318:4;20356:2;20345:9;20341:18;20333:26;;20405:9;20399:4;20395:20;20391:1;20380:9;20376:17;20369:47;20433:131;20559:4;20433:131;:::i;:::-;20425:139;;20152:419;;;:::o;20577:::-;20743:4;20781:2;20770:9;20766:18;20758:26;;20830:9;20824:4;20820:20;20816:1;20805:9;20801:17;20794:47;20858:131;20984:4;20858:131;:::i;:::-;20850:139;;20577:419;;;:::o;21002:::-;21168:4;21206:2;21195:9;21191:18;21183:26;;21255:9;21249:4;21245:20;21241:1;21230:9;21226:17;21219:47;21283:131;21409:4;21283:131;:::i;:::-;21275:139;;21002:419;;;:::o;21427:::-;21593:4;21631:2;21620:9;21616:18;21608:26;;21680:9;21674:4;21670:20;21666:1;21655:9;21651:17;21644:47;21708:131;21834:4;21708:131;:::i;:::-;21700:139;;21427:419;;;:::o;21852:::-;22018:4;22056:2;22045:9;22041:18;22033:26;;22105:9;22099:4;22095:20;22091:1;22080:9;22076:17;22069:47;22133:131;22259:4;22133:131;:::i;:::-;22125:139;;21852:419;;;:::o;22277:::-;22443:4;22481:2;22470:9;22466:18;22458:26;;22530:9;22524:4;22520:20;22516:1;22505:9;22501:17;22494:47;22558:131;22684:4;22558:131;:::i;:::-;22550:139;;22277:419;;;:::o;22702:::-;22868:4;22906:2;22895:9;22891:18;22883:26;;22955:9;22949:4;22945:20;22941:1;22930:9;22926:17;22919:47;22983:131;23109:4;22983:131;:::i;:::-;22975:139;;22702:419;;;:::o;23127:::-;23293:4;23331:2;23320:9;23316:18;23308:26;;23380:9;23374:4;23370:20;23366:1;23355:9;23351:17;23344:47;23408:131;23534:4;23408:131;:::i;:::-;23400:139;;23127:419;;;:::o;23552:::-;23718:4;23756:2;23745:9;23741:18;23733:26;;23805:9;23799:4;23795:20;23791:1;23780:9;23776:17;23769:47;23833:131;23959:4;23833:131;:::i;:::-;23825:139;;23552:419;;;:::o;23977:::-;24143:4;24181:2;24170:9;24166:18;24158:26;;24230:9;24224:4;24220:20;24216:1;24205:9;24201:17;24194:47;24258:131;24384:4;24258:131;:::i;:::-;24250:139;;23977:419;;;:::o;24402:::-;24568:4;24606:2;24595:9;24591:18;24583:26;;24655:9;24649:4;24645:20;24641:1;24630:9;24626:17;24619:47;24683:131;24809:4;24683:131;:::i;:::-;24675:139;;24402:419;;;:::o;24827:222::-;24920:4;24958:2;24947:9;24943:18;24935:26;;24971:71;25039:1;25028:9;25024:17;25015:6;24971:71;:::i;:::-;24827:222;;;;:::o;25055:831::-;25318:4;25356:3;25345:9;25341:19;25333:27;;25370:71;25438:1;25427:9;25423:17;25414:6;25370:71;:::i;:::-;25451:80;25527:2;25516:9;25512:18;25503:6;25451:80;:::i;:::-;25578:9;25572:4;25568:20;25563:2;25552:9;25548:18;25541:48;25606:108;25709:4;25700:6;25606:108;:::i;:::-;25598:116;;25724:72;25792:2;25781:9;25777:18;25768:6;25724:72;:::i;:::-;25806:73;25874:3;25863:9;25859:19;25850:6;25806:73;:::i;:::-;25055:831;;;;;;;;:::o;25892:214::-;25981:4;26019:2;26008:9;26004:18;25996:26;;26032:67;26096:1;26085:9;26081:17;26072:6;26032:67;:::i;:::-;25892:214;;;;:::o;26193:132::-;26260:4;26283:3;26275:11;;26313:4;26308:3;26304:14;26296:22;;26193:132;;;:::o;26331:114::-;26398:6;26432:5;26426:12;26416:22;;26331:114;;;:::o;26451:99::-;26503:6;26537:5;26531:12;26521:22;;26451:99;;;:::o;26556:113::-;26626:4;26658;26653:3;26649:14;26641:22;;26556:113;;;:::o;26675:184::-;26774:11;26808:6;26803:3;26796:19;26848:4;26843:3;26839:14;26824:29;;26675:184;;;;:::o;26865:169::-;26949:11;26983:6;26978:3;26971:19;27023:4;27018:3;27014:14;26999:29;;26865:169;;;;:::o;27040:148::-;27142:11;27179:3;27164:18;;27040:148;;;;:::o;27194:305::-;27234:3;27253:20;27271:1;27253:20;:::i;:::-;27248:25;;27287:20;27305:1;27287:20;:::i;:::-;27282:25;;27441:1;27373:66;27369:74;27366:1;27363:81;27360:107;;;27447:18;;:::i;:::-;27360:107;27491:1;27488;27484:9;27477:16;;27194:305;;;;:::o;27505:185::-;27545:1;27562:20;27580:1;27562:20;:::i;:::-;27557:25;;27596:20;27614:1;27596:20;:::i;:::-;27591:25;;27635:1;27625:35;;27640:18;;:::i;:::-;27625:35;27682:1;27679;27675:9;27670:14;;27505:185;;;;:::o;27696:348::-;27736:7;27759:20;27777:1;27759:20;:::i;:::-;27754:25;;27793:20;27811:1;27793:20;:::i;:::-;27788:25;;27981:1;27913:66;27909:74;27906:1;27903:81;27898:1;27891:9;27884:17;27880:105;27877:131;;;27988:18;;:::i;:::-;27877:131;28036:1;28033;28029:9;28018:20;;27696:348;;;;:::o;28050:96::-;28087:7;28116:24;28134:5;28116:24;:::i;:::-;28105:35;;28050:96;;;:::o;28152:90::-;28186:7;28229:5;28222:13;28215:21;28204:32;;28152:90;;;:::o;28248:77::-;28285:7;28314:5;28303:16;;28248:77;;;:::o;28331:149::-;28367:7;28407:66;28400:5;28396:78;28385:89;;28331:149;;;:::o;28486:126::-;28523:7;28563:42;28556:5;28552:54;28541:65;;28486:126;;;:::o;28618:77::-;28655:7;28684:5;28673:16;;28618:77;;;:::o;28701:86::-;28736:7;28776:4;28769:5;28765:16;28754:27;;28701:86;;;:::o;28793:151::-;28868:9;28901:37;28932:5;28901:37;:::i;:::-;28888:50;;28793:151;;;:::o;28950:121::-;29008:9;29041:24;29059:5;29041:24;:::i;:::-;29028:37;;28950:121;;;:::o;29077:126::-;29127:9;29160:37;29191:5;29160:37;:::i;:::-;29147:50;;29077:126;;;:::o;29209:113::-;29259:9;29292:24;29310:5;29292:24;:::i;:::-;29279:37;;29209:113;;;:::o;29328:307::-;29396:1;29406:113;29420:6;29417:1;29414:13;29406:113;;;29505:1;29500:3;29496:11;29490:18;29486:1;29481:3;29477:11;29470:39;29442:2;29439:1;29435:10;29430:15;;29406:113;;;29537:6;29534:1;29531:13;29528:101;;;29617:1;29608:6;29603:3;29599:16;29592:27;29528:101;29377:258;29328:307;;;:::o;29641:171::-;29680:3;29703:24;29721:5;29703:24;:::i;:::-;29694:33;;29749:4;29742:5;29739:15;29736:41;;;29757:18;;:::i;:::-;29736:41;29804:1;29797:5;29793:13;29786:20;;29641:171;;;:::o;29818:320::-;29862:6;29899:1;29893:4;29889:12;29879:22;;29946:1;29940:4;29936:12;29967:18;29957:81;;30023:4;30015:6;30011:17;30001:27;;29957:81;30085:2;30077:6;30074:14;30054:18;30051:38;30048:84;;;30104:18;;:::i;:::-;30048:84;29869:269;29818:320;;;:::o;30144:233::-;30183:3;30206:24;30224:5;30206:24;:::i;:::-;30197:33;;30252:66;30245:5;30242:77;30239:103;;;30322:18;;:::i;:::-;30239:103;30369:1;30362:5;30358:13;30351:20;;30144:233;;;:::o;30383:100::-;30422:7;30451:26;30471:5;30451:26;:::i;:::-;30440:37;;30383:100;;;:::o;30489:94::-;30528:7;30557:20;30571:5;30557:20;:::i;:::-;30546:31;;30489:94;;;:::o;30589:79::-;30628:7;30657:5;30646:16;;30589:79;;;:::o;30674:176::-;30706:1;30723:20;30741:1;30723:20;:::i;:::-;30718:25;;30757:20;30775:1;30757:20;:::i;:::-;30752:25;;30796:1;30786:35;;30801:18;;:::i;:::-;30786:35;30842:1;30839;30835:9;30830:14;;30674:176;;;;:::o;30856:180::-;30904:77;30901:1;30894:88;31001:4;30998:1;30991:15;31025:4;31022:1;31015:15;31042:180;31090:77;31087:1;31080:88;31187:4;31184:1;31177:15;31211:4;31208:1;31201:15;31228:180;31276:77;31273:1;31266:88;31373:4;31370:1;31363:15;31397:4;31394:1;31387:15;31414:180;31462:77;31459:1;31452:88;31559:4;31556:1;31549:15;31583:4;31580:1;31573:15;31600:180;31648:77;31645:1;31638:88;31745:4;31742:1;31735:15;31769:4;31766:1;31759:15;31786:117;31895:1;31892;31885:12;31909:117;32018:1;32015;32008:12;32032:117;32141:1;32138;32131:12;32155:117;32264:1;32261;32254:12;32278:117;32387:1;32384;32377:12;32401:102;32442:6;32493:2;32489:7;32484:2;32477:5;32473:14;32469:28;32459:38;;32401:102;;;:::o;32509:94::-;32542:8;32590:5;32586:2;32582:14;32561:35;;32509:94;;;:::o;32609:182::-;32749:34;32745:1;32737:6;32733:14;32726:58;32609:182;:::o;32797:222::-;32937:34;32933:1;32925:6;32921:14;32914:58;33006:5;33001:2;32993:6;32989:15;32982:30;32797:222;:::o;33025:225::-;33165:34;33161:1;33153:6;33149:14;33142:58;33234:8;33229:2;33221:6;33217:15;33210:33;33025:225;:::o;33256:221::-;33396:34;33392:1;33384:6;33380:14;33373:58;33465:4;33460:2;33452:6;33448:15;33441:29;33256:221;:::o;33483:179::-;33623:31;33619:1;33611:6;33607:14;33600:55;33483:179;:::o;33668:225::-;33808:34;33804:1;33796:6;33792:14;33785:58;33877:8;33872:2;33864:6;33860:15;33853:33;33668:225;:::o;33899:158::-;34039:10;34035:1;34027:6;34023:14;34016:34;33899:158;:::o;34063:182::-;34203:34;34199:1;34191:6;34187:14;34180:58;34063:182;:::o;34251:166::-;34391:18;34387:1;34379:6;34375:14;34368:42;34251:166;:::o;34423:224::-;34563:34;34559:1;34551:6;34547:14;34540:58;34632:7;34627:2;34619:6;34615:15;34608:32;34423:224;:::o;34653:223::-;34793:34;34789:1;34781:6;34777:14;34770:58;34862:6;34857:2;34849:6;34845:15;34838:31;34653:223;:::o;34882:173::-;35022:25;35018:1;35010:6;35006:14;34999:49;34882:173;:::o;35061:224::-;35201:34;35197:1;35189:6;35185:14;35178:58;35270:7;35265:2;35257:6;35253:15;35246:32;35061:224;:::o;35291:167::-;35431:19;35427:1;35419:6;35415:14;35408:43;35291:167;:::o;35464:234::-;35604:34;35600:1;35592:6;35588:14;35581:58;35673:17;35668:2;35660:6;35656:15;35649:42;35464:234;:::o;35704:122::-;35777:24;35795:5;35777:24;:::i;:::-;35770:5;35767:35;35757:63;;35816:1;35813;35806:12;35757:63;35704:122;:::o;35832:116::-;35902:21;35917:5;35902:21;:::i;:::-;35895:5;35892:32;35882:60;;35938:1;35935;35928:12;35882:60;35832:116;:::o;35954:122::-;36027:24;36045:5;36027:24;:::i;:::-;36020:5;36017:35;36007:63;;36066:1;36063;36056:12;36007:63;35954:122;:::o;36082:120::-;36154:23;36171:5;36154:23;:::i;:::-;36147:5;36144:34;36134:62;;36192:1;36189;36182:12;36134:62;36082:120;:::o;36208:122::-;36281:24;36299:5;36281:24;:::i;:::-;36274:5;36271:35;36261:63;;36320:1;36317;36310:12;36261:63;36208:122;:::o

Swarm Source

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