ETH Price: $3,853.74 (-3.03%)

Token

ERC-20: : YieldFarming Index (YFX)

Overview

Max Total Supply

19,456.550148862618505195 YFX

Holders

550

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.003727730977708269 YFX

Value
$0.00
0xd935a63d629cac4cfc8f632a2f4aab3ca8d99e38
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
YFX

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at optimistic.etherscan.io on 2023-03-19
*/

// 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/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/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: contracts/taxable.sol



pragma solidity ^0.8.0; // Must use solidity 0.8.0 or higher. Math isn't so safe otherwise...


abstract contract Taxable is Context {

/// @dev Events defined for any contract changes.

	event TaxOn(address account); // Emits event "Tax On" when tax is enabled, returning the address of the Governor.
	event TaxOff(address account); // Emits event "Tax Off" when tax is disabled, returning the address of the Governor.
    event TaxChanged(address account); // Emits event "Tax Changed" when tax amount is updated, returning the address of the Governor.
	event TaxDestinationChanged(address account); // Emits event "Tax Destination Changed" when tax destination is changed, returning the address of the President.

/// @dev Name and type of constants defined.

	bool private _taxed; // Stores whether tax is enabled/disabled in a boolean.
	uint private _thetax; // Stores tax amount as a uint256 integer.
    uint private _maxtax; // Stores maximum tax amount as a uint256 integer.
    uint private _mintax; // Stores minimum tax amount as a uint256 integer.
    address private _taxdestination; // Stores tax destination as a blockchain address type.
    address private _taxdestination2; // Stores tax destination as a blockchain address type.
    address private _taxdestination3; // Stores tax destination as a blockchain address type.

/// @dev Constructor adds values to constants by passing arguments from token constructor.

	constructor(bool __taxed, uint __thetax, uint __maxtax, uint __mintax, address __taxdestination, address __taxdestination2 ,address __taxdestination3) {
        _taxed = __taxed; // Recommended: false 
        _thetax = __thetax; // Recommended: 1000 ; 1000 = 10%
        _maxtax = __maxtax; // Recommended: 1500 ; 1500 = 15%
        _mintax = __mintax; // Recommended: 25 ; 25 = 0.25%
        _taxdestination = __taxdestination;
        _taxdestination2 = __taxdestination2;
        _taxdestination3 = __taxdestination3; // Recommend a fresh, dedicated secure treasury hot or cold wallet that is not the deployer.
    }

/// @dev Modifiers throw errors if conditions are not met.

	modifier whenNotTaxed() { // Modifier for requiring the tax be off in order for the caller function to work.
        _requireNotTaxed(); // Function requires tax be off.
        _;
    }

	modifier whenTaxed() { // Modifier for requiring the tax be on in order for the caller function to work.
        _requireTaxed(); // Function requires tax be on.
        _;
    }

/// @dev Public view functions allow privately stored constants to be interfaced.

	function taxed() public view virtual returns (bool) { // Function enables public interface for tax enabled/disabled boolean.
        return _taxed; // Returns true if tax is enabled, false if it is disabled.
    }

    function thetax() public view virtual returns (uint) { // Function enables public interface for tax amount in points.
        return _thetax; // Returns the current tax amount in points.
    }

    function taxdestination() public view virtual returns (address) { // Function enables public interface for tax destination address.
        return _taxdestination; // Returns the destination address for the tax.
    }
        function taxdestination2() public view virtual returns (address) { // Function enables public interface for tax destination address.
        return _taxdestination2; // Returns the destination address for the tax.
    }
        function taxdestination3() public view virtual returns (address) { // Function enables public interface for tax destination address.
        return _taxdestination3; // Returns the destination address for the tax.
    }

/// @dev Internal view functions contain the require() statements for the modifiers to use.

	function _requireNotTaxed() internal view virtual { // Function is used in the whenNotTaxed() modifier.
        require(!taxed(), "Taxable: taxed"); // Throws the call if the tax is disabled.
    }

	function _requireTaxed() internal view virtual { // Function is used in the whenTaxed() modifier.
        require(taxed(), "Taxable: not taxed"); // Throws the call if the tax is enabled.
    }

/// @dev Internal virtual functions perform the requested contract updates and emit the events to the blockchain.

	function _taxon() internal virtual whenNotTaxed { // Function turns on the tax if it was disabled and emits "Tax On" event.
        _taxed = true; // Sets the tax enabled boolean to true, enabling the tax.
        emit TaxOn(_msgSender()); // Emits the "Tax On" event to the blockchain.
    }

	function _taxoff() internal virtual whenTaxed { // Function turns off the tax if it was enabled and emits "Tax Off" event.
        _taxed = false; // Sets the tax enabled boolean to false, disabling the tax.
        emit TaxOff(_msgSender()); // Emits the "Tax Off" event to the blockchain.
    }

    function _updatetax(uint newtax) internal virtual { // Function updates the tax amount if in allowable range and emits "Tax Changed" event.
        require(newtax <= _maxtax, "Taxable: tax is too high"); // Throws the call if the new tax is above the maximum tax.
        require(newtax >= _mintax, "Taxable: tax is too low"); // Throws the call if the new tax is below the minimum tax.
        _thetax = newtax; // Sets the tax amount integer to the new value, updating the tax amount.
        emit TaxChanged(_msgSender());  // Emits the "Tax Changed" event to the blockchain.
    }

	function _updatetaxdestination(address newdestination, address newdestination2,address newdestination3) internal virtual { // Function updates the tax destination address and emits "Tax Destination Changed" event.
        _taxdestination = newdestination;
        _taxdestination2 = newdestination2; 
        _taxdestination3 = newdestination3;  // Sets the tax destination address to the new value, updating the tax destination address.
        emit TaxDestinationChanged(_msgSender());  // Emits the "Tax Destination Changed" event to the blockchain.
    }
}
// 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/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: @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: contracts/yfxmultichain.sol



pragma solidity ^0.8.4;






contract YFX is ReentrancyGuard, ERC20, AccessControl, Taxable, Ownable {

    bytes32 public constant NOT_TAXED_FROM = keccak256("NOT_TAXED_FROM");
    bytes32 public constant NOT_TAXED_TO = keccak256("NOT_TAXED_TO");
    bytes32 public constant ALWAYS_TAXED_FROM = keccak256("ALWAYS_TAXED_FROM");
    bytes32 public constant ALWAYS_TAXED_TO = keccak256("ALWAYS_TAXED_TO");
    address public constant deadaddr = 0x000000000000000000000000000000000000dEaD;
    address minter;

    constructor(
   
        bool __taxed,
        uint __thetax,
        uint __maxtax,
        uint __mintax,
        address __owner,
        address __owner2,
        address __owner3
        )
        ERC20("YieldFarming Index", "YFX")
        Taxable(__taxed, __thetax, __maxtax, __mintax, __owner, __owner2, __owner3)
    {
        _grantRole(DEFAULT_ADMIN_ROLE, __owner);
        _grantRole(NOT_TAXED_FROM, __owner);
        _grantRole(NOT_TAXED_TO, __owner);
        _grantRole(NOT_TAXED_FROM, __owner2);
        _grantRole(NOT_TAXED_TO, __owner2);
        _grantRole(NOT_TAXED_FROM, __owner3);
        _grantRole(NOT_TAXED_TO, __owner3);
        _grantRole(NOT_TAXED_FROM, address(this));
        _grantRole(NOT_TAXED_TO, address(this));
        _mint(__owner, 500000 * 10 ** decimals());
        minter = msg.sender;
    }

    function enableTax() public onlyRole(DEFAULT_ADMIN_ROLE) {
        _taxon();
    }

    function whitelisttax(address _user) external onlyOwner{
        _grantRole(NOT_TAXED_FROM, _user);
        _grantRole(NOT_TAXED_TO, _user);
    }

    function whitelisttaxTO(address _user) external onlyOwner{
   
        _grantRole(NOT_TAXED_TO, _user);
    }

        function whitelisttaxFROM(address _user) external onlyOwner{
        _grantRole(NOT_TAXED_FROM, _user);

    }

    function disableTax() public onlyRole(DEFAULT_ADMIN_ROLE) {
        _taxoff();
    }

    function updateTax(uint newtax) public onlyRole(DEFAULT_ADMIN_ROLE) {
        _updatetax(newtax);
    }

    function updateTaxDestination(address newdestination, address newdestination2, address newdestination3) public onlyRole(DEFAULT_ADMIN_ROLE) {
        _updatetaxdestination(newdestination, newdestination2, newdestination3);
    }


   function _transfer(address from, address to, uint256 amount)
        internal
        virtual
        override(ERC20)
        nonReentrant
    {
        if (hasRole(DEFAULT_ADMIN_ROLE, msg.sender)) {
            super._transfer(from, to, amount);
        } else {
            if((hasRole(NOT_TAXED_FROM, from) || hasRole(NOT_TAXED_TO, to) || !taxed())
            && !hasRole(ALWAYS_TAXED_FROM, from) && !hasRole(ALWAYS_TAXED_TO, to)) {
                super._transfer(from, to, amount);
            } else { 
                require(balanceOf(from) >= amount, "Error: transfer amount exceeds balance");
                super._transfer(from, taxdestination(), amount*thetax()*3/200000); 
                super._transfer(from, taxdestination2(), amount*thetax()*6/200000);
                super._transfer(from, taxdestination3(), amount*thetax()/200000);
                super._transfer(from, deadaddr, amount*thetax()/20000);
                super._transfer(from, to, amount*(10000-thetax())/10000);
            }
        }
    }

    function burn(address _from, uint256 _amount) external{
        require(msg.sender == minter);
        _burn(_from, _amount);
    }

    function mint(address recipient, uint256 _amount) external  {
        require(msg.sender == minter);
        _mint(recipient, _amount);

    }

    function updateMinter(address _minter) external onlyOwner  {
        minter = _minter;

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bool","name":"__taxed","type":"bool"},{"internalType":"uint256","name":"__thetax","type":"uint256"},{"internalType":"uint256","name":"__maxtax","type":"uint256"},{"internalType":"uint256","name":"__mintax","type":"uint256"},{"internalType":"address","name":"__owner","type":"address"},{"internalType":"address","name":"__owner2","type":"address"},{"internalType":"address","name":"__owner3","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"TaxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"TaxDestinationChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"TaxOff","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"TaxOn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ALWAYS_TAXED_FROM","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ALWAYS_TAXED_TO","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NOT_TAXED_FROM","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NOT_TAXED_TO","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadaddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTax","outputs":[],"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"taxdestination","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxdestination2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxdestination3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thetax","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":"_minter","type":"address"}],"name":"updateMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newtax","type":"uint256"}],"name":"updateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newdestination","type":"address"},{"internalType":"address","name":"newdestination2","type":"address"},{"internalType":"address","name":"newdestination3","type":"address"}],"name":"updateTaxDestination","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelisttax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelisttaxFROM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelisttaxTO","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004779380380620047798339818101604052810190620000379190620008b1565b868686868686866040518060400160405280601281526020017f5969656c644661726d696e6720496e64657800000000000000000000000000008152506040518060400160405280600381526020017f594658000000000000000000000000000000000000000000000000000000000081525060016000819055508160049081620000c3919062000bd4565b508060059081620000d5919062000bd4565b50505086600760006101000a81548160ff021916908315150217905550856008819055508460098190555083600a8190555082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505050620001f1620001e56200042360201b60201c565b6200042b60201b60201c565b620002066000801b84620004f160201b60201c565b620002387f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123784620004f160201b60201c565b6200026a7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff84620004f160201b60201c565b6200029c7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123783620004f160201b60201c565b620002ce7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff83620004f160201b60201c565b620003007f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123782620004f160201b60201c565b620003327f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff82620004f160201b60201c565b620003647f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123730620004f160201b60201c565b620003967f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff30620004f160201b60201c565b620003d583620003ab620005e360201b60201c565b600a620003b9919062000e4b565b6207a120620003c9919062000e9c565b620005ec60201b60201c565b33600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050505062000fd3565b600033905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200050382826200075a60201b60201c565b620005df5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005846200042360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200065e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006559062000f48565b60405180910390fd5b6200067260008383620007c560201b60201c565b806003600082825462000686919062000f6a565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200073a919062000fb6565b60405180910390a36200075660008383620007ca60201b60201c565b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b505050565b600080fd5b60008115159050919050565b620007eb81620007d4565b8114620007f757600080fd5b50565b6000815190506200080b81620007e0565b92915050565b6000819050919050565b620008268162000811565b81146200083257600080fd5b50565b60008151905062000846816200081b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000879826200084c565b9050919050565b6200088b816200086c565b81146200089757600080fd5b50565b600081519050620008ab8162000880565b92915050565b600080600080600080600060e0888a031215620008d357620008d2620007cf565b5b6000620008e38a828b01620007fa565b9750506020620008f68a828b0162000835565b9650506040620009098a828b0162000835565b95505060606200091c8a828b0162000835565b94505060806200092f8a828b016200089a565b93505060a0620009428a828b016200089a565b92505060c0620009558a828b016200089a565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009e657607f821691505b602082108103620009fc57620009fb6200099e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a27565b62000a72868362000a27565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000ab562000aaf62000aa98462000811565b62000a8a565b62000811565b9050919050565b6000819050919050565b62000ad18362000a94565b62000ae962000ae08262000abc565b84845462000a34565b825550505050565b600090565b62000b0062000af1565b62000b0d81848462000ac6565b505050565b5b8181101562000b355762000b2960008262000af6565b60018101905062000b13565b5050565b601f82111562000b845762000b4e8162000a02565b62000b598462000a17565b8101602085101562000b69578190505b62000b8162000b788562000a17565b83018262000b12565b50505b505050565b600082821c905092915050565b600062000ba96000198460080262000b89565b1980831691505092915050565b600062000bc4838362000b96565b9150826002028217905092915050565b62000bdf8262000964565b67ffffffffffffffff81111562000bfb5762000bfa6200096f565b5b62000c078254620009cd565b62000c1482828562000b39565b600060209050601f83116001811462000c4c576000841562000c37578287015190505b62000c43858262000bb6565b86555062000cb3565b601f19841662000c5c8662000a02565b60005b8281101562000c865784890151825560018201915060208501945060208101905062000c5f565b8683101562000ca6578489015162000ca2601f89168262000b96565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d495780860481111562000d215762000d2062000cbb565b5b600185161562000d315780820291505b808102905062000d418562000cea565b945062000d01565b94509492505050565b60008262000d64576001905062000e37565b8162000d74576000905062000e37565b816001811462000d8d576002811462000d985762000dce565b600191505062000e37565b60ff84111562000dad5762000dac62000cbb565b5b8360020a91508482111562000dc75762000dc662000cbb565b5b5062000e37565b5060208310610133831016604e8410600b841016171562000e085782820a90508381111562000e025762000e0162000cbb565b5b62000e37565b62000e17848484600162000cf7565b9250905081840481111562000e315762000e3062000cbb565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e588262000811565b915062000e658362000e3e565b925062000e947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d52565b905092915050565b600062000ea98262000811565b915062000eb68362000811565b925082820262000ec68162000811565b9150828204841483151762000ee05762000edf62000cbb565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f30601f8362000ee7565b915062000f3d8262000ef8565b602082019050919050565b6000602082019050818103600083015262000f638162000f21565b9050919050565b600062000f778262000811565b915062000f848362000811565b925082820190508082111562000f9f5762000f9e62000cbb565b5b92915050565b62000fb08162000811565b82525050565b600060208201905062000fcd600083018462000fa5565b92915050565b6137968062000fe36000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c80635f64d73011610146578063a217fddf116100c3578063cca0feb611610087578063cca0feb6146106da578063ced695a4146106f6578063d547741f14610700578063dd62ed3e1461071c578063ee240bbc1461074c578063f2fde38b1461076a57610253565b8063a217fddf14610622578063a457c2d714610640578063a9059cbb14610670578063a9eec33a146106a0578063c498f376146106bc57610253565b80638da5cb5b1161010a5780638da5cb5b1461057c57806391d148541461059a57806395d89b41146105ca5780639dc29fac146105e85780639e01392f1461060457610253565b80635f64d730146104ea57806370a0823114610508578063715018a61461053857806372922a37146105425780638a2b66d11461055e57610253565b806336568abe116101d457806346a85aa41161019857806346a85aa41461046c5780634eb03f6e1461048a578063513fbcec146104a657806353eb3bcf146104c25780635acd2fa6146104cc57610253565b806336568abe146103c85780633785e6d9146103e457806339509351146104025780633b9b03141461043257806340c10f191461045057610253565b806323b872dd1161021b57806323b872dd14610310578063248a9ca3146103405780632713c21e146103705780632f2ff15d1461038e578063313ce567146103aa57610253565b806301ffc9a71461025857806306fdde0314610288578063095ea7b3146102a657806318160ddd146102d65780631c3269b7146102f4575b600080fd5b610272600480360381019061026d919061259f565b610786565b60405161027f91906125e7565b60405180910390f35b610290610800565b60405161029d9190612692565b60405180910390f35b6102c060048036038101906102bb9190612748565b610892565b6040516102cd91906125e7565b60405180910390f35b6102de6108b5565b6040516102eb9190612797565b60405180910390f35b61030e600480360381019061030991906127b2565b6108bf565b005b61032a600480360381019061032591906127df565b6108f4565b60405161033791906125e7565b60405180910390f35b61035a60048036038101906103559190612868565b610923565b60405161036791906128a4565b60405180910390f35b610378610943565b60405161038591906128a4565b60405180910390f35b6103a860048036038101906103a391906128bf565b610967565b005b6103b2610988565b6040516103bf919061291b565b60405180910390f35b6103e260048036038101906103dd91906128bf565b610991565b005b6103ec610a14565b6040516103f99190612945565b60405180910390f35b61041c60048036038101906104179190612748565b610a3e565b60405161042991906125e7565b60405180910390f35b61043a610a75565b6040516104479190612797565b60405180910390f35b61046a60048036038101906104659190612748565b610a7f565b005b610474610ae7565b60405161048191906128a4565b60405180910390f35b6104a4600480360381019061049f91906127b2565b610b0b565b005b6104c060048036038101906104bb91906127b2565b610b57565b005b6104ca610bb6565b005b6104d4610bce565b6040516104e19190612945565b60405180910390f35b6104f2610bd4565b6040516104ff91906128a4565b60405180910390f35b610522600480360381019061051d91906127b2565b610bf8565b60405161052f9190612797565b60405180910390f35b610540610c41565b005b61055c600480360381019061055791906127b2565b610c55565b005b610566610c8a565b6040516105739190612945565b60405180910390f35b610584610cb4565b6040516105919190612945565b60405180910390f35b6105b460048036038101906105af91906128bf565b610cde565b6040516105c191906125e7565b60405180910390f35b6105d2610d49565b6040516105df9190612692565b60405180910390f35b61060260048036038101906105fd9190612748565b610ddb565b005b61060c610e43565b60405161061991906125e7565b60405180910390f35b61062a610e5a565b60405161063791906128a4565b60405180910390f35b61065a60048036038101906106559190612748565b610e61565b60405161066791906125e7565b60405180910390f35b61068a60048036038101906106859190612748565b610ed8565b60405161069791906125e7565b60405180910390f35b6106ba60048036038101906106b59190612960565b610efb565b005b6106c4610f19565b6040516106d191906128a4565b60405180910390f35b6106f460048036038101906106ef91906129b3565b610f3d565b005b6106fe610f57565b005b61071a600480360381019061071591906128bf565b610f6f565b005b610736600480360381019061073191906129e0565b610f90565b6040516107439190612797565b60405180910390f35b610754611017565b6040516107619190612945565b60405180910390f35b610784600480360381019061077f91906127b2565b611041565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f957506107f8826110c4565b5b9050919050565b60606004805461080f90612a4f565b80601f016020809104026020016040519081016040528092919081815260200182805461083b90612a4f565b80156108885780601f1061085d57610100808354040283529160200191610888565b820191906000526020600020905b81548152906001019060200180831161086b57829003601f168201915b5050505050905090565b60008061089d61112e565b90506108aa818585611136565b600191505092915050565b6000600354905090565b6108c76112ff565b6108f17f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed24434612378261137d565b50565b6000806108ff61112e565b905061090c85828561145e565b6109178585856114ea565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123781565b61097082610923565b61097981611765565b610983838361137d565b505050565b60006012905090565b61099961112e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90612af2565b60405180910390fd5b610a108282611779565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080610a4961112e565b9050610a6a818585610a5b8589610f90565b610a659190612b41565b611136565b600191505092915050565b6000600854905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad957600080fd5b610ae3828261185b565b5050565b7fdb1f6cc858f64c436f0ba814bf59b72262e27f9b82ae65442c00c7cfad070f3581565b610b136112ff565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b5f6112ff565b610b897f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed24434612378261137d565b610bb37f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff8261137d565b50565b6000801b610bc381611765565b610bcb6119b2565b50565b61dead81565b7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c496112ff565b610c536000611a15565b565b610c5d6112ff565b610c877f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff8261137d565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060058054610d5890612a4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8490612a4f565b8015610dd15780601f10610da657610100808354040283529160200191610dd1565b820191906000526020600020905b815481529060010190602001808311610db457829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e3557600080fd5b610e3f8282611adb565b5050565b6000600760009054906101000a900460ff16905090565b6000801b81565b600080610e6c61112e565b90506000610e7a8286610f90565b905083811015610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690612be7565b60405180910390fd5b610ecc8286868403611136565b60019250505092915050565b600080610ee361112e565b9050610ef08185856114ea565b600191505092915050565b6000801b610f0881611765565b610f13848484611caa565b50505050565b7f3c9053d8d897bea84f1a2e8814845cc40f47b0a508dc93e56bc37c81c21a3b7881565b6000801b610f4a81611765565b610f5382611db0565b5050565b6000801b610f6481611765565b610f6c611e82565b50565b610f7882610923565b610f8181611765565b610f8b8383611779565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110496112ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90612c79565b60405180910390fd5b6110c181611a15565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90612d0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90612d9d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112f29190612797565b60405180910390a3505050565b61130761112e565b73ffffffffffffffffffffffffffffffffffffffff16611325610cb4565b73ffffffffffffffffffffffffffffffffffffffff161461137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290612e09565b60405180910390fd5b565b6113878282610cde565b61145a5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113ff61112e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061146a8484610f90565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114e457818110156114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90612e75565b60405180910390fd5b6114e38484848403611136565b5b50505050565b6114f2611ee5565b6114ff6000801b33610cde565b156115145761150f838383611f34565b611758565b61153e7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123784610cde565b8061156f575061156e7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff83610cde565b5b8061157f575061157d610e43565b155b80156115b257506115b07f3c9053d8d897bea84f1a2e8814845cc40f47b0a508dc93e56bc37c81c21a3b7884610cde565b155b80156115e557506115e37fdb1f6cc858f64c436f0ba814bf59b72262e27f9b82ae65442c00c7cfad070f3583610cde565b155b156115fa576115f5838383611f34565b611757565b8061160484610bf8565b1015611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90612f07565b60405180910390fd5b61168383611651610c8a565b62030d40600361165f610a75565b8661166a9190612f27565b6116749190612f27565b61167e9190612f98565b611f34565b6116c18361168f610a14565b62030d40600661169d610a75565b866116a89190612f27565b6116b29190612f27565b6116bc9190612f98565b611f34565b6116f3836116cd611017565b62030d406116d9610a75565b856116e49190612f27565b6116ee9190612f98565b611f34565b61171f8361dead614e20611705610a75565b856117109190612f27565b61171a9190612f98565b611f34565b611756838361271061172f610a75565b61271061173c9190612fc9565b856117479190612f27565b6117519190612f98565b611f34565b5b5b6117606121ad565b505050565b6117768161177161112e565b6121b7565b50565b6117838282610cde565b156118575760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117fc61112e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190613049565b60405180910390fd5b6118d66000838361223c565b80600360008282546118e89190612b41565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161199a9190612797565b60405180910390a36119ae60008383612241565b5050565b6119ba612246565b6001600760006101000a81548160ff0219169083151502179055507fcca130fdd52ce6e5eedb160c5f635a53883abcfe2b46453038a1516d7d5380b96119fe61112e565b604051611a0b9190612945565b60405180910390a1565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b41906130db565b60405180910390fd5b611b568260008361223c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd49061316d565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c919190612797565b60405180910390a3611ca583600084612241565b505050565b82600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f09eee28d8d70bfad809ce8acadd46ce657b1fa64646b1e4b414e6bbb2eb2c8fa611d9661112e565b604051611da39190612945565b60405180910390a1505050565b600954811115611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec906131d9565b60405180910390fd5b600a54811015611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190613245565b60405180910390fd5b806008819055507fc8eab30ec12770242ba7c205b239d632db8d3f54b3392aa8692893c8fd07abc3611e6a61112e565b604051611e779190612945565b60405180910390a150565b611e8a612290565b6000600760006101000a81548160ff0219169083151502179055507f8b99205429b09a5a41d0d69839e5129b5f813b29a8e9924b45131170948d88a8611ece61112e565b604051611edb9190612945565b60405180910390a1565b600260005403611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906132b1565b60405180910390fd5b6002600081905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613343565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612009906133d5565b60405180910390fd5b61201d83838361223c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b90613467565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121949190612797565b60405180910390a36121a7848484612241565b50505050565b6001600081905550565b6121c18282610cde565b612238576121ce816122d9565b6121dc8360001c6020612306565b6040516020016121ed92919061355b565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f9190612692565b60405180910390fd5b5050565b505050565b505050565b61224e610e43565b1561228e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612285906135e1565b60405180910390fd5b565b612298610e43565b6122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce9061364d565b60405180910390fd5b565b60606122ff8273ffffffffffffffffffffffffffffffffffffffff16601460ff16612306565b9050919050565b6060600060028360026123199190612f27565b6123239190612b41565b67ffffffffffffffff81111561233c5761233b61366d565b5b6040519080825280601f01601f19166020018201604052801561236e5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106123a6576123a561369c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061240a5761240961369c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261244a9190612f27565b6124549190612b41565b90505b60018111156124f4577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106124965761249561369c565b5b1a60f81b8282815181106124ad576124ac61369c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806124ed906136cb565b9050612457565b5060008414612538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252f90613740565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257c81612547565b811461258757600080fd5b50565b60008135905061259981612573565b92915050565b6000602082840312156125b5576125b4612542565b5b60006125c38482850161258a565b91505092915050565b60008115159050919050565b6125e1816125cc565b82525050565b60006020820190506125fc60008301846125d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263c578082015181840152602081019050612621565b60008484015250505050565b6000601f19601f8301169050919050565b600061266482612602565b61266e818561260d565b935061267e81856020860161261e565b61268781612648565b840191505092915050565b600060208201905081810360008301526126ac8184612659565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126df826126b4565b9050919050565b6126ef816126d4565b81146126fa57600080fd5b50565b60008135905061270c816126e6565b92915050565b6000819050919050565b61272581612712565b811461273057600080fd5b50565b6000813590506127428161271c565b92915050565b6000806040838503121561275f5761275e612542565b5b600061276d858286016126fd565b925050602061277e85828601612733565b9150509250929050565b61279181612712565b82525050565b60006020820190506127ac6000830184612788565b92915050565b6000602082840312156127c8576127c7612542565b5b60006127d6848285016126fd565b91505092915050565b6000806000606084860312156127f8576127f7612542565b5b6000612806868287016126fd565b9350506020612817868287016126fd565b925050604061282886828701612733565b9150509250925092565b6000819050919050565b61284581612832565b811461285057600080fd5b50565b6000813590506128628161283c565b92915050565b60006020828403121561287e5761287d612542565b5b600061288c84828501612853565b91505092915050565b61289e81612832565b82525050565b60006020820190506128b96000830184612895565b92915050565b600080604083850312156128d6576128d5612542565b5b60006128e485828601612853565b92505060206128f5858286016126fd565b9150509250929050565b600060ff82169050919050565b612915816128ff565b82525050565b6000602082019050612930600083018461290c565b92915050565b61293f816126d4565b82525050565b600060208201905061295a6000830184612936565b92915050565b60008060006060848603121561297957612978612542565b5b6000612987868287016126fd565b9350506020612998868287016126fd565b92505060406129a9868287016126fd565b9150509250925092565b6000602082840312156129c9576129c8612542565b5b60006129d784828501612733565b91505092915050565b600080604083850312156129f7576129f6612542565b5b6000612a05858286016126fd565b9250506020612a16858286016126fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a6757607f821691505b602082108103612a7a57612a79612a20565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612adc602f8361260d565b9150612ae782612a80565b604082019050919050565b60006020820190508181036000830152612b0b81612acf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b4c82612712565b9150612b5783612712565b9250828201905080821115612b6f57612b6e612b12565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612bd160258361260d565b9150612bdc82612b75565b604082019050919050565b60006020820190508181036000830152612c0081612bc4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c6360268361260d565b9150612c6e82612c07565b604082019050919050565b60006020820190508181036000830152612c9281612c56565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612cf560248361260d565b9150612d0082612c99565b604082019050919050565b60006020820190508181036000830152612d2481612ce8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d8760228361260d565b9150612d9282612d2b565b604082019050919050565b60006020820190508181036000830152612db681612d7a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612df360208361260d565b9150612dfe82612dbd565b602082019050919050565b60006020820190508181036000830152612e2281612de6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e5f601d8361260d565b9150612e6a82612e29565b602082019050919050565b60006020820190508181036000830152612e8e81612e52565b9050919050565b7f4572726f723a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ef160268361260d565b9150612efc82612e95565b604082019050919050565b60006020820190508181036000830152612f2081612ee4565b9050919050565b6000612f3282612712565b9150612f3d83612712565b9250828202612f4b81612712565b91508282048414831517612f6257612f61612b12565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fa382612712565b9150612fae83612712565b925082612fbe57612fbd612f69565b5b828204905092915050565b6000612fd482612712565b9150612fdf83612712565b9250828203905081811115612ff757612ff6612b12565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613033601f8361260d565b915061303e82612ffd565b602082019050919050565b6000602082019050818103600083015261306281613026565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006130c560218361260d565b91506130d082613069565b604082019050919050565b600060208201905081810360008301526130f4816130b8565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061315760228361260d565b9150613162826130fb565b604082019050919050565b600060208201905081810360008301526131868161314a565b9050919050565b7f54617861626c653a2074617820697320746f6f20686967680000000000000000600082015250565b60006131c360188361260d565b91506131ce8261318d565b602082019050919050565b600060208201905081810360008301526131f2816131b6565b9050919050565b7f54617861626c653a2074617820697320746f6f206c6f77000000000000000000600082015250565b600061322f60178361260d565b915061323a826131f9565b602082019050919050565b6000602082019050818103600083015261325e81613222565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061329b601f8361260d565b91506132a682613265565b602082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061332d60258361260d565b9150613338826132d1565b604082019050919050565b6000602082019050818103600083015261335c81613320565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133bf60238361260d565b91506133ca82613363565b604082019050919050565b600060208201905081810360008301526133ee816133b2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061345160268361260d565b915061345c826133f5565b604082019050919050565b6000602082019050818103600083015261348081613444565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006134c8601783613487565b91506134d382613492565b601782019050919050565b60006134e982612602565b6134f38185613487565b935061350381856020860161261e565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613545601183613487565b91506135508261350f565b601182019050919050565b6000613566826134bb565b915061357282856134de565b915061357d82613538565b915061358982846134de565b91508190509392505050565b7f54617861626c653a207461786564000000000000000000000000000000000000600082015250565b60006135cb600e8361260d565b91506135d682613595565b602082019050919050565b600060208201905081810360008301526135fa816135be565b9050919050565b7f54617861626c653a206e6f742074617865640000000000000000000000000000600082015250565b600061363760128361260d565b915061364282613601565b602082019050919050565b600060208201905081810360008301526136668161362a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136d682612712565b9150600082036136e9576136e8612b12565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061372a60208361260d565b9150613735826136f4565b602082019050919050565b600060208201905081810360008301526137598161371d565b905091905056fea2646970667358221220a2246c0a1d81169f5b10ea5d8910f0ca9da3de971d8d9a9685a43c40e7d02f3464736f6c634300081200330000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f44e40882f3536edfea032530213c7fcf146b269000000000000000000000000f44e40882f3536edfea032530213c7fcf146b26900000000000000000000000011a70541df802260856087275115f4735849ea1c

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102535760003560e01c80635f64d73011610146578063a217fddf116100c3578063cca0feb611610087578063cca0feb6146106da578063ced695a4146106f6578063d547741f14610700578063dd62ed3e1461071c578063ee240bbc1461074c578063f2fde38b1461076a57610253565b8063a217fddf14610622578063a457c2d714610640578063a9059cbb14610670578063a9eec33a146106a0578063c498f376146106bc57610253565b80638da5cb5b1161010a5780638da5cb5b1461057c57806391d148541461059a57806395d89b41146105ca5780639dc29fac146105e85780639e01392f1461060457610253565b80635f64d730146104ea57806370a0823114610508578063715018a61461053857806372922a37146105425780638a2b66d11461055e57610253565b806336568abe116101d457806346a85aa41161019857806346a85aa41461046c5780634eb03f6e1461048a578063513fbcec146104a657806353eb3bcf146104c25780635acd2fa6146104cc57610253565b806336568abe146103c85780633785e6d9146103e457806339509351146104025780633b9b03141461043257806340c10f191461045057610253565b806323b872dd1161021b57806323b872dd14610310578063248a9ca3146103405780632713c21e146103705780632f2ff15d1461038e578063313ce567146103aa57610253565b806301ffc9a71461025857806306fdde0314610288578063095ea7b3146102a657806318160ddd146102d65780631c3269b7146102f4575b600080fd5b610272600480360381019061026d919061259f565b610786565b60405161027f91906125e7565b60405180910390f35b610290610800565b60405161029d9190612692565b60405180910390f35b6102c060048036038101906102bb9190612748565b610892565b6040516102cd91906125e7565b60405180910390f35b6102de6108b5565b6040516102eb9190612797565b60405180910390f35b61030e600480360381019061030991906127b2565b6108bf565b005b61032a600480360381019061032591906127df565b6108f4565b60405161033791906125e7565b60405180910390f35b61035a60048036038101906103559190612868565b610923565b60405161036791906128a4565b60405180910390f35b610378610943565b60405161038591906128a4565b60405180910390f35b6103a860048036038101906103a391906128bf565b610967565b005b6103b2610988565b6040516103bf919061291b565b60405180910390f35b6103e260048036038101906103dd91906128bf565b610991565b005b6103ec610a14565b6040516103f99190612945565b60405180910390f35b61041c60048036038101906104179190612748565b610a3e565b60405161042991906125e7565b60405180910390f35b61043a610a75565b6040516104479190612797565b60405180910390f35b61046a60048036038101906104659190612748565b610a7f565b005b610474610ae7565b60405161048191906128a4565b60405180910390f35b6104a4600480360381019061049f91906127b2565b610b0b565b005b6104c060048036038101906104bb91906127b2565b610b57565b005b6104ca610bb6565b005b6104d4610bce565b6040516104e19190612945565b60405180910390f35b6104f2610bd4565b6040516104ff91906128a4565b60405180910390f35b610522600480360381019061051d91906127b2565b610bf8565b60405161052f9190612797565b60405180910390f35b610540610c41565b005b61055c600480360381019061055791906127b2565b610c55565b005b610566610c8a565b6040516105739190612945565b60405180910390f35b610584610cb4565b6040516105919190612945565b60405180910390f35b6105b460048036038101906105af91906128bf565b610cde565b6040516105c191906125e7565b60405180910390f35b6105d2610d49565b6040516105df9190612692565b60405180910390f35b61060260048036038101906105fd9190612748565b610ddb565b005b61060c610e43565b60405161061991906125e7565b60405180910390f35b61062a610e5a565b60405161063791906128a4565b60405180910390f35b61065a60048036038101906106559190612748565b610e61565b60405161066791906125e7565b60405180910390f35b61068a60048036038101906106859190612748565b610ed8565b60405161069791906125e7565b60405180910390f35b6106ba60048036038101906106b59190612960565b610efb565b005b6106c4610f19565b6040516106d191906128a4565b60405180910390f35b6106f460048036038101906106ef91906129b3565b610f3d565b005b6106fe610f57565b005b61071a600480360381019061071591906128bf565b610f6f565b005b610736600480360381019061073191906129e0565b610f90565b6040516107439190612797565b60405180910390f35b610754611017565b6040516107619190612945565b60405180910390f35b610784600480360381019061077f91906127b2565b611041565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f957506107f8826110c4565b5b9050919050565b60606004805461080f90612a4f565b80601f016020809104026020016040519081016040528092919081815260200182805461083b90612a4f565b80156108885780601f1061085d57610100808354040283529160200191610888565b820191906000526020600020905b81548152906001019060200180831161086b57829003601f168201915b5050505050905090565b60008061089d61112e565b90506108aa818585611136565b600191505092915050565b6000600354905090565b6108c76112ff565b6108f17f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed24434612378261137d565b50565b6000806108ff61112e565b905061090c85828561145e565b6109178585856114ea565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123781565b61097082610923565b61097981611765565b610983838361137d565b505050565b60006012905090565b61099961112e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90612af2565b60405180910390fd5b610a108282611779565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080610a4961112e565b9050610a6a818585610a5b8589610f90565b610a659190612b41565b611136565b600191505092915050565b6000600854905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad957600080fd5b610ae3828261185b565b5050565b7fdb1f6cc858f64c436f0ba814bf59b72262e27f9b82ae65442c00c7cfad070f3581565b610b136112ff565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b5f6112ff565b610b897f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed24434612378261137d565b610bb37f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff8261137d565b50565b6000801b610bc381611765565b610bcb6119b2565b50565b61dead81565b7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c496112ff565b610c536000611a15565b565b610c5d6112ff565b610c877f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff8261137d565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060058054610d5890612a4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8490612a4f565b8015610dd15780601f10610da657610100808354040283529160200191610dd1565b820191906000526020600020905b815481529060010190602001808311610db457829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e3557600080fd5b610e3f8282611adb565b5050565b6000600760009054906101000a900460ff16905090565b6000801b81565b600080610e6c61112e565b90506000610e7a8286610f90565b905083811015610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690612be7565b60405180910390fd5b610ecc8286868403611136565b60019250505092915050565b600080610ee361112e565b9050610ef08185856114ea565b600191505092915050565b6000801b610f0881611765565b610f13848484611caa565b50505050565b7f3c9053d8d897bea84f1a2e8814845cc40f47b0a508dc93e56bc37c81c21a3b7881565b6000801b610f4a81611765565b610f5382611db0565b5050565b6000801b610f6481611765565b610f6c611e82565b50565b610f7882610923565b610f8181611765565b610f8b8383611779565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110496112ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90612c79565b60405180910390fd5b6110c181611a15565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90612d0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90612d9d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112f29190612797565b60405180910390a3505050565b61130761112e565b73ffffffffffffffffffffffffffffffffffffffff16611325610cb4565b73ffffffffffffffffffffffffffffffffffffffff161461137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290612e09565b60405180910390fd5b565b6113878282610cde565b61145a5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113ff61112e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061146a8484610f90565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114e457818110156114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90612e75565b60405180910390fd5b6114e38484848403611136565b5b50505050565b6114f2611ee5565b6114ff6000801b33610cde565b156115145761150f838383611f34565b611758565b61153e7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123784610cde565b8061156f575061156e7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff83610cde565b5b8061157f575061157d610e43565b155b80156115b257506115b07f3c9053d8d897bea84f1a2e8814845cc40f47b0a508dc93e56bc37c81c21a3b7884610cde565b155b80156115e557506115e37fdb1f6cc858f64c436f0ba814bf59b72262e27f9b82ae65442c00c7cfad070f3583610cde565b155b156115fa576115f5838383611f34565b611757565b8061160484610bf8565b1015611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90612f07565b60405180910390fd5b61168383611651610c8a565b62030d40600361165f610a75565b8661166a9190612f27565b6116749190612f27565b61167e9190612f98565b611f34565b6116c18361168f610a14565b62030d40600661169d610a75565b866116a89190612f27565b6116b29190612f27565b6116bc9190612f98565b611f34565b6116f3836116cd611017565b62030d406116d9610a75565b856116e49190612f27565b6116ee9190612f98565b611f34565b61171f8361dead614e20611705610a75565b856117109190612f27565b61171a9190612f98565b611f34565b611756838361271061172f610a75565b61271061173c9190612fc9565b856117479190612f27565b6117519190612f98565b611f34565b5b5b6117606121ad565b505050565b6117768161177161112e565b6121b7565b50565b6117838282610cde565b156118575760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117fc61112e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190613049565b60405180910390fd5b6118d66000838361223c565b80600360008282546118e89190612b41565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161199a9190612797565b60405180910390a36119ae60008383612241565b5050565b6119ba612246565b6001600760006101000a81548160ff0219169083151502179055507fcca130fdd52ce6e5eedb160c5f635a53883abcfe2b46453038a1516d7d5380b96119fe61112e565b604051611a0b9190612945565b60405180910390a1565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b41906130db565b60405180910390fd5b611b568260008361223c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd49061316d565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c919190612797565b60405180910390a3611ca583600084612241565b505050565b82600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f09eee28d8d70bfad809ce8acadd46ce657b1fa64646b1e4b414e6bbb2eb2c8fa611d9661112e565b604051611da39190612945565b60405180910390a1505050565b600954811115611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec906131d9565b60405180910390fd5b600a54811015611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190613245565b60405180910390fd5b806008819055507fc8eab30ec12770242ba7c205b239d632db8d3f54b3392aa8692893c8fd07abc3611e6a61112e565b604051611e779190612945565b60405180910390a150565b611e8a612290565b6000600760006101000a81548160ff0219169083151502179055507f8b99205429b09a5a41d0d69839e5129b5f813b29a8e9924b45131170948d88a8611ece61112e565b604051611edb9190612945565b60405180910390a1565b600260005403611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906132b1565b60405180910390fd5b6002600081905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613343565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612009906133d5565b60405180910390fd5b61201d83838361223c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b90613467565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121949190612797565b60405180910390a36121a7848484612241565b50505050565b6001600081905550565b6121c18282610cde565b612238576121ce816122d9565b6121dc8360001c6020612306565b6040516020016121ed92919061355b565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f9190612692565b60405180910390fd5b5050565b505050565b505050565b61224e610e43565b1561228e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612285906135e1565b60405180910390fd5b565b612298610e43565b6122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce9061364d565b60405180910390fd5b565b60606122ff8273ffffffffffffffffffffffffffffffffffffffff16601460ff16612306565b9050919050565b6060600060028360026123199190612f27565b6123239190612b41565b67ffffffffffffffff81111561233c5761233b61366d565b5b6040519080825280601f01601f19166020018201604052801561236e5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106123a6576123a561369c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061240a5761240961369c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261244a9190612f27565b6124549190612b41565b90505b60018111156124f4577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106124965761249561369c565b5b1a60f81b8282815181106124ad576124ac61369c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806124ed906136cb565b9050612457565b5060008414612538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252f90613740565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257c81612547565b811461258757600080fd5b50565b60008135905061259981612573565b92915050565b6000602082840312156125b5576125b4612542565b5b60006125c38482850161258a565b91505092915050565b60008115159050919050565b6125e1816125cc565b82525050565b60006020820190506125fc60008301846125d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263c578082015181840152602081019050612621565b60008484015250505050565b6000601f19601f8301169050919050565b600061266482612602565b61266e818561260d565b935061267e81856020860161261e565b61268781612648565b840191505092915050565b600060208201905081810360008301526126ac8184612659565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126df826126b4565b9050919050565b6126ef816126d4565b81146126fa57600080fd5b50565b60008135905061270c816126e6565b92915050565b6000819050919050565b61272581612712565b811461273057600080fd5b50565b6000813590506127428161271c565b92915050565b6000806040838503121561275f5761275e612542565b5b600061276d858286016126fd565b925050602061277e85828601612733565b9150509250929050565b61279181612712565b82525050565b60006020820190506127ac6000830184612788565b92915050565b6000602082840312156127c8576127c7612542565b5b60006127d6848285016126fd565b91505092915050565b6000806000606084860312156127f8576127f7612542565b5b6000612806868287016126fd565b9350506020612817868287016126fd565b925050604061282886828701612733565b9150509250925092565b6000819050919050565b61284581612832565b811461285057600080fd5b50565b6000813590506128628161283c565b92915050565b60006020828403121561287e5761287d612542565b5b600061288c84828501612853565b91505092915050565b61289e81612832565b82525050565b60006020820190506128b96000830184612895565b92915050565b600080604083850312156128d6576128d5612542565b5b60006128e485828601612853565b92505060206128f5858286016126fd565b9150509250929050565b600060ff82169050919050565b612915816128ff565b82525050565b6000602082019050612930600083018461290c565b92915050565b61293f816126d4565b82525050565b600060208201905061295a6000830184612936565b92915050565b60008060006060848603121561297957612978612542565b5b6000612987868287016126fd565b9350506020612998868287016126fd565b92505060406129a9868287016126fd565b9150509250925092565b6000602082840312156129c9576129c8612542565b5b60006129d784828501612733565b91505092915050565b600080604083850312156129f7576129f6612542565b5b6000612a05858286016126fd565b9250506020612a16858286016126fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a6757607f821691505b602082108103612a7a57612a79612a20565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612adc602f8361260d565b9150612ae782612a80565b604082019050919050565b60006020820190508181036000830152612b0b81612acf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b4c82612712565b9150612b5783612712565b9250828201905080821115612b6f57612b6e612b12565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612bd160258361260d565b9150612bdc82612b75565b604082019050919050565b60006020820190508181036000830152612c0081612bc4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c6360268361260d565b9150612c6e82612c07565b604082019050919050565b60006020820190508181036000830152612c9281612c56565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612cf560248361260d565b9150612d0082612c99565b604082019050919050565b60006020820190508181036000830152612d2481612ce8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d8760228361260d565b9150612d9282612d2b565b604082019050919050565b60006020820190508181036000830152612db681612d7a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612df360208361260d565b9150612dfe82612dbd565b602082019050919050565b60006020820190508181036000830152612e2281612de6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e5f601d8361260d565b9150612e6a82612e29565b602082019050919050565b60006020820190508181036000830152612e8e81612e52565b9050919050565b7f4572726f723a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ef160268361260d565b9150612efc82612e95565b604082019050919050565b60006020820190508181036000830152612f2081612ee4565b9050919050565b6000612f3282612712565b9150612f3d83612712565b9250828202612f4b81612712565b91508282048414831517612f6257612f61612b12565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fa382612712565b9150612fae83612712565b925082612fbe57612fbd612f69565b5b828204905092915050565b6000612fd482612712565b9150612fdf83612712565b9250828203905081811115612ff757612ff6612b12565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613033601f8361260d565b915061303e82612ffd565b602082019050919050565b6000602082019050818103600083015261306281613026565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006130c560218361260d565b91506130d082613069565b604082019050919050565b600060208201905081810360008301526130f4816130b8565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061315760228361260d565b9150613162826130fb565b604082019050919050565b600060208201905081810360008301526131868161314a565b9050919050565b7f54617861626c653a2074617820697320746f6f20686967680000000000000000600082015250565b60006131c360188361260d565b91506131ce8261318d565b602082019050919050565b600060208201905081810360008301526131f2816131b6565b9050919050565b7f54617861626c653a2074617820697320746f6f206c6f77000000000000000000600082015250565b600061322f60178361260d565b915061323a826131f9565b602082019050919050565b6000602082019050818103600083015261325e81613222565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061329b601f8361260d565b91506132a682613265565b602082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061332d60258361260d565b9150613338826132d1565b604082019050919050565b6000602082019050818103600083015261335c81613320565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133bf60238361260d565b91506133ca82613363565b604082019050919050565b600060208201905081810360008301526133ee816133b2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061345160268361260d565b915061345c826133f5565b604082019050919050565b6000602082019050818103600083015261348081613444565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006134c8601783613487565b91506134d382613492565b601782019050919050565b60006134e982612602565b6134f38185613487565b935061350381856020860161261e565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613545601183613487565b91506135508261350f565b601182019050919050565b6000613566826134bb565b915061357282856134de565b915061357d82613538565b915061358982846134de565b91508190509392505050565b7f54617861626c653a207461786564000000000000000000000000000000000000600082015250565b60006135cb600e8361260d565b91506135d682613595565b602082019050919050565b600060208201905081810360008301526135fa816135be565b9050919050565b7f54617861626c653a206e6f742074617865640000000000000000000000000000600082015250565b600061363760128361260d565b915061364282613601565b602082019050919050565b600060208201905081810360008301526136668161362a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136d682612712565b9150600082036136e9576136e8612b12565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061372a60208361260d565b9150613735826136f4565b602082019050919050565b600060208201905081810360008301526137598161371d565b905091905056fea2646970667358221220a2246c0a1d81169f5b10ea5d8910f0ca9da3de971d8d9a9685a43c40e7d02f3464736f6c63430008120033

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

0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f44e40882f3536edfea032530213c7fcf146b269000000000000000000000000f44e40882f3536edfea032530213c7fcf146b26900000000000000000000000011a70541df802260856087275115f4735849ea1c

-----Decoded View---------------
Arg [0] : __taxed (bool): True
Arg [1] : __thetax (uint256): 100
Arg [2] : __maxtax (uint256): 500
Arg [3] : __mintax (uint256): 0
Arg [4] : __owner (address): 0xF44e40882F3536edfEA032530213C7FCF146b269
Arg [5] : __owner2 (address): 0xF44e40882F3536edfEA032530213C7FCF146b269
Arg [6] : __owner3 (address): 0x11A70541df802260856087275115f4735849ea1C

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000f44e40882f3536edfea032530213c7fcf146b269
Arg [5] : 000000000000000000000000f44e40882f3536edfea032530213c7fcf146b269
Arg [6] : 00000000000000000000000011a70541df802260856087275115f4735849ea1c


Deployed Bytecode Sourcemap

58152:3746:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32510:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43937:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46288:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45057:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59878:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47069:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34333:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58233:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34774:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44899:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35918:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27091:221;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47773:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26660:194;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61645:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58460:70;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61799:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59597:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59505:84;;;:::i;:::-;;58537:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58308:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45228:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22962:103;;;:::i;:::-;;59754:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26862:219;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22314:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44156:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61503:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26437:215;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31911:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48514:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45561:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60206:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58379:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60093:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59999:86;;;:::i;:::-;;35214:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45817:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27322:221;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23220:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32510:204;32595:4;32634:32;32619:47;;;:11;:47;;;;:87;;;;32670:36;32694:11;32670:23;:36::i;:::-;32619:87;32612:94;;32510:204;;;:::o;43937:100::-;43991:13;44024:5;44017:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43937:100;:::o;46288:201::-;46371:4;46388:13;46404:12;:10;:12::i;:::-;46388:28;;46427:32;46436:5;46443:7;46452:6;46427:8;:32::i;:::-;46477:4;46470:11;;;46288:201;;;;:::o;45057:108::-;45118:7;45145:12;;45138:19;;45057:108;:::o;59878:113::-;22200:13;:11;:13::i;:::-;59948:33:::1;58274:27;59975:5;59948:10;:33::i;:::-;59878:113:::0;:::o;47069:295::-;47200:4;47217:15;47235:12;:10;:12::i;:::-;47217:30;;47258:38;47274:4;47280:7;47289:6;47258:15;:38::i;:::-;47307:27;47317:4;47323:2;47327:6;47307:9;:27::i;:::-;47352:4;47345:11;;;47069:295;;;;;:::o;34333:131::-;34407:7;34434:6;:12;34441:4;34434:12;;;;;;;;;;;:22;;;34427:29;;34333:131;;;:::o;58233:68::-;58274:27;58233:68;:::o;34774:147::-;34857:18;34870:4;34857:12;:18::i;:::-;32402:16;32413:4;32402:10;:16::i;:::-;34888:25:::1;34899:4;34905:7;34888:10;:25::i;:::-;34774:147:::0;;;:::o;44899:93::-;44957:5;44982:2;44975:9;;44899:93;:::o;35918:218::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:23;;;36006:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;36102:26;36114:4;36120:7;36102:11;:26::i;:::-;35918:218;;:::o;27091:221::-;27147:7;27240:16;;;;;;;;;;;27233:23;;27091:221;:::o;47773:238::-;47861:4;47878:13;47894:12;:10;:12::i;:::-;47878:28;;47917:64;47926:5;47933:7;47970:10;47942:25;47952:5;47959:7;47942:9;:25::i;:::-;:38;;;;:::i;:::-;47917:8;:64::i;:::-;47999:4;47992:11;;;47773:238;;;;:::o;26660:194::-;26707:4;26794:7;;26787:14;;26660:194;:::o;61645:146::-;61738:6;;;;;;;;;;;61724:20;;:10;:20;;;61716:29;;;;;;61756:25;61762:9;61773:7;61756:5;:25::i;:::-;61645:146;;:::o;58460:70::-;58502:28;58460:70;:::o;61799:96::-;22200:13;:11;:13::i;:::-;61878:7:::1;61869:6;;:16;;;;;;;;;;;;;;;;;;61799:96:::0;:::o;59597:149::-;22200:13;:11;:13::i;:::-;59663:33:::1;58274:27;59690:5;59663:10;:33::i;:::-;59707:31;58347:25;59732:5;59707:10;:31::i;:::-;59597:149:::0;:::o;59505:84::-;31956:4;59542:18;;32402:16;32413:4;32402:10;:16::i;:::-;59573:8:::1;:6;:8::i;:::-;59505:84:::0;:::o;58537:77::-;58572:42;58537:77;:::o;58308:64::-;58347:25;58308:64;:::o;45228:127::-;45302:7;45329:9;:18;45339:7;45329:18;;;;;;;;;;;;;;;;45322:25;;45228:127;;;:::o;22962:103::-;22200:13;:11;:13::i;:::-;23027:30:::1;23054:1;23027:18;:30::i;:::-;22962:103::o:0;59754:112::-;22200:13;:11;:13::i;:::-;59827:31:::1;58347:25;59852:5;59827:10;:31::i;:::-;59754:112:::0;:::o;26862:219::-;26917:7;27010:15;;;;;;;;;;;27003:22;;26862:219;:::o;22314:87::-;22360:7;22387:6;;;;;;;;;;;22380:13;;22314:87;:::o;32806:147::-;32892:4;32916:6;:12;32923:4;32916:12;;;;;;;;;;;:20;;:29;32937:7;32916:29;;;;;;;;;;;;;;;;;;;;;;;;;32909:36;;32806:147;;;;:::o;44156:104::-;44212:13;44245:7;44238:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44156:104;:::o;61503:134::-;61590:6;;;;;;;;;;;61576:20;;:10;:20;;;61568:29;;;;;;61608:21;61614:5;61621:7;61608:5;:21::i;:::-;61503:134;;:::o;26437:215::-;26483:4;26578:6;;;;;;;;;;;26571:13;;26437:215;:::o;31911:49::-;31956:4;31911:49;;;:::o;48514:436::-;48607:4;48624:13;48640:12;:10;:12::i;:::-;48624:28;;48663:24;48690:25;48700:5;48707:7;48690:9;:25::i;:::-;48663:52;;48754:15;48734:16;:35;;48726:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48847:60;48856:5;48863:7;48891:15;48872:16;:34;48847:8;:60::i;:::-;48938:4;48931:11;;;;48514:436;;;;:::o;45561:193::-;45640:4;45657:13;45673:12;:10;:12::i;:::-;45657:28;;45696;45706:5;45713:2;45717:6;45696:9;:28::i;:::-;45742:4;45735:11;;;45561:193;;;;:::o;60206:230::-;31956:4;60326:18;;32402:16;32413:4;32402:10;:16::i;:::-;60357:71:::1;60379:14;60395:15;60412;60357:21;:71::i;:::-;60206:230:::0;;;;:::o;58379:74::-;58423:30;58379:74;:::o;60093:105::-;31956:4;60141:18;;32402:16;32413:4;32402:10;:16::i;:::-;60172:18:::1;60183:6;60172:10;:18::i;:::-;60093:105:::0;;:::o;59999:86::-;31956:4;60037:18;;32402:16;32413:4;32402:10;:16::i;:::-;60068:9:::1;:7;:9::i;:::-;59999:86:::0;:::o;35214:149::-;35298:18;35311:4;35298:12;:18::i;:::-;32402:16;32413:4;32402:10;:16::i;:::-;35329:26:::1;35341:4;35347:7;35329:11;:26::i;:::-;35214:149:::0;;;:::o;45817:151::-;45906:7;45933:11;:18;45945:5;45933:18;;;;;;;;;;;;;;;:27;45952:7;45933:27;;;;;;;;;;;;;;;;45926:34;;45817:151;;;;:::o;27322:221::-;27378:7;27471:16;;;;;;;;;;;27464:23;;27322:221;:::o;23220:201::-;22200:13;:11;:13::i;:::-;23329:1:::1;23309:22;;:8;:22;;::::0;23301:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23385:28;23404:8;23385:18;:28::i;:::-;23220:201:::0;:::o;1782:157::-;1867:4;1906:25;1891:40;;;:11;:40;;;;1884:47;;1782:157;;;:::o;20865:98::-;20918:7;20945:10;20938:17;;20865:98;:::o;52541:380::-;52694:1;52677:19;;:5;:19;;;52669:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52775:1;52756:21;;:7;:21;;;52748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52859:6;52829:11;:18;52841:5;52829:18;;;;;;;;;;;;;;;:27;52848:7;52829:27;;;;;;;;;;;;;;;:36;;;;52897:7;52881:32;;52890:5;52881:32;;;52906:6;52881:32;;;;;;:::i;:::-;;;;;;;;52541:380;;;:::o;22479:132::-;22554:12;:10;:12::i;:::-;22543:23;;:7;:5;:7::i;:::-;:23;;;22535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22479:132::o;37515:238::-;37599:22;37607:4;37613:7;37599;:22::i;:::-;37594:152;;37670:4;37638:6;:12;37645:4;37638:12;;;;;;;;;;;:20;;:29;37659:7;37638:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;37721:12;:10;:12::i;:::-;37694:40;;37712:7;37694:40;;37706:4;37694:40;;;;;;;;;;37594:152;37515:238;;:::o;53212:453::-;53347:24;53374:25;53384:5;53391:7;53374:9;:25::i;:::-;53347:52;;53434:17;53414:16;:37;53410:248;;53496:6;53476:16;:26;;53468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53580:51;53589:5;53596:7;53624:6;53605:16;:25;53580:8;:51::i;:::-;53410:248;53336:329;53212:453;;;:::o;60445:1050::-;57470:21;:19;:21::i;:::-;60608:39:::1;31956:4;60616:18:::0;::::1;60636:10;60608:7;:39::i;:::-;60604:884;;;60664:33;60680:4;60686:2;60690:6;60664:15;:33::i;:::-;60604:884;;;60734:29;58274:27;60758:4;60734:7;:29::i;:::-;:58;;;;60767:25;58347;60789:2;60767:7;:25::i;:::-;60734:58;:70;;;;60797:7;:5;:7::i;:::-;60796:8;60734:70;60733:122;;;;;60823:32;58423:30;60850:4;60823:7;:32::i;:::-;60822:33;60733:122;:155;;;;;60860:28;58502;60885:2;60860:7;:28::i;:::-;60859:29;60733:155;60730:747;;;60909:33;60925:4;60931:2;60935:6;60909:15;:33::i;:::-;60730:747;;;61011:6;60992:15;61002:4;60992:9;:15::i;:::-;:25;;60984:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;61079:65;61095:4;61101:16;:14;:16::i;:::-;61137:6;61135:1;61126:8;:6;:8::i;:::-;61119:6;:15;;;;:::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;61079:15;:65::i;:::-;61164:66;61180:4;61186:17;:15;:17::i;:::-;61223:6;61221:1;61212:8;:6;:8::i;:::-;61205:6;:15;;;;:::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;61164:15;:66::i;:::-;61249:64;61265:4;61271:17;:15;:17::i;:::-;61306:6;61297:8;:6;:8::i;:::-;61290:6;:15;;;;:::i;:::-;:22;;;;:::i;:::-;61249:15;:64::i;:::-;61332:54;61348:4;58572:42;61380:5;61371:8;:6;:8::i;:::-;61364:6;:15;;;;:::i;:::-;:21;;;;:::i;:::-;61332:15;:54::i;:::-;61405:56;61421:4;61427:2;61455:5;61445:8;:6;:8::i;:::-;61439:5;:14;;;;:::i;:::-;61431:6;:23;;;;:::i;:::-;:29;;;;:::i;:::-;61405:15;:56::i;:::-;60730:747;60604:884;57514:20:::0;:18;:20::i;:::-;60445:1050;;;:::o;33257:105::-;33324:30;33335:4;33341:12;:10;:12::i;:::-;33324:10;:30::i;:::-;33257:105;:::o;37933:239::-;38017:22;38025:4;38031:7;38017;:22::i;:::-;38013:152;;;38088:5;38056:6;:12;38063:4;38056:12;;;;;;;;;;;:20;;:29;38077:7;38056:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;38140:12;:10;:12::i;:::-;38113:40;;38131:7;38113:40;;38125:4;38113:40;;;;;;;;;;38013:152;37933:239;;:::o;50547:548::-;50650:1;50631:21;;:7;:21;;;50623:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50701:49;50730:1;50734:7;50743:6;50701:20;:49::i;:::-;50779:6;50763:12;;:22;;;;;;;:::i;:::-;;;;;;;;50956:6;50934:9;:18;50944:7;50934:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;51010:7;50989:37;;51006:1;50989:37;;;51019:6;50989:37;;;;;;:::i;:::-;;;;;;;;51039:48;51067:1;51071:7;51080:6;51039:19;:48::i;:::-;50547:548;;:::o;28164:295::-;26090:18;:16;:18::i;:::-;28306:4:::1;28297:6;;:13;;;;;;;;;;;;;;;;;;28385:19;28391:12;:10;:12::i;:::-;28385:19;;;;;;:::i;:::-;;;;;;;;28164:295::o:0;23581:191::-;23655:16;23674:6;;;;;;;;;;;23655:25;;23700:8;23691:6;;:17;;;;;;;;;;;;;;;;;;23755:8;23724:40;;23745:8;23724:40;;;;;;;;;;;;23644:128;23581:191;:::o;51428:675::-;51531:1;51512:21;;:7;:21;;;51504:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51584:49;51605:7;51622:1;51626:6;51584:20;:49::i;:::-;51646:22;51671:9;:18;51681:7;51671:18;;;;;;;;;;;;;;;;51646:43;;51726:6;51708:14;:24;;51700:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;51845:6;51828:14;:23;51807:9;:18;51817:7;51807:18;;;;;;;;;;;;;;;:44;;;;51962:6;51946:12;;:22;;;;;;;;;;;52023:1;51997:37;;52006:7;51997:37;;;52027:6;51997:37;;;;;;:::i;:::-;;;;;;;;52047:48;52067:7;52084:1;52088:6;52047:19;:48::i;:::-;51493:610;51428:675;;:::o;29365:563::-;29606:14;29588:15;;:32;;;;;;;;;;;;;;;;;;29650:15;29631:16;;:34;;;;;;;;;;;;;;;;;;29696:15;29677:16;;:34;;;;;;;;;;;;;;;;;;29820:35;29842:12;:10;:12::i;:::-;29820:35;;;;;;:::i;:::-;;;;;;;;29365:563;;;:::o;28771:589::-;28938:7;;28928:6;:17;;28920:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;29063:7;;29053:6;:17;;29045:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;29179:6;29169:7;:16;;;;29275:24;29286:12;:10;:12::i;:::-;29275:24;;;;;;:::i;:::-;;;;;;;;28771:589;:::o;28464:299::-;26280:15;:13;:15::i;:::-;28605:5:::1;28596:6;;:14;;;;;;;;;;;;;;;;;;28687:20;28694:12;:10;:12::i;:::-;28687:20;;;;;;:::i;:::-;;;;;;;;28464:299::o:0;57550:293::-;56952:1;57684:7;;:19;57676:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;56952:1;57817:7;:18;;;;57550:293::o;49420:840::-;49567:1;49551:18;;:4;:18;;;49543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49644:1;49630:16;;:2;:16;;;49622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49699:38;49720:4;49726:2;49730:6;49699:20;:38::i;:::-;49750:19;49772:9;:15;49782:4;49772:15;;;;;;;;;;;;;;;;49750:37;;49821:6;49806:11;:21;;49798:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;49938:6;49924:11;:20;49906:9;:15;49916:4;49906:15;;;;;;;;;;;;;;;:38;;;;50141:6;50124:9;:13;50134:2;50124:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;50191:2;50176:26;;50185:4;50176:26;;;50195:6;50176:26;;;;;;:::i;:::-;;;;;;;;50215:37;50235:4;50241:2;50245:6;50215:19;:37::i;:::-;49532:728;49420:840;;;:::o;57851:213::-;56908:1;58034:7;:22;;;;57851:213::o;33652:492::-;33741:22;33749:4;33755:7;33741;:22::i;:::-;33736:401;;33929:28;33949:7;33929:19;:28::i;:::-;34030:38;34058:4;34050:13;;34065:2;34030:19;:38::i;:::-;33834:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33780:345;;;;;;;;;;;:::i;:::-;;;;;;;;33736:401;33652:492;;:::o;54265:125::-;;;;:::o;54994:124::-;;;;:::o;27643:199::-;27765:7;:5;:7::i;:::-;27764:8;27756:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;27643:199::o;27847:195::-;27962:7;:5;:7::i;:::-;27954:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;27847:195::o;16987:151::-;17045:13;17078:52;17106:4;17090:22;;15142:2;17078:52;;:11;:52::i;:::-;17071:59;;16987:151;;;:::o;16383:447::-;16458:13;16484:19;16529:1;16520:6;16516:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16506:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16484:47;;16542:15;:6;16549:1;16542:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16568;:6;16575:1;16568:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16599:9;16624:1;16615:6;16611:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16599:26;;16594:131;16631:1;16627;:5;16594:131;;;16666:8;16683:3;16675:5;:11;16666:21;;;;;;;:::i;:::-;;;;;16654:6;16661:1;16654:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;16712:1;16702:11;;;;;16634:3;;;;:::i;:::-;;;16594:131;;;;16752:1;16743:5;:10;16735:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;16815:6;16801:21;;;16383:447;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:118::-;4290:24;4308:5;4290:24;:::i;:::-;4285:3;4278:37;4203:118;;:::o;4327:222::-;4420:4;4458:2;4447:9;4443:18;4435:26;;4471:71;4539:1;4528:9;4524:17;4515:6;4471:71;:::i;:::-;4327:222;;;;:::o;4555:329::-;4614:6;4663:2;4651:9;4642:7;4638:23;4634:32;4631:119;;;4669:79;;:::i;:::-;4631:119;4789:1;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4760:117;4555:329;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:77::-;5552:7;5581:5;5570:16;;5515:77;;;:::o;5598:122::-;5671:24;5689:5;5671:24;:::i;:::-;5664:5;5661:35;5651:63;;5710:1;5707;5700:12;5651:63;5598:122;:::o;5726:139::-;5772:5;5810:6;5797:20;5788:29;;5826:33;5853:5;5826:33;:::i;:::-;5726:139;;;;:::o;5871:329::-;5930:6;5979:2;5967:9;5958:7;5954:23;5950:32;5947:119;;;5985:79;;:::i;:::-;5947:119;6105:1;6130:53;6175:7;6166:6;6155:9;6151:22;6130:53;:::i;:::-;6120:63;;6076:117;5871:329;;;;:::o;6206:118::-;6293:24;6311:5;6293:24;:::i;:::-;6288:3;6281:37;6206:118;;:::o;6330:222::-;6423:4;6461:2;6450:9;6446:18;6438:26;;6474:71;6542:1;6531:9;6527:17;6518:6;6474:71;:::i;:::-;6330:222;;;;:::o;6558:474::-;6626:6;6634;6683:2;6671:9;6662:7;6658:23;6654:32;6651:119;;;6689:79;;:::i;:::-;6651:119;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6936:2;6962:53;7007:7;6998:6;6987:9;6983:22;6962:53;:::i;:::-;6952:63;;6907:118;6558:474;;;;;:::o;7038:86::-;7073:7;7113:4;7106:5;7102:16;7091:27;;7038:86;;;:::o;7130:112::-;7213:22;7229:5;7213:22;:::i;:::-;7208:3;7201:35;7130:112;;:::o;7248:214::-;7337:4;7375:2;7364:9;7360:18;7352:26;;7388:67;7452:1;7441:9;7437:17;7428:6;7388:67;:::i;:::-;7248:214;;;;:::o;7468:118::-;7555:24;7573:5;7555:24;:::i;:::-;7550:3;7543:37;7468:118;;:::o;7592:222::-;7685:4;7723:2;7712:9;7708:18;7700:26;;7736:71;7804:1;7793:9;7789:17;7780:6;7736:71;:::i;:::-;7592:222;;;;:::o;7820:619::-;7897:6;7905;7913;7962:2;7950:9;7941:7;7937:23;7933:32;7930:119;;;7968:79;;:::i;:::-;7930:119;8088:1;8113:53;8158:7;8149:6;8138:9;8134:22;8113:53;:::i;:::-;8103:63;;8059:117;8215:2;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8186:118;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7820:619;;;;;:::o;8445:329::-;8504:6;8553:2;8541:9;8532:7;8528:23;8524:32;8521:119;;;8559:79;;:::i;:::-;8521:119;8679:1;8704:53;8749:7;8740:6;8729:9;8725:22;8704:53;:::i;:::-;8694:63;;8650:117;8445:329;;;;:::o;8780:474::-;8848:6;8856;8905:2;8893:9;8884:7;8880:23;8876:32;8873:119;;;8911:79;;:::i;:::-;8873:119;9031:1;9056:53;9101:7;9092:6;9081:9;9077:22;9056:53;:::i;:::-;9046:63;;9002:117;9158:2;9184:53;9229:7;9220:6;9209:9;9205:22;9184:53;:::i;:::-;9174:63;;9129:118;8780:474;;;;;:::o;9260:180::-;9308:77;9305:1;9298:88;9405:4;9402:1;9395:15;9429:4;9426:1;9419:15;9446:320;9490:6;9527:1;9521:4;9517:12;9507:22;;9574:1;9568:4;9564:12;9595:18;9585:81;;9651:4;9643:6;9639:17;9629:27;;9585:81;9713:2;9705:6;9702:14;9682:18;9679:38;9676:84;;9732:18;;:::i;:::-;9676:84;9497:269;9446:320;;;:::o;9772:234::-;9912:34;9908:1;9900:6;9896:14;9889:58;9981:17;9976:2;9968:6;9964:15;9957:42;9772:234;:::o;10012:366::-;10154:3;10175:67;10239:2;10234:3;10175:67;:::i;:::-;10168:74;;10251:93;10340:3;10251:93;:::i;:::-;10369:2;10364:3;10360:12;10353:19;;10012:366;;;:::o;10384:419::-;10550:4;10588:2;10577:9;10573:18;10565:26;;10637:9;10631:4;10627:20;10623:1;10612:9;10608:17;10601:47;10665:131;10791:4;10665:131;:::i;:::-;10657:139;;10384:419;;;:::o;10809:180::-;10857:77;10854:1;10847:88;10954:4;10951:1;10944:15;10978:4;10975:1;10968:15;10995:191;11035:3;11054:20;11072:1;11054:20;:::i;:::-;11049:25;;11088:20;11106:1;11088:20;:::i;:::-;11083:25;;11131:1;11128;11124:9;11117:16;;11152:3;11149:1;11146:10;11143:36;;;11159:18;;:::i;:::-;11143:36;10995:191;;;;:::o;11192:224::-;11332:34;11328:1;11320:6;11316:14;11309:58;11401:7;11396:2;11388:6;11384:15;11377:32;11192:224;:::o;11422:366::-;11564:3;11585:67;11649:2;11644:3;11585:67;:::i;:::-;11578:74;;11661:93;11750:3;11661:93;:::i;:::-;11779:2;11774:3;11770:12;11763:19;;11422:366;;;:::o;11794:419::-;11960:4;11998:2;11987:9;11983:18;11975:26;;12047:9;12041:4;12037:20;12033:1;12022:9;12018:17;12011:47;12075:131;12201:4;12075:131;:::i;:::-;12067:139;;11794:419;;;:::o;12219:225::-;12359:34;12355:1;12347:6;12343:14;12336:58;12428:8;12423:2;12415:6;12411:15;12404:33;12219:225;:::o;12450:366::-;12592:3;12613:67;12677:2;12672:3;12613:67;:::i;:::-;12606:74;;12689:93;12778:3;12689:93;:::i;:::-;12807:2;12802:3;12798:12;12791:19;;12450:366;;;:::o;12822:419::-;12988:4;13026:2;13015:9;13011:18;13003:26;;13075:9;13069:4;13065:20;13061:1;13050:9;13046:17;13039:47;13103:131;13229:4;13103:131;:::i;:::-;13095:139;;12822:419;;;:::o;13247:223::-;13387:34;13383:1;13375:6;13371:14;13364:58;13456:6;13451:2;13443:6;13439:15;13432:31;13247:223;:::o;13476:366::-;13618:3;13639:67;13703:2;13698:3;13639:67;:::i;:::-;13632:74;;13715:93;13804:3;13715:93;:::i;:::-;13833:2;13828:3;13824:12;13817:19;;13476:366;;;:::o;13848:419::-;14014:4;14052:2;14041:9;14037:18;14029:26;;14101:9;14095:4;14091:20;14087:1;14076:9;14072:17;14065:47;14129:131;14255:4;14129:131;:::i;:::-;14121:139;;13848:419;;;:::o;14273:221::-;14413:34;14409:1;14401:6;14397:14;14390:58;14482:4;14477:2;14469:6;14465:15;14458:29;14273:221;:::o;14500:366::-;14642:3;14663:67;14727:2;14722:3;14663:67;:::i;:::-;14656:74;;14739:93;14828:3;14739:93;:::i;:::-;14857:2;14852:3;14848:12;14841:19;;14500:366;;;:::o;14872:419::-;15038:4;15076:2;15065:9;15061:18;15053:26;;15125:9;15119:4;15115:20;15111:1;15100:9;15096:17;15089:47;15153:131;15279:4;15153:131;:::i;:::-;15145:139;;14872:419;;;:::o;15297:182::-;15437:34;15433:1;15425:6;15421:14;15414:58;15297:182;:::o;15485:366::-;15627:3;15648:67;15712:2;15707:3;15648:67;:::i;:::-;15641:74;;15724:93;15813:3;15724:93;:::i;:::-;15842:2;15837:3;15833:12;15826:19;;15485:366;;;:::o;15857:419::-;16023:4;16061:2;16050:9;16046:18;16038:26;;16110:9;16104:4;16100:20;16096:1;16085:9;16081:17;16074:47;16138:131;16264:4;16138:131;:::i;:::-;16130:139;;15857:419;;;:::o;16282:179::-;16422:31;16418:1;16410:6;16406:14;16399:55;16282:179;:::o;16467:366::-;16609:3;16630:67;16694:2;16689:3;16630:67;:::i;:::-;16623:74;;16706:93;16795:3;16706:93;:::i;:::-;16824:2;16819:3;16815:12;16808:19;;16467:366;;;:::o;16839:419::-;17005:4;17043:2;17032:9;17028:18;17020:26;;17092:9;17086:4;17082:20;17078:1;17067:9;17063:17;17056:47;17120:131;17246:4;17120:131;:::i;:::-;17112:139;;16839:419;;;:::o;17264:225::-;17404:34;17400:1;17392:6;17388:14;17381:58;17473:8;17468:2;17460:6;17456:15;17449:33;17264:225;:::o;17495:366::-;17637:3;17658:67;17722:2;17717:3;17658:67;:::i;:::-;17651:74;;17734:93;17823:3;17734:93;:::i;:::-;17852:2;17847:3;17843:12;17836:19;;17495:366;;;:::o;17867:419::-;18033:4;18071:2;18060:9;18056:18;18048:26;;18120:9;18114:4;18110:20;18106:1;18095:9;18091:17;18084:47;18148:131;18274:4;18148:131;:::i;:::-;18140:139;;17867:419;;;:::o;18292:410::-;18332:7;18355:20;18373:1;18355:20;:::i;:::-;18350:25;;18389:20;18407:1;18389:20;:::i;:::-;18384:25;;18444:1;18441;18437:9;18466:30;18484:11;18466:30;:::i;:::-;18455:41;;18645:1;18636:7;18632:15;18629:1;18626:22;18606:1;18599:9;18579:83;18556:139;;18675:18;;:::i;:::-;18556:139;18340:362;18292:410;;;;:::o;18708:180::-;18756:77;18753:1;18746:88;18853:4;18850:1;18843:15;18877:4;18874:1;18867:15;18894:185;18934:1;18951:20;18969:1;18951:20;:::i;:::-;18946:25;;18985:20;19003:1;18985:20;:::i;:::-;18980:25;;19024:1;19014:35;;19029:18;;:::i;:::-;19014:35;19071:1;19068;19064:9;19059:14;;18894:185;;;;:::o;19085:194::-;19125:4;19145:20;19163:1;19145:20;:::i;:::-;19140:25;;19179:20;19197:1;19179:20;:::i;:::-;19174:25;;19223:1;19220;19216:9;19208:17;;19247:1;19241:4;19238:11;19235:37;;;19252:18;;:::i;:::-;19235:37;19085:194;;;;:::o;19285:181::-;19425:33;19421:1;19413:6;19409:14;19402:57;19285:181;:::o;19472:366::-;19614:3;19635:67;19699:2;19694:3;19635:67;:::i;:::-;19628:74;;19711:93;19800:3;19711:93;:::i;:::-;19829:2;19824:3;19820:12;19813:19;;19472:366;;;:::o;19844:419::-;20010:4;20048:2;20037:9;20033:18;20025:26;;20097:9;20091:4;20087:20;20083:1;20072:9;20068:17;20061:47;20125:131;20251:4;20125:131;:::i;:::-;20117:139;;19844:419;;;:::o;20269:220::-;20409:34;20405:1;20397:6;20393:14;20386:58;20478:3;20473:2;20465:6;20461:15;20454:28;20269:220;:::o;20495:366::-;20637:3;20658:67;20722:2;20717:3;20658:67;:::i;:::-;20651:74;;20734:93;20823:3;20734:93;:::i;:::-;20852:2;20847:3;20843:12;20836:19;;20495:366;;;:::o;20867:419::-;21033:4;21071:2;21060:9;21056:18;21048:26;;21120:9;21114:4;21110:20;21106:1;21095:9;21091:17;21084:47;21148:131;21274:4;21148:131;:::i;:::-;21140:139;;20867:419;;;:::o;21292:221::-;21432:34;21428:1;21420:6;21416:14;21409:58;21501:4;21496:2;21488:6;21484:15;21477:29;21292:221;:::o;21519:366::-;21661:3;21682:67;21746:2;21741:3;21682:67;:::i;:::-;21675:74;;21758:93;21847:3;21758:93;:::i;:::-;21876:2;21871:3;21867:12;21860:19;;21519:366;;;:::o;21891:419::-;22057:4;22095:2;22084:9;22080:18;22072:26;;22144:9;22138:4;22134:20;22130:1;22119:9;22115:17;22108:47;22172:131;22298:4;22172:131;:::i;:::-;22164:139;;21891:419;;;:::o;22316:174::-;22456:26;22452:1;22444:6;22440:14;22433:50;22316:174;:::o;22496:366::-;22638:3;22659:67;22723:2;22718:3;22659:67;:::i;:::-;22652:74;;22735:93;22824:3;22735:93;:::i;:::-;22853:2;22848:3;22844:12;22837:19;;22496:366;;;:::o;22868:419::-;23034:4;23072:2;23061:9;23057:18;23049:26;;23121:9;23115:4;23111:20;23107:1;23096:9;23092:17;23085:47;23149:131;23275:4;23149:131;:::i;:::-;23141:139;;22868:419;;;:::o;23293:173::-;23433:25;23429:1;23421:6;23417:14;23410:49;23293:173;:::o;23472:366::-;23614:3;23635:67;23699:2;23694:3;23635:67;:::i;:::-;23628:74;;23711:93;23800:3;23711:93;:::i;:::-;23829:2;23824:3;23820:12;23813:19;;23472:366;;;:::o;23844:419::-;24010:4;24048:2;24037:9;24033:18;24025:26;;24097:9;24091:4;24087:20;24083:1;24072:9;24068:17;24061:47;24125:131;24251:4;24125:131;:::i;:::-;24117:139;;23844:419;;;:::o;24269:181::-;24409:33;24405:1;24397:6;24393:14;24386:57;24269:181;:::o;24456:366::-;24598:3;24619:67;24683:2;24678:3;24619:67;:::i;:::-;24612:74;;24695:93;24784:3;24695:93;:::i;:::-;24813:2;24808:3;24804:12;24797:19;;24456:366;;;:::o;24828:419::-;24994:4;25032:2;25021:9;25017:18;25009:26;;25081:9;25075:4;25071:20;25067:1;25056:9;25052:17;25045:47;25109:131;25235:4;25109:131;:::i;:::-;25101:139;;24828:419;;;:::o;25253:224::-;25393:34;25389:1;25381:6;25377:14;25370:58;25462:7;25457:2;25449:6;25445:15;25438:32;25253:224;:::o;25483:366::-;25625:3;25646:67;25710:2;25705:3;25646:67;:::i;:::-;25639:74;;25722:93;25811:3;25722:93;:::i;:::-;25840:2;25835:3;25831:12;25824:19;;25483:366;;;:::o;25855:419::-;26021:4;26059:2;26048:9;26044:18;26036:26;;26108:9;26102:4;26098:20;26094:1;26083:9;26079:17;26072:47;26136:131;26262:4;26136:131;:::i;:::-;26128:139;;25855:419;;;:::o;26280:222::-;26420:34;26416:1;26408:6;26404:14;26397:58;26489:5;26484:2;26476:6;26472:15;26465:30;26280:222;:::o;26508:366::-;26650:3;26671:67;26735:2;26730:3;26671:67;:::i;:::-;26664:74;;26747:93;26836:3;26747:93;:::i;:::-;26865:2;26860:3;26856:12;26849:19;;26508:366;;;:::o;26880:419::-;27046:4;27084:2;27073:9;27069:18;27061:26;;27133:9;27127:4;27123:20;27119:1;27108:9;27104:17;27097:47;27161:131;27287:4;27161:131;:::i;:::-;27153:139;;26880:419;;;:::o;27305:225::-;27445:34;27441:1;27433:6;27429:14;27422:58;27514:8;27509:2;27501:6;27497:15;27490:33;27305:225;:::o;27536:366::-;27678:3;27699:67;27763:2;27758:3;27699:67;:::i;:::-;27692:74;;27775:93;27864:3;27775:93;:::i;:::-;27893:2;27888:3;27884:12;27877:19;;27536:366;;;:::o;27908:419::-;28074:4;28112:2;28101:9;28097:18;28089:26;;28161:9;28155:4;28151:20;28147:1;28136:9;28132:17;28125:47;28189:131;28315:4;28189:131;:::i;:::-;28181:139;;27908:419;;;:::o;28333:148::-;28435:11;28472:3;28457:18;;28333:148;;;;:::o;28487:173::-;28627:25;28623:1;28615:6;28611:14;28604:49;28487:173;:::o;28666:402::-;28826:3;28847:85;28929:2;28924:3;28847:85;:::i;:::-;28840:92;;28941:93;29030:3;28941:93;:::i;:::-;29059:2;29054:3;29050:12;29043:19;;28666:402;;;:::o;29074:390::-;29180:3;29208:39;29241:5;29208:39;:::i;:::-;29263:89;29345:6;29340:3;29263:89;:::i;:::-;29256:96;;29361:65;29419:6;29414:3;29407:4;29400:5;29396:16;29361:65;:::i;:::-;29451:6;29446:3;29442:16;29435:23;;29184:280;29074:390;;;;:::o;29470:167::-;29610:19;29606:1;29598:6;29594:14;29587:43;29470:167;:::o;29643:402::-;29803:3;29824:85;29906:2;29901:3;29824:85;:::i;:::-;29817:92;;29918:93;30007:3;29918:93;:::i;:::-;30036:2;30031:3;30027:12;30020:19;;29643:402;;;:::o;30051:967::-;30433:3;30455:148;30599:3;30455:148;:::i;:::-;30448:155;;30620:95;30711:3;30702:6;30620:95;:::i;:::-;30613:102;;30732:148;30876:3;30732:148;:::i;:::-;30725:155;;30897:95;30988:3;30979:6;30897:95;:::i;:::-;30890:102;;31009:3;31002:10;;30051:967;;;;;:::o;31024:164::-;31164:16;31160:1;31152:6;31148:14;31141:40;31024:164;:::o;31194:366::-;31336:3;31357:67;31421:2;31416:3;31357:67;:::i;:::-;31350:74;;31433:93;31522:3;31433:93;:::i;:::-;31551:2;31546:3;31542:12;31535:19;;31194:366;;;:::o;31566:419::-;31732:4;31770:2;31759:9;31755:18;31747:26;;31819:9;31813:4;31809:20;31805:1;31794:9;31790:17;31783:47;31847:131;31973:4;31847:131;:::i;:::-;31839:139;;31566:419;;;:::o;31991:168::-;32131:20;32127:1;32119:6;32115:14;32108:44;31991:168;:::o;32165:366::-;32307:3;32328:67;32392:2;32387:3;32328:67;:::i;:::-;32321:74;;32404:93;32493:3;32404:93;:::i;:::-;32522:2;32517:3;32513:12;32506:19;;32165:366;;;:::o;32537:419::-;32703:4;32741:2;32730:9;32726:18;32718:26;;32790:9;32784:4;32780:20;32776:1;32765:9;32761:17;32754:47;32818:131;32944:4;32818:131;:::i;:::-;32810:139;;32537:419;;;:::o;32962:180::-;33010:77;33007:1;33000:88;33107:4;33104:1;33097:15;33131:4;33128:1;33121:15;33148:180;33196:77;33193:1;33186:88;33293:4;33290:1;33283:15;33317:4;33314:1;33307:15;33334:171;33373:3;33396:24;33414:5;33396:24;:::i;:::-;33387:33;;33442:4;33435:5;33432:15;33429:41;;33450:18;;:::i;:::-;33429:41;33497:1;33490:5;33486:13;33479:20;;33334:171;;;:::o;33511:182::-;33651:34;33647:1;33639:6;33635:14;33628:58;33511:182;:::o;33699:366::-;33841:3;33862:67;33926:2;33921:3;33862:67;:::i;:::-;33855:74;;33938:93;34027:3;33938:93;:::i;:::-;34056:2;34051:3;34047:12;34040:19;;33699:366;;;:::o;34071:419::-;34237:4;34275:2;34264:9;34260:18;34252:26;;34324:9;34318:4;34314:20;34310:1;34299:9;34295:17;34288:47;34352:131;34478:4;34352:131;:::i;:::-;34344:139;;34071:419;;;:::o

Swarm Source

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