BNB Price: $902.91 (+7.28%)
 

Overview

Max Total Supply

43,278,611PZP

Holders

6,221 ( -0.045%)

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
PZP

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at BscScan.com on 2023-03-08
*/

/**
 *Submitted for verification at BscScan.com on 2023-03-08
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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.8.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:
 *
 * ```
 * 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}:
 *
 * ```
 * 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.
 */
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.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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: contracts/PZP.sol



pragma solidity ^0.8.0;






contract PZP is ERC20, Ownable, ReentrancyGuard, AccessControl  {
    using SafeMath for uint256;
    bytes32 public constant DISTRIBUTION_OWNER = keccak256("DISTRIBUTION_OWNER");
    bytes32 public constant ROLE_ADMIN = keccak256("ROLE_ADMIN");
    
    address public _ownerAddress;
    address[] public beneficiaryAddresses;

    IERC20 private token;

    bool private minted;
    
    // Vesting beneficiary list
    mapping(address => VestingBeneficiary) public beneficiaries;
    
     // Token deployed date
    uint256 public tokenListingDate;
    uint256 public tokenVestingCap;

    // Vesting information struct
    struct VestingBeneficiary {
        address beneficiary;
        uint256 lockDuration;
        uint256 duration;
        uint256 amount;
        uint256 leftOverVestingAmount;
        uint256 released;
        uint256 upfrontAmount;
        uint256 startedAt;
        uint256 interval;
        uint256 lastReleasedAt;
    }

    event RewardTransfered(address _to, uint _amount);
    event ContestEntered(address _from);
    event Swaped(address _from, uint _amount);
    event SwapReceived(address _from, uint _amount);    
    event Received(address, uint);
    event VestingReleased(address indexed beneficiary, uint256 amount);

    constructor(address _distributionOwner) ERC20("PLAYZAP", "PZP") 
    {
        _ownerAddress = msg.sender;  
        token = IERC20(this); 
    
       _mint(address(this), 150000000 * 10 ** 18); 
       
        _grantRole(DISTRIBUTION_OWNER, _distributionOwner);
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    function startVestingDate(uint256 _tokenListingDate) nonReentrant external onlyOwner{
        if (_tokenListingDate > 0) {
            tokenListingDate = _tokenListingDate;
        }
    }

    function setOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
        _setupRole(DEFAULT_ADMIN_ROLE, newOwner);
    }

    function burn(uint256 amount_) external { 
        _burn(msg.sender, amount_);
    }

    function burnFrom(address from_, uint256 amount_) external {
        require(from_ != address(0), "burn from zero");
        
        _approve(from_, msg.sender, allowance(from_,msg.sender).sub(amount_));
        _burn(from_, amount_);
    }  

    

    receive() external payable {
        emit Received(msg.sender, msg.value);
    }

    // Give reward to player
    function DepositReward(address playerAddress, uint256 pzpAmount, uint256 amount)nonReentrant external onlyRole(DISTRIBUTION_OWNER){
        token.transfer(playerAddress,pzpAmount);
        (bool success, ) = playerAddress.call{value: amount}("");
        require(success, "Transfer failed.");
    }

    function RewardTransfer(address _to, uint256 amount) nonReentrant external onlyRole(DISTRIBUTION_OWNER) 
    {
        uint erc20balance = token.balanceOf(address(this));
        require(amount <= erc20balance,"Balance in the contract is not enough");
        (bool success) = token.transfer(_to,amount);
        require(success, "Transfer failed.");
        emit RewardTransfered(_to,amount);
    } 

    function ContestEntry() nonReentrant external
    {
        emit ContestEntered(msg.sender);
    }

     // Set new game escrow wallet
    function SetDistributionOwner(address currentOwner, address newOwner) public onlyOwner{
        revoke(DISTRIBUTION_OWNER, currentOwner);
        _grantRole(DISTRIBUTION_OWNER, newOwner);
    }

    function revoke(bytes32 _role, address _address) public onlyOwner{
        _revokeRole(_role, _address);
    }

    //distribute winning tokens to players and commission tokens to playzap wallet
    function ContestReward(address[] memory _addresses, uint256[] memory prizes,uint256 fees,address commission) nonReentrant external onlyRole(DISTRIBUTION_OWNER) {
        uint length = _addresses.length;
        //require (msg.sender == _distributionOwner, "Only Distribution owner can call this function");
        require(length == prizes.length,"Addresses and Prizes arrays should be of equal length");
        require (length != 0,"Address array can't be empty");

        for(uint256 i=0; i<length; i++)
        {
           (bool success) = token.transfer(_addresses[i],prizes[i]);
           require(success, "Transfer failed.");
        }
        
        token.transfer(commission,fees);
    }


    function TransferSwap(IERC20 address_, address playerAddress, uint256 transferAmount) nonReentrant external onlyRole(DISTRIBUTION_OWNER){
        
        (bool success) = address_.transfer(playerAddress,transferAmount);
        require(success, "Transfer failed.");
        emit Swaped(playerAddress,transferAmount);
    }

    function TokenAddress() public view virtual returns (IERC20) {
        return token;
    } 

    function TransferNative(address playerAddress, uint256 amount)nonReentrant external onlyRole(DISTRIBUTION_OWNER){
        (bool success, ) = playerAddress.call{value: amount}("");
        require(success, "Transfer failed.");
    }


    //**** Vesting

    
    // only added beneficiaries can release the vesting amount
    modifier onlyBeneficiaries() {
        require(beneficiaries[msg.sender].amount > 0,"You cannot release tokens!");
        _;
    }

    /**
     * @dev Add new beneficiary to vesting contract with some conditions.
     */
    function addBeneficiary(
        address _beneficiary,
        uint256 _amount,
        uint256 _lockDuration,
        uint256 _duration,
        uint256 _upfrontAmount,
        uint256 _interval
    ) public onlyOwner {
        require(
            _beneficiary != address(0),
            "The beneficiary's address cannot be 0"
        );

        require(_amount > 0, "Shares amount has to be greater than 0");
        require(
            tokenVestingCap.add(_amount) <= token.totalSupply(),
            "Full token vesting to other beneficiaries. Can not add new beneficiary"
        );
        require(
            beneficiaries[_beneficiary].amount == 0,
            "The beneficiary has added to the vesting pool already"
        );

        // Add new vesting beneficiary
        uint256 _leftOverVestingAmount = _amount.sub(_upfrontAmount);
        uint256 vestingStartedAt = tokenListingDate.add(_lockDuration);
        beneficiaries[_beneficiary] = VestingBeneficiary(
            _beneficiary,
            _lockDuration,
            _duration,
            _amount,
            _leftOverVestingAmount,
            0,
            _upfrontAmount,
            vestingStartedAt,
            _interval,
            0
        );

        beneficiaryAddresses.push(_beneficiary);
        tokenVestingCap = tokenVestingCap.add(_amount);
    }

    /**
     * @dev Get new vested amount of beneficiary base on vesting schedule of this beneficiary.
     */
    function releasableAmount(address _beneficiary)
    public
    view
    returns (
        uint256,
        uint256,
        uint256
    )
    {
        if (beneficiaries[_beneficiary].amount == 0) {
            return (0, 0, block.timestamp);
        }

        (uint256 _vestedAmount, uint256 _lastIntervalDate) = vestedAmount(
            _beneficiary
        );

        return (
        _vestedAmount,
        _vestedAmount.sub(beneficiaries[_beneficiary].released),
        _lastIntervalDate
        );
    }

    /**
     * @dev Get total vested amount of beneficiary base on vesting schedule of this beneficiary.
     */
    function vestedAmount(address _beneficiary)
    public
    view
    returns (uint256, uint256)
    {
        require(beneficiaries[_beneficiary].amount > 0, "The beneficiary's address cannot be found");
        // Listing date is not set
        if (beneficiaries[_beneficiary].startedAt == 0) {
            return (beneficiaries[_beneficiary].released, beneficiaries[_beneficiary].lastReleasedAt);
        }

        // Transfer immediately if any upfront amount
        if (beneficiaries[_beneficiary].upfrontAmount > 0 && beneficiaries[_beneficiary].released == 0) {
            return (beneficiaries[_beneficiary].upfrontAmount, 0);
        }

        // No vesting (All amount unlock at the TGE)
        if (beneficiaries[_beneficiary].duration == 0) {
            return (beneficiaries[_beneficiary].amount, beneficiaries[_beneficiary].startedAt);
        }

        // Vesting has not started yet
        if (block.timestamp < beneficiaries[_beneficiary].startedAt) {
            return (beneficiaries[_beneficiary].released, beneficiaries[_beneficiary].lastReleasedAt);
        }

        // Vesting is done
        if (block.timestamp >= beneficiaries[_beneficiary].startedAt.add(beneficiaries[_beneficiary].duration)) {
            return (beneficiaries[_beneficiary].amount, beneficiaries[_beneficiary].startedAt.add(beneficiaries[_beneficiary].duration));
        }

        // It's too soon to next release
        if (
            beneficiaries[_beneficiary].lastReleasedAt > 0 &&
            block.timestamp < beneficiaries[_beneficiary].interval + beneficiaries[_beneficiary].lastReleasedAt
        ) {
            return (beneficiaries[_beneficiary].released, beneficiaries[_beneficiary].lastReleasedAt);
        }

        // Vesting is interval counter
        uint256 totalVestedAmount = beneficiaries[_beneficiary].released;
        uint256 lastIntervalDate = beneficiaries[_beneficiary].lastReleasedAt > 0
        ? beneficiaries[_beneficiary].lastReleasedAt
        : beneficiaries[_beneficiary].startedAt;

        uint256 multiplyIntervals;
        while (block.timestamp >= lastIntervalDate.add(beneficiaries[_beneficiary].interval)) {
            multiplyIntervals = multiplyIntervals.add(1);
            lastIntervalDate = lastIntervalDate.add(beneficiaries[_beneficiary].interval);
        }

        if (multiplyIntervals > 0) {
            uint256 newVestedAmount = beneficiaries[_beneficiary]
            .leftOverVestingAmount
            .mul(multiplyIntervals.mul(beneficiaries[_beneficiary].interval))
            .div(beneficiaries[_beneficiary].duration);

            totalVestedAmount = totalVestedAmount.add(newVestedAmount);
        }

        return (totalVestedAmount, lastIntervalDate);
    }

    /**
     * @dev Release vested tokens to a specified beneficiary.
     */
    function releaseTo(
        address _beneficiary,
        uint256 _amount,
        uint256 _lastIntervalDate
    ) internal returns (bool) {
        if (block.timestamp < _lastIntervalDate) {
            return false;
        }
        // Update beneficiary information
        beneficiaries[_beneficiary].released = beneficiaries[_beneficiary].released.add(_amount);
        beneficiaries[_beneficiary].lastReleasedAt = _lastIntervalDate;

        // Emit event to of new release
        emit VestingReleased(_beneficiary, _amount);
        // Transfer new released amount to vesting beneficiary
        (bool success) = token.transfer(_beneficiary, _amount);
        require(success, "Transfer failed.");
        return true;
    }

    /**
     * @dev Release vested tokens to current beneficiary.
     */
    function releaseMyPZPs() external onlyBeneficiaries {
        // Calculate the releasable amount
        (
        ,
        uint256 _newReleaseAmount,
        uint256 _lastIntervalDate
        ) = releasableAmount(msg.sender);

        // Release new vested token to the beneficiary
        if (_newReleaseAmount > 0) {
            releaseTo(msg.sender, _newReleaseAmount, _lastIntervalDate);
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_distributionOwner","type":"address"}],"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":false,"internalType":"address","name":"_from","type":"address"}],"name":"ContestEntered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"RewardTransfered","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":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SwapReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Swaped","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"VestingReleased","type":"event"},{"inputs":[],"name":"ContestEntry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"prizes","type":"uint256[]"},{"internalType":"uint256","name":"fees","type":"uint256"},{"internalType":"address","name":"commission","type":"address"}],"name":"ContestReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISTRIBUTION_OWNER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"playerAddress","type":"address"},{"internalType":"uint256","name":"pzpAmount","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ROLE_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"currentOwner","type":"address"},{"internalType":"address","name":"newOwner","type":"address"}],"name":"SetDistributionOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TokenAddress","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"playerAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"address_","type":"address"},{"internalType":"address","name":"playerAddress","type":"address"},{"internalType":"uint256","name":"transferAmount","type":"uint256"}],"name":"TransferSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_ownerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"uint256","name":"_upfrontAmount","type":"uint256"},{"internalType":"uint256","name":"_interval","type":"uint256"}],"name":"addBeneficiary","outputs":[],"stateMutability":"nonpayable","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":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"beneficiaries","outputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"lockDuration","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"leftOverVestingAmount","type":"uint256"},{"internalType":"uint256","name":"released","type":"uint256"},{"internalType":"uint256","name":"upfrontAmount","type":"uint256"},{"internalType":"uint256","name":"startedAt","type":"uint256"},{"internalType":"uint256","name":"interval","type":"uint256"},{"internalType":"uint256","name":"lastReleasedAt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"beneficiaryAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"releasableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseMyPZPs","outputs":[],"stateMutability":"nonpayable","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":"_address","type":"address"}],"name":"revoke","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":"newOwner","type":"address"}],"name":"setOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenListingDate","type":"uint256"}],"name":"startVestingDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenListingDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenVestingCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"vestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200633c3803806200633c833981810160405281019062000037919062000600565b6040518060400160405280600781526020017f504c41595a4150000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f505a5000000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620008ac565b508060049081620000c69190620008ac565b505050620000e9620000dd620001de60201b60201c565b620001e660201b60201c565b600160068190555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555030600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000190306a7c13bc4b2c133c56000000620002ac60201b60201c565b620001c27ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c523826200041960201b60201c565b620001d76000801b336200050b60201b60201c565b5062000aae565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200031e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031590620009f4565b60405180910390fd5b62000332600083836200052160201b60201c565b806002600082825462000346919062000a45565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003f9919062000a91565b60405180910390a362000415600083836200052660201b60201c565b5050565b6200042b82826200052b60201b60201c565b620005075760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004ac620001de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6200051d82826200041960201b60201c565b5050565b505050565b505050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005c8826200059b565b9050919050565b620005da81620005bb565b8114620005e657600080fd5b50565b600081519050620005fa81620005cf565b92915050565b60006020828403121562000619576200061862000596565b5b60006200062984828501620005e9565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006b457607f821691505b602082108103620006ca57620006c96200066c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006f5565b620007408683620006f5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200078d62000787620007818462000758565b62000762565b62000758565b9050919050565b6000819050919050565b620007a9836200076c565b620007c1620007b88262000794565b84845462000702565b825550505050565b600090565b620007d8620007c9565b620007e58184846200079e565b505050565b5b818110156200080d5762000801600082620007ce565b600181019050620007eb565b5050565b601f8211156200085c576200082681620006d0565b6200083184620006e5565b8101602085101562000841578190505b620008596200085085620006e5565b830182620007ea565b50505b505050565b600082821c905092915050565b6000620008816000198460080262000861565b1980831691505092915050565b60006200089c83836200086e565b9150826002028217905092915050565b620008b78262000632565b67ffffffffffffffff811115620008d357620008d26200063d565b5b620008df82546200069b565b620008ec82828562000811565b600060209050601f8311600181146200092457600084156200090f578287015190505b6200091b85826200088e565b8655506200098b565b601f1984166200093486620006d0565b60005b828110156200095e5784890151825560018201915060208501945060208101905062000937565b868310156200097e57848901516200097a601f8916826200086e565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009dc601f8362000993565b9150620009e982620009a4565b602082019050919050565b6000602082019050818103600083015262000a0f81620009cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a528262000758565b915062000a5f8362000758565b925082820190508082111562000a7a5762000a7962000a16565b5b92915050565b62000a8b8162000758565b82525050565b600060208201905062000aa8600083018462000a80565b92915050565b61587e8062000abe6000396000f3fe6080604052600436106102765760003560e01c806384623e8c1161014f578063aaa330f7116100c1578063dfd9cb6e1161007a578063dfd9cb6e14610a00578063ea12e6ee14610a29578063ef14dc9814610a52578063efd8871a14610a7b578063f2fde38b14610aa4578063fa4616e414610acd576102b6565b8063aaa330f7146108f2578063c2cba3061461091b578063d391014b14610946578063d41be25f14610971578063d547741f1461099a578063dd62ed3e146109c3576102b6565b80639b404b28116101135780639b404b28146107d0578063a217fddf146107f9578063a457c2d714610824578063a701602314610861578063a786c18b1461088a578063a9059cbb146108b5576102b6565b806384623e8c146106fb5780638da5cb5b1461072657806391d148541461075157806393d210121461078e57806395d89b41146107a5576102b6565b80632a70d762116101e857806339509351116101ac578063395093511461060157806342966c681461063e5780635b6152fd1461066757806370a082311461067e578063715018a6146106bb57806379cc6790146106d2576102b6565b80632a70d7621461051b5780632f2ff15d14610546578063313ce5671461056f57806336568abe1461059a578063384711cc146105c3576102b6565b8063097bb9e01161023a578063097bb9e0146103d157806311df96c81461040e5780631726cbc81461043757806318160ddd1461047657806323b872dd146104a1578063248a9ca3146104de576102b6565b806301567739146102bb57806301ffc9a714610301578063041a4aba1461033e57806306fdde0314610369578063095ea7b314610394576102b6565b366102b6577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587433346040516102ac929190613cee565b60405180910390a1005b600080fd5b3480156102c757600080fd5b506102e260048036038101906102dd9190613d57565b610af6565b6040516102f89a99989796959493929190613d84565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613e78565b610b6a565b6040516103359190613ec0565b60405180910390f35b34801561034a57600080fd5b50610353610be4565b6040516103609190613edb565b60405180910390f35b34801561037557600080fd5b5061037e610bea565b60405161038b9190613f86565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190613fd4565b610c7c565b6040516103c89190613ec0565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190614014565b610c9f565b6040516104059190614041565b60405180910390f35b34801561041a57600080fd5b506104356004803603810190610430919061405c565b610cde565b005b34801561044357600080fd5b5061045e60048036038101906104599190613d57565b610e6c565b60405161046d939291906140af565b60405180910390f35b34801561048257600080fd5b5061048b610f40565b6040516104989190613edb565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c391906140e6565b610f4a565b6040516104d59190613ec0565b60405180910390f35b3480156104ea57600080fd5b506105056004803603810190610500919061416f565b610f79565b60405161051291906141ab565b60405180910390f35b34801561052757600080fd5b50610530610f99565b60405161053d91906141ab565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906141c6565b610fbd565b005b34801561057b57600080fd5b50610584610fde565b6040516105919190614222565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906141c6565b610fe7565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190613d57565b61106a565b6040516105f892919061423d565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613fd4565b611a78565b6040516106359190613ec0565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190614014565b611aaf565b005b34801561067357600080fd5b5061067c611abc565b005b34801561068a57600080fd5b506106a560048036038101906106a09190613d57565b611b05565b6040516106b29190613edb565b60405180910390f35b3480156106c757600080fd5b506106d0611b4d565b005b3480156106de57600080fd5b506106f960048036038101906106f49190613fd4565b611b61565b005b34801561070757600080fd5b50610710611c04565b60405161071d9190613edb565b60405180910390f35b34801561073257600080fd5b5061073b611c0a565b6040516107489190614041565b60405180910390f35b34801561075d57600080fd5b50610778600480360381019061077391906141c6565b611c34565b6040516107859190613ec0565b60405180910390f35b34801561079a57600080fd5b506107a3611c9f565b005b3480156107b157600080fd5b506107ba611d4f565b6040516107c79190613f86565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190614471565b611de1565b005b34801561080557600080fd5b5061080e612088565b60405161081b91906141ab565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613fd4565b61208f565b6040516108589190613ec0565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613d57565b612106565b005b34801561089657600080fd5b5061089f612196565b6040516108ac9190614041565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190613fd4565b6121bc565b6040516108e99190613ec0565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613fd4565b6121df565b005b34801561092757600080fd5b506109306122cb565b60405161093d919061456f565b60405180910390f35b34801561095257600080fd5b5061095b6122f5565b60405161096891906141ab565b60405180910390f35b34801561097d57600080fd5b50610998600480360381019061099391906145c8565b612319565b005b3480156109a657600080fd5b506109c160048036038101906109bc91906141c6565b612455565b005b3480156109cf57600080fd5b506109ea60048036038101906109e5919061461b565b612476565b6040516109f79190613edb565b60405180910390f35b348015610a0c57600080fd5b50610a276004803603810190610a22919061461b565b6124fd565b005b348015610a3557600080fd5b50610a506004803603810190610a4b919061465b565b61255d565b005b348015610a5e57600080fd5b50610a796004803603810190610a749190613fd4565b61297e565b005b348015610a8757600080fd5b50610aa26004803603810190610a9d91906141c6565b612bbf565b005b348015610ab057600080fd5b50610acb6004803603810190610ac69190613d57565b612bd5565b005b348015610ad957600080fd5b50610af46004803603810190610aef9190614014565b612c58565b005b600b6020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001015490806002015490806003015490806004015490806005015490806006015490806007015490806008015490806009015490508a565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bdd5750610bdc82612c84565b5b9050919050565b600c5481565b606060038054610bf990614717565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2590614717565b8015610c725780601f10610c4757610100808354040283529160200191610c72565b820191906000526020600020905b815481529060010190602001808311610c5557829003601f168201915b5050505050905090565b600080610c87612cee565b9050610c94818585612cf6565b600191505092915050565b60098181548110610caf57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ce6612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c523610d1081612f0e565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401610d6d929190613cee565b6020604051808303816000875af1158015610d8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db09190614774565b5060008473ffffffffffffffffffffffffffffffffffffffff1683604051610dd7906147d2565b60006040518083038185875af1925050503d8060008114610e14576040519150601f19603f3d011682016040523d82523d6000602084013e610e19565b606091505b5050905080610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490614833565b60405180910390fd5b5050610e67612f22565b505050565b600080600080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015403610ec95760008042925092509250610f39565b600080610ed58661106a565b9150915081610f2f600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015484612f2c90919063ffffffff16565b8294509450945050505b9193909250565b6000600254905090565b600080610f55612cee565b9050610f62858285612f42565b610f6d858585612fce565b60019150509392505050565b600060076000838152602001908152602001600020600101549050919050565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52381565b610fc682610f79565b610fcf81612f0e565b610fd98383613244565b505050565b60006012905090565b610fef612cee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461105c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611053906148c5565b60405180910390fd5b6110668282613325565b5050565b6000806000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154116110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990614957565b60405180910390fd5b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070154036111cb57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206009015491509150611a73565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206006015411801561125f57506000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154145b156112b257600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060060154600091509150611a73565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201540361138b57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206007015491509150611a73565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206007015442101561146457600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206009015491509150611a73565b6114fb600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206007015461340790919063ffffffff16565b42106115e457600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301546115db600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206007015461340790919063ffffffff16565b91509150611a73565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600901541180156116c45750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060090154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801546116c191906149a6565b42105b1561175857600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206009015491509150611a73565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600501549050600080600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600901541161183257600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070154611876565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600901545b905060005b6118d0600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801548361340790919063ffffffff16565b4210611948576118ea60018261340790919063ffffffff16565b9050611941600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801548361340790919063ffffffff16565b915061187b565b6000811115611a69576000611a50600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154611a426119f1600b60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801548661341d90919063ffffffff16565b600b60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004015461341d90919063ffffffff16565b61343390919063ffffffff16565b9050611a65818561340790919063ffffffff16565b9350505b8282945094505050505b915091565b600080611a83612cee565b9050611aa4818585611a958589612476565b611a9f91906149a6565b612cf6565b600191505092915050565b611ab93382613449565b50565b611ac4612ebf565b7fd9a5d560deba3dbf49e6ff3bcbd63368413ae5c61aa3af28115af0405775659933604051611af39190614041565b60405180910390a1611b03612f22565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b55613616565b611b5f6000613694565b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790614a26565b60405180910390fd5b611bf68233611bf184611be38733612476565b612f2c90919063ffffffff16565b612cf6565b611c008282613449565b5050565b600d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015411611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90614a92565b60405180910390fd5b600080611d3033610e6c565b92509250506000821115611d4b57611d4933838361375a565b505b5050565b606060048054611d5e90614717565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8a90614717565b8015611dd75780601f10611dac57610100808354040283529160200191611dd7565b820191906000526020600020905b815481529060010190602001808311611dba57829003601f168201915b5050505050905090565b611de9612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c523611e1381612f0e565b60008551905084518114611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390614b24565b60405180910390fd5b60008103611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690614b90565b60405180910390fd5b60005b81811015611fd6576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb898481518110611efd57611efc614bb0565b5b6020026020010151898581518110611f1857611f17614bb0565b5b60200260200101516040518363ffffffff1660e01b8152600401611f3d929190613cee565b6020604051808303816000875af1158015611f5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f809190614774565b905080611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990614833565b60405180910390fd5b508080611fce90614bdf565b915050611ea2565b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84866040518363ffffffff1660e01b8152600401612034929190613cee565b6020604051808303816000875af1158015612053573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120779190614774565b505050612082612f22565b50505050565b6000801b81565b60008061209a612cee565b905060006120a88286612476565b9050838110156120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490614c99565b60405180910390fd5b6120fa8286868403612cf6565b60019250505092915050565b61210e613616565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490614d2b565b60405180910390fd5b61218681613694565b6121936000801b8261398e565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806121c7612cee565b90506121d4818585612fce565b600191505092915050565b6121e7612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52361221181612f0e565b60008373ffffffffffffffffffffffffffffffffffffffff1683604051612237906147d2565b60006040518083038185875af1925050503d8060008114612274576040519150601f19603f3d011682016040523d82523d6000602084013e612279565b606091505b50509050806122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490614833565b60405180910390fd5b50506122c7612f22565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca02509681565b612321612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52361234b81612f0e565b60008473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401612388929190613cee565b6020604051808303816000875af11580156123a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123cb9190614774565b90508061240d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240490614833565b60405180910390fd5b7f9cae83942d8e4102dc645f687f346276eaa573f8004efd0d284e69d20c5fdc77848460405161243e929190613cee565b60405180910390a15050612450612f22565b505050565b61245e82610f79565b61246781612f0e565b6124718383613325565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612505613616565b61252f7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52383612bbf565b6125597ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52382613244565b5050565b612565613616565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb90614dbd565b60405180910390fd5b60008511612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e90614e4f565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a89190614e84565b6126bd86600d5461340790919063ffffffff16565b11156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590614f49565b60405180910390fd5b6000600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015414612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a90614fdb565b60405180910390fd5b60006127988387612f2c90919063ffffffff16565b905060006127b186600c5461340790919063ffffffff16565b90506040518061014001604052808973ffffffffffffffffffffffffffffffffffffffff168152602001878152602001868152602001888152602001838152602001600081526020018581526020018281526020018481526020016000815250600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070155610100820151816008015561012082015181600901559050506009889080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061296e87600d5461340790919063ffffffff16565b600d819055505050505050505050565b612986612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c5236129b081612f0e565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612a0d9190614041565b602060405180830381865afa158015612a2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4e9190614e84565b905080831115612a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8a9061506d565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff1660e01b8152600401612af2929190613cee565b6020604051808303816000875af1158015612b11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b359190614774565b905080612b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6e90614833565b60405180910390fd5b7fc4c8da1b182d15faaef80290dd204a2535c01ba690a4b4d9fe26bccebf06bb308585604051612ba8929190613cee565b60405180910390a1505050612bbb612f22565b5050565b612bc7613616565b612bd18282613325565b5050565b612bdd613616565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4390614d2b565b60405180910390fd5b612c5581613694565b50565b612c60612ebf565b612c68613616565b6000811115612c795780600c819055505b612c81612f22565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5c906150ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb90615191565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612eb29190613edb565b60405180910390a3505050565b600260065403612f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efb906151fd565b60405180910390fd5b6002600681905550565b612f1f81612f1a612cee565b61399c565b50565b6001600681905550565b60008183612f3a919061521d565b905092915050565b6000612f4e8484612476565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612fc85781811015612fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb19061529d565b60405180910390fd5b612fc78484848403612cf6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361303d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130349061532f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a3906153c1565b60405180910390fd5b6130b7838383613a21565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561313d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313490615453565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161322b9190613edb565b60405180910390a361323e848484613a26565b50505050565b61324e8282611c34565b6133215760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506132c6612cee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61332f8282611c34565b156134035760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506133a8612cee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000818361341591906149a6565b905092915050565b6000818361342b9190615473565b905092915050565b6000818361344191906154e4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90615587565b60405180910390fd5b6134c482600083613a21565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615619565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135fd9190613edb565b60405180910390a361361183600084613a26565b505050565b61361e612cee565b73ffffffffffffffffffffffffffffffffffffffff1661363c611c0a565b73ffffffffffffffffffffffffffffffffffffffff1614613692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368990615685565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008142101561376d5760009050613987565b6137c283600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015461340790919063ffffffff16565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005018190555081600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600901819055508373ffffffffffffffffffffffffffffffffffffffff167f4ad7799f99297062cea73c5a21d23a1fcf49f6a1957f7409712e555a0dcd1e1d846040516138959190613edb565b60405180910390a26000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff1660e01b81526004016138fc929190613cee565b6020604051808303816000875af115801561391b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061393f9190614774565b905080613981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397890614833565b60405180910390fd5b60019150505b9392505050565b6139988282613244565b5050565b6139a68282611c34565b613a1d576139b381613a2b565b6139c18360001c6020613a58565b6040516020016139d2929190615779565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a149190613f86565b60405180910390fd5b5050565b505050565b505050565b6060613a518273ffffffffffffffffffffffffffffffffffffffff16601460ff16613a58565b9050919050565b606060006002836002613a6b9190615473565b613a7591906149a6565b67ffffffffffffffff811115613a8e57613a8d61426b565b5b6040519080825280601f01601f191660200182016040528015613ac05781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613af857613af7614bb0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613b5c57613b5b614bb0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613b9c9190615473565b613ba691906149a6565b90505b6001811115613c46577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613be857613be7614bb0565b5b1a60f81b828281518110613bff57613bfe614bb0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080613c3f906157b3565b9050613ba9565b5060008414613c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c8190615828565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613cbf82613c94565b9050919050565b613ccf81613cb4565b82525050565b6000819050919050565b613ce881613cd5565b82525050565b6000604082019050613d036000830185613cc6565b613d106020830184613cdf565b9392505050565b6000604051905090565b600080fd5b600080fd5b613d3481613cb4565b8114613d3f57600080fd5b50565b600081359050613d5181613d2b565b92915050565b600060208284031215613d6d57613d6c613d21565b5b6000613d7b84828501613d42565b91505092915050565b600061014082019050613d9a600083018d613cc6565b613da7602083018c613cdf565b613db4604083018b613cdf565b613dc1606083018a613cdf565b613dce6080830189613cdf565b613ddb60a0830188613cdf565b613de860c0830187613cdf565b613df560e0830186613cdf565b613e03610100830185613cdf565b613e11610120830184613cdf565b9b9a5050505050505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e5581613e20565b8114613e6057600080fd5b50565b600081359050613e7281613e4c565b92915050565b600060208284031215613e8e57613e8d613d21565b5b6000613e9c84828501613e63565b91505092915050565b60008115159050919050565b613eba81613ea5565b82525050565b6000602082019050613ed56000830184613eb1565b92915050565b6000602082019050613ef06000830184613cdf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f30578082015181840152602081019050613f15565b60008484015250505050565b6000601f19601f8301169050919050565b6000613f5882613ef6565b613f628185613f01565b9350613f72818560208601613f12565b613f7b81613f3c565b840191505092915050565b60006020820190508181036000830152613fa08184613f4d565b905092915050565b613fb181613cd5565b8114613fbc57600080fd5b50565b600081359050613fce81613fa8565b92915050565b60008060408385031215613feb57613fea613d21565b5b6000613ff985828601613d42565b925050602061400a85828601613fbf565b9150509250929050565b60006020828403121561402a57614029613d21565b5b600061403884828501613fbf565b91505092915050565b60006020820190506140566000830184613cc6565b92915050565b60008060006060848603121561407557614074613d21565b5b600061408386828701613d42565b935050602061409486828701613fbf565b92505060406140a586828701613fbf565b9150509250925092565b60006060820190506140c46000830186613cdf565b6140d16020830185613cdf565b6140de6040830184613cdf565b949350505050565b6000806000606084860312156140ff576140fe613d21565b5b600061410d86828701613d42565b935050602061411e86828701613d42565b925050604061412f86828701613fbf565b9150509250925092565b6000819050919050565b61414c81614139565b811461415757600080fd5b50565b60008135905061416981614143565b92915050565b60006020828403121561418557614184613d21565b5b60006141938482850161415a565b91505092915050565b6141a581614139565b82525050565b60006020820190506141c0600083018461419c565b92915050565b600080604083850312156141dd576141dc613d21565b5b60006141eb8582860161415a565b92505060206141fc85828601613d42565b9150509250929050565b600060ff82169050919050565b61421c81614206565b82525050565b60006020820190506142376000830184614213565b92915050565b60006040820190506142526000830185613cdf565b61425f6020830184613cdf565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142a382613f3c565b810181811067ffffffffffffffff821117156142c2576142c161426b565b5b80604052505050565b60006142d5613d17565b90506142e1828261429a565b919050565b600067ffffffffffffffff8211156143015761430061426b565b5b602082029050602081019050919050565b600080fd5b600061432a614325846142e6565b6142cb565b9050808382526020820190506020840283018581111561434d5761434c614312565b5b835b8181101561437657806143628882613d42565b84526020840193505060208101905061434f565b5050509392505050565b600082601f83011261439557614394614266565b5b81356143a5848260208601614317565b91505092915050565b600067ffffffffffffffff8211156143c9576143c861426b565b5b602082029050602081019050919050565b60006143ed6143e8846143ae565b6142cb565b905080838252602082019050602084028301858111156144105761440f614312565b5b835b8181101561443957806144258882613fbf565b845260208401935050602081019050614412565b5050509392505050565b600082601f83011261445857614457614266565b5b81356144688482602086016143da565b91505092915050565b6000806000806080858703121561448b5761448a613d21565b5b600085013567ffffffffffffffff8111156144a9576144a8613d26565b5b6144b587828801614380565b945050602085013567ffffffffffffffff8111156144d6576144d5613d26565b5b6144e287828801614443565b93505060406144f387828801613fbf565b925050606061450487828801613d42565b91505092959194509250565b6000819050919050565b600061453561453061452b84613c94565b614510565b613c94565b9050919050565b60006145478261451a565b9050919050565b60006145598261453c565b9050919050565b6145698161454e565b82525050565b60006020820190506145846000830184614560565b92915050565b600061459582613cb4565b9050919050565b6145a58161458a565b81146145b057600080fd5b50565b6000813590506145c28161459c565b92915050565b6000806000606084860312156145e1576145e0613d21565b5b60006145ef868287016145b3565b935050602061460086828701613d42565b925050604061461186828701613fbf565b9150509250925092565b6000806040838503121561463257614631613d21565b5b600061464085828601613d42565b925050602061465185828601613d42565b9150509250929050565b60008060008060008060c0878903121561467857614677613d21565b5b600061468689828a01613d42565b965050602061469789828a01613fbf565b95505060406146a889828a01613fbf565b94505060606146b989828a01613fbf565b93505060806146ca89828a01613fbf565b92505060a06146db89828a01613fbf565b9150509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061472f57607f821691505b602082108103614742576147416146e8565b5b50919050565b61475181613ea5565b811461475c57600080fd5b50565b60008151905061476e81614748565b92915050565b60006020828403121561478a57614789613d21565b5b60006147988482850161475f565b91505092915050565b600081905092915050565b50565b60006147bc6000836147a1565b91506147c7826147ac565b600082019050919050565b60006147dd826147af565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061481d601083613f01565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006148af602f83613f01565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f5468652062656e6566696369617279277320616464726573732063616e6e6f7460008201527f20626520666f756e640000000000000000000000000000000000000000000000602082015250565b6000614941602983613f01565b915061494c826148e5565b604082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149b182613cd5565b91506149bc83613cd5565b92508282019050808211156149d4576149d3614977565b5b92915050565b7f6275726e2066726f6d207a65726f000000000000000000000000000000000000600082015250565b6000614a10600e83613f01565b9150614a1b826149da565b602082019050919050565b60006020820190508181036000830152614a3f81614a03565b9050919050565b7f596f752063616e6e6f742072656c6561736520746f6b656e7321000000000000600082015250565b6000614a7c601a83613f01565b9150614a8782614a46565b602082019050919050565b60006020820190508181036000830152614aab81614a6f565b9050919050565b7f41646472657373657320616e64205072697a6573206172726179732073686f7560008201527f6c64206265206f6620657175616c206c656e6774680000000000000000000000602082015250565b6000614b0e603583613f01565b9150614b1982614ab2565b604082019050919050565b60006020820190508181036000830152614b3d81614b01565b9050919050565b7f416464726573732061727261792063616e277420626520656d70747900000000600082015250565b6000614b7a601c83613f01565b9150614b8582614b44565b602082019050919050565b60006020820190508181036000830152614ba981614b6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614bea82613cd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c1c57614c1b614977565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c83602583613f01565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d15602683613f01565b9150614d2082614cb9565b604082019050919050565b60006020820190508181036000830152614d4481614d08565b9050919050565b7f5468652062656e6566696369617279277320616464726573732063616e6e6f7460008201527f2062652030000000000000000000000000000000000000000000000000000000602082015250565b6000614da7602583613f01565b9150614db282614d4b565b604082019050919050565b60006020820190508181036000830152614dd681614d9a565b9050919050565b7f53686172657320616d6f756e742068617320746f20626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000614e39602683613f01565b9150614e4482614ddd565b604082019050919050565b60006020820190508181036000830152614e6881614e2c565b9050919050565b600081519050614e7e81613fa8565b92915050565b600060208284031215614e9a57614e99613d21565b5b6000614ea884828501614e6f565b91505092915050565b7f46756c6c20746f6b656e2076657374696e6720746f206f746865722062656e6560008201527f6669636961726965732e2043616e206e6f7420616464206e65772062656e656660208201527f6963696172790000000000000000000000000000000000000000000000000000604082015250565b6000614f33604683613f01565b9150614f3e82614eb1565b606082019050919050565b60006020820190508181036000830152614f6281614f26565b9050919050565b7f5468652062656e65666963696172792068617320616464656420746f2074686560008201527f2076657374696e6720706f6f6c20616c72656164790000000000000000000000602082015250565b6000614fc5603583613f01565b9150614fd082614f69565b604082019050919050565b60006020820190508181036000830152614ff481614fb8565b9050919050565b7f42616c616e636520696e2074686520636f6e7472616374206973206e6f74206560008201527f6e6f756768000000000000000000000000000000000000000000000000000000602082015250565b6000615057602583613f01565b915061506282614ffb565b604082019050919050565b600060208201905081810360008301526150868161504a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150e9602483613f01565b91506150f48261508d565b604082019050919050565b60006020820190508181036000830152615118816150dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061517b602283613f01565b91506151868261511f565b604082019050919050565b600060208201905081810360008301526151aa8161516e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006151e7601f83613f01565b91506151f2826151b1565b602082019050919050565b60006020820190508181036000830152615216816151da565b9050919050565b600061522882613cd5565b915061523383613cd5565b925082820390508181111561524b5761524a614977565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000615287601d83613f01565b915061529282615251565b602082019050919050565b600060208201905081810360008301526152b68161527a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615319602583613f01565b9150615324826152bd565b604082019050919050565b600060208201905081810360008301526153488161530c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153ab602383613f01565b91506153b68261534f565b604082019050919050565b600060208201905081810360008301526153da8161539e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061543d602683613f01565b9150615448826153e1565b604082019050919050565b6000602082019050818103600083015261546c81615430565b9050919050565b600061547e82613cd5565b915061548983613cd5565b925082820261549781613cd5565b915082820484148315176154ae576154ad614977565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006154ef82613cd5565b91506154fa83613cd5565b92508261550a576155096154b5565b5b828204905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615571602183613f01565b915061557c82615515565b604082019050919050565b600060208201905081810360008301526155a081615564565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615603602283613f01565b915061560e826155a7565b604082019050919050565b60006020820190508181036000830152615632816155f6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061566f602083613f01565b915061567a82615639565b602082019050919050565b6000602082019050818103600083015261569e81615662565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006156e66017836156a5565b91506156f1826156b0565b601782019050919050565b600061570782613ef6565b61571181856156a5565b9350615721818560208601613f12565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006157636011836156a5565b915061576e8261572d565b601182019050919050565b6000615784826156d9565b915061579082856156fc565b915061579b82615756565b91506157a782846156fc565b91508190509392505050565b60006157be82613cd5565b9150600082036157d1576157d0614977565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615812602083613f01565b915061581d826157dc565b602082019050919050565b6000602082019050818103600083015261584181615805565b905091905056fea2646970667358221220952fef96fe8d41ab07ecaba9a10f3f6305a396a242a81cdb6c677ebdd6d9dbcf64736f6c634300081100330000000000000000000000007d6b90c0dc712e06f55cddc4646e62d64fdc3ecd

Deployed Bytecode

0x6080604052600436106102765760003560e01c806384623e8c1161014f578063aaa330f7116100c1578063dfd9cb6e1161007a578063dfd9cb6e14610a00578063ea12e6ee14610a29578063ef14dc9814610a52578063efd8871a14610a7b578063f2fde38b14610aa4578063fa4616e414610acd576102b6565b8063aaa330f7146108f2578063c2cba3061461091b578063d391014b14610946578063d41be25f14610971578063d547741f1461099a578063dd62ed3e146109c3576102b6565b80639b404b28116101135780639b404b28146107d0578063a217fddf146107f9578063a457c2d714610824578063a701602314610861578063a786c18b1461088a578063a9059cbb146108b5576102b6565b806384623e8c146106fb5780638da5cb5b1461072657806391d148541461075157806393d210121461078e57806395d89b41146107a5576102b6565b80632a70d762116101e857806339509351116101ac578063395093511461060157806342966c681461063e5780635b6152fd1461066757806370a082311461067e578063715018a6146106bb57806379cc6790146106d2576102b6565b80632a70d7621461051b5780632f2ff15d14610546578063313ce5671461056f57806336568abe1461059a578063384711cc146105c3576102b6565b8063097bb9e01161023a578063097bb9e0146103d157806311df96c81461040e5780631726cbc81461043757806318160ddd1461047657806323b872dd146104a1578063248a9ca3146104de576102b6565b806301567739146102bb57806301ffc9a714610301578063041a4aba1461033e57806306fdde0314610369578063095ea7b314610394576102b6565b366102b6577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587433346040516102ac929190613cee565b60405180910390a1005b600080fd5b3480156102c757600080fd5b506102e260048036038101906102dd9190613d57565b610af6565b6040516102f89a99989796959493929190613d84565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613e78565b610b6a565b6040516103359190613ec0565b60405180910390f35b34801561034a57600080fd5b50610353610be4565b6040516103609190613edb565b60405180910390f35b34801561037557600080fd5b5061037e610bea565b60405161038b9190613f86565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190613fd4565b610c7c565b6040516103c89190613ec0565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190614014565b610c9f565b6040516104059190614041565b60405180910390f35b34801561041a57600080fd5b506104356004803603810190610430919061405c565b610cde565b005b34801561044357600080fd5b5061045e60048036038101906104599190613d57565b610e6c565b60405161046d939291906140af565b60405180910390f35b34801561048257600080fd5b5061048b610f40565b6040516104989190613edb565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c391906140e6565b610f4a565b6040516104d59190613ec0565b60405180910390f35b3480156104ea57600080fd5b506105056004803603810190610500919061416f565b610f79565b60405161051291906141ab565b60405180910390f35b34801561052757600080fd5b50610530610f99565b60405161053d91906141ab565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906141c6565b610fbd565b005b34801561057b57600080fd5b50610584610fde565b6040516105919190614222565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906141c6565b610fe7565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190613d57565b61106a565b6040516105f892919061423d565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613fd4565b611a78565b6040516106359190613ec0565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190614014565b611aaf565b005b34801561067357600080fd5b5061067c611abc565b005b34801561068a57600080fd5b506106a560048036038101906106a09190613d57565b611b05565b6040516106b29190613edb565b60405180910390f35b3480156106c757600080fd5b506106d0611b4d565b005b3480156106de57600080fd5b506106f960048036038101906106f49190613fd4565b611b61565b005b34801561070757600080fd5b50610710611c04565b60405161071d9190613edb565b60405180910390f35b34801561073257600080fd5b5061073b611c0a565b6040516107489190614041565b60405180910390f35b34801561075d57600080fd5b50610778600480360381019061077391906141c6565b611c34565b6040516107859190613ec0565b60405180910390f35b34801561079a57600080fd5b506107a3611c9f565b005b3480156107b157600080fd5b506107ba611d4f565b6040516107c79190613f86565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190614471565b611de1565b005b34801561080557600080fd5b5061080e612088565b60405161081b91906141ab565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613fd4565b61208f565b6040516108589190613ec0565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613d57565b612106565b005b34801561089657600080fd5b5061089f612196565b6040516108ac9190614041565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190613fd4565b6121bc565b6040516108e99190613ec0565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613fd4565b6121df565b005b34801561092757600080fd5b506109306122cb565b60405161093d919061456f565b60405180910390f35b34801561095257600080fd5b5061095b6122f5565b60405161096891906141ab565b60405180910390f35b34801561097d57600080fd5b50610998600480360381019061099391906145c8565b612319565b005b3480156109a657600080fd5b506109c160048036038101906109bc91906141c6565b612455565b005b3480156109cf57600080fd5b506109ea60048036038101906109e5919061461b565b612476565b6040516109f79190613edb565b60405180910390f35b348015610a0c57600080fd5b50610a276004803603810190610a22919061461b565b6124fd565b005b348015610a3557600080fd5b50610a506004803603810190610a4b919061465b565b61255d565b005b348015610a5e57600080fd5b50610a796004803603810190610a749190613fd4565b61297e565b005b348015610a8757600080fd5b50610aa26004803603810190610a9d91906141c6565b612bbf565b005b348015610ab057600080fd5b50610acb6004803603810190610ac69190613d57565b612bd5565b005b348015610ad957600080fd5b50610af46004803603810190610aef9190614014565b612c58565b005b600b6020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001015490806002015490806003015490806004015490806005015490806006015490806007015490806008015490806009015490508a565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bdd5750610bdc82612c84565b5b9050919050565b600c5481565b606060038054610bf990614717565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2590614717565b8015610c725780601f10610c4757610100808354040283529160200191610c72565b820191906000526020600020905b815481529060010190602001808311610c5557829003601f168201915b5050505050905090565b600080610c87612cee565b9050610c94818585612cf6565b600191505092915050565b60098181548110610caf57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ce6612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c523610d1081612f0e565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401610d6d929190613cee565b6020604051808303816000875af1158015610d8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db09190614774565b5060008473ffffffffffffffffffffffffffffffffffffffff1683604051610dd7906147d2565b60006040518083038185875af1925050503d8060008114610e14576040519150601f19603f3d011682016040523d82523d6000602084013e610e19565b606091505b5050905080610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490614833565b60405180910390fd5b5050610e67612f22565b505050565b600080600080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015403610ec95760008042925092509250610f39565b600080610ed58661106a565b9150915081610f2f600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015484612f2c90919063ffffffff16565b8294509450945050505b9193909250565b6000600254905090565b600080610f55612cee565b9050610f62858285612f42565b610f6d858585612fce565b60019150509392505050565b600060076000838152602001908152602001600020600101549050919050565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52381565b610fc682610f79565b610fcf81612f0e565b610fd98383613244565b505050565b60006012905090565b610fef612cee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461105c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611053906148c5565b60405180910390fd5b6110668282613325565b5050565b6000806000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154116110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990614957565b60405180910390fd5b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070154036111cb57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206009015491509150611a73565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206006015411801561125f57506000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154145b156112b257600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060060154600091509150611a73565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201540361138b57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206007015491509150611a73565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206007015442101561146457600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206009015491509150611a73565b6114fb600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206007015461340790919063ffffffff16565b42106115e457600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301546115db600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206007015461340790919063ffffffff16565b91509150611a73565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600901541180156116c45750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060090154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801546116c191906149a6565b42105b1561175857600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206009015491509150611a73565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600501549050600080600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600901541161183257600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070154611876565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600901545b905060005b6118d0600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801548361340790919063ffffffff16565b4210611948576118ea60018261340790919063ffffffff16565b9050611941600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801548361340790919063ffffffff16565b915061187b565b6000811115611a69576000611a50600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154611a426119f1600b60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801548661341d90919063ffffffff16565b600b60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004015461341d90919063ffffffff16565b61343390919063ffffffff16565b9050611a65818561340790919063ffffffff16565b9350505b8282945094505050505b915091565b600080611a83612cee565b9050611aa4818585611a958589612476565b611a9f91906149a6565b612cf6565b600191505092915050565b611ab93382613449565b50565b611ac4612ebf565b7fd9a5d560deba3dbf49e6ff3bcbd63368413ae5c61aa3af28115af0405775659933604051611af39190614041565b60405180910390a1611b03612f22565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b55613616565b611b5f6000613694565b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790614a26565b60405180910390fd5b611bf68233611bf184611be38733612476565b612f2c90919063ffffffff16565b612cf6565b611c008282613449565b5050565b600d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015411611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90614a92565b60405180910390fd5b600080611d3033610e6c565b92509250506000821115611d4b57611d4933838361375a565b505b5050565b606060048054611d5e90614717565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8a90614717565b8015611dd75780601f10611dac57610100808354040283529160200191611dd7565b820191906000526020600020905b815481529060010190602001808311611dba57829003601f168201915b5050505050905090565b611de9612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c523611e1381612f0e565b60008551905084518114611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390614b24565b60405180910390fd5b60008103611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690614b90565b60405180910390fd5b60005b81811015611fd6576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb898481518110611efd57611efc614bb0565b5b6020026020010151898581518110611f1857611f17614bb0565b5b60200260200101516040518363ffffffff1660e01b8152600401611f3d929190613cee565b6020604051808303816000875af1158015611f5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f809190614774565b905080611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990614833565b60405180910390fd5b508080611fce90614bdf565b915050611ea2565b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84866040518363ffffffff1660e01b8152600401612034929190613cee565b6020604051808303816000875af1158015612053573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120779190614774565b505050612082612f22565b50505050565b6000801b81565b60008061209a612cee565b905060006120a88286612476565b9050838110156120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490614c99565b60405180910390fd5b6120fa8286868403612cf6565b60019250505092915050565b61210e613616565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490614d2b565b60405180910390fd5b61218681613694565b6121936000801b8261398e565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806121c7612cee565b90506121d4818585612fce565b600191505092915050565b6121e7612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52361221181612f0e565b60008373ffffffffffffffffffffffffffffffffffffffff1683604051612237906147d2565b60006040518083038185875af1925050503d8060008114612274576040519150601f19603f3d011682016040523d82523d6000602084013e612279565b606091505b50509050806122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490614833565b60405180910390fd5b50506122c7612f22565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca02509681565b612321612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52361234b81612f0e565b60008473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401612388929190613cee565b6020604051808303816000875af11580156123a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123cb9190614774565b90508061240d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240490614833565b60405180910390fd5b7f9cae83942d8e4102dc645f687f346276eaa573f8004efd0d284e69d20c5fdc77848460405161243e929190613cee565b60405180910390a15050612450612f22565b505050565b61245e82610f79565b61246781612f0e565b6124718383613325565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612505613616565b61252f7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52383612bbf565b6125597ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c52382613244565b5050565b612565613616565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb90614dbd565b60405180910390fd5b60008511612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e90614e4f565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a89190614e84565b6126bd86600d5461340790919063ffffffff16565b11156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590614f49565b60405180910390fd5b6000600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015414612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a90614fdb565b60405180910390fd5b60006127988387612f2c90919063ffffffff16565b905060006127b186600c5461340790919063ffffffff16565b90506040518061014001604052808973ffffffffffffffffffffffffffffffffffffffff168152602001878152602001868152602001888152602001838152602001600081526020018581526020018281526020018481526020016000815250600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070155610100820151816008015561012082015181600901559050506009889080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061296e87600d5461340790919063ffffffff16565b600d819055505050505050505050565b612986612ebf565b7ff058486e2479016ce6206476f45dd0331a6110c78e6b51dfe3f54dd87c03c5236129b081612f0e565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612a0d9190614041565b602060405180830381865afa158015612a2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4e9190614e84565b905080831115612a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8a9061506d565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff1660e01b8152600401612af2929190613cee565b6020604051808303816000875af1158015612b11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b359190614774565b905080612b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6e90614833565b60405180910390fd5b7fc4c8da1b182d15faaef80290dd204a2535c01ba690a4b4d9fe26bccebf06bb308585604051612ba8929190613cee565b60405180910390a1505050612bbb612f22565b5050565b612bc7613616565b612bd18282613325565b5050565b612bdd613616565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4390614d2b565b60405180910390fd5b612c5581613694565b50565b612c60612ebf565b612c68613616565b6000811115612c795780600c819055505b612c81612f22565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5c906150ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb90615191565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612eb29190613edb565b60405180910390a3505050565b600260065403612f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efb906151fd565b60405180910390fd5b6002600681905550565b612f1f81612f1a612cee565b61399c565b50565b6001600681905550565b60008183612f3a919061521d565b905092915050565b6000612f4e8484612476565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612fc85781811015612fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb19061529d565b60405180910390fd5b612fc78484848403612cf6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361303d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130349061532f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a3906153c1565b60405180910390fd5b6130b7838383613a21565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561313d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313490615453565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161322b9190613edb565b60405180910390a361323e848484613a26565b50505050565b61324e8282611c34565b6133215760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506132c6612cee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61332f8282611c34565b156134035760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506133a8612cee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000818361341591906149a6565b905092915050565b6000818361342b9190615473565b905092915050565b6000818361344191906154e4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90615587565b60405180910390fd5b6134c482600083613a21565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615619565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135fd9190613edb565b60405180910390a361361183600084613a26565b505050565b61361e612cee565b73ffffffffffffffffffffffffffffffffffffffff1661363c611c0a565b73ffffffffffffffffffffffffffffffffffffffff1614613692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368990615685565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008142101561376d5760009050613987565b6137c283600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015461340790919063ffffffff16565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005018190555081600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600901819055508373ffffffffffffffffffffffffffffffffffffffff167f4ad7799f99297062cea73c5a21d23a1fcf49f6a1957f7409712e555a0dcd1e1d846040516138959190613edb565b60405180910390a26000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff1660e01b81526004016138fc929190613cee565b6020604051808303816000875af115801561391b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061393f9190614774565b905080613981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397890614833565b60405180910390fd5b60019150505b9392505050565b6139988282613244565b5050565b6139a68282611c34565b613a1d576139b381613a2b565b6139c18360001c6020613a58565b6040516020016139d2929190615779565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a149190613f86565b60405180910390fd5b5050565b505050565b505050565b6060613a518273ffffffffffffffffffffffffffffffffffffffff16601460ff16613a58565b9050919050565b606060006002836002613a6b9190615473565b613a7591906149a6565b67ffffffffffffffff811115613a8e57613a8d61426b565b5b6040519080825280601f01601f191660200182016040528015613ac05781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613af857613af7614bb0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613b5c57613b5b614bb0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613b9c9190615473565b613ba691906149a6565b90505b6001811115613c46577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613be857613be7614bb0565b5b1a60f81b828281518110613bff57613bfe614bb0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080613c3f906157b3565b9050613ba9565b5060008414613c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c8190615828565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613cbf82613c94565b9050919050565b613ccf81613cb4565b82525050565b6000819050919050565b613ce881613cd5565b82525050565b6000604082019050613d036000830185613cc6565b613d106020830184613cdf565b9392505050565b6000604051905090565b600080fd5b600080fd5b613d3481613cb4565b8114613d3f57600080fd5b50565b600081359050613d5181613d2b565b92915050565b600060208284031215613d6d57613d6c613d21565b5b6000613d7b84828501613d42565b91505092915050565b600061014082019050613d9a600083018d613cc6565b613da7602083018c613cdf565b613db4604083018b613cdf565b613dc1606083018a613cdf565b613dce6080830189613cdf565b613ddb60a0830188613cdf565b613de860c0830187613cdf565b613df560e0830186613cdf565b613e03610100830185613cdf565b613e11610120830184613cdf565b9b9a5050505050505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e5581613e20565b8114613e6057600080fd5b50565b600081359050613e7281613e4c565b92915050565b600060208284031215613e8e57613e8d613d21565b5b6000613e9c84828501613e63565b91505092915050565b60008115159050919050565b613eba81613ea5565b82525050565b6000602082019050613ed56000830184613eb1565b92915050565b6000602082019050613ef06000830184613cdf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f30578082015181840152602081019050613f15565b60008484015250505050565b6000601f19601f8301169050919050565b6000613f5882613ef6565b613f628185613f01565b9350613f72818560208601613f12565b613f7b81613f3c565b840191505092915050565b60006020820190508181036000830152613fa08184613f4d565b905092915050565b613fb181613cd5565b8114613fbc57600080fd5b50565b600081359050613fce81613fa8565b92915050565b60008060408385031215613feb57613fea613d21565b5b6000613ff985828601613d42565b925050602061400a85828601613fbf565b9150509250929050565b60006020828403121561402a57614029613d21565b5b600061403884828501613fbf565b91505092915050565b60006020820190506140566000830184613cc6565b92915050565b60008060006060848603121561407557614074613d21565b5b600061408386828701613d42565b935050602061409486828701613fbf565b92505060406140a586828701613fbf565b9150509250925092565b60006060820190506140c46000830186613cdf565b6140d16020830185613cdf565b6140de6040830184613cdf565b949350505050565b6000806000606084860312156140ff576140fe613d21565b5b600061410d86828701613d42565b935050602061411e86828701613d42565b925050604061412f86828701613fbf565b9150509250925092565b6000819050919050565b61414c81614139565b811461415757600080fd5b50565b60008135905061416981614143565b92915050565b60006020828403121561418557614184613d21565b5b60006141938482850161415a565b91505092915050565b6141a581614139565b82525050565b60006020820190506141c0600083018461419c565b92915050565b600080604083850312156141dd576141dc613d21565b5b60006141eb8582860161415a565b92505060206141fc85828601613d42565b9150509250929050565b600060ff82169050919050565b61421c81614206565b82525050565b60006020820190506142376000830184614213565b92915050565b60006040820190506142526000830185613cdf565b61425f6020830184613cdf565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142a382613f3c565b810181811067ffffffffffffffff821117156142c2576142c161426b565b5b80604052505050565b60006142d5613d17565b90506142e1828261429a565b919050565b600067ffffffffffffffff8211156143015761430061426b565b5b602082029050602081019050919050565b600080fd5b600061432a614325846142e6565b6142cb565b9050808382526020820190506020840283018581111561434d5761434c614312565b5b835b8181101561437657806143628882613d42565b84526020840193505060208101905061434f565b5050509392505050565b600082601f83011261439557614394614266565b5b81356143a5848260208601614317565b91505092915050565b600067ffffffffffffffff8211156143c9576143c861426b565b5b602082029050602081019050919050565b60006143ed6143e8846143ae565b6142cb565b905080838252602082019050602084028301858111156144105761440f614312565b5b835b8181101561443957806144258882613fbf565b845260208401935050602081019050614412565b5050509392505050565b600082601f83011261445857614457614266565b5b81356144688482602086016143da565b91505092915050565b6000806000806080858703121561448b5761448a613d21565b5b600085013567ffffffffffffffff8111156144a9576144a8613d26565b5b6144b587828801614380565b945050602085013567ffffffffffffffff8111156144d6576144d5613d26565b5b6144e287828801614443565b93505060406144f387828801613fbf565b925050606061450487828801613d42565b91505092959194509250565b6000819050919050565b600061453561453061452b84613c94565b614510565b613c94565b9050919050565b60006145478261451a565b9050919050565b60006145598261453c565b9050919050565b6145698161454e565b82525050565b60006020820190506145846000830184614560565b92915050565b600061459582613cb4565b9050919050565b6145a58161458a565b81146145b057600080fd5b50565b6000813590506145c28161459c565b92915050565b6000806000606084860312156145e1576145e0613d21565b5b60006145ef868287016145b3565b935050602061460086828701613d42565b925050604061461186828701613fbf565b9150509250925092565b6000806040838503121561463257614631613d21565b5b600061464085828601613d42565b925050602061465185828601613d42565b9150509250929050565b60008060008060008060c0878903121561467857614677613d21565b5b600061468689828a01613d42565b965050602061469789828a01613fbf565b95505060406146a889828a01613fbf565b94505060606146b989828a01613fbf565b93505060806146ca89828a01613fbf565b92505060a06146db89828a01613fbf565b9150509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061472f57607f821691505b602082108103614742576147416146e8565b5b50919050565b61475181613ea5565b811461475c57600080fd5b50565b60008151905061476e81614748565b92915050565b60006020828403121561478a57614789613d21565b5b60006147988482850161475f565b91505092915050565b600081905092915050565b50565b60006147bc6000836147a1565b91506147c7826147ac565b600082019050919050565b60006147dd826147af565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061481d601083613f01565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006148af602f83613f01565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f5468652062656e6566696369617279277320616464726573732063616e6e6f7460008201527f20626520666f756e640000000000000000000000000000000000000000000000602082015250565b6000614941602983613f01565b915061494c826148e5565b604082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149b182613cd5565b91506149bc83613cd5565b92508282019050808211156149d4576149d3614977565b5b92915050565b7f6275726e2066726f6d207a65726f000000000000000000000000000000000000600082015250565b6000614a10600e83613f01565b9150614a1b826149da565b602082019050919050565b60006020820190508181036000830152614a3f81614a03565b9050919050565b7f596f752063616e6e6f742072656c6561736520746f6b656e7321000000000000600082015250565b6000614a7c601a83613f01565b9150614a8782614a46565b602082019050919050565b60006020820190508181036000830152614aab81614a6f565b9050919050565b7f41646472657373657320616e64205072697a6573206172726179732073686f7560008201527f6c64206265206f6620657175616c206c656e6774680000000000000000000000602082015250565b6000614b0e603583613f01565b9150614b1982614ab2565b604082019050919050565b60006020820190508181036000830152614b3d81614b01565b9050919050565b7f416464726573732061727261792063616e277420626520656d70747900000000600082015250565b6000614b7a601c83613f01565b9150614b8582614b44565b602082019050919050565b60006020820190508181036000830152614ba981614b6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614bea82613cd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c1c57614c1b614977565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c83602583613f01565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d15602683613f01565b9150614d2082614cb9565b604082019050919050565b60006020820190508181036000830152614d4481614d08565b9050919050565b7f5468652062656e6566696369617279277320616464726573732063616e6e6f7460008201527f2062652030000000000000000000000000000000000000000000000000000000602082015250565b6000614da7602583613f01565b9150614db282614d4b565b604082019050919050565b60006020820190508181036000830152614dd681614d9a565b9050919050565b7f53686172657320616d6f756e742068617320746f20626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000614e39602683613f01565b9150614e4482614ddd565b604082019050919050565b60006020820190508181036000830152614e6881614e2c565b9050919050565b600081519050614e7e81613fa8565b92915050565b600060208284031215614e9a57614e99613d21565b5b6000614ea884828501614e6f565b91505092915050565b7f46756c6c20746f6b656e2076657374696e6720746f206f746865722062656e6560008201527f6669636961726965732e2043616e206e6f7420616464206e65772062656e656660208201527f6963696172790000000000000000000000000000000000000000000000000000604082015250565b6000614f33604683613f01565b9150614f3e82614eb1565b606082019050919050565b60006020820190508181036000830152614f6281614f26565b9050919050565b7f5468652062656e65666963696172792068617320616464656420746f2074686560008201527f2076657374696e6720706f6f6c20616c72656164790000000000000000000000602082015250565b6000614fc5603583613f01565b9150614fd082614f69565b604082019050919050565b60006020820190508181036000830152614ff481614fb8565b9050919050565b7f42616c616e636520696e2074686520636f6e7472616374206973206e6f74206560008201527f6e6f756768000000000000000000000000000000000000000000000000000000602082015250565b6000615057602583613f01565b915061506282614ffb565b604082019050919050565b600060208201905081810360008301526150868161504a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150e9602483613f01565b91506150f48261508d565b604082019050919050565b60006020820190508181036000830152615118816150dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061517b602283613f01565b91506151868261511f565b604082019050919050565b600060208201905081810360008301526151aa8161516e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006151e7601f83613f01565b91506151f2826151b1565b602082019050919050565b60006020820190508181036000830152615216816151da565b9050919050565b600061522882613cd5565b915061523383613cd5565b925082820390508181111561524b5761524a614977565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000615287601d83613f01565b915061529282615251565b602082019050919050565b600060208201905081810360008301526152b68161527a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615319602583613f01565b9150615324826152bd565b604082019050919050565b600060208201905081810360008301526153488161530c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153ab602383613f01565b91506153b68261534f565b604082019050919050565b600060208201905081810360008301526153da8161539e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061543d602683613f01565b9150615448826153e1565b604082019050919050565b6000602082019050818103600083015261546c81615430565b9050919050565b600061547e82613cd5565b915061548983613cd5565b925082820261549781613cd5565b915082820484148315176154ae576154ad614977565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006154ef82613cd5565b91506154fa83613cd5565b92508261550a576155096154b5565b5b828204905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615571602183613f01565b915061557c82615515565b604082019050919050565b600060208201905081810360008301526155a081615564565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615603602283613f01565b915061560e826155a7565b604082019050919050565b60006020820190508181036000830152615632816155f6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061566f602083613f01565b915061567a82615639565b602082019050919050565b6000602082019050818103600083015261569e81615662565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006156e66017836156a5565b91506156f1826156b0565b601782019050919050565b600061570782613ef6565b61571181856156a5565b9350615721818560208601613f12565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006157636011836156a5565b915061576e8261572d565b601182019050919050565b6000615784826156d9565b915061579082856156fc565b915061579b82615756565b91506157a782846156fc565b91508190509392505050565b60006157be82613cd5565b9150600082036157d1576157d0614977565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615812602083613f01565b915061581d826157dc565b602082019050919050565b6000602082019050818103600083015261584181615805565b905091905056fea2646970667358221220952fef96fe8d41ab07ecaba9a10f3f6305a396a242a81cdb6c677ebdd6d9dbcf64736f6c63430008110033

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

0000000000000000000000007d6b90c0dc712e06f55cddc4646e62d64fdc3ecd

-----Decoded View---------------
Arg [0] : _distributionOwner (address): 0x7d6B90c0Dc712e06f55CDDc4646E62d64Fdc3eCd

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007d6b90c0dc712e06f55cddc4646e62d64fdc3ecd


Deployed Bytecode Sourcemap

59134:11894:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61626:31;61635:10;61647:9;61626:31;;;;;;;:::i;:::-;;;;;;;;59134:11894;;;;;59569:59;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;33748:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59670:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47875:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50226:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59429:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61703:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66222:535;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;48995:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51007:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35571:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59238:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36012:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48837:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37156:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66881:2798;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;51711:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61225:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62428:101;;;;;;;;;;;;;:::i;:::-;;49166:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41300:103;;;;;;;;;;;;;:::i;:::-;;61319:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59708:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40652:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34044:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70604:421;;;;;;;;;;;;;:::i;:::-;;48094:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62981:714;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33149:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52452:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60978:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59394:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49499:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64142:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64041:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59321:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63705:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36452:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49755:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62573:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64713:1387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62013:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62777:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41558:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60778:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59569:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33748:204::-;33833:4;33872:32;33857:47;;;:11;:47;;;;:87;;;;33908:36;33932:11;33908:23;:36::i;:::-;33857:87;33850:94;;33748:204;;;:::o;59670:31::-;;;;:::o;47875:100::-;47929:13;47962:5;47955:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47875:100;:::o;50226:201::-;50309:4;50326:13;50342:12;:10;:12::i;:::-;50326:28;;50365:32;50374:5;50381:7;50390:6;50365:8;:32::i;:::-;50415:4;50408:11;;;50226:201;;;;:::o;59429:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61703:302::-;22636:21;:19;:21::i;:::-;59283:31:::1;33640:16;33651:4;33640:10;:16::i;:::-;61844:5:::2;;;;;;;;;;;:14;;;61859:13;61873:9;61844:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61895:12;61913:13;:18;;61939:6;61913:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61894:56;;;61969:7;61961:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61833:172;22668:1:::1;22680:20:::0;:18;:20::i;:::-;61703:302;;;:::o;66222:535::-;66316:7;66334;66352;66425:1;66387:13;:27;66401:12;66387:27;;;;;;;;;;;;;;;:34;;;:39;66383:102;;66451:1;66454;66457:15;66443:30;;;;;;;;66383:102;66498:21;66521:25;66550:50;66577:12;66550;:50::i;:::-;66497:103;;;;66631:13;66655:55;66673:13;:27;66687:12;66673:27;;;;;;;;;;;;;;;:36;;;66655:13;:17;;:55;;;;:::i;:::-;66721:17;66613:136;;;;;;;;66222:535;;;;;;:::o;48995:108::-;49056:7;49083:12;;49076:19;;48995:108;:::o;51007:295::-;51138:4;51155:15;51173:12;:10;:12::i;:::-;51155:30;;51196:38;51212:4;51218:7;51227:6;51196:15;:38::i;:::-;51245:27;51255:4;51261:2;51265:6;51245:9;:27::i;:::-;51290:4;51283:11;;;51007:295;;;;;:::o;35571:131::-;35645:7;35672:6;:12;35679:4;35672:12;;;;;;;;;;;:22;;;35665:29;;35571:131;;;:::o;59238:76::-;59283:31;59238:76;:::o;36012:147::-;36095:18;36108:4;36095:12;:18::i;:::-;33640:16;33651:4;33640:10;:16::i;:::-;36126:25:::1;36137:4;36143:7;36126:10;:25::i;:::-;36012:147:::0;;;:::o;48837:93::-;48895:5;48920:2;48913:9;;48837:93;:::o;37156:218::-;37263:12;:10;:12::i;:::-;37252:23;;:7;:23;;;37244:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;37340:26;37352:4;37358:7;37340:11;:26::i;:::-;37156:218;;:::o;66881:2798::-;66961:7;66970;67040:1;67003:13;:27;67017:12;67003:27;;;;;;;;;;;;;;;:34;;;:38;66995:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;67179:1;67138:13;:27;67152:12;67138:27;;;;;;;;;;;;;;;:37;;;:42;67134:164;;67205:13;:27;67219:12;67205:27;;;;;;;;;;;;;;;:36;;;67243:13;:27;67257:12;67243:27;;;;;;;;;;;;;;;:42;;;67197:89;;;;;;67134:164;67413:1;67369:13;:27;67383:12;67369:27;;;;;;;;;;;;;;;:41;;;:45;:90;;;;;67458:1;67418:13;:27;67432:12;67418:27;;;;;;;;;;;;;;;:36;;;:41;67369:90;67365:176;;;67484:13;:27;67498:12;67484:27;;;;;;;;;;;;;;;:41;;;67527:1;67476:53;;;;;;67365:176;67651:1;67611:13;:27;67625:12;67611:27;;;;;;;;;;;;;;;:36;;;:41;67607:156;;67677:13;:27;67691:12;67677:27;;;;;;;;;;;;;;;:34;;;67713:13;:27;67727:12;67713:27;;;;;;;;;;;;;;;:37;;;67669:82;;;;;;67607:156;67837:13;:27;67851:12;67837:27;;;;;;;;;;;;;;;:37;;;67819:15;:55;67815:177;;;67899:13;:27;67913:12;67899:27;;;;;;;;;;;;;;;:36;;;67937:13;:27;67951:12;67937:27;;;;;;;;;;;;;;;:42;;;67891:89;;;;;;67815:177;68055:79;68097:13;:27;68111:12;68097:27;;;;;;;;;;;;;;;:36;;;68055:13;:27;68069:12;68055:27;;;;;;;;;;;;;;;:37;;;:41;;:79;;;;:::i;:::-;68036:15;:98;68032:255;;68159:13;:27;68173:12;68159:27;;;;;;;;;;;;;;;:34;;;68195:79;68237:13;:27;68251:12;68237:27;;;;;;;;;;;;;;;:36;;;68195:13;:27;68209:12;68195:27;;;;;;;;;;;;;;;:37;;;:41;;:79;;;;:::i;:::-;68151:124;;;;;;68032:255;68404:1;68359:13;:27;68373:12;68359:27;;;;;;;;;;;;;;;:42;;;:46;:162;;;;;68479:13;:27;68493:12;68479:27;;;;;;;;;;;;;;;:42;;;68440:13;:27;68454:12;68440:27;;;;;;;;;;;;;;;:36;;;:81;;;;:::i;:::-;68422:15;:99;68359:162;68341:308;;;68556:13;:27;68570:12;68556:27;;;;;;;;;;;;;;;:36;;;68594:13;:27;68608:12;68594:27;;;;;;;;;;;;;;;:42;;;68548:89;;;;;;68341:308;68701:25;68729:13;:27;68743:12;68729:27;;;;;;;;;;;;;;;:36;;;68701:64;;68776:24;68848:1;68803:13;:27;68817:12;68803:27;;;;;;;;;;;;;;;:42;;;:46;:149;;68915:13;:27;68929:12;68915:27;;;;;;;;;;;;;;;:37;;;68803:149;;;68861:13;:27;68875:12;68861:27;;;;;;;;;;;;;;;:42;;;68803:149;68776:176;;68965:25;69001:249;69027:58;69048:13;:27;69062:12;69048:27;;;;;;;;;;;;;;;:36;;;69027:16;:20;;:58;;;;:::i;:::-;69008:15;:77;69001:249;;69122:24;69144:1;69122:17;:21;;:24;;;;:::i;:::-;69102:44;;69180:58;69201:13;:27;69215:12;69201:27;;;;;;;;;;;;;;;:36;;;69180:16;:20;;:58;;;;:::i;:::-;69161:77;;69001:249;;;69286:1;69266:17;:21;69262:353;;;69304:23;69330:198;69491:13;:27;69505:12;69491:27;;;;;;;;;;;;;;;:36;;;69330:142;69412:59;69434:13;:27;69448:12;69434:27;;;;;;;;;;;;;;;:36;;;69412:17;:21;;:59;;;;:::i;:::-;69330:13;:27;69344:12;69330:27;;;;;;;;;;;;;;;:63;;;:81;;:142;;;;:::i;:::-;:160;;:198;;;;:::i;:::-;69304:224;;69565:38;69587:15;69565:17;:21;;:38;;;;:::i;:::-;69545:58;;69289:326;69262:353;69635:17;69654:16;69627:44;;;;;;;66881:2798;;;;:::o;51711:238::-;51799:4;51816:13;51832:12;:10;:12::i;:::-;51816:28;;51855:64;51864:5;51871:7;51908:10;51880:25;51890:5;51897:7;51880:9;:25::i;:::-;:38;;;;:::i;:::-;51855:8;:64::i;:::-;51937:4;51930:11;;;51711:238;;;;:::o;61225:86::-;61277:26;61283:10;61295:7;61277:5;:26::i;:::-;61225:86;:::o;62428:101::-;22636:21;:19;:21::i;:::-;62495:26:::1;62510:10;62495:26;;;;;;:::i;:::-;;;;;;;;22680:20:::0;:18;:20::i;:::-;62428:101::o;49166:127::-;49240:7;49267:9;:18;49277:7;49267:18;;;;;;;;;;;;;;;;49260:25;;49166:127;;;:::o;41300:103::-;40538:13;:11;:13::i;:::-;41365:30:::1;41392:1;41365:18;:30::i;:::-;41300:103::o:0;61319:246::-;61414:1;61397:19;;:5;:19;;;61389:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;61456:69;61465:5;61472:10;61484:40;61516:7;61484:27;61494:5;61500:10;61484:9;:27::i;:::-;:31;;:40;;;;:::i;:::-;61456:8;:69::i;:::-;61536:21;61542:5;61549:7;61536:5;:21::i;:::-;61319:246;;:::o;59708:30::-;;;;:::o;40652:87::-;40698:7;40725:6;;;;;;;;;;;40718:13;;40652:87;:::o;34044:147::-;34130:4;34154:6;:12;34161:4;34154:12;;;;;;;;;;;:20;;:29;34175:7;34154:29;;;;;;;;;;;;;;;;;;;;;;;;;34147:36;;34044:147;;;;:::o;70604:421::-;64561:1;64526:13;:25;64540:10;64526:25;;;;;;;;;;;;;;;:32;;;:36;64518:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;70733:25:::1;70769::::0;70808:28:::1;70825:10;70808:16;:28::i;:::-;70711:125;;;;;70929:1;70909:17;:21;70905:113;;;70947:59;70957:10;70969:17;70988;70947:9;:59::i;:::-;;70905:113;70656:369;;70604:421::o:0;48094:104::-;48150:13;48183:7;48176:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48094:104;:::o;62981:714::-;22636:21;:19;:21::i;:::-;59283:31:::1;33640:16;33651:4;33640:10;:16::i;:::-;63152:11:::2;63166:10;:17;63152:31;;63317:6;:13;63307:6;:23;63299:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;63417:1;63407:6;:11:::0;63398:52:::2;;;;;;;;;;;;:::i;:::-;;;;;;;;;63467:9;63463:173;63482:6;63480:1;:8;63463:173;;;63519:12;63535:5;;;;;;;;;;;:14;;;63550:10;63561:1;63550:13;;;;;;;;:::i;:::-;;;;;;;;63564:6;63571:1;63564:9;;;;;;;;:::i;:::-;;;;;;;;63535:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63518:56;;63596:7;63588:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63504:132;63490:3;;;;;:::i;:::-;;;;63463:173;;;;63656:5;;;;;;;;;;;:14;;;63671:10;63682:4;63656:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;63141:554;22668:1:::1;22680:20:::0;:18;:20::i;:::-;62981:714;;;;:::o;33149:49::-;33194:4;33149:49;;;:::o;52452:436::-;52545:4;52562:13;52578:12;:10;:12::i;:::-;52562:28;;52601:24;52628:25;52638:5;52645:7;52628:9;:25::i;:::-;52601:52;;52692:15;52672:16;:35;;52664:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;52785:60;52794:5;52801:7;52829:15;52810:16;:34;52785:8;:60::i;:::-;52876:4;52869:11;;;;52452:436;;;;:::o;60978:239::-;40538:13;:11;:13::i;:::-;61074:1:::1;61054:22;;:8;:22;;::::0;61046:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;61130:28;61149:8;61130:18;:28::i;:::-;61169:40;33194:4;61180:18:::0;::::1;61200:8;61169:10;:40::i;:::-;60978:239:::0;:::o;59394:28::-;;;;;;;;;;;;;:::o;49499:193::-;49578:4;49595:13;49611:12;:10;:12::i;:::-;49595:28;;49634;49644:5;49651:2;49655:6;49634:9;:28::i;:::-;49680:4;49673:11;;;49499:193;;;;:::o;64142:234::-;22636:21;:19;:21::i;:::-;59283:31:::1;33640:16;33651:4;33640:10;:16::i;:::-;64266:12:::2;64284:13;:18;;64310:6;64284:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64265:56;;;64340:7;64332:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;64254:122;22668:1:::1;22680:20:::0;:18;:20::i;:::-;64142:234;;:::o;64041:92::-;64094:6;64120:5;;;;;;;;;;;64113:12;;64041:92;:::o;59321:60::-;59358:23;59321:60;:::o;63705:328::-;22636:21;:19;:21::i;:::-;59283:31:::1;33640:16;33651:4;33640:10;:16::i;:::-;63863:12:::2;63879:8;:17;;;63897:13;63911:14;63879:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63862:64;;63945:7;63937:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63989;63996:13;64010:14;63989:36;;;;;;;:::i;:::-;;;;;;;;63841:192;22668:1:::1;22680:20:::0;:18;:20::i;:::-;63705:328;;;:::o;36452:149::-;36536:18;36549:4;36536:12;:18::i;:::-;33640:16;33651:4;33640:10;:16::i;:::-;36567:26:::1;36579:4;36585:7;36567:11;:26::i;:::-;36452:149:::0;;;:::o;49755:151::-;49844:7;49871:11;:18;49883:5;49871:18;;;;;;;;;;;;;;;:27;49890:7;49871:27;;;;;;;;;;;;;;;;49864:34;;49755:151;;;;:::o;62573:196::-;40538:13;:11;:13::i;:::-;62670:40:::1;59283:31;62697:12;62670:6;:40::i;:::-;62721;59283:31;62752:8;62721:10;:40::i;:::-;62573:196:::0;;:::o;64713:1387::-;40538:13;:11;:13::i;:::-;64996:1:::1;64972:26;;:12;:26;;::::0;64950:113:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;65094:1;65084:7;:11;65076:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;65203:5;;;;;;;;;;;:17;;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65171:28;65191:7;65171:15;;:19;;:28;;;;:::i;:::-;:51;;65149:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;65391:1;65353:13;:27;65367:12;65353:27;;;;;;;;;;;;;;;:34;;;:39;65331:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;65526:30;65559:27;65571:14;65559:7;:11;;:27;;;;:::i;:::-;65526:60;;65597:24;65624:35;65645:13;65624:16;;:20;;:35;;;;:::i;:::-;65597:62;;65700:283;;;;;;;;65733:12;65700:283;;;;;;65760:13;65700:283;;;;65788:9;65700:283;;;;65812:7;65700:283;;;;65834:22;65700:283;;;;65871:1;65700:283;;;;65887:14;65700:283;;;;65916:16;65700:283;;;;65947:9;65700:283;;;;65971:1;65700:283;;::::0;65670:13:::1;:27;65684:12;65670:27;;;;;;;;;;;;;;;:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65996:20;66022:12;65996:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66064:28;66084:7;66064:15;;:19;;:28;;;;:::i;:::-;66046:15;:46;;;;64939:1161;;64713:1387:::0;;;;;;:::o;62013:406::-;22636:21;:19;:21::i;:::-;59283:31:::1;33640:16;33651:4;33640:10;:16::i;:::-;62134:17:::2;62154:5;;;;;;;;;;;:15;;;62178:4;62154:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62134:50;;62213:12;62203:6;:22;;62195:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;62278:12;62294:5;;;;;;;;;;;:14;;;62309:3;62313:6;62294:26;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62277:43;;62339:7;62331:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;62383:28;62400:3;62404:6;62383:28;;;;;;;:::i;:::-;;;;;;;;62123:296;;22668:1:::1;22680:20:::0;:18;:20::i;:::-;62013:406;;:::o;62777:112::-;40538:13;:11;:13::i;:::-;62853:28:::1;62865:5;62872:8;62853:11;:28::i;:::-;62777:112:::0;;:::o;41558:201::-;40538:13;:11;:13::i;:::-;41667:1:::1;41647:22;;:8;:22;;::::0;41639:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41723:28;41742:8;41723:18;:28::i;:::-;41558:201:::0;:::o;60778:192::-;22636:21;:19;:21::i;:::-;40538:13:::1;:11;:13::i;:::-;60897:1:::2;60877:17;:21;60873:90;;;60934:17;60915:16;:36;;;;60873:90;22680:20:::0;:18;:20::i;:::-;60778:192;:::o;1887:157::-;1972:4;2011:25;1996:40;;;:11;:40;;;;1989:47;;1887:157;;;:::o;30957:98::-;31010:7;31037:10;31030:17;;30957:98;:::o;56479:380::-;56632:1;56615:19;;:5;:19;;;56607:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56713:1;56694:21;;:7;:21;;;56686:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56797:6;56767:11;:18;56779:5;56767:18;;;;;;;;;;;;;;;:27;56786:7;56767:27;;;;;;;;;;;;;;;:36;;;;56835:7;56819:32;;56828:5;56819:32;;;56844:6;56819:32;;;;;;:::i;:::-;;;;;;;;56479:380;;;:::o;22716:293::-;22118:1;22850:7;;:19;22842:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22118:1;22983:7;:18;;;;22716:293::o;34495:105::-;34562:30;34573:4;34579:12;:10;:12::i;:::-;34562:10;:30::i;:::-;34495:105;:::o;23017:213::-;22074:1;23200:7;:22;;;;23017:213::o;26494:98::-;26552:7;26583:1;26579;:5;;;;:::i;:::-;26572:12;;26494:98;;;;:::o;57150:453::-;57285:24;57312:25;57322:5;57329:7;57312:9;:25::i;:::-;57285:52;;57372:17;57352:16;:37;57348:248;;57434:6;57414:16;:26;;57406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57518:51;57527:5;57534:7;57562:6;57543:16;:25;57518:8;:51::i;:::-;57348:248;57274:329;57150:453;;;:::o;53358:840::-;53505:1;53489:18;;:4;:18;;;53481:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53582:1;53568:16;;:2;:16;;;53560:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;53637:38;53658:4;53664:2;53668:6;53637:20;:38::i;:::-;53688:19;53710:9;:15;53720:4;53710:15;;;;;;;;;;;;;;;;53688:37;;53759:6;53744:11;:21;;53736:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;53876:6;53862:11;:20;53844:9;:15;53854:4;53844:15;;;;;;;;;;;;;;;:38;;;;54079:6;54062:9;:13;54072:2;54062:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;54129:2;54114:26;;54123:4;54114:26;;;54133:6;54114:26;;;;;;:::i;:::-;;;;;;;;54153:37;54173:4;54179:2;54183:6;54153:19;:37::i;:::-;53470:728;53358:840;;;:::o;38753:238::-;38837:22;38845:4;38851:7;38837;:22::i;:::-;38832:152;;38908:4;38876:6;:12;38883:4;38876:12;;;;;;;;;;;:20;;:29;38897:7;38876:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;38959:12;:10;:12::i;:::-;38932:40;;38950:7;38932:40;;38944:4;38932:40;;;;;;;;;;38832:152;38753:238;;:::o;39171:239::-;39255:22;39263:4;39269:7;39255;:22::i;:::-;39251:152;;;39326:5;39294:6;:12;39301:4;39294:12;;;;;;;;;;;:20;;:29;39315:7;39294:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;39378:12;:10;:12::i;:::-;39351:40;;39369:7;39351:40;;39363:4;39351:40;;;;;;;;;;39251:152;39171:239;;:::o;26113:98::-;26171:7;26202:1;26198;:5;;;;:::i;:::-;26191:12;;26113:98;;;;:::o;26851:::-;26909:7;26940:1;26936;:5;;;;:::i;:::-;26929:12;;26851:98;;;;:::o;27250:::-;27308:7;27339:1;27335;:5;;;;:::i;:::-;27328:12;;27250:98;;;;:::o;55366:675::-;55469:1;55450:21;;:7;:21;;;55442:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;55522:49;55543:7;55560:1;55564:6;55522:20;:49::i;:::-;55584:22;55609:9;:18;55619:7;55609:18;;;;;;;;;;;;;;;;55584:43;;55664:6;55646:14;:24;;55638:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;55783:6;55766:14;:23;55745:9;:18;55755:7;55745:18;;;;;;;;;;;;;;;:44;;;;55900:6;55884:12;;:22;;;;;;;;;;;55961:1;55935:37;;55944:7;55935:37;;;55965:6;55935:37;;;;;;:::i;:::-;;;;;;;;55985:48;56005:7;56022:1;56026:6;55985:19;:48::i;:::-;55431:610;55366:675;;:::o;40817:132::-;40892:12;:10;:12::i;:::-;40881:23;;:7;:5;:7::i;:::-;:23;;;40873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40817:132::o;41919:191::-;41993:16;42012:6;;;;;;;;;;;41993:25;;42038:8;42029:6;;:17;;;;;;;;;;;;;;;;;;42093:8;42062:40;;42083:8;42062:40;;;;;;;;;;;;41982:128;41919:191;:::o;69768:751::-;69905:4;69944:17;69926:15;:35;69922:80;;;69985:5;69978:12;;;;69922:80;70094:49;70135:7;70094:13;:27;70108:12;70094:27;;;;;;;;;;;;;;;:36;;;:40;;:49;;;;:::i;:::-;70055:13;:27;70069:12;70055:27;;;;;;;;;;;;;;;:36;;:88;;;;70199:17;70154:13;:27;70168:12;70154:27;;;;;;;;;;;;;;;:42;;:62;;;;70291:12;70275:38;;;70305:7;70275:38;;;;;;:::i;:::-;;;;;;;;70389:12;70405:5;;;;;;;;;;;:14;;;70420:12;70434:7;70405:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70388:54;;70461:7;70453:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;70507:4;70500:11;;;69768:751;;;;;;:::o;38081:112::-;38160:25;38171:4;38177:7;38160:10;:25::i;:::-;38081:112;;:::o;34890:492::-;34979:22;34987:4;34993:7;34979;:22::i;:::-;34974:401;;35167:28;35187:7;35167:19;:28::i;:::-;35268:38;35296:4;35288:13;;35303:2;35268:19;:38::i;:::-;35072:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35018:345;;;;;;;;;;;:::i;:::-;;;;;;;;34974:401;34890:492;;:::o;58203:125::-;;;;:::o;58932:124::-;;;;:::o;17092:151::-;17150:13;17183:52;17211:4;17195:22;;15247:2;17183:52;;:11;:52::i;:::-;17176:59;;17092:151;;;:::o;16488:447::-;16563:13;16589:19;16634:1;16625:6;16621:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16611:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16589:47;;16647:15;:6;16654:1;16647:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16673;:6;16680:1;16673:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16704:9;16729:1;16720:6;16716:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16704:26;;16699:131;16736:1;16732;:5;16699:131;;;16771:8;16788:3;16780:5;:11;16771:21;;;;;;;:::i;:::-;;;;;16759:6;16766:1;16759:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;16817:1;16807:11;;;;;16739:3;;;;:::i;:::-;;;16699:131;;;;16857:1;16848:5;:10;16840:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;16920:6;16906:21;;;16488:447;;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:77::-;402:7;431:5;420:16;;365:77;;;:::o;448:118::-;535:24;553:5;535:24;:::i;:::-;530:3;523:37;448:118;;:::o;572:332::-;693:4;731:2;720:9;716:18;708:26;;744:71;812:1;801:9;797:17;788:6;744:71;:::i;:::-;825:72;893:2;882:9;878:18;869:6;825:72;:::i;:::-;572:332;;;;;:::o;910:75::-;943:6;976:2;970:9;960:19;;910:75;:::o;991:117::-;1100:1;1097;1090:12;1114:117;1223:1;1220;1213:12;1237:122;1310:24;1328:5;1310:24;:::i;:::-;1303:5;1300:35;1290:63;;1349:1;1346;1339:12;1290:63;1237:122;:::o;1365:139::-;1411:5;1449:6;1436:20;1427:29;;1465:33;1492:5;1465:33;:::i;:::-;1365:139;;;;:::o;1510:329::-;1569:6;1618:2;1606:9;1597:7;1593:23;1589:32;1586:119;;;1624:79;;:::i;:::-;1586:119;1744:1;1769:53;1814:7;1805:6;1794:9;1790:22;1769:53;:::i;:::-;1759:63;;1715:117;1510:329;;;;:::o;1845:1219::-;2190:4;2228:3;2217:9;2213:19;2205:27;;2242:71;2310:1;2299:9;2295:17;2286:6;2242:71;:::i;:::-;2323:72;2391:2;2380:9;2376:18;2367:6;2323:72;:::i;:::-;2405;2473:2;2462:9;2458:18;2449:6;2405:72;:::i;:::-;2487;2555:2;2544:9;2540:18;2531:6;2487:72;:::i;:::-;2569:73;2637:3;2626:9;2622:19;2613:6;2569:73;:::i;:::-;2652;2720:3;2709:9;2705:19;2696:6;2652:73;:::i;:::-;2735;2803:3;2792:9;2788:19;2779:6;2735:73;:::i;:::-;2818;2886:3;2875:9;2871:19;2862:6;2818:73;:::i;:::-;2901;2969:3;2958:9;2954:19;2945:6;2901:73;:::i;:::-;2984;3052:3;3041:9;3037:19;3028:6;2984:73;:::i;:::-;1845:1219;;;;;;;;;;;;;:::o;3070:149::-;3106:7;3146:66;3139:5;3135:78;3124:89;;3070:149;;;:::o;3225:120::-;3297:23;3314:5;3297:23;:::i;:::-;3290:5;3287:34;3277:62;;3335:1;3332;3325:12;3277:62;3225:120;:::o;3351:137::-;3396:5;3434:6;3421:20;3412:29;;3450:32;3476:5;3450:32;:::i;:::-;3351:137;;;;:::o;3494:327::-;3552:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:119;;;3607:79;;:::i;:::-;3569:119;3727:1;3752:52;3796:7;3787:6;3776:9;3772:22;3752:52;:::i;:::-;3742:62;;3698:116;3494:327;;;;:::o;3827:90::-;3861:7;3904:5;3897:13;3890:21;3879:32;;3827:90;;;:::o;3923:109::-;4004:21;4019:5;4004:21;:::i;:::-;3999:3;3992:34;3923:109;;:::o;4038:210::-;4125:4;4163:2;4152:9;4148:18;4140:26;;4176:65;4238:1;4227:9;4223:17;4214:6;4176:65;:::i;:::-;4038:210;;;;:::o;4254:222::-;4347:4;4385:2;4374:9;4370:18;4362:26;;4398:71;4466:1;4455:9;4451:17;4442:6;4398:71;:::i;:::-;4254:222;;;;:::o;4482:99::-;4534:6;4568:5;4562:12;4552:22;;4482:99;;;:::o;4587:169::-;4671:11;4705:6;4700:3;4693:19;4745:4;4740:3;4736:14;4721:29;;4587:169;;;;:::o;4762:246::-;4843:1;4853:113;4867:6;4864:1;4861:13;4853:113;;;4952:1;4947:3;4943:11;4937:18;4933:1;4928:3;4924:11;4917:39;4889:2;4886:1;4882:10;4877:15;;4853:113;;;5000:1;4991:6;4986:3;4982:16;4975:27;4824:184;4762:246;;;:::o;5014:102::-;5055:6;5106:2;5102:7;5097:2;5090:5;5086:14;5082:28;5072:38;;5014:102;;;:::o;5122:377::-;5210:3;5238:39;5271:5;5238:39;:::i;:::-;5293:71;5357:6;5352:3;5293:71;:::i;:::-;5286:78;;5373:65;5431:6;5426:3;5419:4;5412:5;5408:16;5373:65;:::i;:::-;5463:29;5485:6;5463:29;:::i;:::-;5458:3;5454:39;5447:46;;5214:285;5122:377;;;;:::o;5505:313::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5705:9;5699:4;5695:20;5691:1;5680:9;5676:17;5669:47;5733:78;5806:4;5797:6;5733:78;:::i;:::-;5725:86;;5505:313;;;;:::o;5824:122::-;5897:24;5915:5;5897:24;:::i;:::-;5890:5;5887:35;5877:63;;5936:1;5933;5926:12;5877:63;5824:122;:::o;5952:139::-;5998:5;6036:6;6023:20;6014:29;;6052:33;6079:5;6052:33;:::i;:::-;5952:139;;;;:::o;6097:474::-;6165:6;6173;6222:2;6210:9;6201:7;6197:23;6193:32;6190:119;;;6228:79;;:::i;:::-;6190:119;6348:1;6373:53;6418:7;6409:6;6398:9;6394:22;6373:53;:::i;:::-;6363:63;;6319:117;6475:2;6501:53;6546:7;6537:6;6526:9;6522:22;6501:53;:::i;:::-;6491:63;;6446:118;6097:474;;;;;:::o;6577:329::-;6636:6;6685:2;6673:9;6664:7;6660:23;6656:32;6653:119;;;6691:79;;:::i;:::-;6653:119;6811:1;6836:53;6881:7;6872:6;6861:9;6857:22;6836:53;:::i;:::-;6826:63;;6782:117;6577:329;;;;:::o;6912:222::-;7005:4;7043:2;7032:9;7028:18;7020:26;;7056:71;7124:1;7113:9;7109:17;7100:6;7056:71;:::i;:::-;6912:222;;;;:::o;7140:619::-;7217:6;7225;7233;7282:2;7270:9;7261:7;7257:23;7253:32;7250:119;;;7288:79;;:::i;:::-;7250:119;7408:1;7433:53;7478:7;7469:6;7458:9;7454:22;7433:53;:::i;:::-;7423:63;;7379:117;7535:2;7561:53;7606:7;7597:6;7586:9;7582:22;7561:53;:::i;:::-;7551:63;;7506:118;7663:2;7689:53;7734:7;7725:6;7714:9;7710:22;7689:53;:::i;:::-;7679:63;;7634:118;7140:619;;;;;:::o;7765:442::-;7914:4;7952:2;7941:9;7937:18;7929:26;;7965:71;8033:1;8022:9;8018:17;8009:6;7965:71;:::i;:::-;8046:72;8114:2;8103:9;8099:18;8090:6;8046:72;:::i;:::-;8128;8196:2;8185:9;8181:18;8172:6;8128:72;:::i;:::-;7765:442;;;;;;:::o;8213:619::-;8290:6;8298;8306;8355:2;8343:9;8334:7;8330:23;8326:32;8323:119;;;8361:79;;:::i;:::-;8323:119;8481:1;8506:53;8551:7;8542:6;8531:9;8527:22;8506:53;:::i;:::-;8496:63;;8452:117;8608:2;8634:53;8679:7;8670:6;8659:9;8655:22;8634:53;:::i;:::-;8624:63;;8579:118;8736:2;8762:53;8807:7;8798:6;8787:9;8783:22;8762:53;:::i;:::-;8752:63;;8707:118;8213:619;;;;;:::o;8838:77::-;8875:7;8904:5;8893:16;;8838:77;;;:::o;8921:122::-;8994:24;9012:5;8994:24;:::i;:::-;8987:5;8984:35;8974:63;;9033:1;9030;9023:12;8974:63;8921:122;:::o;9049:139::-;9095:5;9133:6;9120:20;9111:29;;9149:33;9176:5;9149:33;:::i;:::-;9049:139;;;;:::o;9194:329::-;9253:6;9302:2;9290:9;9281:7;9277:23;9273:32;9270:119;;;9308:79;;:::i;:::-;9270:119;9428:1;9453:53;9498:7;9489:6;9478:9;9474:22;9453:53;:::i;:::-;9443:63;;9399:117;9194:329;;;;:::o;9529:118::-;9616:24;9634:5;9616:24;:::i;:::-;9611:3;9604:37;9529:118;;:::o;9653:222::-;9746:4;9784:2;9773:9;9769:18;9761:26;;9797:71;9865:1;9854:9;9850:17;9841:6;9797:71;:::i;:::-;9653:222;;;;:::o;9881:474::-;9949:6;9957;10006:2;9994:9;9985:7;9981:23;9977:32;9974:119;;;10012:79;;:::i;:::-;9974:119;10132:1;10157:53;10202:7;10193:6;10182:9;10178:22;10157:53;:::i;:::-;10147:63;;10103:117;10259:2;10285:53;10330:7;10321:6;10310:9;10306:22;10285:53;:::i;:::-;10275:63;;10230:118;9881:474;;;;;:::o;10361:86::-;10396:7;10436:4;10429:5;10425:16;10414:27;;10361:86;;;:::o;10453:112::-;10536:22;10552:5;10536:22;:::i;:::-;10531:3;10524:35;10453:112;;:::o;10571:214::-;10660:4;10698:2;10687:9;10683:18;10675:26;;10711:67;10775:1;10764:9;10760:17;10751:6;10711:67;:::i;:::-;10571:214;;;;:::o;10791:332::-;10912:4;10950:2;10939:9;10935:18;10927:26;;10963:71;11031:1;11020:9;11016:17;11007:6;10963:71;:::i;:::-;11044:72;11112:2;11101:9;11097:18;11088:6;11044:72;:::i;:::-;10791:332;;;;;:::o;11129:117::-;11238:1;11235;11228:12;11252:180;11300:77;11297:1;11290:88;11397:4;11394:1;11387:15;11421:4;11418:1;11411:15;11438:281;11521:27;11543:4;11521:27;:::i;:::-;11513:6;11509:40;11651:6;11639:10;11636:22;11615:18;11603:10;11600:34;11597:62;11594:88;;;11662:18;;:::i;:::-;11594:88;11702:10;11698:2;11691:22;11481:238;11438:281;;:::o;11725:129::-;11759:6;11786:20;;:::i;:::-;11776:30;;11815:33;11843:4;11835:6;11815:33;:::i;:::-;11725:129;;;:::o;11860:311::-;11937:4;12027:18;12019:6;12016:30;12013:56;;;12049:18;;:::i;:::-;12013:56;12099:4;12091:6;12087:17;12079:25;;12159:4;12153;12149:15;12141:23;;11860:311;;;:::o;12177:117::-;12286:1;12283;12276:12;12317:710;12413:5;12438:81;12454:64;12511:6;12454:64;:::i;:::-;12438:81;:::i;:::-;12429:90;;12539:5;12568:6;12561:5;12554:21;12602:4;12595:5;12591:16;12584:23;;12655:4;12647:6;12643:17;12635:6;12631:30;12684:3;12676:6;12673:15;12670:122;;;12703:79;;:::i;:::-;12670:122;12818:6;12801:220;12835:6;12830:3;12827:15;12801:220;;;12910:3;12939:37;12972:3;12960:10;12939:37;:::i;:::-;12934:3;12927:50;13006:4;13001:3;12997:14;12990:21;;12877:144;12861:4;12856:3;12852:14;12845:21;;12801:220;;;12805:21;12419:608;;12317:710;;;;;:::o;13050:370::-;13121:5;13170:3;13163:4;13155:6;13151:17;13147:27;13137:122;;13178:79;;:::i;:::-;13137:122;13295:6;13282:20;13320:94;13410:3;13402:6;13395:4;13387:6;13383:17;13320:94;:::i;:::-;13311:103;;13127:293;13050:370;;;;:::o;13426:311::-;13503:4;13593:18;13585:6;13582:30;13579:56;;;13615:18;;:::i;:::-;13579:56;13665:4;13657:6;13653:17;13645:25;;13725:4;13719;13715:15;13707:23;;13426:311;;;:::o;13760:710::-;13856:5;13881:81;13897:64;13954:6;13897:64;:::i;:::-;13881:81;:::i;:::-;13872:90;;13982:5;14011:6;14004:5;13997:21;14045:4;14038:5;14034:16;14027:23;;14098:4;14090:6;14086:17;14078:6;14074:30;14127:3;14119:6;14116:15;14113:122;;;14146:79;;:::i;:::-;14113:122;14261:6;14244:220;14278:6;14273:3;14270:15;14244:220;;;14353:3;14382:37;14415:3;14403:10;14382:37;:::i;:::-;14377:3;14370:50;14449:4;14444:3;14440:14;14433:21;;14320:144;14304:4;14299:3;14295:14;14288:21;;14244:220;;;14248:21;13862:608;;13760:710;;;;;:::o;14493:370::-;14564:5;14613:3;14606:4;14598:6;14594:17;14590:27;14580:122;;14621:79;;:::i;:::-;14580:122;14738:6;14725:20;14763:94;14853:3;14845:6;14838:4;14830:6;14826:17;14763:94;:::i;:::-;14754:103;;14570:293;14493:370;;;;:::o;14869:1185::-;15005:6;15013;15021;15029;15078:3;15066:9;15057:7;15053:23;15049:33;15046:120;;;15085:79;;:::i;:::-;15046:120;15233:1;15222:9;15218:17;15205:31;15263:18;15255:6;15252:30;15249:117;;;15285:79;;:::i;:::-;15249:117;15390:78;15460:7;15451:6;15440:9;15436:22;15390:78;:::i;:::-;15380:88;;15176:302;15545:2;15534:9;15530:18;15517:32;15576:18;15568:6;15565:30;15562:117;;;15598:79;;:::i;:::-;15562:117;15703:78;15773:7;15764:6;15753:9;15749:22;15703:78;:::i;:::-;15693:88;;15488:303;15830:2;15856:53;15901:7;15892:6;15881:9;15877:22;15856:53;:::i;:::-;15846:63;;15801:118;15958:2;15984:53;16029:7;16020:6;16009:9;16005:22;15984:53;:::i;:::-;15974:63;;15929:118;14869:1185;;;;;;;:::o;16060:60::-;16088:3;16109:5;16102:12;;16060:60;;;:::o;16126:142::-;16176:9;16209:53;16227:34;16236:24;16254:5;16236:24;:::i;:::-;16227:34;:::i;:::-;16209:53;:::i;:::-;16196:66;;16126:142;;;:::o;16274:126::-;16324:9;16357:37;16388:5;16357:37;:::i;:::-;16344:50;;16274:126;;;:::o;16406:141::-;16471:9;16504:37;16535:5;16504:37;:::i;:::-;16491:50;;16406:141;;;:::o;16553:161::-;16655:52;16701:5;16655:52;:::i;:::-;16650:3;16643:65;16553:161;;:::o;16720:252::-;16828:4;16866:2;16855:9;16851:18;16843:26;;16879:86;16962:1;16951:9;16947:17;16938:6;16879:86;:::i;:::-;16720:252;;;;:::o;16978:111::-;17030:7;17059:24;17077:5;17059:24;:::i;:::-;17048:35;;16978:111;;;:::o;17095:152::-;17183:39;17216:5;17183:39;:::i;:::-;17176:5;17173:50;17163:78;;17237:1;17234;17227:12;17163:78;17095:152;:::o;17253:169::-;17314:5;17352:6;17339:20;17330:29;;17368:48;17410:5;17368:48;:::i;:::-;17253:169;;;;:::o;17428:649::-;17520:6;17528;17536;17585:2;17573:9;17564:7;17560:23;17556:32;17553:119;;;17591:79;;:::i;:::-;17553:119;17711:1;17736:68;17796:7;17787:6;17776:9;17772:22;17736:68;:::i;:::-;17726:78;;17682:132;17853:2;17879:53;17924:7;17915:6;17904:9;17900:22;17879:53;:::i;:::-;17869:63;;17824:118;17981:2;18007:53;18052:7;18043:6;18032:9;18028:22;18007:53;:::i;:::-;17997:63;;17952:118;17428:649;;;;;:::o;18083:474::-;18151:6;18159;18208:2;18196:9;18187:7;18183:23;18179:32;18176:119;;;18214:79;;:::i;:::-;18176:119;18334:1;18359:53;18404:7;18395:6;18384:9;18380:22;18359:53;:::i;:::-;18349:63;;18305:117;18461:2;18487:53;18532:7;18523:6;18512:9;18508:22;18487:53;:::i;:::-;18477:63;;18432:118;18083:474;;;;;:::o;18563:1057::-;18667:6;18675;18683;18691;18699;18707;18756:3;18744:9;18735:7;18731:23;18727:33;18724:120;;;18763:79;;:::i;:::-;18724:120;18883:1;18908:53;18953:7;18944:6;18933:9;18929:22;18908:53;:::i;:::-;18898:63;;18854:117;19010:2;19036:53;19081:7;19072:6;19061:9;19057:22;19036:53;:::i;:::-;19026:63;;18981:118;19138:2;19164:53;19209:7;19200:6;19189:9;19185:22;19164:53;:::i;:::-;19154:63;;19109:118;19266:2;19292:53;19337:7;19328:6;19317:9;19313:22;19292:53;:::i;:::-;19282:63;;19237:118;19394:3;19421:53;19466:7;19457:6;19446:9;19442:22;19421:53;:::i;:::-;19411:63;;19365:119;19523:3;19550:53;19595:7;19586:6;19575:9;19571:22;19550:53;:::i;:::-;19540:63;;19494:119;18563:1057;;;;;;;;:::o;19626:180::-;19674:77;19671:1;19664:88;19771:4;19768:1;19761:15;19795:4;19792:1;19785:15;19812:320;19856:6;19893:1;19887:4;19883:12;19873:22;;19940:1;19934:4;19930:12;19961:18;19951:81;;20017:4;20009:6;20005:17;19995:27;;19951:81;20079:2;20071:6;20068:14;20048:18;20045:38;20042:84;;20098:18;;:::i;:::-;20042:84;19863:269;19812:320;;;:::o;20138:116::-;20208:21;20223:5;20208:21;:::i;:::-;20201:5;20198:32;20188:60;;20244:1;20241;20234:12;20188:60;20138:116;:::o;20260:137::-;20314:5;20345:6;20339:13;20330:22;;20361:30;20385:5;20361:30;:::i;:::-;20260:137;;;;:::o;20403:345::-;20470:6;20519:2;20507:9;20498:7;20494:23;20490:32;20487:119;;;20525:79;;:::i;:::-;20487:119;20645:1;20670:61;20723:7;20714:6;20703:9;20699:22;20670:61;:::i;:::-;20660:71;;20616:125;20403:345;;;;:::o;20754:147::-;20855:11;20892:3;20877:18;;20754:147;;;;:::o;20907:114::-;;:::o;21027:398::-;21186:3;21207:83;21288:1;21283:3;21207:83;:::i;:::-;21200:90;;21299:93;21388:3;21299:93;:::i;:::-;21417:1;21412:3;21408:11;21401:18;;21027:398;;;:::o;21431:379::-;21615:3;21637:147;21780:3;21637:147;:::i;:::-;21630:154;;21801:3;21794:10;;21431:379;;;:::o;21816:166::-;21956:18;21952:1;21944:6;21940:14;21933:42;21816:166;:::o;21988:366::-;22130:3;22151:67;22215:2;22210:3;22151:67;:::i;:::-;22144:74;;22227:93;22316:3;22227:93;:::i;:::-;22345:2;22340:3;22336:12;22329:19;;21988:366;;;:::o;22360:419::-;22526:4;22564:2;22553:9;22549:18;22541:26;;22613:9;22607:4;22603:20;22599:1;22588:9;22584:17;22577:47;22641:131;22767:4;22641:131;:::i;:::-;22633:139;;22360:419;;;:::o;22785:234::-;22925:34;22921:1;22913:6;22909:14;22902:58;22994:17;22989:2;22981:6;22977:15;22970:42;22785:234;:::o;23025:366::-;23167:3;23188:67;23252:2;23247:3;23188:67;:::i;:::-;23181:74;;23264:93;23353:3;23264:93;:::i;:::-;23382:2;23377:3;23373:12;23366:19;;23025:366;;;:::o;23397:419::-;23563:4;23601:2;23590:9;23586:18;23578:26;;23650:9;23644:4;23640:20;23636:1;23625:9;23621:17;23614:47;23678:131;23804:4;23678:131;:::i;:::-;23670:139;;23397:419;;;:::o;23822:228::-;23962:34;23958:1;23950:6;23946:14;23939:58;24031:11;24026:2;24018:6;24014:15;24007:36;23822:228;:::o;24056:366::-;24198:3;24219:67;24283:2;24278:3;24219:67;:::i;:::-;24212:74;;24295:93;24384:3;24295:93;:::i;:::-;24413:2;24408:3;24404:12;24397:19;;24056:366;;;:::o;24428:419::-;24594:4;24632:2;24621:9;24617:18;24609:26;;24681:9;24675:4;24671:20;24667:1;24656:9;24652:17;24645:47;24709:131;24835:4;24709:131;:::i;:::-;24701:139;;24428:419;;;:::o;24853:180::-;24901:77;24898:1;24891:88;24998:4;24995:1;24988:15;25022:4;25019:1;25012:15;25039:191;25079:3;25098:20;25116:1;25098:20;:::i;:::-;25093:25;;25132:20;25150:1;25132:20;:::i;:::-;25127:25;;25175:1;25172;25168:9;25161:16;;25196:3;25193:1;25190:10;25187:36;;;25203:18;;:::i;:::-;25187:36;25039:191;;;;:::o;25236:164::-;25376:16;25372:1;25364:6;25360:14;25353:40;25236:164;:::o;25406:366::-;25548:3;25569:67;25633:2;25628:3;25569:67;:::i;:::-;25562:74;;25645:93;25734:3;25645:93;:::i;:::-;25763:2;25758:3;25754:12;25747:19;;25406:366;;;:::o;25778:419::-;25944:4;25982:2;25971:9;25967:18;25959:26;;26031:9;26025:4;26021:20;26017:1;26006:9;26002:17;25995:47;26059:131;26185:4;26059:131;:::i;:::-;26051:139;;25778:419;;;:::o;26203:176::-;26343:28;26339:1;26331:6;26327:14;26320:52;26203:176;:::o;26385:366::-;26527:3;26548:67;26612:2;26607:3;26548:67;:::i;:::-;26541:74;;26624:93;26713:3;26624:93;:::i;:::-;26742:2;26737:3;26733:12;26726:19;;26385:366;;;:::o;26757:419::-;26923:4;26961:2;26950:9;26946:18;26938:26;;27010:9;27004:4;27000:20;26996:1;26985:9;26981:17;26974:47;27038:131;27164:4;27038:131;:::i;:::-;27030:139;;26757:419;;;:::o;27182:240::-;27322:34;27318:1;27310:6;27306:14;27299:58;27391:23;27386:2;27378:6;27374:15;27367:48;27182:240;:::o;27428:366::-;27570:3;27591:67;27655:2;27650:3;27591:67;:::i;:::-;27584:74;;27667:93;27756:3;27667:93;:::i;:::-;27785:2;27780:3;27776:12;27769:19;;27428:366;;;:::o;27800:419::-;27966:4;28004:2;27993:9;27989:18;27981:26;;28053:9;28047:4;28043:20;28039:1;28028:9;28024:17;28017:47;28081:131;28207:4;28081:131;:::i;:::-;28073:139;;27800:419;;;:::o;28225:178::-;28365:30;28361:1;28353:6;28349:14;28342:54;28225:178;:::o;28409:366::-;28551:3;28572:67;28636:2;28631:3;28572:67;:::i;:::-;28565:74;;28648:93;28737:3;28648:93;:::i;:::-;28766:2;28761:3;28757:12;28750:19;;28409:366;;;:::o;28781:419::-;28947:4;28985:2;28974:9;28970:18;28962:26;;29034:9;29028:4;29024:20;29020:1;29009:9;29005:17;28998:47;29062:131;29188:4;29062:131;:::i;:::-;29054:139;;28781:419;;;:::o;29206:180::-;29254:77;29251:1;29244:88;29351:4;29348:1;29341:15;29375:4;29372:1;29365:15;29392:233;29431:3;29454:24;29472:5;29454:24;:::i;:::-;29445:33;;29500:66;29493:5;29490:77;29487:103;;29570:18;;:::i;:::-;29487:103;29617:1;29610:5;29606:13;29599:20;;29392:233;;;:::o;29631:224::-;29771:34;29767:1;29759:6;29755:14;29748:58;29840:7;29835:2;29827:6;29823:15;29816:32;29631:224;:::o;29861:366::-;30003:3;30024:67;30088:2;30083:3;30024:67;:::i;:::-;30017:74;;30100:93;30189:3;30100:93;:::i;:::-;30218:2;30213:3;30209:12;30202:19;;29861:366;;;:::o;30233:419::-;30399:4;30437:2;30426:9;30422:18;30414:26;;30486:9;30480:4;30476:20;30472:1;30461:9;30457:17;30450:47;30514:131;30640:4;30514:131;:::i;:::-;30506:139;;30233:419;;;:::o;30658:225::-;30798:34;30794:1;30786:6;30782:14;30775:58;30867:8;30862:2;30854:6;30850:15;30843:33;30658:225;:::o;30889:366::-;31031:3;31052:67;31116:2;31111:3;31052:67;:::i;:::-;31045:74;;31128:93;31217:3;31128:93;:::i;:::-;31246:2;31241:3;31237:12;31230:19;;30889:366;;;:::o;31261:419::-;31427:4;31465:2;31454:9;31450:18;31442:26;;31514:9;31508:4;31504:20;31500:1;31489:9;31485:17;31478:47;31542:131;31668:4;31542:131;:::i;:::-;31534:139;;31261:419;;;:::o;31686:224::-;31826:34;31822:1;31814:6;31810:14;31803:58;31895:7;31890:2;31882:6;31878:15;31871:32;31686:224;:::o;31916:366::-;32058:3;32079:67;32143:2;32138:3;32079:67;:::i;:::-;32072:74;;32155:93;32244:3;32155:93;:::i;:::-;32273:2;32268:3;32264:12;32257:19;;31916:366;;;:::o;32288:419::-;32454:4;32492:2;32481:9;32477:18;32469:26;;32541:9;32535:4;32531:20;32527:1;32516:9;32512:17;32505:47;32569:131;32695:4;32569:131;:::i;:::-;32561:139;;32288:419;;;:::o;32713:225::-;32853:34;32849:1;32841:6;32837:14;32830:58;32922:8;32917:2;32909:6;32905:15;32898:33;32713:225;:::o;32944:366::-;33086:3;33107:67;33171:2;33166:3;33107:67;:::i;:::-;33100:74;;33183:93;33272:3;33183:93;:::i;:::-;33301:2;33296:3;33292:12;33285:19;;32944:366;;;:::o;33316:419::-;33482:4;33520:2;33509:9;33505:18;33497:26;;33569:9;33563:4;33559:20;33555:1;33544:9;33540:17;33533:47;33597:131;33723:4;33597:131;:::i;:::-;33589:139;;33316:419;;;:::o;33741:143::-;33798:5;33829:6;33823:13;33814:22;;33845:33;33872:5;33845:33;:::i;:::-;33741:143;;;;:::o;33890:351::-;33960:6;34009:2;33997:9;33988:7;33984:23;33980:32;33977:119;;;34015:79;;:::i;:::-;33977:119;34135:1;34160:64;34216:7;34207:6;34196:9;34192:22;34160:64;:::i;:::-;34150:74;;34106:128;33890:351;;;;:::o;34247:294::-;34387:34;34383:1;34375:6;34371:14;34364:58;34456:34;34451:2;34443:6;34439:15;34432:59;34525:8;34520:2;34512:6;34508:15;34501:33;34247:294;:::o;34547:366::-;34689:3;34710:67;34774:2;34769:3;34710:67;:::i;:::-;34703:74;;34786:93;34875:3;34786:93;:::i;:::-;34904:2;34899:3;34895:12;34888:19;;34547:366;;;:::o;34919:419::-;35085:4;35123:2;35112:9;35108:18;35100:26;;35172:9;35166:4;35162:20;35158:1;35147:9;35143:17;35136:47;35200:131;35326:4;35200:131;:::i;:::-;35192:139;;34919:419;;;:::o;35344:240::-;35484:34;35480:1;35472:6;35468:14;35461:58;35553:23;35548:2;35540:6;35536:15;35529:48;35344:240;:::o;35590:366::-;35732:3;35753:67;35817:2;35812:3;35753:67;:::i;:::-;35746:74;;35829:93;35918:3;35829:93;:::i;:::-;35947:2;35942:3;35938:12;35931:19;;35590:366;;;:::o;35962:419::-;36128:4;36166:2;36155:9;36151:18;36143:26;;36215:9;36209:4;36205:20;36201:1;36190:9;36186:17;36179:47;36243:131;36369:4;36243:131;:::i;:::-;36235:139;;35962:419;;;:::o;36387:224::-;36527:34;36523:1;36515:6;36511:14;36504:58;36596:7;36591:2;36583:6;36579:15;36572:32;36387:224;:::o;36617:366::-;36759:3;36780:67;36844:2;36839:3;36780:67;:::i;:::-;36773:74;;36856:93;36945:3;36856:93;:::i;:::-;36974:2;36969:3;36965:12;36958:19;;36617:366;;;:::o;36989:419::-;37155:4;37193:2;37182:9;37178:18;37170:26;;37242:9;37236:4;37232:20;37228:1;37217:9;37213:17;37206:47;37270:131;37396:4;37270:131;:::i;:::-;37262:139;;36989:419;;;:::o;37414:223::-;37554:34;37550:1;37542:6;37538:14;37531:58;37623:6;37618:2;37610:6;37606:15;37599:31;37414:223;:::o;37643:366::-;37785:3;37806:67;37870:2;37865:3;37806:67;:::i;:::-;37799:74;;37882:93;37971:3;37882:93;:::i;:::-;38000:2;37995:3;37991:12;37984:19;;37643:366;;;:::o;38015:419::-;38181:4;38219:2;38208:9;38204:18;38196:26;;38268:9;38262:4;38258:20;38254:1;38243:9;38239:17;38232:47;38296:131;38422:4;38296:131;:::i;:::-;38288:139;;38015:419;;;:::o;38440:221::-;38580:34;38576:1;38568:6;38564:14;38557:58;38649:4;38644:2;38636:6;38632:15;38625:29;38440:221;:::o;38667:366::-;38809:3;38830:67;38894:2;38889:3;38830:67;:::i;:::-;38823:74;;38906:93;38995:3;38906:93;:::i;:::-;39024:2;39019:3;39015:12;39008:19;;38667:366;;;:::o;39039:419::-;39205:4;39243:2;39232:9;39228:18;39220:26;;39292:9;39286:4;39282:20;39278:1;39267:9;39263:17;39256:47;39320:131;39446:4;39320:131;:::i;:::-;39312:139;;39039:419;;;:::o;39464:181::-;39604:33;39600:1;39592:6;39588:14;39581:57;39464:181;:::o;39651:366::-;39793:3;39814:67;39878:2;39873:3;39814:67;:::i;:::-;39807:74;;39890:93;39979:3;39890:93;:::i;:::-;40008:2;40003:3;39999:12;39992:19;;39651:366;;;:::o;40023:419::-;40189:4;40227:2;40216:9;40212:18;40204:26;;40276:9;40270:4;40266:20;40262:1;40251:9;40247:17;40240:47;40304:131;40430:4;40304:131;:::i;:::-;40296:139;;40023:419;;;:::o;40448:194::-;40488:4;40508:20;40526:1;40508:20;:::i;:::-;40503:25;;40542:20;40560:1;40542:20;:::i;:::-;40537:25;;40586:1;40583;40579:9;40571:17;;40610:1;40604:4;40601:11;40598:37;;;40615:18;;:::i;:::-;40598:37;40448:194;;;;:::o;40648:179::-;40788:31;40784:1;40776:6;40772:14;40765:55;40648:179;:::o;40833:366::-;40975:3;40996:67;41060:2;41055:3;40996:67;:::i;:::-;40989:74;;41072:93;41161:3;41072:93;:::i;:::-;41190:2;41185:3;41181:12;41174:19;;40833:366;;;:::o;41205:419::-;41371:4;41409:2;41398:9;41394:18;41386:26;;41458:9;41452:4;41448:20;41444:1;41433:9;41429:17;41422:47;41486:131;41612:4;41486:131;:::i;:::-;41478:139;;41205:419;;;:::o;41630:224::-;41770:34;41766:1;41758:6;41754:14;41747:58;41839:7;41834:2;41826:6;41822:15;41815:32;41630:224;:::o;41860:366::-;42002:3;42023:67;42087:2;42082:3;42023:67;:::i;:::-;42016:74;;42099:93;42188:3;42099:93;:::i;:::-;42217:2;42212:3;42208:12;42201:19;;41860:366;;;:::o;42232:419::-;42398:4;42436:2;42425:9;42421:18;42413:26;;42485:9;42479:4;42475:20;42471:1;42460:9;42456:17;42449:47;42513:131;42639:4;42513:131;:::i;:::-;42505:139;;42232:419;;;:::o;42657:222::-;42797:34;42793:1;42785:6;42781:14;42774:58;42866:5;42861:2;42853:6;42849:15;42842:30;42657:222;:::o;42885:366::-;43027:3;43048:67;43112:2;43107:3;43048:67;:::i;:::-;43041:74;;43124:93;43213:3;43124:93;:::i;:::-;43242:2;43237:3;43233:12;43226:19;;42885:366;;;:::o;43257:419::-;43423:4;43461:2;43450:9;43446:18;43438:26;;43510:9;43504:4;43500:20;43496:1;43485:9;43481:17;43474:47;43538:131;43664:4;43538:131;:::i;:::-;43530:139;;43257:419;;;:::o;43682:225::-;43822:34;43818:1;43810:6;43806:14;43799:58;43891:8;43886:2;43878:6;43874:15;43867:33;43682:225;:::o;43913:366::-;44055:3;44076:67;44140:2;44135:3;44076:67;:::i;:::-;44069:74;;44152:93;44241:3;44152:93;:::i;:::-;44270:2;44265:3;44261:12;44254:19;;43913:366;;;:::o;44285:419::-;44451:4;44489:2;44478:9;44474:18;44466:26;;44538:9;44532:4;44528:20;44524:1;44513:9;44509:17;44502:47;44566:131;44692:4;44566:131;:::i;:::-;44558:139;;44285:419;;;:::o;44710:410::-;44750:7;44773:20;44791:1;44773:20;:::i;:::-;44768:25;;44807:20;44825:1;44807:20;:::i;:::-;44802:25;;44862:1;44859;44855:9;44884:30;44902:11;44884:30;:::i;:::-;44873:41;;45063:1;45054:7;45050:15;45047:1;45044:22;45024:1;45017:9;44997:83;44974:139;;45093:18;;:::i;:::-;44974:139;44758:362;44710:410;;;;:::o;45126:180::-;45174:77;45171:1;45164:88;45271:4;45268:1;45261:15;45295:4;45292:1;45285:15;45312:185;45352:1;45369:20;45387:1;45369:20;:::i;:::-;45364:25;;45403:20;45421:1;45403:20;:::i;:::-;45398:25;;45442:1;45432:35;;45447:18;;:::i;:::-;45432:35;45489:1;45486;45482:9;45477:14;;45312:185;;;;:::o;45503:220::-;45643:34;45639:1;45631:6;45627:14;45620:58;45712:3;45707:2;45699:6;45695:15;45688:28;45503:220;:::o;45729:366::-;45871:3;45892:67;45956:2;45951:3;45892:67;:::i;:::-;45885:74;;45968:93;46057:3;45968:93;:::i;:::-;46086:2;46081:3;46077:12;46070:19;;45729:366;;;:::o;46101:419::-;46267:4;46305:2;46294:9;46290:18;46282:26;;46354:9;46348:4;46344:20;46340:1;46329:9;46325:17;46318:47;46382:131;46508:4;46382:131;:::i;:::-;46374:139;;46101:419;;;:::o;46526:221::-;46666:34;46662:1;46654:6;46650:14;46643:58;46735:4;46730:2;46722:6;46718:15;46711:29;46526:221;:::o;46753:366::-;46895:3;46916:67;46980:2;46975:3;46916:67;:::i;:::-;46909:74;;46992:93;47081:3;46992:93;:::i;:::-;47110:2;47105:3;47101:12;47094:19;;46753:366;;;:::o;47125:419::-;47291:4;47329:2;47318:9;47314:18;47306:26;;47378:9;47372:4;47368:20;47364:1;47353:9;47349:17;47342:47;47406:131;47532:4;47406:131;:::i;:::-;47398:139;;47125:419;;;:::o;47550:182::-;47690:34;47686:1;47678:6;47674:14;47667:58;47550:182;:::o;47738:366::-;47880:3;47901:67;47965:2;47960:3;47901:67;:::i;:::-;47894:74;;47977:93;48066:3;47977:93;:::i;:::-;48095:2;48090:3;48086:12;48079:19;;47738:366;;;:::o;48110:419::-;48276:4;48314:2;48303:9;48299:18;48291:26;;48363:9;48357:4;48353:20;48349:1;48338:9;48334:17;48327:47;48391:131;48517:4;48391:131;:::i;:::-;48383:139;;48110:419;;;:::o;48535:148::-;48637:11;48674:3;48659:18;;48535:148;;;;:::o;48689:173::-;48829:25;48825:1;48817:6;48813:14;48806:49;48689:173;:::o;48868:402::-;49028:3;49049:85;49131:2;49126:3;49049:85;:::i;:::-;49042:92;;49143:93;49232:3;49143:93;:::i;:::-;49261:2;49256:3;49252:12;49245:19;;48868:402;;;:::o;49276:390::-;49382:3;49410:39;49443:5;49410:39;:::i;:::-;49465:89;49547:6;49542:3;49465:89;:::i;:::-;49458:96;;49563:65;49621:6;49616:3;49609:4;49602:5;49598:16;49563:65;:::i;:::-;49653:6;49648:3;49644:16;49637:23;;49386:280;49276:390;;;;:::o;49672:167::-;49812:19;49808:1;49800:6;49796:14;49789:43;49672:167;:::o;49845:402::-;50005:3;50026:85;50108:2;50103:3;50026:85;:::i;:::-;50019:92;;50120:93;50209:3;50120:93;:::i;:::-;50238:2;50233:3;50229:12;50222:19;;49845:402;;;:::o;50253:967::-;50635:3;50657:148;50801:3;50657:148;:::i;:::-;50650:155;;50822:95;50913:3;50904:6;50822:95;:::i;:::-;50815:102;;50934:148;51078:3;50934:148;:::i;:::-;50927:155;;51099:95;51190:3;51181:6;51099:95;:::i;:::-;51092:102;;51211:3;51204:10;;50253:967;;;;;:::o;51226:171::-;51265:3;51288:24;51306:5;51288:24;:::i;:::-;51279:33;;51334:4;51327:5;51324:15;51321:41;;51342:18;;:::i;:::-;51321:41;51389:1;51382:5;51378:13;51371:20;;51226:171;;;:::o;51403:182::-;51543:34;51539:1;51531:6;51527:14;51520:58;51403:182;:::o;51591:366::-;51733:3;51754:67;51818:2;51813:3;51754:67;:::i;:::-;51747:74;;51830:93;51919:3;51830:93;:::i;:::-;51948:2;51943:3;51939:12;51932:19;;51591:366;;;:::o;51963:419::-;52129:4;52167:2;52156:9;52152:18;52144:26;;52216:9;52210:4;52206:20;52202:1;52191:9;52187:17;52180:47;52244:131;52370:4;52244:131;:::i;:::-;52236:139;;51963:419;;;:::o

Swarm Source

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