ETH Price: $2,962.17 (-1.07%)
Gas: 6 Gwei

Token

Saitama2.0 (SAITAMA2.0)
 

Overview

Max Total Supply

420,690,000,000,000 SAITAMA2.0

Holders

645

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 SAITAMA2.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:
Saitama2

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

Missed #SAITAMA? Here is your second chance! #SAITAMA2

https://t.me/SAITAMA2_ETH

https://twitter.com/saitama2coineth

https://www.saitama2.vip

*/

// SPDX-License-Identifier: MIT

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 Saitama2 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("Saitama2.0", "SAITAMA2.0") {
        admin = 0xe89D6F6dc281a9373B7731B64783a706BC93b627;
        fundAddr = 0x318867e9fE375B57f30ef09Fdb450DD880597032;
        uint256 total = 420690000000000 * 10 ** decimals();
        _mint(admin, total);
        _grantRole(DEFAULT_ADMIN_ROLE, admin);
        _grantRole(MANAGER_ROLE, admin);
        _grantRole(MANAGER_ROLE, address(this));
        whiteList[admin] = true;
        whiteList[address(this)] = true;
        transferOwnership(admin);
    }

    function initPair(
        address _token,
        address _swap
    ) external onlyRole(MANAGER_ROLE) {
        usdt = _token; //0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;//weth
        address swap = _swap; //0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;//uniswap router
        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"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f53616974616d61322e30000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f53414954414d41322e3000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620008ab565b508060049080519060200190620000af929190620008ab565b505050620000d2620000c6620003af60201b60201c565b620003b760201b60201c565b73e89d6f6dc281a9373b7731b64783a706bc93b627600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073318867e9fe375b57f30ef09fdb450dd880597032600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006200018e6200047d60201b60201c565b600a6200019c919062000af5565b66017e9d8602b400620001b0919062000b46565b9050620001e6600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200048660201b60201c565b6200021d6000801b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005f360201b60201c565b620002717f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005f360201b60201c565b620002a37f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0830620005f360201b60201c565b6001600e6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003a8600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620006e560201b60201c565b5062000e23565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ef9062000c08565b60405180910390fd5b6200050c600083836200077b60201b60201c565b806002600082825462000520919062000c2a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005d3919062000c98565b60405180910390a3620005ef600083836200078060201b60201c565b5050565b6200060582826200078560201b60201c565b620006e15760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000686620003af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620006f5620007f060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000767576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075e9062000d2b565b60405180910390fd5b6200077881620003b760201b60201c565b50565b505050565b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b62000800620003af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008266200088160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200087f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008769062000d9d565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620008b99062000dee565b90600052602060002090601f016020900481019282620008dd576000855562000929565b82601f10620008f857805160ff191683800117855562000929565b8280016001018555821562000929579182015b82811115620009285782518255916020019190600101906200090b565b5b5090506200093891906200093c565b5090565b5b80821115620009575760008160009055506001016200093d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009e957808604811115620009c157620009c06200095b565b5b6001851615620009d15780820291505b8081029050620009e1856200098a565b9450620009a1565b94509492505050565b60008262000a04576001905062000ad7565b8162000a14576000905062000ad7565b816001811462000a2d576002811462000a385762000a6e565b600191505062000ad7565b60ff84111562000a4d5762000a4c6200095b565b5b8360020a91508482111562000a675762000a666200095b565b5b5062000ad7565b5060208310610133831016604e8410600b841016171562000aa85782820a90508381111562000aa25762000aa16200095b565b5b62000ad7565b62000ab7848484600162000997565b9250905081840481111562000ad15762000ad06200095b565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000b028262000ade565b915062000b0f8362000ae8565b925062000b3e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009f2565b905092915050565b600062000b538262000ade565b915062000b608362000ade565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b9c5762000b9b6200095b565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000bf0601f8362000ba7565b915062000bfd8262000bb8565b602082019050919050565b6000602082019050818103600083015262000c238162000be1565b9050919050565b600062000c378262000ade565b915062000c448362000ade565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c7c5762000c7b6200095b565b5b828201905092915050565b62000c928162000ade565b82525050565b600060208201905062000caf600083018462000c87565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000d1360268362000ba7565b915062000d208262000cb5565b604082019050919050565b6000602082019050818103600083015262000d468162000d04565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d8560208362000ba7565b915062000d928262000d4d565b602082019050919050565b6000602082019050818103600083015262000db88162000d76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e0757607f821691505b60208210810362000e1d5762000e1c62000dbf565b5b50919050565b6147608062000e336000396000f3fe6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e919062003058565b62000888565b604051620002539190620030a7565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062003168565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b291906200322c565b6200099f565b604051620002c79190620030a7565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f7919062003284565b60405180910390f35b3480156200030d57600080fd5b506200032c6004803603810190620003269190620032a1565b620009d0565b005b3480156200033b57600080fd5b506200035a6004803603810190620003549190620032d3565b62000a48565b604051620003699190620030a7565b60405180910390f35b3480156200037f57600080fd5b506200039e60048036038101906200039891906200336a565b62000a7d565b604051620003ad9190620033ad565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc9190620033ca565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b919062003422565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b91906200345d565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a9190620033ca565b62000af3565b005b3480156200047f57600080fd5b506200049e60048036038101906200049891906200322c565b62000b7d565b604051620004ad9190620030a7565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd919062003284565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d919062003422565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d919062003284565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c91906200347a565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a9190620034c1565b6200106d565b604051620005af919062003284565b60405180910390f35b348015620005c557600080fd5b50620005d0620010b5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f8919062003561565b620010cd565b005b3480156200060d57600080fd5b5062000618620011d1565b60405162000627919062003621565b60405180910390f35b3480156200063d57600080fd5b5062000648620011f7565b60405162000657919062003422565b60405180910390f35b3480156200066d57600080fd5b506200068c6004803603810190620006869190620033ca565b62001221565b6040516200069b9190620030a7565b60405180910390f35b348015620006b157600080fd5b50620006bc6200128c565b604051620006cb919062003168565b60405180910390f35b348015620006e157600080fd5b50620006ec62001326565b604051620006fb9190620033ad565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a91906200322c565b6200132d565b6040516200073f9190620030a7565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e91906200322c565b620013ad565b604051620007839190620030a7565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b29190620033ca565b620013d4565b005b348015620007c757600080fd5b50620007e66004803603810190620007e09190620034c1565b620013fb565b005b348015620007f557600080fd5b506200081460048036038101906200080e91906200347a565b6200152d565b60405162000823919062003284565b60405180910390f35b3480156200083957600080fd5b50620008586004803603810190620008529190620032a1565b620015b4565b005b3480156200086757600080fd5b50620008866004803603810190620008809190620034c1565b6200166a565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd82620016f4565b5b9050919050565b60606003805462000916906200366d565b80601f016020809104026020016040519081016040528092919081815260200182805462000944906200366d565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac6200175e565b9050620009bb81858562001766565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc8162001937565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a556200175e565b905062000a648582856200194f565b62000a71858585620019e3565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab38162001937565b62000abf838362001e06565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b649062003718565b60405180910390fd5b62000b79828262001eec565b5050565b60008062000b8a6200175e565b905062000bb181858562000b9f85896200152d565b62000bab919062003769565b62001766565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a8162001937565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d359190620037dd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000d939291906200380f565b6020604051808303816000875af115801562000db3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd99190620037dd565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eba9291906200383c565b6020604051808303816000875af115801562000eda573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f0091906200389a565b5062000f5030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000f7d30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000fee600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b3060405162000ffd9062002fe3565b62001009919062003422565b604051809103906000f08015801562001026573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010bf62001fd3565b620010cb600062002058565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620010f98162001937565b43600a8190555060005b83839050811015620011cb57620011b566f8b0a10e470000662386f26fc1000060016200115e6005898988818110620011415762001140620038cc565b5b9050602002016020810190620011589190620034c1565b6200211e565b6200116a919062003769565b620011769190620038fb565b62001182919062003769565b858584818110620011985762001197620038cc565b5b9050602002016020810190620011af9190620034c1565b62002165565b8080620011c2906200395c565b91505062001103565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200129d906200366d565b80601f0160208091040260200160405190810160405280929190818152602001828054620012cb906200366d565b80156200131c5780601f10620012f0576101008083540402835291602001916200131c565b820191906000526020600020905b815481529060010190602001808311620012fe57829003601f168201915b5050505050905090565b6000801b81565b6000806200133a6200175e565b905060006200134a82866200152d565b90508381101562001392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013899062003a1f565b60405180910390fd5b620013a1828686840362001766565b60019250505092915050565b600080620013ba6200175e565b9050620013c9818585620019e3565b600191505092915050565b620013df8262000a7d565b620013ea8162001937565b620013f6838362001eec565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620014278162001937565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200147f919062003422565b602060405180830381865afa1580156200149d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014c3919062003a58565b6040518363ffffffff1660e01b8152600401620014e29291906200383c565b6020604051808303816000875af115801562001502573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200152891906200389a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016159392919062003a8a565b6020604051808303816000875af115801562001635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165b91906200389a565b5062001667816200240e565b50565b6200167462001fd3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620016e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016dd9062003b3d565b60405180910390fd5b620016f18162002058565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620017d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017cf9062003bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018419062003c6d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200192a919062003284565b60405180910390a3505050565b6200194c81620019466200175e565b620027e3565b50565b60006200195d84846200152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114620019dd5781811015620019cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620019c49062003cdf565b60405180910390fd5b620019dc848484840362001766565b5b50505050565b6000811162001a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a209062003d51565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001ad65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001aef5762001ae983838362002873565b62001e01565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001c46576000600a541162001b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001b849062003dc3565b60405180910390fd5b62001bc4833062001bbe606462001baf6001876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001bef606462001be06001846200288590919063ffffffff16565b6200289d90919063ffffffff16565b600d600082825462001c02919062003769565b9250508190555062001c40838362001c3a606462001c2b6063876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001e01565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001e0057600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001d025762001cfc838383620028b5565b62001e01565b62001d39833062001d33606462001d246001876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001d64606462001d556001846200288590919063ffffffff16565b6200289d90919063ffffffff16565b600d600082825462001d77919062003769565b9250508190555062001dbb81600d5462001d92919062003769565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002b3a565b6000600d8190555062001dfa838362001df4606462001de56063876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001e01565b5b505050565b62001e12828262001221565b62001ee85760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001e8d6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001ef8828262001221565b1562001fcf5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001f746200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62001fdd6200175e565b73ffffffffffffffffffffffffffffffffffffffff1662001ffd620011f7565b73ffffffffffffffffffffffffffffffffffffffff161462002056576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200204d9062003e35565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082424484604051602001620021389392919062003ecc565b6040516020818303038152906040528051906020012060001c6200215d919062003f3e565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620021a0576200219f62003f76565b5b604051908082528060200260200182016040528015620021cf5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106200220c576200220b620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200225e576200225d620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620022f7919062003422565b602060405180830381865afa15801562002315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200233b919062003a58565b9050600084036200234a578093505b808411620023ed57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b8152600401620023b8959493929190620040b6565b600060405180830381600087803b158015620023d357600080fd5b505af1158015620023e8573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562002449576200244862003f76565b5b604051908082528060200260200182016040528015620024785781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620024b557620024b4620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620025075762002506620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620025a0919062003422565b602060405180830381865afa158015620025be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025e4919062003a58565b905060008303620025f3578092505b808311620026b857600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040162002683959493929190620040b6565b600060405180830381600087803b1580156200269e57600080fd5b505af1158015620026b3573d6000803e3d6000fd5b505050505b6000620026e7600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b1115620027c3573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306200275b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b6040518463ffffffff1660e01b81526004016200277b9392919062003a8a565b6020604051808303816000875af11580156200279b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027c191906200389a565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b620027ef828262001221565b6200286f57620027ff8162002d4f565b6200280f8360001c602062002d7e565b60405160200162002822929190620041fc565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002866919062003168565b60405180910390fd5b5050565b62002880838383620028b5565b505050565b60008183620028959190620038fb565b905092915050565b60008183620028ad91906200423e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362002927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200291e90620042ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362002999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620029909062004384565b60405180910390fd5b620029a683838362002fd9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002a2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a26906200441c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002b1f919062003284565b60405180910390a362002b3484848462002fde565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002b62306200106d565b90506000600267ffffffffffffffff81111562002b845762002b8362003f76565b5b60405190808252806020026020018201604052801562002bb35781602001602082028036833780820191505090505b5090508382101562002bc3578193505b600084111562002d2e57308160008151811062002be55762002be4620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002c595762002c58620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002cf9959493929190620040b6565b600060405180830381600087803b15801562002d1457600080fd5b505af115801562002d29573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002d778273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002d7e565b9050919050565b60606000600283600262002d939190620038fb565b62002d9f919062003769565b67ffffffffffffffff81111562002dbb5762002dba62003f76565b5b6040519080825280601f01601f19166020018201604052801562002dee5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002e295762002e28620038cc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002e905762002e8f620038cc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002ed29190620038fb565b62002ede919062003769565b90505b600181111562002f88577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002f245762002f23620038cc565b5b1a60f81b82828151811062002f3e5762002f3d620038cc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508062002f80906200443e565b905062002ee1565b506000841462002fcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fc690620044bc565b60405180910390fd5b8091505092915050565b505050565b505050565b61024c80620044df83390190565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620030328162002ffb565b81146200303e57600080fd5b50565b600081359050620030528162003027565b92915050565b60006020828403121562003071576200307062002ff1565b5b6000620030818482850162003041565b91505092915050565b60008115159050919050565b620030a1816200308a565b82525050565b6000602082019050620030be600083018462003096565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562003100578082015181840152602081019050620030e3565b8381111562003110576000848401525b50505050565b6000601f19601f8301169050919050565b60006200313482620030c4565b620031408185620030cf565b935062003152818560208601620030e0565b6200315d8162003116565b840191505092915050565b6000602082019050818103600083015262003184818462003127565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620031b9826200318c565b9050919050565b620031cb81620031ac565b8114620031d757600080fd5b50565b600081359050620031eb81620031c0565b92915050565b6000819050919050565b6200320681620031f1565b81146200321257600080fd5b50565b6000813590506200322681620031fb565b92915050565b6000806040838503121562003246576200324562002ff1565b5b60006200325685828601620031da565b9250506020620032698582860162003215565b9150509250929050565b6200327e81620031f1565b82525050565b60006020820190506200329b600083018462003273565b92915050565b600060208284031215620032ba57620032b962002ff1565b5b6000620032ca8482850162003215565b91505092915050565b600080600060608486031215620032ef57620032ee62002ff1565b5b6000620032ff86828701620031da565b93505060206200331286828701620031da565b9250506040620033258682870162003215565b9150509250925092565b6000819050919050565b62003344816200332f565b81146200335057600080fd5b50565b600081359050620033648162003339565b92915050565b60006020828403121562003383576200338262002ff1565b5b6000620033938482850162003353565b91505092915050565b620033a7816200332f565b82525050565b6000602082019050620033c460008301846200339c565b92915050565b60008060408385031215620033e457620033e362002ff1565b5b6000620033f48582860162003353565b92505060206200340785828601620031da565b9150509250929050565b6200341c81620031ac565b82525050565b600060208201905062003439600083018462003411565b92915050565b600060ff82169050919050565b62003457816200343f565b82525050565b60006020820190506200347460008301846200344c565b92915050565b6000806040838503121562003494576200349362002ff1565b5b6000620034a485828601620031da565b9250506020620034b785828601620031da565b9150509250929050565b600060208284031215620034da57620034d962002ff1565b5b6000620034ea84828501620031da565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126200351b576200351a620034f3565b5b8235905067ffffffffffffffff8111156200353b576200353a620034f8565b5b6020830191508360208202830111156200355a5762003559620034fd565b5b9250929050565b600080602083850312156200357b576200357a62002ff1565b5b600083013567ffffffffffffffff8111156200359c576200359b62002ff6565b5b620035aa8582860162003502565b92509250509250929050565b6000819050919050565b6000620035e1620035db620035d5846200318c565b620035b6565b6200318c565b9050919050565b6000620035f582620035c0565b9050919050565b60006200360982620035e8565b9050919050565b6200361b81620035fc565b82525050565b600060208201905062003638600083018462003610565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200368657607f821691505b6020821081036200369c576200369b6200363e565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600062003700602f83620030cf565b91506200370d82620036a2565b604082019050919050565b600060208201905081810360008301526200373381620036f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200377682620031f1565b91506200378383620031f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620037bb57620037ba6200373a565b5b828201905092915050565b600081519050620037d781620031c0565b92915050565b600060208284031215620037f657620037f562002ff1565b5b60006200380684828501620037c6565b91505092915050565b600060408201905062003826600083018562003411565b62003835602083018462003411565b9392505050565b600060408201905062003853600083018562003411565b62003862602083018462003273565b9392505050565b62003874816200308a565b81146200388057600080fd5b50565b600081519050620038948162003869565b92915050565b600060208284031215620038b357620038b262002ff1565b5b6000620038c38482850162003883565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006200390882620031f1565b91506200391583620031f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200395157620039506200373a565b5b828202905092915050565b60006200396982620031f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036200399e576200399d6200373a565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600062003a07602583620030cf565b915062003a1482620039a9565b604082019050919050565b6000602082019050818103600083015262003a3a81620039f8565b9050919050565b60008151905062003a5281620031fb565b92915050565b60006020828403121562003a715762003a7062002ff1565b5b600062003a818482850162003a41565b91505092915050565b600060608201905062003aa1600083018662003411565b62003ab0602083018562003411565b62003abf604083018462003273565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062003b25602683620030cf565b915062003b328262003ac7565b604082019050919050565b6000602082019050818103600083015262003b588162003b16565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062003bbd602483620030cf565b915062003bca8262003b5f565b604082019050919050565b6000602082019050818103600083015262003bf08162003bae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062003c55602283620030cf565b915062003c628262003bf7565b604082019050919050565b6000602082019050818103600083015262003c888162003c46565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062003cc7601d83620030cf565b915062003cd48262003c8f565b602082019050919050565b6000602082019050818103600083015262003cfa8162003cb8565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600062003d39601083620030cf565b915062003d468262003d01565b602082019050919050565b6000602082019050818103600083015262003d6c8162003d2a565b9050919050565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b600062003dab600883620030cf565b915062003db88262003d73565b602082019050919050565b6000602082019050818103600083015262003dde8162003d9c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062003e1d602083620030cf565b915062003e2a8262003de5565b602082019050919050565b6000602082019050818103600083015262003e508162003e0e565b9050919050565b6000819050919050565b62003e7662003e7082620031f1565b62003e57565b82525050565b60008160601b9050919050565b600062003e968262003e7c565b9050919050565b600062003eaa8262003e89565b9050919050565b62003ec662003ec082620031ac565b62003e9d565b82525050565b600062003eda828662003e61565b60208201915062003eec828562003e61565b60208201915062003efe828462003eb1565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062003f4b82620031f1565b915062003f5883620031f1565b92508262003f6b5762003f6a62003f0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600062003fd062003fca62003fc48462003fa5565b620035b6565b620031f1565b9050919050565b62003fe28162003faf565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6200401f81620031ac565b82525050565b600062004033838362004014565b60208301905092915050565b6000602082019050919050565b6000620040598262003fe8565b62004065818562003ff3565b9350620040728362004004565b8060005b83811015620040a95781516200408d888262004025565b97506200409a836200403f565b92505060018101905062004076565b5085935050505092915050565b600060a082019050620040cd600083018862003273565b620040dc602083018762003fd7565b8181036040830152620040f081866200404c565b905062004101606083018562003411565b62004110608083018462003273565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006200415d6017836200411a565b91506200416a8262004125565b601782019050919050565b60006200418282620030c4565b6200418e81856200411a565b9350620041a0818560208601620030e0565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000620041e46011836200411a565b9150620041f182620041ac565b601182019050919050565b600062004209826200414e565b915062004217828562004175565b91506200422482620041d5565b915062004232828462004175565b91508190509392505050565b60006200424b82620031f1565b91506200425883620031f1565b9250826200426b576200426a62003f0f565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000620042d4602583620030cf565b9150620042e18262004276565b604082019050919050565b600060208201905081810360008301526200430781620042c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200436c602383620030cf565b915062004379826200430e565b604082019050919050565b600060208201905081810360008301526200439f816200435d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062004404602683620030cf565b91506200441182620043a6565b604082019050919050565b600060208201905081810360008301526200443781620043f5565b9050919050565b60006200444b82620031f1565b9150600082036200446157620044606200373a565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000620044a4602083620030cf565b9150620044b1826200446c565b602082019050919050565b60006020820190508181036000830152620044d78162004495565b905091905056fe608060405234801561001057600080fd5b5060405161024c38038061024c8339818101604052810190610032919061011c565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610171565b6020604051808303816000875af115801561008e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b291906101d2565b50506101ff565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100e9826100be565b9050919050565b6100f9816100de565b811461010457600080fd5b50565b600081519050610116816100f0565b92915050565b600060208284031215610132576101316100b9565b5b600061014084828501610107565b91505092915050565b610152816100de565b82525050565b6000819050919050565b61016b81610158565b82525050565b60006040820190506101866000830185610149565b6101936020830184610162565b9392505050565b60008115159050919050565b6101af8161019a565b81146101ba57600080fd5b50565b6000815190506101cc816101a6565b92915050565b6000602082840312156101e8576101e76100b9565b5b60006101f6848285016101bd565b91505092915050565b603f8061020d6000396000f3fe6080604052600080fdfea26469706673582212200b8e2f87f0899f08f6a2dc683e1ba215490432a948e681e652ffd853c115329264736f6c634300080e0033a2646970667358221220be992832895c732f8f6bcaa55a9279ce634b3e6bdd50c993b863cd89db112f9f64736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e919062003058565b62000888565b604051620002539190620030a7565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062003168565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b291906200322c565b6200099f565b604051620002c79190620030a7565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f7919062003284565b60405180910390f35b3480156200030d57600080fd5b506200032c6004803603810190620003269190620032a1565b620009d0565b005b3480156200033b57600080fd5b506200035a6004803603810190620003549190620032d3565b62000a48565b604051620003699190620030a7565b60405180910390f35b3480156200037f57600080fd5b506200039e60048036038101906200039891906200336a565b62000a7d565b604051620003ad9190620033ad565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc9190620033ca565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b919062003422565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b91906200345d565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a9190620033ca565b62000af3565b005b3480156200047f57600080fd5b506200049e60048036038101906200049891906200322c565b62000b7d565b604051620004ad9190620030a7565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd919062003284565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d919062003422565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d919062003284565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c91906200347a565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a9190620034c1565b6200106d565b604051620005af919062003284565b60405180910390f35b348015620005c557600080fd5b50620005d0620010b5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f8919062003561565b620010cd565b005b3480156200060d57600080fd5b5062000618620011d1565b60405162000627919062003621565b60405180910390f35b3480156200063d57600080fd5b5062000648620011f7565b60405162000657919062003422565b60405180910390f35b3480156200066d57600080fd5b506200068c6004803603810190620006869190620033ca565b62001221565b6040516200069b9190620030a7565b60405180910390f35b348015620006b157600080fd5b50620006bc6200128c565b604051620006cb919062003168565b60405180910390f35b348015620006e157600080fd5b50620006ec62001326565b604051620006fb9190620033ad565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a91906200322c565b6200132d565b6040516200073f9190620030a7565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e91906200322c565b620013ad565b604051620007839190620030a7565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b29190620033ca565b620013d4565b005b348015620007c757600080fd5b50620007e66004803603810190620007e09190620034c1565b620013fb565b005b348015620007f557600080fd5b506200081460048036038101906200080e91906200347a565b6200152d565b60405162000823919062003284565b60405180910390f35b3480156200083957600080fd5b50620008586004803603810190620008529190620032a1565b620015b4565b005b3480156200086757600080fd5b50620008866004803603810190620008809190620034c1565b6200166a565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd82620016f4565b5b9050919050565b60606003805462000916906200366d565b80601f016020809104026020016040519081016040528092919081815260200182805462000944906200366d565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac6200175e565b9050620009bb81858562001766565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc8162001937565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a556200175e565b905062000a648582856200194f565b62000a71858585620019e3565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab38162001937565b62000abf838362001e06565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b649062003718565b60405180910390fd5b62000b79828262001eec565b5050565b60008062000b8a6200175e565b905062000bb181858562000b9f85896200152d565b62000bab919062003769565b62001766565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a8162001937565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d359190620037dd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000d939291906200380f565b6020604051808303816000875af115801562000db3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd99190620037dd565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eba9291906200383c565b6020604051808303816000875af115801562000eda573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f0091906200389a565b5062000f5030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000f7d30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000fee600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b3060405162000ffd9062002fe3565b62001009919062003422565b604051809103906000f08015801562001026573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010bf62001fd3565b620010cb600062002058565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620010f98162001937565b43600a8190555060005b83839050811015620011cb57620011b566f8b0a10e470000662386f26fc1000060016200115e6005898988818110620011415762001140620038cc565b5b9050602002016020810190620011589190620034c1565b6200211e565b6200116a919062003769565b620011769190620038fb565b62001182919062003769565b858584818110620011985762001197620038cc565b5b9050602002016020810190620011af9190620034c1565b62002165565b8080620011c2906200395c565b91505062001103565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200129d906200366d565b80601f0160208091040260200160405190810160405280929190818152602001828054620012cb906200366d565b80156200131c5780601f10620012f0576101008083540402835291602001916200131c565b820191906000526020600020905b815481529060010190602001808311620012fe57829003601f168201915b5050505050905090565b6000801b81565b6000806200133a6200175e565b905060006200134a82866200152d565b90508381101562001392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013899062003a1f565b60405180910390fd5b620013a1828686840362001766565b60019250505092915050565b600080620013ba6200175e565b9050620013c9818585620019e3565b600191505092915050565b620013df8262000a7d565b620013ea8162001937565b620013f6838362001eec565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620014278162001937565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200147f919062003422565b602060405180830381865afa1580156200149d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014c3919062003a58565b6040518363ffffffff1660e01b8152600401620014e29291906200383c565b6020604051808303816000875af115801562001502573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200152891906200389a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016159392919062003a8a565b6020604051808303816000875af115801562001635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165b91906200389a565b5062001667816200240e565b50565b6200167462001fd3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620016e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016dd9062003b3d565b60405180910390fd5b620016f18162002058565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620017d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017cf9062003bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018419062003c6d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200192a919062003284565b60405180910390a3505050565b6200194c81620019466200175e565b620027e3565b50565b60006200195d84846200152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114620019dd5781811015620019cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620019c49062003cdf565b60405180910390fd5b620019dc848484840362001766565b5b50505050565b6000811162001a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a209062003d51565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001ad65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001aef5762001ae983838362002873565b62001e01565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001c46576000600a541162001b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001b849062003dc3565b60405180910390fd5b62001bc4833062001bbe606462001baf6001876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001bef606462001be06001846200288590919063ffffffff16565b6200289d90919063ffffffff16565b600d600082825462001c02919062003769565b9250508190555062001c40838362001c3a606462001c2b6063876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001e01565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001e0057600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001d025762001cfc838383620028b5565b62001e01565b62001d39833062001d33606462001d246001876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001d64606462001d556001846200288590919063ffffffff16565b6200289d90919063ffffffff16565b600d600082825462001d77919062003769565b9250508190555062001dbb81600d5462001d92919062003769565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002b3a565b6000600d8190555062001dfa838362001df4606462001de56063876200288590919063ffffffff16565b6200289d90919063ffffffff16565b620028b5565b62001e01565b5b505050565b62001e12828262001221565b62001ee85760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001e8d6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001ef8828262001221565b1562001fcf5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001f746200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62001fdd6200175e565b73ffffffffffffffffffffffffffffffffffffffff1662001ffd620011f7565b73ffffffffffffffffffffffffffffffffffffffff161462002056576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200204d9062003e35565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082424484604051602001620021389392919062003ecc565b6040516020818303038152906040528051906020012060001c6200215d919062003f3e565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620021a0576200219f62003f76565b5b604051908082528060200260200182016040528015620021cf5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106200220c576200220b620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200225e576200225d620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620022f7919062003422565b602060405180830381865afa15801562002315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200233b919062003a58565b9050600084036200234a578093505b808411620023ed57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b8152600401620023b8959493929190620040b6565b600060405180830381600087803b158015620023d357600080fd5b505af1158015620023e8573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562002449576200244862003f76565b5b604051908082528060200260200182016040528015620024785781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620024b557620024b4620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620025075762002506620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620025a0919062003422565b602060405180830381865afa158015620025be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025e4919062003a58565b905060008303620025f3578092505b808311620026b857600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040162002683959493929190620040b6565b600060405180830381600087803b1580156200269e57600080fd5b505af1158015620026b3573d6000803e3d6000fd5b505050505b6000620026e7600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b1115620027c3573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306200275b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b6040518463ffffffff1660e01b81526004016200277b9392919062003a8a565b6020604051808303816000875af11580156200279b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027c191906200389a565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b620027ef828262001221565b6200286f57620027ff8162002d4f565b6200280f8360001c602062002d7e565b60405160200162002822929190620041fc565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002866919062003168565b60405180910390fd5b5050565b62002880838383620028b5565b505050565b60008183620028959190620038fb565b905092915050565b60008183620028ad91906200423e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362002927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200291e90620042ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362002999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620029909062004384565b60405180910390fd5b620029a683838362002fd9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002a2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a26906200441c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002b1f919062003284565b60405180910390a362002b3484848462002fde565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002b62306200106d565b90506000600267ffffffffffffffff81111562002b845762002b8362003f76565b5b60405190808252806020026020018201604052801562002bb35781602001602082028036833780820191505090505b5090508382101562002bc3578193505b600084111562002d2e57308160008151811062002be55762002be4620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002c595762002c58620038cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002cf9959493929190620040b6565b600060405180830381600087803b15801562002d1457600080fd5b505af115801562002d29573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002d778273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002d7e565b9050919050565b60606000600283600262002d939190620038fb565b62002d9f919062003769565b67ffffffffffffffff81111562002dbb5762002dba62003f76565b5b6040519080825280601f01601f19166020018201604052801562002dee5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002e295762002e28620038cc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002e905762002e8f620038cc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002ed29190620038fb565b62002ede919062003769565b90505b600181111562002f88577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002f245762002f23620038cc565b5b1a60f81b82828151811062002f3e5762002f3d620038cc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508062002f80906200443e565b905062002ee1565b506000841462002fcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fc690620044bc565b60405180910390fd5b8091505092915050565b505050565b505050565b61024c80620044df83390190565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620030328162002ffb565b81146200303e57600080fd5b50565b600081359050620030528162003027565b92915050565b60006020828403121562003071576200307062002ff1565b5b6000620030818482850162003041565b91505092915050565b60008115159050919050565b620030a1816200308a565b82525050565b6000602082019050620030be600083018462003096565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562003100578082015181840152602081019050620030e3565b8381111562003110576000848401525b50505050565b6000601f19601f8301169050919050565b60006200313482620030c4565b620031408185620030cf565b935062003152818560208601620030e0565b6200315d8162003116565b840191505092915050565b6000602082019050818103600083015262003184818462003127565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620031b9826200318c565b9050919050565b620031cb81620031ac565b8114620031d757600080fd5b50565b600081359050620031eb81620031c0565b92915050565b6000819050919050565b6200320681620031f1565b81146200321257600080fd5b50565b6000813590506200322681620031fb565b92915050565b6000806040838503121562003246576200324562002ff1565b5b60006200325685828601620031da565b9250506020620032698582860162003215565b9150509250929050565b6200327e81620031f1565b82525050565b60006020820190506200329b600083018462003273565b92915050565b600060208284031215620032ba57620032b962002ff1565b5b6000620032ca8482850162003215565b91505092915050565b600080600060608486031215620032ef57620032ee62002ff1565b5b6000620032ff86828701620031da565b93505060206200331286828701620031da565b9250506040620033258682870162003215565b9150509250925092565b6000819050919050565b62003344816200332f565b81146200335057600080fd5b50565b600081359050620033648162003339565b92915050565b60006020828403121562003383576200338262002ff1565b5b6000620033938482850162003353565b91505092915050565b620033a7816200332f565b82525050565b6000602082019050620033c460008301846200339c565b92915050565b60008060408385031215620033e457620033e362002ff1565b5b6000620033f48582860162003353565b92505060206200340785828601620031da565b9150509250929050565b6200341c81620031ac565b82525050565b600060208201905062003439600083018462003411565b92915050565b600060ff82169050919050565b62003457816200343f565b82525050565b60006020820190506200347460008301846200344c565b92915050565b6000806040838503121562003494576200349362002ff1565b5b6000620034a485828601620031da565b9250506020620034b785828601620031da565b9150509250929050565b600060208284031215620034da57620034d962002ff1565b5b6000620034ea84828501620031da565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126200351b576200351a620034f3565b5b8235905067ffffffffffffffff8111156200353b576200353a620034f8565b5b6020830191508360208202830111156200355a5762003559620034fd565b5b9250929050565b600080602083850312156200357b576200357a62002ff1565b5b600083013567ffffffffffffffff8111156200359c576200359b62002ff6565b5b620035aa8582860162003502565b92509250509250929050565b6000819050919050565b6000620035e1620035db620035d5846200318c565b620035b6565b6200318c565b9050919050565b6000620035f582620035c0565b9050919050565b60006200360982620035e8565b9050919050565b6200361b81620035fc565b82525050565b600060208201905062003638600083018462003610565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200368657607f821691505b6020821081036200369c576200369b6200363e565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600062003700602f83620030cf565b91506200370d82620036a2565b604082019050919050565b600060208201905081810360008301526200373381620036f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200377682620031f1565b91506200378383620031f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620037bb57620037ba6200373a565b5b828201905092915050565b600081519050620037d781620031c0565b92915050565b600060208284031215620037f657620037f562002ff1565b5b60006200380684828501620037c6565b91505092915050565b600060408201905062003826600083018562003411565b62003835602083018462003411565b9392505050565b600060408201905062003853600083018562003411565b62003862602083018462003273565b9392505050565b62003874816200308a565b81146200388057600080fd5b50565b600081519050620038948162003869565b92915050565b600060208284031215620038b357620038b262002ff1565b5b6000620038c38482850162003883565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006200390882620031f1565b91506200391583620031f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200395157620039506200373a565b5b828202905092915050565b60006200396982620031f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036200399e576200399d6200373a565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600062003a07602583620030cf565b915062003a1482620039a9565b604082019050919050565b6000602082019050818103600083015262003a3a81620039f8565b9050919050565b60008151905062003a5281620031fb565b92915050565b60006020828403121562003a715762003a7062002ff1565b5b600062003a818482850162003a41565b91505092915050565b600060608201905062003aa1600083018662003411565b62003ab0602083018562003411565b62003abf604083018462003273565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062003b25602683620030cf565b915062003b328262003ac7565b604082019050919050565b6000602082019050818103600083015262003b588162003b16565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062003bbd602483620030cf565b915062003bca8262003b5f565b604082019050919050565b6000602082019050818103600083015262003bf08162003bae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062003c55602283620030cf565b915062003c628262003bf7565b604082019050919050565b6000602082019050818103600083015262003c888162003c46565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062003cc7601d83620030cf565b915062003cd48262003c8f565b602082019050919050565b6000602082019050818103600083015262003cfa8162003cb8565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600062003d39601083620030cf565b915062003d468262003d01565b602082019050919050565b6000602082019050818103600083015262003d6c8162003d2a565b9050919050565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b600062003dab600883620030cf565b915062003db88262003d73565b602082019050919050565b6000602082019050818103600083015262003dde8162003d9c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062003e1d602083620030cf565b915062003e2a8262003de5565b602082019050919050565b6000602082019050818103600083015262003e508162003e0e565b9050919050565b6000819050919050565b62003e7662003e7082620031f1565b62003e57565b82525050565b60008160601b9050919050565b600062003e968262003e7c565b9050919050565b600062003eaa8262003e89565b9050919050565b62003ec662003ec082620031ac565b62003e9d565b82525050565b600062003eda828662003e61565b60208201915062003eec828562003e61565b60208201915062003efe828462003eb1565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062003f4b82620031f1565b915062003f5883620031f1565b92508262003f6b5762003f6a62003f0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600062003fd062003fca62003fc48462003fa5565b620035b6565b620031f1565b9050919050565b62003fe28162003faf565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6200401f81620031ac565b82525050565b600062004033838362004014565b60208301905092915050565b6000602082019050919050565b6000620040598262003fe8565b62004065818562003ff3565b9350620040728362004004565b8060005b83811015620040a95781516200408d888262004025565b97506200409a836200403f565b92505060018101905062004076565b5085935050505092915050565b600060a082019050620040cd600083018862003273565b620040dc602083018762003fd7565b8181036040830152620040f081866200404c565b905062004101606083018562003411565b62004110608083018462003273565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006200415d6017836200411a565b91506200416a8262004125565b601782019050919050565b60006200418282620030c4565b6200418e81856200411a565b9350620041a0818560208601620030e0565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000620041e46011836200411a565b9150620041f182620041ac565b601182019050919050565b600062004209826200414e565b915062004217828562004175565b91506200422482620041d5565b915062004232828462004175565b91508190509392505050565b60006200424b82620031f1565b91506200425883620031f1565b9250826200426b576200426a62003f0f565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000620042d4602583620030cf565b9150620042e18262004276565b604082019050919050565b600060208201905081810360008301526200430781620042c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200436c602383620030cf565b915062004379826200430e565b604082019050919050565b600060208201905081810360008301526200439f816200435d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062004404602683620030cf565b91506200441182620043a6565b604082019050919050565b600060208201905081810360008301526200443781620043f5565b9050919050565b60006200444b82620031f1565b9150600082036200446157620044606200373a565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000620044a4602083620030cf565b9150620044b1826200446c565b602082019050919050565b60006020820190508181036000830152620044d78162004495565b905091905056fe608060405234801561001057600080fd5b5060405161024c38038061024c8339818101604052810190610032919061011c565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610171565b6020604051808303816000875af115801561008e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b291906101d2565b50506101ff565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100e9826100be565b9050919050565b6100f9816100de565b811461010457600080fd5b50565b600081519050610116816100f0565b92915050565b600060208284031215610132576101316100b9565b5b600061014084828501610107565b91505092915050565b610152816100de565b82525050565b6000819050919050565b61016b81610158565b82525050565b60006040820190506101866000830185610149565b6101936020830184610162565b9392505050565b60008115159050919050565b6101af8161019a565b81146101ba57600080fd5b50565b6000815190506101cc816101a6565b92915050565b6000602082840312156101e8576101e76100b9565b5b60006101f6848285016101bd565b91505092915050565b603f8061020d6000396000f3fe6080604052600080fdfea26469706673582212200b8e2f87f0899f08f6a2dc683e1ba215490432a948e681e652ffd853c115329264736f6c634300080e0033a2646970667358221220be992832895c732f8f6bcaa55a9279ce634b3e6bdd50c993b863cd89db112f9f64736f6c634300080e0033

Deployed Bytecode Sourcemap

65195:6765:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39111:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53533:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55959:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54662:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71797:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56765:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41001:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41458:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65435:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67033:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42652:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57469:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65541:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65400:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65461:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66202:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54833:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46872:103;;;;;;;;;;;;;:::i;:::-;;71001:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65621:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46231:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39449:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53752:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38512:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58235:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55182:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41923:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71590:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55463:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68546:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47130:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39111:246;39212:4;39264:32;39249:47;;;:11;:47;;;;:100;;;;39313:36;39337:11;39313:23;:36::i;:::-;39249:100;39229:120;;39111:246;;;:::o;53533:100::-;53587:13;53620:5;53613:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53533:100;:::o;55959:226::-;56067:4;56084:13;56100:12;:10;:12::i;:::-;56084:28;;56123:32;56132:5;56139:7;56148:6;56123:8;:32::i;:::-;56173:4;56166:11;;;55959:226;;;;:::o;54662:108::-;54723:7;54750:12;;54743:19;;54662:108;:::o;71797:123::-;65293:25;39003:16;39014:4;39003:10;:16::i;:::-;71884:10:::1;71876:28;;:36;71905:6;71876:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71797:123:::0;;:::o;56765:295::-;56896:4;56913:15;56931:12;:10;:12::i;:::-;56913:30;;56954:38;56970:4;56976:7;56985:6;56954:15;:38::i;:::-;57003:27;57013:4;57019:2;57023:6;57003:9;:27::i;:::-;57048:4;57041:11;;;56765:295;;;;;:::o;41001:147::-;41091:7;41118:6;:12;41125:4;41118:12;;;;;;;;;;;:22;;;41111:29;;41001:147;;;:::o;41458:172::-;41566:18;41579:4;41566:12;:18::i;:::-;39003:16;39014:4;39003:10;:16::i;:::-;41597:25:::1;41608:4;41614:7;41597:10;:25::i;:::-;41458:172:::0;;;:::o;65435:19::-;;;;;;;;;;;;;:::o;67033:92::-;67091:5;67116:1;67109:8;;67033:92;:::o;42652:280::-;42798:12;:10;:12::i;:::-;42787:23;;:7;:23;;;42765:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;42898:26;42910:4;42916:7;42898:11;:26::i;:::-;42652:280;;:::o;57469:263::-;57582:4;57599:13;57615:12;:10;:12::i;:::-;57599:28;;57638:64;57647:5;57654:7;57691:10;57663:25;57673:5;57680:7;57663:9;:25::i;:::-;:38;;;;:::i;:::-;57638:8;:64::i;:::-;57720:4;57713:11;;;57469:263;;;;:::o;65541:24::-;;;;:::o;65400:28::-;;;;;;;;;;;;;:::o;65461:30::-;;;;:::o;66202:823::-;65293:25;39003:16;39014:4;39003:10;:16::i;:::-;66326:6:::1;66319:4;;:13;;;;;;;;;;;;;;;;;;66395:12;66410:5;66395:20;;66518:4;66488:15;;:35;;;;;;;;;;;;;;;;;;66563:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66550:50;;;66623:4;66643;;;;;;;;;;;66550:108;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66534:13;;:124;;;;;;;;;;;;;;;;;;66675:4;;;;;;;;;;;66669:19;;;66697:15;;;;;;;;;;;66715:17;66669:64;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66744:68;66761:4;66776:15;;;;;;;;;;;66794:17;66744:8;:68::i;:::-;66823:57;66840:4;66855;66862:17;66823:8;:57::i;:::-;66891:60;66900:5;;;;;;;;;;;66915:15;;;;;;;;;;;66933:17;66891:8;:60::i;:::-;67011:4;66982:35;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66962:17;;:55;;;;;;;;;;;;;;;;;;66308:717;66202:823:::0;;;:::o;54833:143::-;54923:7;54950:9;:18;54960:7;54950:18;;;;;;;;;;;;;;;;54943:25;;54833:143;;;:::o;46872:103::-;46117:13;:11;:13::i;:::-;46937:30:::1;46964:1;46937:18;:30::i;:::-;46872:103::o:0;71001:306::-;65293:25;39003:16;39014:4;39003:10;:16::i;:::-;71105:12:::1;71087:15;:30;;;;71133:6;71128:171;71149:4;;:11;;71145:1;:15;71128:171;;;71180:119;71246:12;71235:8;71230:1;71209:18;71216:1;71219:4;;71224:1;71219:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;71209:6;:18::i;:::-;:22;;;;:::i;:::-;71208:35;;;;:::i;:::-;:50;;;;:::i;:::-;71277:4;;71282:1;71277:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;71180:9;:119::i;:::-;71162:3;;;;;:::i;:::-;;;;71128:171;;;;71001:306:::0;;;:::o;65621:41::-;;;;;;;;;;;;;:::o;46231:87::-;46277:7;46304:6;;;;;;;;;;;46297:13;;46231:87;:::o;39449:172::-;39560:4;39584:6;:12;39591:4;39584:12;;;;;;;;;;;:20;;:29;39605:7;39584:29;;;;;;;;;;;;;;;;;;;;;;;;;39577:36;;39449:172;;;;:::o;53752:104::-;53808:13;53841:7;53834:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53752:104;:::o;38512:49::-;38557:4;38512:49;;;:::o;58235:498::-;58353:4;58370:13;58386:12;:10;:12::i;:::-;58370:28;;58409:24;58436:25;58446:5;58453:7;58436:9;:25::i;:::-;58409:52;;58514:15;58494:16;:35;;58472:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;58630:60;58639:5;58646:7;58674:15;58655:16;:34;58630:8;:60::i;:::-;58721:4;58714:11;;;;58235:498;;;;:::o;55182:218::-;55286:4;55303:13;55319:12;:10;:12::i;:::-;55303:28;;55342;55352:5;55359:2;55363:6;55342:9;:28::i;:::-;55388:4;55381:11;;;55182:218;;;;:::o;41923:174::-;42032:18;42045:4;42032:12;:18::i;:::-;39003:16;39014:4;39003:10;:16::i;:::-;42063:26:::1;42075:4;42081:7;42063:11;:26::i;:::-;41923:174:::0;;;:::o;71590:199::-;65293:25;39003:16;39014:4;39003:10;:16::i;:::-;71675:6:::1;71669:22;;;71706:10;71738:6;71731:24;;;71764:4;71731:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71669:112;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71590:199:::0;;:::o;55463:176::-;55577:7;55604:11;:18;55616:5;55604:18;;;;;;;;;;;;;;;:27;55623:7;55604:27;;;;;;;;;;;;;;;;55597:34;;55463:176;;;;:::o;68546:160::-;68604:4;;;;;;;;;;;68598:24;;;68623:10;68643:4;68650:6;68598:59;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68668:30;68691:6;68668:22;:30::i;:::-;68546:160;:::o;47130:238::-;46117:13;:11;:13::i;:::-;47253:1:::1;47233:22;;:8;:22;;::::0;47211:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47332:28;47351:8;47332:18;:28::i;:::-;47130:238:::0;:::o;7235:173::-;7336:4;7375:25;7360:40;;;:11;:40;;;;7353:47;;7235:173;;;:::o;36203:98::-;36256:7;36283:10;36276:17;;36203:98;:::o;62361:380::-;62514:1;62497:19;;:5;:19;;;62489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62595:1;62576:21;;:7;:21;;;62568:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62679:6;62649:11;:18;62661:5;62649:18;;;;;;;;;;;;;;;:27;62668:7;62649:27;;;;;;;;;;;;;;;:36;;;;62717:7;62701:32;;62710:5;62701:32;;;62726:6;62701:32;;;;;;:::i;:::-;;;;;;;;62361:380;;;:::o;39925:105::-;39992:30;40003:4;40009:12;:10;:12::i;:::-;39992:10;:30::i;:::-;39925:105;:::o;63032:502::-;63167:24;63194:25;63204:5;63211:7;63194:9;:25::i;:::-;63167:52;;63254:17;63234:16;:37;63230:297;;63334:6;63314:16;:26;;63288:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;63449:51;63458:5;63465:7;63493:6;63474:16;:25;63449:8;:51::i;:::-;63230:297;63156:378;63032:502;;;:::o;67133:1093::-;67274:1;67265:6;:10;67257:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;67321:13;;;;;;;;;;;67313:21;;:4;:21;;;;:44;;;;;67344:13;;;;;;;;;;;67338:19;;:2;:19;;;;67313:44;67309:128;;;67374:30;67387:4;67393:2;67397:6;67374:12;:30::i;:::-;67419:7;;67309:128;67459:13;;;;;;;;;;;67451:21;;:4;:21;;;67447:305;;67515:1;67497:15;;:19;67489:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;67544:60;67560:4;67574;67581:22;67599:3;67581:13;67592:1;67581:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;67544:15;:60::i;:::-;67632:22;67650:3;67632:13;67643:1;67632:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;67619:9;;:35;;;;;;;:::i;:::-;;;;;;;;67669:50;67685:4;67691:2;67695:23;67714:3;67695:14;67706:2;67695:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;67669:15;:50::i;:::-;67734:7;;67447:305;67772:13;;;;;;;;;;;67766:19;;:2;:19;;;67762:457;;67806:9;:15;67816:4;67806:15;;;;;;;;;;;;;;;;;;;;;;;;;67802:114;;;67842:33;67858:4;67864:2;67868:6;67842:15;:33::i;:::-;67894:7;;67802:114;67930:60;67946:4;67960;67967:22;67985:3;67967:13;67978:1;67967:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;67930:15;:60::i;:::-;68018:22;68036:3;68018:13;68029:1;68018:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;68005:9;;:35;;;;;;;:::i;:::-;;;;;;;;68055:38;68076:6;68064:9;;:18;;;;:::i;:::-;68084:8;;;;;;;;;;;68055;:38::i;:::-;68120:1;68108:9;:13;;;;68136:50;68152:4;68158:2;68162:23;68181:3;68162:14;68173:2;68162:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;68136:15;:50::i;:::-;68201:7;;67762:457;67133:1093;;;;:::o;44311:238::-;44395:22;44403:4;44409:7;44395;:22::i;:::-;44390:152;;44466:4;44434:6;:12;44441:4;44434:12;;;;;;;;;;;:20;;:29;44455:7;44434:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;44517:12;:10;:12::i;:::-;44490:40;;44508:7;44490:40;;44502:4;44490:40;;;;;;;;;;44390:152;44311:238;;:::o;44729:239::-;44813:22;44821:4;44827:7;44813;:22::i;:::-;44809:152;;;44884:5;44852:6;:12;44859:4;44852:12;;;;;;;;;;;:20;;:29;44873:7;44852:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;44936:12;:10;:12::i;:::-;44909:40;;44927:7;44909:40;;44921:4;44909:40;;;;;;;;;;44809:152;44729:239;;:::o;46396:132::-;46471:12;:10;:12::i;:::-;46460:23;;:7;:5;:7::i;:::-;:23;;;46452:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46396:132::o;47528:191::-;47602:16;47621:6;;;;;;;;;;;47602:25;;47647:8;47638:6;;:17;;;;;;;;;;;;;;;;;;47702:8;47671:40;;47692:8;47671:40;;;;;;;;;;;;47591:128;47528:191;:::o;71315:267::-;71381:4;71568:6;71490:15;71507:16;71525:5;71473:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71441:109;;;;;;71418:147;;:156;;;;:::i;:::-;71398:176;;71315:267;;;;:::o;68714:687::-;68489:4;68480:6;;:13;;;;;;;;;;;;;;;;;;68797:21:::1;68835:1;68821:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68797:40;;68866:4;;;;;;;;;;;68848;68853:1;68848:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;68900:4;68882;68887:1;68882:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;68916:15;68941:4;;;;;;;;;;;68934:22;;;68965:4;68934:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68916:55;;69001:1;68986:11;:16:::0;68982:43:::1;;69018:7;69004:21;;68982:43;69081:7;69066:11;:22;69062:331;;69103:15;;;;;;;;;;;:87;;;69213:11;69247:1;69298:4;69333:2;69359:15;69103:290;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;69062:331;68786:615;;68525:5:::0;68516:6;;:14;;;;;;;;;;;;;;;;;;68714:687;;:::o;69409:955::-;68489:4;68480:6;;:13;;;;;;;;;;;;;;;;;;69493:21:::1;69531:1;69517:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69493:40;;69562:4;;;;;;;;;;;69544;69549:1;69544:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;69596:4;69578;69583:1;69578:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;69612:15;69637:4;;;;;;;;;;;69630:22;;;69661:4;69630:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69612:55;;69697:1;69682:11;:16:::0;69678:43:::1;;69714:7;69700:21;;69678:43;69777:7;69762:11;:22;69758:346;;69799:15;;;;;;;;;;;:87;;;69909:11;69943:1;69994:4;70029:17;;;;;;;;;;;70070:15;69799:305;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;69758:346;70159:1;70119:37;70137:17;;;;;;;;;;;70119:9;:37::i;:::-;:41;70115:241;;;70189:4;70175:33;;;70235:17;;;;;;;;;;;70280:4;70304:37;70322:17;;;;;;;;;;;70304:9;:37::i;:::-;70175:181;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70115:241;69482:882;;68525:5:::0;68516:6;;:14;;;;;;;;;;;;;;;;;;69409:955;:::o;40320:492::-;40409:22;40417:4;40423:7;40409;:22::i;:::-;40404:401;;40597:28;40617:7;40597:19;:28::i;:::-;40698:38;40726:4;40718:13;;40733:2;40698:19;:38::i;:::-;40502:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40448:345;;;;;;;;;;;:::i;:::-;;;;;;;;40404:401;40320:492;;:::o;68234:178::-;68361:43;68377:6;68385:9;68396:7;68361:15;:43::i;:::-;68234:178;;;:::o;32099:98::-;32157:7;32188:1;32184;:5;;;;:::i;:::-;32177:12;;32099:98;;;;:::o;32498:::-;32556:7;32587:1;32583;:5;;;;:::i;:::-;32576:12;;32498:98;;;;:::o;59203:877::-;59350:1;59334:18;;:4;:18;;;59326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59427:1;59413:16;;:2;:16;;;59405:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;59482:38;59503:4;59509:2;59513:6;59482:20;:38::i;:::-;59533:19;59555:9;:15;59565:4;59555:15;;;;;;;;;;;;;;;;59533:37;;59618:6;59603:11;:21;;59581:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;59758:6;59744:11;:20;59726:9;:15;59736:4;59726:15;;;;;;;;;;;;;;;:38;;;;59961:6;59944:9;:13;59954:2;59944:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;60011:2;59996:26;;60005:4;59996:26;;;60015:6;59996:26;;;;;;:::i;:::-;;;;;;;;60035:37;60055:4;60061:2;60065:6;60035:19;:37::i;:::-;59315:765;59203:877;;;:::o;70372:621::-;68489:4;68480:6;;:13;;;;;;;;;;;;;;;;;;70454:15:::1;70472:24;70490:4;70472:9;:24::i;:::-;70454:42;;70507:21;70545:1;70531:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70507:40;;70572:11;70562:7;:21;70558:48;;;70599:7;70585:21;;70558:48;70635:1;70621:11;:15;70617:369;;;70671:4;70653;70658:1;70653:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;70701:4;;;;;;;;;;;70691;70696:1;70691:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;::::0;::::1;70720:15;;;;;;;;;;;:87;;;70830:11;70864:1;70888:4;70915:2;70940:15;70720:254;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;70617:369;70443:550;;68525:5:::0;68516:6;;:14;;;;;;;;;;;;;;;;;;70372:621;;:::o;24785:151::-;24843:13;24876:52;24904:4;24888:22;;22529:2;24876:52;;:11;:52::i;:::-;24869:59;;24785:151;;;:::o;24156:472::-;24256:13;24282:19;24327:1;24318:6;24314:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;24304:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24282:47;;24340:15;:6;24347:1;24340:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;24366;:6;24373:1;24366:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;24397:9;24422:1;24413:6;24409:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;24397:26;;24392:131;24429:1;24425;:5;24392:131;;;24464:8;24481:3;24473:5;:11;24464:21;;;;;;;:::i;:::-;;;;;24452:6;24459:1;24452:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;24510:1;24500:11;;;;;24432:3;;;;:::i;:::-;;;24392:131;;;;24550:1;24541:5;:10;24533:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;24613:6;24599:21;;;24156:472;;;;:::o;64134:125::-;;;;:::o;64863:124::-;;;;:::o;-1:-1:-1:-;;;;;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:329::-;4662:6;4711:2;4699:9;4690:7;4686:23;4682:32;4679:119;;;4717:79;;:::i;:::-;4679:119;4837:1;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4808:117;4603:329;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:77::-;5600:7;5629:5;5618:16;;5563:77;;;:::o;5646:122::-;5719:24;5737:5;5719:24;:::i;:::-;5712:5;5709:35;5699:63;;5758:1;5755;5748:12;5699:63;5646:122;:::o;5774:139::-;5820:5;5858:6;5845:20;5836:29;;5874:33;5901:5;5874:33;:::i;:::-;5774:139;;;;:::o;5919:329::-;5978:6;6027:2;6015:9;6006:7;6002:23;5998:32;5995:119;;;6033:79;;:::i;:::-;5995:119;6153:1;6178:53;6223:7;6214:6;6203:9;6199:22;6178:53;:::i;:::-;6168:63;;6124:117;5919:329;;;;:::o;6254:118::-;6341:24;6359:5;6341:24;:::i;:::-;6336:3;6329:37;6254:118;;:::o;6378:222::-;6471:4;6509:2;6498:9;6494:18;6486:26;;6522:71;6590:1;6579:9;6575:17;6566:6;6522:71;:::i;:::-;6378:222;;;;:::o;6606:474::-;6674:6;6682;6731:2;6719:9;6710:7;6706:23;6702:32;6699:119;;;6737:79;;:::i;:::-;6699:119;6857:1;6882:53;6927:7;6918:6;6907:9;6903:22;6882:53;:::i;:::-;6872:63;;6828:117;6984:2;7010:53;7055:7;7046:6;7035:9;7031:22;7010:53;:::i;:::-;7000:63;;6955:118;6606:474;;;;;:::o;7086:118::-;7173:24;7191:5;7173:24;:::i;:::-;7168:3;7161:37;7086:118;;:::o;7210:222::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7354:71;7422:1;7411:9;7407:17;7398:6;7354:71;:::i;:::-;7210:222;;;;:::o;7438:86::-;7473:7;7513:4;7506:5;7502:16;7491:27;;7438:86;;;:::o;7530:112::-;7613:22;7629:5;7613:22;:::i;:::-;7608:3;7601:35;7530:112;;:::o;7648:214::-;7737:4;7775:2;7764:9;7760:18;7752:26;;7788:67;7852:1;7841:9;7837:17;7828:6;7788:67;:::i;:::-;7648:214;;;;:::o;7868:474::-;7936:6;7944;7993:2;7981:9;7972:7;7968:23;7964:32;7961:119;;;7999:79;;:::i;:::-;7961:119;8119:1;8144:53;8189:7;8180:6;8169:9;8165:22;8144:53;:::i;:::-;8134:63;;8090:117;8246:2;8272:53;8317:7;8308:6;8297:9;8293:22;8272:53;:::i;:::-;8262:63;;8217:118;7868:474;;;;;:::o;8348:329::-;8407:6;8456:2;8444:9;8435:7;8431:23;8427:32;8424:119;;;8462:79;;:::i;:::-;8424:119;8582:1;8607:53;8652:7;8643:6;8632:9;8628:22;8607:53;:::i;:::-;8597:63;;8553:117;8348:329;;;;:::o;8683:117::-;8792:1;8789;8782:12;8806:117;8915:1;8912;8905:12;8929:117;9038:1;9035;9028:12;9069:568;9142:8;9152:6;9202:3;9195:4;9187:6;9183:17;9179:27;9169:122;;9210:79;;:::i;:::-;9169:122;9323:6;9310:20;9300:30;;9353:18;9345:6;9342:30;9339:117;;;9375:79;;:::i;:::-;9339:117;9489:4;9481:6;9477:17;9465:29;;9543:3;9535:4;9527:6;9523:17;9513:8;9509:32;9506:41;9503:128;;;9550:79;;:::i;:::-;9503:128;9069:568;;;;;:::o;9643:559::-;9729:6;9737;9786:2;9774:9;9765:7;9761:23;9757:32;9754:119;;;9792:79;;:::i;:::-;9754:119;9940:1;9929:9;9925:17;9912:31;9970:18;9962:6;9959:30;9956:117;;;9992:79;;:::i;:::-;9956:117;10105:80;10177:7;10168:6;10157:9;10153:22;10105:80;:::i;:::-;10087:98;;;;9883:312;9643:559;;;;;:::o;10208:60::-;10236:3;10257:5;10250:12;;10208:60;;;:::o;10274:142::-;10324:9;10357:53;10375:34;10384:24;10402:5;10384:24;:::i;:::-;10375:34;:::i;:::-;10357:53;:::i;:::-;10344:66;;10274:142;;;:::o;10422:126::-;10472:9;10505:37;10536:5;10505:37;:::i;:::-;10492:50;;10422:126;;;:::o;10554:151::-;10629:9;10662:37;10693:5;10662:37;:::i;:::-;10649:50;;10554:151;;;:::o;10711:181::-;10823:62;10879:5;10823:62;:::i;:::-;10818:3;10811:75;10711:181;;:::o;10898:272::-;11016:4;11054:2;11043:9;11039:18;11031:26;;11067:96;11160:1;11149:9;11145:17;11136:6;11067:96;:::i;:::-;10898:272;;;;:::o;11176:180::-;11224:77;11221:1;11214:88;11321:4;11318:1;11311:15;11345:4;11342:1;11335:15;11362:320;11406:6;11443:1;11437:4;11433:12;11423:22;;11490:1;11484:4;11480:12;11511:18;11501:81;;11567:4;11559:6;11555:17;11545:27;;11501:81;11629:2;11621:6;11618:14;11598:18;11595:38;11592:84;;11648:18;;:::i;:::-;11592:84;11413:269;11362:320;;;:::o;11688:234::-;11828:34;11824:1;11816:6;11812:14;11805:58;11897:17;11892:2;11884:6;11880:15;11873:42;11688:234;:::o;11928:366::-;12070:3;12091:67;12155:2;12150:3;12091:67;:::i;:::-;12084:74;;12167:93;12256:3;12167:93;:::i;:::-;12285:2;12280:3;12276:12;12269:19;;11928:366;;;:::o;12300:419::-;12466:4;12504:2;12493:9;12489:18;12481:26;;12553:9;12547:4;12543:20;12539:1;12528:9;12524:17;12517:47;12581:131;12707:4;12581:131;:::i;:::-;12573:139;;12300:419;;;:::o;12725:180::-;12773:77;12770:1;12763:88;12870:4;12867:1;12860:15;12894:4;12891:1;12884:15;12911:305;12951:3;12970:20;12988:1;12970:20;:::i;:::-;12965:25;;13004:20;13022:1;13004:20;:::i;:::-;12999:25;;13158:1;13090:66;13086:74;13083:1;13080:81;13077:107;;;13164:18;;:::i;:::-;13077:107;13208:1;13205;13201:9;13194:16;;12911:305;;;;:::o;13222:143::-;13279:5;13310:6;13304:13;13295:22;;13326:33;13353:5;13326:33;:::i;:::-;13222:143;;;;:::o;13371:351::-;13441:6;13490:2;13478:9;13469:7;13465:23;13461:32;13458:119;;;13496:79;;:::i;:::-;13458:119;13616:1;13641:64;13697:7;13688:6;13677:9;13673:22;13641:64;:::i;:::-;13631:74;;13587:128;13371:351;;;;:::o;13728:332::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13900:71;13968:1;13957:9;13953:17;13944:6;13900:71;:::i;:::-;13981:72;14049:2;14038:9;14034:18;14025:6;13981:72;:::i;:::-;13728:332;;;;;:::o;14066:::-;14187:4;14225:2;14214:9;14210:18;14202:26;;14238:71;14306:1;14295:9;14291:17;14282:6;14238:71;:::i;:::-;14319:72;14387:2;14376:9;14372:18;14363:6;14319:72;:::i;:::-;14066:332;;;;;:::o;14404:116::-;14474:21;14489:5;14474:21;:::i;:::-;14467:5;14464:32;14454:60;;14510:1;14507;14500:12;14454:60;14404:116;:::o;14526:137::-;14580:5;14611:6;14605:13;14596:22;;14627:30;14651:5;14627:30;:::i;:::-;14526:137;;;;:::o;14669:345::-;14736:6;14785:2;14773:9;14764:7;14760:23;14756:32;14753:119;;;14791:79;;:::i;:::-;14753:119;14911:1;14936:61;14989:7;14980:6;14969:9;14965:22;14936:61;:::i;:::-;14926:71;;14882:125;14669:345;;;;:::o;15020:180::-;15068:77;15065:1;15058:88;15165:4;15162:1;15155:15;15189:4;15186:1;15179:15;15206:348;15246:7;15269:20;15287:1;15269:20;:::i;:::-;15264:25;;15303:20;15321:1;15303:20;:::i;:::-;15298:25;;15491:1;15423:66;15419:74;15416:1;15413:81;15408:1;15401:9;15394:17;15390:105;15387:131;;;15498:18;;:::i;:::-;15387:131;15546:1;15543;15539:9;15528:20;;15206:348;;;;:::o;15560:233::-;15599:3;15622:24;15640:5;15622:24;:::i;:::-;15613:33;;15668:66;15661:5;15658:77;15655:103;;15738:18;;:::i;:::-;15655:103;15785:1;15778:5;15774:13;15767:20;;15560:233;;;:::o;15799:224::-;15939:34;15935:1;15927:6;15923:14;15916:58;16008:7;16003:2;15995:6;15991:15;15984:32;15799:224;:::o;16029:366::-;16171:3;16192:67;16256:2;16251:3;16192:67;:::i;:::-;16185:74;;16268:93;16357:3;16268:93;:::i;:::-;16386:2;16381:3;16377:12;16370:19;;16029:366;;;:::o;16401:419::-;16567:4;16605:2;16594:9;16590:18;16582:26;;16654:9;16648:4;16644:20;16640:1;16629:9;16625:17;16618:47;16682:131;16808:4;16682:131;:::i;:::-;16674:139;;16401:419;;;:::o;16826:143::-;16883:5;16914:6;16908:13;16899:22;;16930:33;16957:5;16930:33;:::i;:::-;16826:143;;;;:::o;16975:351::-;17045:6;17094:2;17082:9;17073:7;17069:23;17065:32;17062:119;;;17100:79;;:::i;:::-;17062:119;17220:1;17245:64;17301:7;17292:6;17281:9;17277:22;17245:64;:::i;:::-;17235:74;;17191:128;16975:351;;;;:::o;17332:442::-;17481:4;17519:2;17508:9;17504:18;17496:26;;17532:71;17600:1;17589:9;17585:17;17576:6;17532:71;:::i;:::-;17613:72;17681:2;17670:9;17666:18;17657:6;17613:72;:::i;:::-;17695;17763:2;17752:9;17748:18;17739:6;17695:72;:::i;:::-;17332:442;;;;;;:::o;17780:225::-;17920:34;17916:1;17908:6;17904:14;17897:58;17989:8;17984:2;17976:6;17972:15;17965:33;17780:225;:::o;18011:366::-;18153:3;18174:67;18238:2;18233:3;18174:67;:::i;:::-;18167:74;;18250:93;18339:3;18250:93;:::i;:::-;18368:2;18363:3;18359:12;18352:19;;18011:366;;;:::o;18383:419::-;18549:4;18587:2;18576:9;18572:18;18564:26;;18636:9;18630:4;18626:20;18622:1;18611:9;18607:17;18600:47;18664:131;18790:4;18664:131;:::i;:::-;18656:139;;18383:419;;;:::o;18808:223::-;18948:34;18944:1;18936:6;18932:14;18925:58;19017:6;19012:2;19004:6;19000:15;18993:31;18808:223;:::o;19037:366::-;19179:3;19200:67;19264:2;19259:3;19200:67;:::i;:::-;19193:74;;19276:93;19365:3;19276:93;:::i;:::-;19394:2;19389:3;19385:12;19378:19;;19037:366;;;:::o;19409:419::-;19575:4;19613:2;19602:9;19598:18;19590:26;;19662:9;19656:4;19652:20;19648:1;19637:9;19633:17;19626:47;19690:131;19816:4;19690:131;:::i;:::-;19682:139;;19409:419;;;:::o;19834:221::-;19974:34;19970:1;19962:6;19958:14;19951:58;20043:4;20038:2;20030:6;20026:15;20019:29;19834:221;:::o;20061:366::-;20203:3;20224:67;20288:2;20283:3;20224:67;:::i;:::-;20217:74;;20300:93;20389:3;20300:93;:::i;:::-;20418:2;20413:3;20409:12;20402:19;;20061:366;;;:::o;20433:419::-;20599:4;20637:2;20626:9;20622:18;20614:26;;20686:9;20680:4;20676:20;20672:1;20661:9;20657:17;20650:47;20714:131;20840:4;20714:131;:::i;:::-;20706:139;;20433:419;;;:::o;20858:179::-;20998:31;20994:1;20986:6;20982:14;20975:55;20858:179;:::o;21043:366::-;21185:3;21206:67;21270:2;21265:3;21206:67;:::i;:::-;21199:74;;21282:93;21371:3;21282:93;:::i;:::-;21400:2;21395:3;21391:12;21384:19;;21043:366;;;:::o;21415:419::-;21581:4;21619:2;21608:9;21604:18;21596:26;;21668:9;21662:4;21658:20;21654:1;21643:9;21639:17;21632:47;21696:131;21822:4;21696:131;:::i;:::-;21688:139;;21415:419;;;:::o;21840:166::-;21980:18;21976:1;21968:6;21964:14;21957:42;21840:166;:::o;22012:366::-;22154:3;22175:67;22239:2;22234:3;22175:67;:::i;:::-;22168:74;;22251:93;22340:3;22251:93;:::i;:::-;22369:2;22364:3;22360:12;22353:19;;22012:366;;;:::o;22384:419::-;22550:4;22588:2;22577:9;22573:18;22565:26;;22637:9;22631:4;22627:20;22623:1;22612:9;22608:17;22601:47;22665:131;22791:4;22665:131;:::i;:::-;22657:139;;22384:419;;;:::o;22809:158::-;22949:10;22945:1;22937:6;22933:14;22926:34;22809:158;:::o;22973:365::-;23115:3;23136:66;23200:1;23195:3;23136:66;:::i;:::-;23129:73;;23211:93;23300:3;23211:93;:::i;:::-;23329:2;23324:3;23320:12;23313:19;;22973:365;;;:::o;23344:419::-;23510:4;23548:2;23537:9;23533:18;23525:26;;23597:9;23591:4;23587:20;23583:1;23572:9;23568:17;23561:47;23625:131;23751:4;23625:131;:::i;:::-;23617:139;;23344:419;;;:::o;23769:182::-;23909:34;23905:1;23897:6;23893:14;23886:58;23769:182;:::o;23957:366::-;24099:3;24120:67;24184:2;24179:3;24120:67;:::i;:::-;24113:74;;24196:93;24285:3;24196:93;:::i;:::-;24314:2;24309:3;24305:12;24298:19;;23957:366;;;:::o;24329:419::-;24495:4;24533:2;24522:9;24518:18;24510:26;;24582:9;24576:4;24572:20;24568:1;24557:9;24553:17;24546:47;24610:131;24736:4;24610:131;:::i;:::-;24602:139;;24329:419;;;:::o;24754:79::-;24793:7;24822:5;24811:16;;24754:79;;;:::o;24839:157::-;24944:45;24964:24;24982:5;24964:24;:::i;:::-;24944:45;:::i;:::-;24939:3;24932:58;24839:157;;:::o;25002:94::-;25035:8;25083:5;25079:2;25075:14;25054:35;;25002:94;;;:::o;25102:::-;25141:7;25170:20;25184:5;25170:20;:::i;:::-;25159:31;;25102:94;;;:::o;25202:100::-;25241:7;25270:26;25290:5;25270:26;:::i;:::-;25259:37;;25202:100;;;:::o;25308:157::-;25413:45;25433:24;25451:5;25433:24;:::i;:::-;25413:45;:::i;:::-;25408:3;25401:58;25308:157;;:::o;25471:538::-;25639:3;25654:75;25725:3;25716:6;25654:75;:::i;:::-;25754:2;25749:3;25745:12;25738:19;;25767:75;25838:3;25829:6;25767:75;:::i;:::-;25867:2;25862:3;25858:12;25851:19;;25880:75;25951:3;25942:6;25880:75;:::i;:::-;25980:2;25975:3;25971:12;25964:19;;26000:3;25993:10;;25471:538;;;;;;:::o;26015:180::-;26063:77;26060:1;26053:88;26160:4;26157:1;26150:15;26184:4;26181:1;26174:15;26201:176;26233:1;26250:20;26268:1;26250:20;:::i;:::-;26245:25;;26284:20;26302:1;26284:20;:::i;:::-;26279:25;;26323:1;26313:35;;26328:18;;:::i;:::-;26313:35;26369:1;26366;26362:9;26357:14;;26201:176;;;;:::o;26383:180::-;26431:77;26428:1;26421:88;26528:4;26525:1;26518:15;26552:4;26549:1;26542:15;26569:85;26614:7;26643:5;26632:16;;26569:85;;;:::o;26660:158::-;26718:9;26751:61;26769:42;26778:32;26804:5;26778:32;:::i;:::-;26769:42;:::i;:::-;26751:61;:::i;:::-;26738:74;;26660:158;;;:::o;26824:147::-;26919:45;26958:5;26919:45;:::i;:::-;26914:3;26907:58;26824:147;;:::o;26977:114::-;27044:6;27078:5;27072:12;27062:22;;26977:114;;;:::o;27097:184::-;27196:11;27230:6;27225:3;27218:19;27270:4;27265:3;27261:14;27246:29;;27097:184;;;;:::o;27287:132::-;27354:4;27377:3;27369:11;;27407:4;27402:3;27398:14;27390:22;;27287:132;;;:::o;27425:108::-;27502:24;27520:5;27502:24;:::i;:::-;27497:3;27490:37;27425:108;;:::o;27539:179::-;27608:10;27629:46;27671:3;27663:6;27629:46;:::i;:::-;27707:4;27702:3;27698:14;27684:28;;27539:179;;;;:::o;27724:113::-;27794:4;27826;27821:3;27817:14;27809:22;;27724:113;;;:::o;27873:732::-;27992:3;28021:54;28069:5;28021:54;:::i;:::-;28091:86;28170:6;28165:3;28091:86;:::i;:::-;28084:93;;28201:56;28251:5;28201:56;:::i;:::-;28280:7;28311:1;28296:284;28321:6;28318:1;28315:13;28296:284;;;28397:6;28391:13;28424:63;28483:3;28468:13;28424:63;:::i;:::-;28417:70;;28510:60;28563:6;28510:60;:::i;:::-;28500:70;;28356:224;28343:1;28340;28336:9;28331:14;;28296:284;;;28300:14;28596:3;28589:10;;27997:608;;;27873:732;;;;:::o;28611:831::-;28874:4;28912:3;28901:9;28897:19;28889:27;;28926:71;28994:1;28983:9;28979:17;28970:6;28926:71;:::i;:::-;29007:80;29083:2;29072:9;29068:18;29059:6;29007:80;:::i;:::-;29134:9;29128:4;29124:20;29119:2;29108:9;29104:18;29097:48;29162:108;29265:4;29256:6;29162:108;:::i;:::-;29154:116;;29280:72;29348:2;29337:9;29333:18;29324:6;29280:72;:::i;:::-;29362:73;29430:3;29419:9;29415:19;29406:6;29362:73;:::i;:::-;28611:831;;;;;;;;:::o;29448:148::-;29550:11;29587:3;29572:18;;29448:148;;;;:::o;29602:173::-;29742:25;29738:1;29730:6;29726:14;29719:49;29602:173;:::o;29781:402::-;29941:3;29962:85;30044:2;30039:3;29962:85;:::i;:::-;29955:92;;30056:93;30145:3;30056:93;:::i;:::-;30174:2;30169:3;30165:12;30158:19;;29781:402;;;:::o;30189:377::-;30295:3;30323:39;30356:5;30323:39;:::i;:::-;30378:89;30460:6;30455:3;30378:89;:::i;:::-;30371:96;;30476:52;30521:6;30516:3;30509:4;30502:5;30498:16;30476:52;:::i;:::-;30553:6;30548:3;30544:16;30537:23;;30299:267;30189:377;;;;:::o;30572:167::-;30712:19;30708:1;30700:6;30696:14;30689:43;30572:167;:::o;30745:402::-;30905:3;30926:85;31008:2;31003:3;30926:85;:::i;:::-;30919:92;;31020:93;31109:3;31020:93;:::i;:::-;31138:2;31133:3;31129:12;31122:19;;30745:402;;;:::o;31153:967::-;31535:3;31557:148;31701:3;31557:148;:::i;:::-;31550:155;;31722:95;31813:3;31804:6;31722:95;:::i;:::-;31715:102;;31834:148;31978:3;31834:148;:::i;:::-;31827:155;;31999:95;32090:3;32081:6;31999:95;:::i;:::-;31992:102;;32111:3;32104:10;;31153:967;;;;;:::o;32126:185::-;32166:1;32183:20;32201:1;32183:20;:::i;:::-;32178:25;;32217:20;32235:1;32217:20;:::i;:::-;32212:25;;32256:1;32246:35;;32261:18;;:::i;:::-;32246:35;32303:1;32300;32296:9;32291:14;;32126:185;;;;:::o;32317:224::-;32457:34;32453:1;32445:6;32441:14;32434:58;32526:7;32521:2;32513:6;32509:15;32502:32;32317:224;:::o;32547:366::-;32689:3;32710:67;32774:2;32769:3;32710:67;:::i;:::-;32703:74;;32786:93;32875:3;32786:93;:::i;:::-;32904:2;32899:3;32895:12;32888:19;;32547:366;;;:::o;32919:419::-;33085:4;33123:2;33112:9;33108:18;33100:26;;33172:9;33166:4;33162:20;33158:1;33147:9;33143:17;33136:47;33200:131;33326:4;33200:131;:::i;:::-;33192:139;;32919:419;;;:::o;33344:222::-;33484:34;33480:1;33472:6;33468:14;33461:58;33553:5;33548:2;33540:6;33536:15;33529:30;33344:222;:::o;33572:366::-;33714:3;33735:67;33799:2;33794:3;33735:67;:::i;:::-;33728:74;;33811:93;33900:3;33811:93;:::i;:::-;33929:2;33924:3;33920:12;33913:19;;33572:366;;;:::o;33944:419::-;34110:4;34148:2;34137:9;34133:18;34125:26;;34197:9;34191:4;34187:20;34183:1;34172:9;34168:17;34161:47;34225:131;34351:4;34225:131;:::i;:::-;34217:139;;33944:419;;;:::o;34369:225::-;34509:34;34505:1;34497:6;34493:14;34486:58;34578:8;34573:2;34565:6;34561:15;34554:33;34369:225;:::o;34600:366::-;34742:3;34763:67;34827:2;34822:3;34763:67;:::i;:::-;34756:74;;34839:93;34928:3;34839:93;:::i;:::-;34957:2;34952:3;34948:12;34941:19;;34600:366;;;:::o;34972:419::-;35138:4;35176:2;35165:9;35161:18;35153:26;;35225:9;35219:4;35215:20;35211:1;35200:9;35196:17;35189:47;35253:131;35379:4;35253:131;:::i;:::-;35245:139;;34972:419;;;:::o;35397:171::-;35436:3;35459:24;35477:5;35459:24;:::i;:::-;35450:33;;35505:4;35498:5;35495:15;35492:41;;35513:18;;:::i;:::-;35492:41;35560:1;35553:5;35549:13;35542:20;;35397:171;;;:::o;35574:182::-;35714:34;35710:1;35702:6;35698:14;35691:58;35574:182;:::o;35762:366::-;35904:3;35925:67;35989:2;35984:3;35925:67;:::i;:::-;35918:74;;36001:93;36090:3;36001:93;:::i;:::-;36119:2;36114:3;36110:12;36103:19;;35762:366;;;:::o;36134:419::-;36300:4;36338:2;36327:9;36323:18;36315:26;;36387:9;36381:4;36377:20;36373:1;36362:9;36358:17;36351:47;36415:131;36541:4;36415:131;:::i;:::-;36407:139;;36134:419;;;:::o

Swarm Source

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