ETH Price: $2,915.02 (-3.80%)
Gas: 1 Gwei

Token

NUKEM (NUKEM)
 

Overview

Max Total Supply

62,222,222,222 NUKEM

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
6,755,838.143196264 NUKEM

Value
$0.00
0x50fe12e655244bdcd0058dc684345f86ea10d478
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EnFi20Immutable

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 24 : EnFi20Immutable.sol
// SPDX-License-Identifier: BUSL-1.1

// ███╗░░██╗██╗░░░██╗██╗░░██╗███████╗███╗░░░███╗
// ████╗░██║██║░░░██║██║░██╔╝██╔════╝████╗░████║
// ██╔██╗██║██║░░░██║█████═╝░█████╗░░██╔████╔██║
// ██║╚████║██║░░░██║██╔═██╗░██╔══╝░░██║╚██╔╝██║
// ██║░╚███║╚██████╔╝██║░╚██╗███████╗██║░╚═╝░██║
// ╚═╝░░╚══╝░╚═════╝░╚═╝░░╚═╝╚══════╝╚═╝░░░░░╚═╝
// https://nukem.loans/
// https://twitter.com/NukemLoans
// https://t.me/nukemloans
// https://enabledefi.gitbook.io/nukemloans/

pragma solidity 0.8.20;

import "IERC20Metadata.sol";
import "IEnFi20.sol";
import "ERC20PermitImmutable.sol";
import "ERC20Immutable.sol";
import "AttributesLibrary.sol";

contract EnFi20Immutable is IEnFi20, ERC20PermitImmutable {
    using Attributes for uint256;

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 decimals_,
        uint256 _supply
    )
        ERC20Immutable(_name, _symbol, decimals_, _supply)
        ERC20PermitImmutable(_name)
    {}

    function recover(
        address account,
        address destination
    ) external virtual onlyRole(Role.RECOVER) returns (uint256 amount) {
        bool is_wallet_blocked = attributes[account].has(
            Attribute.BLOCK_TRANSFER |
                Attribute.BLOCK_MINT |
                Attribute.BLOCK_BURN
        );
        require(is_wallet_blocked, "#1C99CC4C");
        require(destination != address(0), "#1C99CC4D");
        amount = balanceOf(account);
        _decrementBalance(account, amount);
        _incrementBalance(destination, amount);
        return amount;
    }
}

File 2 of 24 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "IERC20.sol";

/**
 * @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 3 of 24 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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);
}

File 4 of 24 : IEnFi20.sol
// SPDX-License-Identifier: UNLICENSED
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity 0.8.20;
import "IERC20Base.sol";
import "IERC20Metadata.sol";
import "draft-IERC20Permit.sol";

//import "IRole.sol";

interface IEnFi20 is IERC20Base, IERC20Metadata, IERC20Permit {
    // Events
    event WhiteListWallet(address _wallet, bool _status);
}

File 5 of 24 : IERC20Base.sol
// SPDX-License-Identifier: BUSL-1.1
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity 0.8.20;

interface IERC20Base {
    event Received(address indexed sender, uint256 value);

    /**
     * @dev function owner()
     * @dev returns the owner of the contract
     * @dev the owner is always granted all roles
     */
    function owner() external view returns (address);

    /**
     * @dev function hasAttribute(account. _attribute)
     * @dev returns true if account has the defined _attribute
     */
    function hasAttribute(
        address account,
        uint256 _attribute
    ) external view returns (bool);

    /**
     * @dev function setAttributes(_wallet, _attributes)
     * @dev adds attributes to _wallet
     */
    function setAttributes(address _wallet, uint256 _attributes) external;

    /**
     * @dev function delAttributes(_wallet, _attributes)
     * @dev removes _attributes from _wallet
     */
    function delAttributes(address _wallet, uint256 _attributes) external;

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) external returns (bool);

    function decreaseAllowance(
        address spender,
        uint256 addedValue
    ) external returns (bool);

    function xtransfer(address token, address creditor, uint256 value) external;

    function xapprove(address token, address spender, uint256 value) external;

    function withdrawEth() external returns (bool);

    function mint(address account, uint256 amount) external;

    receive() external payable;
}

File 6 of 24 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 7 of 24 : IRole.sol
// SPDX-License-Identifier: UNLICENSED
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity 0.8.20;

interface IRole {
    /** access control functions **/

    /**
     * @dev function hasRole(account, role)
     * @dev returns true if account is the owner of the token
     * @dev or if account has the defined _role
     */
    function hasRole(
        address account,
        uint256 role
    ) external view returns (bool has_role);

    /**
     * @dev function hasRole(role)
     * @dev returns true if sender is the owner of the token
     * @dev or if sender has the defined _role
     */
    function hasRole(uint256 role) external view returns (bool has_role);

    /**
     * @dev function addRole(account, role)
     * @dev adds role to account
     */
    function addRole(address account, uint256 role) external;

    /**
     * @dev function removeRole(account, role)
     * @dev removes role from account
     */
    function removeRole(address account, uint256 role) external;
}

File 8 of 24 : ERC20PermitImmutable.sol
// SPDX-License-Identifier: MIT
// based on OpenZeppelin Contracts (token/ERC20/extensions/draft-ERC20Permit.sol)

pragma solidity 0.8.20;
import "draft-EIP712.sol";
import "SignatureChecker.sol";
import "Counters.sol";

import "draft-IERC20Permit.sol";
import "ERC20Immutable.sol";

/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20PermitImmutable is ERC20Immutable, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) internal _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 internal constant _PERMIT_TYPEHASH =
        keccak256(
            "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
        );

    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 internal _PERMIT_TYPEHASH_DEPRECATED_SLOT;

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "#580B8720");

        bytes32 structHash = keccak256(
            abi.encode(
                _PERMIT_TYPEHASH,
                owner,
                spender,
                value,
                _useNonce(owner),
                deadline
            )
        );

        bytes32 hash = _hashTypedDataV4(structHash);

        require(
            SignatureChecker.isValidSignatureNow(
                owner,
                hash,
                abi.encodePacked(r, s, v)
            ),
            "#015A78B4"
        );

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(
        address owner
    ) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR()
        external
        view
        virtual
        override
        returns (bytes32)
    {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(
        address owner
    ) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

File 9 of 24 : draft-EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 10 of 24 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 11 of 24 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 12 of 24 : SignatureChecker.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/SignatureChecker.sol)

pragma solidity ^0.8.0;

import "ECDSA.sol";
import "Address.sol";
import "IERC1271.sol";

/**
 * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA
 * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like
 * Argent and Gnosis Safe.
 *
 * _Available since v4.1._
 */
library SignatureChecker {
    /**
     * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the
     * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`.
     *
     * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus
     * change through time. It could return true at block N and false at block N+1 (or the opposite).
     */
    function isValidSignatureNow(
        address signer,
        bytes32 hash,
        bytes memory signature
    ) internal view returns (bool) {
        (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature);
        if (error == ECDSA.RecoverError.NoError && recovered == signer) {
            return true;
        }

        (bool success, bytes memory result) = signer.staticcall(
            abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature)
        );
        return (success && result.length == 32 && abi.decode(result, (bytes4)) == IERC1271.isValidSignature.selector);
    }
}

File 13 of 24 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 14 of 24 : IERC1271.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC1271 standard signature validation method for
 * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
 *
 * _Available since v4.1._
 */
interface IERC1271 {
    /**
     * @dev Should return whether the signature provided is valid for the provided data
     * @param hash      Hash of the data to be signed
     * @param signature Signature byte array associated with _data
     */
    function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}

File 15 of 24 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 16 of 24 : ERC20Immutable.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.20;
import "ERC20Base.sol";

/**
 * @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.zeppelin.solutions/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 ERC20Immutable is ERC20Base {
    /**
     * @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_,
        uint8 decimals_,
        uint256 supply_
    ) ERC20Base() {
        name = name_;
        symbol = symbol_;
        decimals = decimals_;
        if (supply_ > 0) _mint(msg.sender, supply_ * 10 ** decimals_);
    }
}

File 17 of 24 : ERC20Base.sol
// SPDX-License-Identifier: Business Source License 1.1
pragma solidity 0.8.20;

import "IERC20Metadata.sol";
import "IERC20Base.sol";
import "AttributesLibrary.sol";
import "SafeERC20.sol";
// import "Ownable.sol";
import "ERC165.sol";
import "Context.sol";
import "IERC721.sol";

/**
 * @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.zeppelin.solutions/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}.
 */
abstract contract ERC20Base is
    IERC20Base,
    Context,
    IERC20,
    IERC20Metadata,
    ERC165
{
    using SafeERC20 for IERC20;
    using Attributes for uint256;
    mapping(address => uint256) internal _balances;
    mapping(address => mapping(address => uint256)) internal _allowances;
    uint256 internal _totalSupply;
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    mapping(address => uint256) public attributes;

    /** CONSTANTS */
    // moved to AttributesLibrary

    /** IMMUTABLE VARIABLES */
    /** VARIABLES */
    address private _owner;

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

    /** CONSTRUCTOR */

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

    function _init(address owner_) internal virtual {
        _transferOwnership(owner_);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "onlyowner");
        _;
    }

    modifier onlyRole(uint256 _role) {
        if (_owner != _msgSender())
            require(attributes[_msgSender()].has(_role), "#0CF4C392");
        _;
    }

    // modifier anyRole(uint256 _role) {
    //     if (_owner != _msgSender())
    //         require(attributes[_msgSender()].hasAny(_role), "#0CF4C392");
    //     _;
    // }

    /** RECEIVE */
    /** FALLBACK */

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) external virtual onlyOwner {
        require(newOwner != address(0), "INVVALID_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);
    }

    /** EXTERNAL FUNCTIONS */

    function mint(
        address account,
        uint256 amount
    ) external virtual onlyRole(Role.MINTER) {
        _mint(account, amount);
    }

    /** ATTRIBUTES **/

    function hasAttribute(
        address account,
        uint256 _attribute
    ) public view virtual returns (bool) {
        return attributes[account].has(_attribute);
    }

    function setAttributes(
        address _wallet,
        uint256 _attributes
    ) public virtual onlyRole(Role.ATTRIBUTES) {
        attributes[_wallet] = attributes[_wallet].set(_attributes);
    }

    function setMAttributes(
        address[] memory _wallets,
        uint256 _attributes
    ) public virtual onlyRole(Role.ATTRIBUTES) {
        for (uint256 i = 0; i < _wallets.length; i++)
            setAttributes(_wallets[i], _attributes);
    }

    function delAttributes(
        address _wallet,
        uint256 _attributes
    ) public virtual onlyRole(Role.ATTRIBUTES) {
        attributes[_wallet] = attributes[_wallet].remove(_attributes);
    }

    function delMAttributes(
        address[] memory _wallets,
        uint256 _attributes
    ) public virtual onlyRole(Role.ATTRIBUTES) {
        for (uint256 i = 0; i < _wallets.length; i++)
            delAttributes(_wallets[i], _attributes);
    }

    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(ERC165) returns (bool) {
        return
            interfaceId == 0x36372b07 || super.supportsInterface(interfaceId);
    }

    function transfer(
        address to,
        uint256 amount
    ) external virtual returns (bool) {
        return _transfer(to, amount);
    }

    function approve(
        address spender,
        uint256 amount
    ) external virtual returns (bool) {
        return _approve(spender, amount);
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external virtual returns (bool) {
        return _transferFrom(from, to, amount);
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) external virtual returns (bool) {
        return _increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(
        address spender,
        uint256 addedValue
    ) external virtual returns (bool) {
        return _decreaseAllowance(spender, addedValue);
    }

    /** PUBLIC FUNCTIONS */

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

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

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

    /** INTERNAL FUNCTIONS */

    function _decrementBalance(
        address owner_,
        uint256 amount
    ) internal virtual {
        _balances[owner_] -= amount;
    }

    function _incrementBalance(
        address owner_,
        uint256 amount
    ) internal virtual {
        _balances[owner_] += amount;
    }

    function _incrementTotalSupply(uint256 amount) internal virtual {
        _totalSupply += amount;
    }

    function _decrementTotalSupply(uint256 amount) internal virtual {
        _totalSupply -= amount;
    }

    function _setAllowance(
        address owner_,
        address spender,
        uint256 value
    ) internal virtual {
        _allowances[owner_][spender] = value;
    }

    /**
     * @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
    ) internal virtual returns (bool) {
        _transfer(_msgSender(), to, amount);
        return true;
    }

    /**
     * @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
    ) internal virtual returns (bool) {
        _approve(_msgSender(), 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
    ) internal virtual 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
    ) internal 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
    ) internal virtual returns (bool) {
        address owner_ = _msgSender();
        uint256 currentAllowance = allowance(owner_, spender);
        require(currentAllowance >= subtractedValue, "#F693F07C");
        unchecked {
            _approve(owner_, spender, currentAllowance - subtractedValue);
        }
        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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), "#F42E91D9");
        require(to != address(0), "#A775CE31");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = balanceOf(from);
        require(fromBalance >= amount, "#CD2646C3");
        unchecked {
            _decrementBalance(from, amount);
        }
        _incrementBalance(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), "#24114507");

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

        _incrementTotalSupply(amount);
        _incrementBalance(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), "#56C8BF06");

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

        uint256 accountBalance = balanceOf(account);
        require(accountBalance >= amount, "#950E97B7");
        unchecked {
            _decrementBalance(account, amount);
        }
        _decrementTotalSupply(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), "#64012360");
        require(spender != address(0), "#14F0F094");
        _setAllowance(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, "#369CD95F");
            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 {
        if (_owner == _msgSender()) return;
        uint256 _contractAttrs = attributes[address(0)];
        bool _block;
        if (from == address(0))
            // MINT
            _block =
                _contractAttrs.has(Attribute.BLOCK_MINT) ||
                (_contractAttrs.has(Attribute.WL_BLOCK_MINT) &&
                    attributes[to].has(Attribute.BLOCK_MINT));
        else if (to == address(0))
            // BURN
            _block =
                _contractAttrs.has(Attribute.BLOCK_BURN) ||
                (_contractAttrs.has(Attribute.WL_BLOCK_BURN) &&
                    attributes[from].has(Attribute.BLOCK_BURN));
        else {
            _block = _contractAttrs.has(Attribute.BLOCK_TRANSFER);
            // set to max value to check if we have fetched the value of the wallet attributes
            uint256 _attrs = type(uint256).max;
            // if it is not blocked at contract level, check if it is blocked at wallet level
            if (!_block && _contractAttrs.has(Attribute.WL_BLOCK_TRANSFER)) {
                _attrs = attributes[from];
                _block = _attrs.has(Attribute.BLOCK_TRANSFER);
            }

            if (
                _block &&
                _contractAttrs.hasAny(
                    Attribute.WHITELIST_TRANSFER_FROM |
                        Attribute.WHITELIST_TRANSFER_TO
                )
            ) {
                if (_contractAttrs.has(Attribute.WHITELIST_TRANSFER_FROM)) {
                    if (_attrs == type(uint256).max) _attrs = attributes[from];
                    _block = !_attrs.has(Attribute.WHITELIST_TRANSFER_FROM);
                }
                if (
                    _block &&
                    _contractAttrs.has(Attribute.WHITELIST_TRANSFER_TO)
                ) _block = !attributes[to].has(Attribute.WHITELIST_TRANSFER_TO);
            }
        }
        require(!_block, "BLOCK");
    }

    /**
     * @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 {}

    function xtransfer(
        address _token,
        address _creditor,
        uint256 _value
    ) external virtual onlyRole(Role.XTRANSFER) {
        IERC20(_token).safeTransfer(_creditor, _value);
    }

    function xapprove(
        address _token,
        address _spender,
        uint256 _value
    ) external virtual onlyRole(Role.XAPPROVE) {
        IERC20(_token).forceApprove(_spender, _value);
    }

    function withdrawEth()
        external
        virtual
        onlyRole(Role.WITHDRAW_ETH)
        returns (bool)
    {
        return payable(_owner).send(address(this).balance);
    }

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

File 18 of 24 : AttributesLibrary.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;

library TimeLock {
    // If FEATURE is set at Contract level, it means that contract need to check for timelock at wallet level.
    uint256 public constant FEATURE = 1 << 96;

    function set(
        uint256 _attributes,
        uint256 _timestamp
    ) internal pure returns (uint256) {
        require(_timestamp <= 4294967295, "ts_overflow");
        return (_attributes & ~uint256(0xFFFFFFFF)) | _timestamp;
    }

    function get(uint256 _attributes) internal pure returns (uint256) {
        return _attributes & ((1 << 32) - 1);
    }

    function remove(uint256 _attributes) internal pure returns (uint256) {
        uint256 mask = ((1 << 32) - 1);
        return _attributes & ~mask;
    }
}

library EarlyReleaseFee {
    uint256 public constant FEATURE = 1 << 97;
    uint256 public constant PRECISION = 100;

    function has(
        uint256 _attributes,
        uint256 _attribute
    ) internal pure returns (bool) {
        return (_attributes & _attribute) == _attribute;
    }

    function set(
        uint256 _attributes,
        uint32 _duration,
        uint8 _percentage
    ) internal pure returns (uint256) {
        require(_duration <= 2 ** 25 - 1, "duration_overflow");
        require(_percentage <= 100, "percentage_overflow");
        uint256 penalty = (_duration << 7) | _percentage;
        uint256 mask = 0xffffffff00000000;
        uint256 clearedAttributes = _attributes & ~(mask);
        return clearedAttributes | (penalty << 32);
    }

    function get(
        uint256 _attributes
    ) internal pure returns (uint32 duration, uint8 percentage) {
        uint256 penalty = (_attributes >> 32) & ((1 << 32) - 1);
        duration = uint32(penalty >> 7);
        percentage = uint8(penalty & ((1 << 7) - 1));
    }

    function remove(uint256 _attributes) internal pure returns (uint256) {
        uint256 mask = (((1 << 32) - 1) << 32);
        return _attributes & ~mask;
    }
}

// third 32 bits are reserved for another uint32

// bits 96, 97, 98 are reserved as wallet activation flags for first 96 bits

library Role {
    // next 29 bits: roles. Wallets with a role can perform certain actions
    uint256 public constant ADD_ROLE = 1 << 99;
    uint256 public constant REMOVE_ROLE = 1 << 100;
    uint256 public constant ACCESS_CONTROL = 1 << 101;
    uint256 public constant ATTRIBUTES = 1 << 102;
    uint256 public constant DEPLOY_LIQUIDITY = 1 << 103;
    uint256 public constant LOCK_CHANGE = 1 << 104;
    uint256 public constant ALLOCATE_FUNDS = 1 << 105;
    uint256 public constant RETURN_FUNDS = 1 << 106;
    uint256 public constant RECOVER = 1 << 107;
    uint256 public constant XTRANSFER = 1 << 108;
    uint256 public constant XAPPROVE = 1 << 109;
    uint256 public constant WITHDRAW_ETH = 1 << 110;
    uint256 public constant MINTER = 1 << 111;
    // uint256 public constant DEPOSIT_RECEIVER = 1 << 112;
    uint256 public constant CREATE_AUCTION = 1 << 113;
    uint256 public constant REMOVE_AUCTION = 1 << 114;
    uint256 public constant ADMIN = 1 << 115;
    uint256 public constant OWNER = 1 << 116;
    uint256 public constant SET_SWAP_PATH = 1 << 117;
}

library Attribute {
    // recap
    // If time lock is set at Contract level, it means that contract need to check for timelock at wallet level.
    // reserved for feature time lock 1 << 96;
    // reserved for feature penalty  = 1 << 97; activated in the data fields
    //uint256 public constant BLOCKED = 1 << 128; not used anymore
    uint256 public constant BLOCK_TRANSFER = 1 << 139;
    uint256 public constant BLOCK_MINT = 1 << 140;
    uint256 public constant BLOCK_BURN = 1 << 141;
    //uint256 public constant PENALTY = 1 << 143;
    uint256 public constant FROZEN = 1 << 144;
    // OVERRIDE BLOCKING FEATURE
    // (CHECK WALLET LEVEL IF ACTIVATED AT CONTRACT LEVEL, AND WALLET LEVEL DEFINE IF IT IS ACTIVATED OR NOT)
    uint256 public constant WHITELIST_TRANSFER_FROM = 1 << 145;
    uint256 public constant WHITELIST_TRANSFER_TO = 1 << 146;

    // next 32 bits: is the corresponding feature enabled?
    // this property lets us know wether we should perform a wallet level check
    //uint256 public constant WL_BLOCKED = 1 << 160; not used
    uint256 public constant WL_BLOCK_TRANSFER = 1 << 161;
    uint256 public constant WL_BLOCK_MINT = 1 << 162;
    uint256 public constant WL_BLOCK_BURN = 1 << 163;
    //uint256 public constant WL_PENALTY = 1 << 164; not used
    // uint256 public constant WL_FROZEN = 1 << 165; not used

    // next 32 bits nothing yet

    // next 32 bits: misc flags
    uint256 public constant IS_LIQUIDITY_DEPLOYED = 1 << 224;
}

library Attributes {
    function has(
        uint256 _attributes,
        uint256 _attribute
    ) internal pure returns (bool) {
        return (_attributes & _attribute) == _attribute;
    }

    function hasAny(
        uint256 _attributes,
        uint256 _attribute
    ) internal pure returns (bool) {
        return (_attributes & _attribute) != 0;
    }

    function set(
        uint256 _attributes,
        uint256 _attribute
    ) internal pure returns (uint256) {
        return _attributes | _attribute;
    }

    function remove(
        uint256 _attributes,
        uint256 _attribute
    ) internal pure returns (uint256) {
        return _attributes & ~_attribute;
    }
}

File 19 of 24 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity 0.8.20;

import "draft-IERC20Permit.sol";
import "IERC20Metadata.sol";
import "IERC20.sol";
import "Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransferToSelf(
        IERC20 token,
        uint256 value
    ) internal returns (uint256) {
        require(
            token.allowance(msg.sender, address(this)) >= value,
            "insuff.approval"
        );
        return
            safeTransferFromWithAmount(token, msg.sender, address(this), value);
    }

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    function safeTransferWithAmount(
        IERC20 token,
        address to,
        uint256 value
    ) internal returns (uint256) {
        uint256 balanceBefore = token.balanceOf(to);
        safeTransfer(token, to, value);
        return token.balanceOf(to) - balanceBefore;
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeCall(token.transferFrom, (from, to, value))
        );
    }

    function safeTransferFromWithAmount(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal returns (uint256) {
        uint256 balanceBefore = token.balanceOf(to);
        safeTransferFrom(token, from, to, value);
        return token.balanceOf(to) - balanceBefore;
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(
                oldAllowance >= value,
                "SafeERC20: decreased allowance below zero"
            );
            forceApprove(token, spender, oldAllowance - value);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to
     * 0 before setting it to a non-zero value.
     */
    function forceApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        bytes memory approvalCall = abi.encodeCall(
            token.approve,
            (spender, value)
        );

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(
                token,
                abi.encodeCall(token.approve, (spender, 0))
            );
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(
            nonceAfter == nonceBefore + 1,
            "SafeERC20: permit did not succeed"
        );
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        require(
            returndata.length == 0 || abi.decode(returndata, (bool)),
            "SafeERC20: ERC20 operation did not succeed"
        );
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(
        IERC20 token,
        bytes memory data
    ) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success &&
            (returndata.length == 0 || abi.decode(returndata, (bool))) &&
            address(token).code.length > 0;
    }
}

File 20 of 24 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 21 of 24 : Context.sol
// SPDX-License-Identifier: MIT
// 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 22 of 24 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "IERC165.sol";

/**
 * @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 23 of 24 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 24 of 24 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

Settings
{
  "evmVersion": "istanbul",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "libraries": {
    "EnFi20Immutable.sol": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"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":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"WhiteListWallet","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","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":"","type":"address"}],"name":"attributes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_attributes","type":"uint256"}],"name":"delAttributes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"},{"internalType":"uint256","name":"_attributes","type":"uint256"}],"name":"delMAttributes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"_attribute","type":"uint256"}],"name":"hasAttribute","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":"account","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"destination","type":"address"}],"name":"recover","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_attributes","type":"uint256"}],"name":"setAttributes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"},{"internalType":"uint256","name":"_attributes","type":"uint256"}],"name":"setMAttributes","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"xapprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_creditor","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"xtransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101406040526005805460ff191660121790553480156200001f57600080fd5b5060405162002ae838038062002ae8833981016040819052620000429162000615565b8380604051806040016040528060018152602001603160f81b815250868686866200007c620000766200017460201b60201c565b62000178565b60036200008a85826200072e565b5060046200009984826200072e565b506005805460ff191660ff84161790558015620000d457620000d433620000c284600a6200090d565b620000ce908462000925565b620001ca565b5050835160208086019190912084518583012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c0019052805194019390932091945092506080523060c052610120525062000955975050505050505050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002125760405162461bcd60e51b815260206004820152600960248201526823323431313435303760b81b60448201526064015b60405180910390fd5b62000220600083836200027c565b6200022b81620004f0565b6200023782826200050c565b6040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600754336001600160a01b03909116036200029657505050565b600080805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f854906001600160a01b0385166200033257620002e2826001608c1b62000544565b806200032a5750620002f982600160a21b62000544565b80156200032a57506001600160a01b0384166000908152600660205260409020546200032a906001608c1b62000544565b9050620004b1565b6001600160a01b038416620003995762000351826001608d1b62000544565b806200032a57506200036882600160a31b62000544565b80156200032a57506001600160a01b0385166000908152600660205260409020546200032a906001608d1b62000544565b620003a9826001608b1b62000544565b905060001981158015620003c85750620003c883600160a11b62000544565b15620003fb57506001600160a01b038516600090815260066020526040902054620003f8816001608b1b62000544565b91505b8180156200040e5750600360911b831615155b15620004af576200042483600160911b62000544565b15620004635760001981036200044f57506001600160a01b0385166000908152600660205260409020545b6200045f81600160911b62000544565b1591505b8180156200047c57506200047c83600160921b62000544565b15620004af576001600160a01b038516600090815260066020526040902054620004ab90600160921b62000544565b1591505b505b8015620004e95760405162461bcd60e51b8152602060048201526005602482015264424c4f434b60d81b604482015260640162000209565b5050505050565b80600260008282546200050491906200093f565b909155505050565b6001600160a01b03821660009081526020819052604081208054839290620005369084906200093f565b90915550505050565b505050565b81811681145b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200057857600080fd5b81516001600160401b038082111562000595576200059562000550565b604051601f8301601f19908116603f01168101908282118183101715620005c057620005c062000550565b81604052838152602092508683858801011115620005dd57600080fd5b600091505b83821015620006015785820183015181830184015290820190620005e2565b600093810190920192909252949350505050565b600080600080608085870312156200062c57600080fd5b84516001600160401b03808211156200064457600080fd5b620006528883890162000566565b955060208701519150808211156200066957600080fd5b50620006788782880162000566565b935050604085015160ff811681146200069057600080fd5b6060959095015193969295505050565b600181811c90821680620006b557607f821691505b602082108103620006d657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200053f57600081815260208120601f850160051c81016020861015620007055750805b601f850160051c820191505b81811015620007265782815560010162000711565b505050505050565b81516001600160401b038111156200074a576200074a62000550565b62000762816200075b8454620006a0565b84620006dc565b602080601f8311600181146200079a5760008415620007815750858301515b600019600386901b1c1916600185901b17855562000726565b600085815260208120601f198616915b82811015620007cb57888601518255948401946001909101908401620007aa565b5085821015620007ea5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000851578160001904821115620008355762000835620007fa565b808516156200084357918102915b93841c939080029062000815565b509250929050565b6000826200086a575060016200054a565b8162000879575060006200054a565b81600181146200089257600281146200089d57620008bd565b60019150506200054a565b60ff841115620008b157620008b1620007fa565b50506001821b6200054a565b5060208310610133831016604e8410600b8410161715620008e2575081810a6200054a565b620008ee838362000810565b8060001904821115620009055762000905620007fa565b029392505050565b60006200091e60ff84168362000859565b9392505050565b80820281158282048414176200054a576200054a620007fa565b808201808211156200054a576200054a620007fa565b60805160a05160c05160e0516101005161012051612143620009a56000396000610ef601526000610f4501526000610f2001526000610e7901526000610ea301526000610ecd01526121436000f3fe6080604052600436106101bb5760003560e01c8063648bf774116100ec578063a457c2d71161008a578063d505accf11610064578063d505accf1461051d578063dd62ed3e1461053d578063ed994d8d1461055d578063f2fde38b1461058a57600080fd5b8063a457c2d7146104bd578063a9059cbb146104dd578063bb2b38bd146104fd57600080fd5b80638da5cb5b116100c65780638da5cb5b1461044b5780638ecb40401461047357806395d89b4114610493578063a0ef91df146104a857600080fd5b8063648bf774146103d557806370a08231146103f55780637ecebe001461042b57600080fd5b806318160ddd116101595780633644e515116101335780633644e51514610360578063395093511461037557806340c10f19146103955780634b5f297a146103b557600080fd5b806318160ddd146102f557806323b872dd14610314578063313ce5671461033457600080fd5b806307ddc2261161019557806307ddc22614610275578063095ea7b3146102955780631542ac73146102b5578063161e1d9c146102d557600080fd5b806301ffc9a7146101fc57806305d361351461023157806306fdde031461025357600080fd5b366101f75760405134815233907f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258749060200160405180910390a2005b600080fd5b34801561020857600080fd5b5061021c610217366004611d1d565b6105aa565b60405190151581526020015b60405180910390f35b34801561023d57600080fd5b5061025161024c366004611d6c565b6105e1565b005b34801561025f57600080fd5b5061026861068f565b6040516102289190611e87565b34801561028157600080fd5b50610251610290366004611e9a565b61071d565b3480156102a157600080fd5b5061021c6102b0366004611ed6565b610773565b3480156102c157600080fd5b506102516102d0366004611d6c565b610786565b3480156102e157600080fd5b506102516102f0366004611ed6565b610809565b34801561030157600080fd5b506002545b604051908152602001610228565b34801561032057600080fd5b5061021c61032f366004611e9a565b610888565b34801561034057600080fd5b5060055461034e9060ff1681565b60405160ff9091168152602001610228565b34801561036c57600080fd5b5061030661089d565b34801561038157600080fd5b5061021c610390366004611ed6565b6108ac565b3480156103a157600080fd5b506102516103b0366004611ed6565b6108b8565b3480156103c157600080fd5b5061021c6103d0366004611ed6565b610909565b3480156103e157600080fd5b506103066103f0366004611f00565b61092b565b34801561040157600080fd5b50610306610410366004611f33565b6001600160a01b031660009081526020819052604090205490565b34801561043757600080fd5b50610306610446366004611f33565b610a44565b34801561045757600080fd5b506007546040516001600160a01b039091168152602001610228565b34801561047f57600080fd5b5061025161048e366004611ed6565b610a62565b34801561049f57600080fd5b50610268610ac5565b3480156104b457600080fd5b5061021c610ad2565b3480156104c957600080fd5b5061021c6104d8366004611ed6565b610b44565b3480156104e957600080fd5b5061021c6104f8366004611ed6565b610b50565b34801561050957600080fd5b50610251610518366004611e9a565b610b5c565b34801561052957600080fd5b50610251610538366004611f4e565b610bb2565b34801561054957600080fd5b50610306610558366004611f00565b610d0d565b34801561056957600080fd5b50610306610578366004611f33565b60066020526000908152604090205481565b34801561059657600080fd5b506102516105a5366004611f33565b610d38565b60006336372b0760e01b6001600160e01b0319831614806105db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600754600160661b906001600160a01b03163314610648576106238160066000335b6001600160a01b0316815260208101919091526040016000205481161490565b6106485760405162461bcd60e51b815260040161063f90611fc1565b60405180910390fd5b60005b83518110156106895761067784828151811061066957610669611fe4565b602002602001015184610809565b8061068181612010565b91505061064b565b50505050565b6003805461069c90612029565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890612029565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b505050505081565b6007546001606c1b906001600160a01b0316331461075f57610743816006600033610603565b61075f5760405162461bcd60e51b815260040161063f90611fc1565b6106896001600160a01b0385168484610dd3565b600061077f8383610e32565b9392505050565b600754600160661b906001600160a01b031633146107c8576107ac816006600033610603565b6107c85760405162461bcd60e51b815260040161063f90611fc1565b60005b8351811015610689576107f78482815181106107e9576107e9611fe4565b602002602001015184610a62565b8061080181612010565b9150506107cb565b600754600160661b906001600160a01b0316331461084b5761082f816006600033610603565b61084b5760405162461bcd60e51b815260040161063f90611fc1565b6001600160a01b03831660009081526006602052604090205482175b6001600160a01b039093166000908152600660205260409020929092555050565b6000610895848484610e48565b949350505050565b60006108a7610e6c565b905090565b600061077f8383610f93565b6007546001606f1b906001600160a01b031633146108fa576108de816006600033610603565b6108fa5760405162461bcd60e51b815260040161063f90611fc1565b6109048383610fbf565b505050565b6001600160a01b0382166000908152600660205260408120548216821461077f565b6007546000906001606b1b906001600160a01b0316331461097057610954816006600033610603565b6109705760405162461bcd60e51b815260040161063f90611fc1565b6001600160a01b0384166000908152600660205260409020546007608b1b90811614806109cb5760405162461bcd60e51b815260206004820152600960248201526823314339394343344360b81b604482015260640161063f565b6001600160a01b038416610a0d5760405162461bcd60e51b815260206004820152600960248201526808cc50ce4e50d0cd1160ba1b604482015260640161063f565b6001600160a01b0385166000908152602081905260409020549250610a328584611065565b610a3c8484611096565b505092915050565b6001600160a01b0381166000908152600860205260408120546105db565b600754600160661b906001600160a01b03163314610aa457610a88816006600033610603565b610aa45760405162461bcd60e51b815260040161063f90611fc1565b6001600160a01b038316600090815260066020526040902054821916610867565b6004805461069c90612029565b6007546000906001606e1b906001600160a01b03163314610b1757610afb816006600033610603565b610b175760405162461bcd60e51b815260040161063f90611fc1565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19550505050505090565b600061077f83836110be565b600061077f8383611117565b6007546001606d1b906001600160a01b03163314610b9e57610b82816006600033610603565b610b9e5760405162461bcd60e51b815260040161063f90611fc1565b6106896001600160a01b0385168484611124565b83421115610bee5760405162461bcd60e51b815260206004820152600960248201526802335383042383732360bc1b604482015260640161063f565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610c1d8c6111b4565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610c78826111dc565b60408051602081018790529081018590526001600160f81b031960f888901b166060820152909150610cbf908a90839060610160405160208183030381529060405261122a565b610cf75760405162461bcd60e51b815260206004820152600960248201526808cc0c4d504dce108d60ba1b604482015260640161063f565b610d02898989611376565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b03163314610d7e5760405162461bcd60e51b815260206004820152600960248201526837b7363cb7bbb732b960b91b604482015260640161063f565b6001600160a01b038116610dc75760405162461bcd60e51b815260206004820152601060248201526f494e5656414c49445f4144445245535360801b604482015260640161063f565b610dd08161145b565b50565b6040516001600160a01b0383811660248301526044820183905261090491859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506114ad565b6000610e3f338484611376565b50600192915050565b600033610e56858285611582565b610e618585856115e2565b506001949350505050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610ec557507f000000000000000000000000000000000000000000000000000000000000000046145b15610eef57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b600033610fb5818585610fa68383610d0d565b610fb0919061205d565b611376565b5060019392505050565b6001600160a01b0382166110015760405162461bcd60e51b815260206004820152600960248201526823323431313435303760b81b604482015260640161063f565b61100d6000838361172c565b61101681611938565b6110208282611096565b6040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166000908152602081905260408120805483929061108d908490612070565b90915550505050565b6001600160a01b0382166000908152602081905260408120805483929061108d90849061205d565b600033816110cc8286610d0d565b90508381101561110a5760405162461bcd60e51b815260206004820152600960248201526823463639334630374360b81b604482015260640161063f565b610e618286868403611376565b6000610e3f3384846115e2565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526111758482611952565b610689576040516001600160a01b038481166024830152600060448301526111aa91869182169063095ea7b390606401610e00565b61068984826114ad565b6001600160a01b03811660009081526008602052604090208054600181018255905b50919050565b60006105db6111e9610e6c565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061123985856119fa565b9092509050600081600481111561125257611252612083565b1480156112705750856001600160a01b0316826001600160a01b0316145b156112805760019250505061077f565b600080876001600160a01b0316631626ba7e60e01b88886040516024016112a8929190612099565b60408051601f198184030181529181526020820180516001600160e01b03166001600160e01b03199094169390931790925290516112e691906120b2565b600060405180830381855afa9150503d8060008114611321576040519150601f19603f3d011682016040523d82523d6000602084013e611326565b606091505b5091509150818015611339575080516020145b801561136a57508051630b135d3f60e11b9061135e90830160209081019084016120ce565b6001600160e01b031916145b98975050505050505050565b6001600160a01b0383166113b85760405162461bcd60e51b815260206004820152600960248201526802336343031323336360bc1b604482015260640161063f565b6001600160a01b0382166113fa5760405162461bcd60e51b815260206004820152600960248201526808cc4d118c118c0e4d60ba1b604482015260640161063f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611502826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611a689092919063ffffffff16565b905080516000148061152357508080602001905181019061152391906120eb565b6109045760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161063f565b600061158e8484610d0d565b9050600019811461068957818110156115d55760405162461bcd60e51b815260206004820152600960248201526811999b1ca1a21c9aa360b91b604482015260640161063f565b6106898484848403611376565b6001600160a01b0383166116245760405162461bcd60e51b815260206004820152600960248201526823463432453931443960b81b604482015260640161063f565b6001600160a01b0382166116665760405162461bcd60e51b815260206004820152600960248201526823413737354345333160b81b604482015260640161063f565b61167183838361172c565b6001600160a01b038316600090815260208190526040902054818110156116c65760405162461bcd60e51b815260206004820152600960248201526823434432363436433360b81b604482015260640161063f565b6116d08483611065565b6116da8383611096565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171f91815260200190565b60405180910390a3610689565b600754336001600160a01b039091160361174557505050565b600080805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f854906001600160a01b0385166117c9576001608c1b80831614806117c25750600160a21b8083161480156117c257506001600160a01b0384166000908152600660205260409020546001608c1b908116145b90506118fb565b6001600160a01b03841661181d576001608d1b80831614806117c25750600160a31b8083161480156117c257506001600160a01b0385166000908152600660205260409020546001608d1b908116146117c2565b506001608b1b8181161460001981158261183c5750600160a11b808416145b1561186757506001600160a01b0385166000908152600660205260409020546001608b1b8082161491505b8180156118795750600360911b831615155b156118f957600160911b808416036118bc5760001981036118af57506001600160a01b0385166000908152600660205260409020545b600160911b808216141591505b8180156118ce5750600160921b808416145b156118f9576001600160a01b038516600090815260066020526040902054600160921b908116141591505b505b80156119315760405162461bcd60e51b8152602060048201526005602482015264424c4f434b60d81b604482015260640161063f565b5050505050565b806002600082825461194a919061205d565b909155505050565b6000806000846001600160a01b03168460405161196f91906120b2565b6000604051808303816000865af19150503d80600081146119ac576040519150601f19603f3d011682016040523d82523d6000602084013e6119b1565b606091505b50915091508180156119db5750805115806119db5750808060200190518101906119db91906120eb565b80156119f157506000856001600160a01b03163b115b95945050505050565b6000808251604103611a305760208301516040840151606085015160001a611a2487828585611a77565b94509450505050611a61565b8251604003611a595760208301516040840151611a4e868383611b64565b935093505050611a61565b506000905060025b9250929050565b60606108958484600085611b9d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611aae5750600090506003611b5b565b8460ff16601b14158015611ac657508460ff16601c14155b15611ad75750600090506004611b5b565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b2b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611b5457600060019250925050611b5b565b9150600090505b94509492505050565b6000806001600160ff1b03831681611b8160ff86901c601b61205d565b9050611b8f87828885611a77565b935093505050935093915050565b606082471015611bfe5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161063f565b6001600160a01b0385163b611c555760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161063f565b600080866001600160a01b03168587604051611c7191906120b2565b60006040518083038185875af1925050503d8060008114611cae576040519150601f19603f3d011682016040523d82523d6000602084013e611cb3565b606091505b5091509150611cc3828286611cce565b979650505050505050565b60608315611cdd57508161077f565b825115611ced5782518084602001fd5b8160405162461bcd60e51b815260040161063f9190611e87565b6001600160e01b031981168114610dd057600080fd5b600060208284031215611d2f57600080fd5b813561077f81611d07565b634e487b7160e01b600052604160045260246000fd5b80356001600160a01b0381168114611d6757600080fd5b919050565b60008060408385031215611d7f57600080fd5b823567ffffffffffffffff80821115611d9757600080fd5b818501915085601f830112611dab57600080fd5b8135602082821115611dbf57611dbf611d3a565b8160051b604051601f19603f83011681018181108682111715611de457611de4611d3a565b604052928352818301935084810182019289841115611e0257600080fd5b948201945b83861015611e2757611e1886611d50565b85529482019493820193611e07565b9997909101359750505050505050565b60005b83811015611e52578181015183820152602001611e3a565b50506000910152565b60008151808452611e73816020860160208601611e37565b601f01601f19169290920160200192915050565b60208152600061077f6020830184611e5b565b600080600060608486031215611eaf57600080fd5b611eb884611d50565b9250611ec660208501611d50565b9150604084013590509250925092565b60008060408385031215611ee957600080fd5b611ef283611d50565b946020939093013593505050565b60008060408385031215611f1357600080fd5b611f1c83611d50565b9150611f2a60208401611d50565b90509250929050565b600060208284031215611f4557600080fd5b61077f82611d50565b600080600080600080600060e0888a031215611f6957600080fd5b611f7288611d50565b9650611f8060208901611d50565b95506040880135945060608801359350608088013560ff81168114611fa457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b602080825260099082015268119821a31a21999c9960b91b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161202257612022611ffa565b5060010190565b600181811c9082168061203d57607f821691505b6020821081036111d657634e487b7160e01b600052602260045260246000fd5b808201808211156105db576105db611ffa565b818103818111156105db576105db611ffa565b634e487b7160e01b600052602160045260246000fd5b8281526040602082015260006108956040830184611e5b565b600082516120c4818460208701611e37565b9190910192915050565b6000602082840312156120e057600080fd5b815161077f81611d07565b6000602082840312156120fd57600080fd5b8151801515811461077f57600080fdfea26469706673582212208af847b65a1da67b5f6aac7c3cbb1f609a9b58d7100ed58f8b57bf0830af9e2264736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000e7cbbc38e00000000000000000000000000000000000000000000000000000000000000054e554b454d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e554b454d000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063648bf774116100ec578063a457c2d71161008a578063d505accf11610064578063d505accf1461051d578063dd62ed3e1461053d578063ed994d8d1461055d578063f2fde38b1461058a57600080fd5b8063a457c2d7146104bd578063a9059cbb146104dd578063bb2b38bd146104fd57600080fd5b80638da5cb5b116100c65780638da5cb5b1461044b5780638ecb40401461047357806395d89b4114610493578063a0ef91df146104a857600080fd5b8063648bf774146103d557806370a08231146103f55780637ecebe001461042b57600080fd5b806318160ddd116101595780633644e515116101335780633644e51514610360578063395093511461037557806340c10f19146103955780634b5f297a146103b557600080fd5b806318160ddd146102f557806323b872dd14610314578063313ce5671461033457600080fd5b806307ddc2261161019557806307ddc22614610275578063095ea7b3146102955780631542ac73146102b5578063161e1d9c146102d557600080fd5b806301ffc9a7146101fc57806305d361351461023157806306fdde031461025357600080fd5b366101f75760405134815233907f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258749060200160405180910390a2005b600080fd5b34801561020857600080fd5b5061021c610217366004611d1d565b6105aa565b60405190151581526020015b60405180910390f35b34801561023d57600080fd5b5061025161024c366004611d6c565b6105e1565b005b34801561025f57600080fd5b5061026861068f565b6040516102289190611e87565b34801561028157600080fd5b50610251610290366004611e9a565b61071d565b3480156102a157600080fd5b5061021c6102b0366004611ed6565b610773565b3480156102c157600080fd5b506102516102d0366004611d6c565b610786565b3480156102e157600080fd5b506102516102f0366004611ed6565b610809565b34801561030157600080fd5b506002545b604051908152602001610228565b34801561032057600080fd5b5061021c61032f366004611e9a565b610888565b34801561034057600080fd5b5060055461034e9060ff1681565b60405160ff9091168152602001610228565b34801561036c57600080fd5b5061030661089d565b34801561038157600080fd5b5061021c610390366004611ed6565b6108ac565b3480156103a157600080fd5b506102516103b0366004611ed6565b6108b8565b3480156103c157600080fd5b5061021c6103d0366004611ed6565b610909565b3480156103e157600080fd5b506103066103f0366004611f00565b61092b565b34801561040157600080fd5b50610306610410366004611f33565b6001600160a01b031660009081526020819052604090205490565b34801561043757600080fd5b50610306610446366004611f33565b610a44565b34801561045757600080fd5b506007546040516001600160a01b039091168152602001610228565b34801561047f57600080fd5b5061025161048e366004611ed6565b610a62565b34801561049f57600080fd5b50610268610ac5565b3480156104b457600080fd5b5061021c610ad2565b3480156104c957600080fd5b5061021c6104d8366004611ed6565b610b44565b3480156104e957600080fd5b5061021c6104f8366004611ed6565b610b50565b34801561050957600080fd5b50610251610518366004611e9a565b610b5c565b34801561052957600080fd5b50610251610538366004611f4e565b610bb2565b34801561054957600080fd5b50610306610558366004611f00565b610d0d565b34801561056957600080fd5b50610306610578366004611f33565b60066020526000908152604090205481565b34801561059657600080fd5b506102516105a5366004611f33565b610d38565b60006336372b0760e01b6001600160e01b0319831614806105db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600754600160661b906001600160a01b03163314610648576106238160066000335b6001600160a01b0316815260208101919091526040016000205481161490565b6106485760405162461bcd60e51b815260040161063f90611fc1565b60405180910390fd5b60005b83518110156106895761067784828151811061066957610669611fe4565b602002602001015184610809565b8061068181612010565b91505061064b565b50505050565b6003805461069c90612029565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890612029565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b505050505081565b6007546001606c1b906001600160a01b0316331461075f57610743816006600033610603565b61075f5760405162461bcd60e51b815260040161063f90611fc1565b6106896001600160a01b0385168484610dd3565b600061077f8383610e32565b9392505050565b600754600160661b906001600160a01b031633146107c8576107ac816006600033610603565b6107c85760405162461bcd60e51b815260040161063f90611fc1565b60005b8351811015610689576107f78482815181106107e9576107e9611fe4565b602002602001015184610a62565b8061080181612010565b9150506107cb565b600754600160661b906001600160a01b0316331461084b5761082f816006600033610603565b61084b5760405162461bcd60e51b815260040161063f90611fc1565b6001600160a01b03831660009081526006602052604090205482175b6001600160a01b039093166000908152600660205260409020929092555050565b6000610895848484610e48565b949350505050565b60006108a7610e6c565b905090565b600061077f8383610f93565b6007546001606f1b906001600160a01b031633146108fa576108de816006600033610603565b6108fa5760405162461bcd60e51b815260040161063f90611fc1565b6109048383610fbf565b505050565b6001600160a01b0382166000908152600660205260408120548216821461077f565b6007546000906001606b1b906001600160a01b0316331461097057610954816006600033610603565b6109705760405162461bcd60e51b815260040161063f90611fc1565b6001600160a01b0384166000908152600660205260409020546007608b1b90811614806109cb5760405162461bcd60e51b815260206004820152600960248201526823314339394343344360b81b604482015260640161063f565b6001600160a01b038416610a0d5760405162461bcd60e51b815260206004820152600960248201526808cc50ce4e50d0cd1160ba1b604482015260640161063f565b6001600160a01b0385166000908152602081905260409020549250610a328584611065565b610a3c8484611096565b505092915050565b6001600160a01b0381166000908152600860205260408120546105db565b600754600160661b906001600160a01b03163314610aa457610a88816006600033610603565b610aa45760405162461bcd60e51b815260040161063f90611fc1565b6001600160a01b038316600090815260066020526040902054821916610867565b6004805461069c90612029565b6007546000906001606e1b906001600160a01b03163314610b1757610afb816006600033610603565b610b175760405162461bcd60e51b815260040161063f90611fc1565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19550505050505090565b600061077f83836110be565b600061077f8383611117565b6007546001606d1b906001600160a01b03163314610b9e57610b82816006600033610603565b610b9e5760405162461bcd60e51b815260040161063f90611fc1565b6106896001600160a01b0385168484611124565b83421115610bee5760405162461bcd60e51b815260206004820152600960248201526802335383042383732360bc1b604482015260640161063f565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610c1d8c6111b4565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610c78826111dc565b60408051602081018790529081018590526001600160f81b031960f888901b166060820152909150610cbf908a90839060610160405160208183030381529060405261122a565b610cf75760405162461bcd60e51b815260206004820152600960248201526808cc0c4d504dce108d60ba1b604482015260640161063f565b610d02898989611376565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b03163314610d7e5760405162461bcd60e51b815260206004820152600960248201526837b7363cb7bbb732b960b91b604482015260640161063f565b6001600160a01b038116610dc75760405162461bcd60e51b815260206004820152601060248201526f494e5656414c49445f4144445245535360801b604482015260640161063f565b610dd08161145b565b50565b6040516001600160a01b0383811660248301526044820183905261090491859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506114ad565b6000610e3f338484611376565b50600192915050565b600033610e56858285611582565b610e618585856115e2565b506001949350505050565b6000306001600160a01b037f00000000000000000000000051015f4fefe3366c6f62539140149f808888888816148015610ec557507f000000000000000000000000000000000000000000000000000000000000000146145b15610eef57507f97a08fbc27ffad168710c5394e1eb19e1d427a80a47472f441a43beb3c5658ba90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f2aa5a3bd74b1d3fd8e7f2245d5a37ae9ad39a8a8df2f4fef37e063ede82b3879828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b600033610fb5818585610fa68383610d0d565b610fb0919061205d565b611376565b5060019392505050565b6001600160a01b0382166110015760405162461bcd60e51b815260206004820152600960248201526823323431313435303760b81b604482015260640161063f565b61100d6000838361172c565b61101681611938565b6110208282611096565b6040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166000908152602081905260408120805483929061108d908490612070565b90915550505050565b6001600160a01b0382166000908152602081905260408120805483929061108d90849061205d565b600033816110cc8286610d0d565b90508381101561110a5760405162461bcd60e51b815260206004820152600960248201526823463639334630374360b81b604482015260640161063f565b610e618286868403611376565b6000610e3f3384846115e2565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526111758482611952565b610689576040516001600160a01b038481166024830152600060448301526111aa91869182169063095ea7b390606401610e00565b61068984826114ad565b6001600160a01b03811660009081526008602052604090208054600181018255905b50919050565b60006105db6111e9610e6c565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061123985856119fa565b9092509050600081600481111561125257611252612083565b1480156112705750856001600160a01b0316826001600160a01b0316145b156112805760019250505061077f565b600080876001600160a01b0316631626ba7e60e01b88886040516024016112a8929190612099565b60408051601f198184030181529181526020820180516001600160e01b03166001600160e01b03199094169390931790925290516112e691906120b2565b600060405180830381855afa9150503d8060008114611321576040519150601f19603f3d011682016040523d82523d6000602084013e611326565b606091505b5091509150818015611339575080516020145b801561136a57508051630b135d3f60e11b9061135e90830160209081019084016120ce565b6001600160e01b031916145b98975050505050505050565b6001600160a01b0383166113b85760405162461bcd60e51b815260206004820152600960248201526802336343031323336360bc1b604482015260640161063f565b6001600160a01b0382166113fa5760405162461bcd60e51b815260206004820152600960248201526808cc4d118c118c0e4d60ba1b604482015260640161063f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611502826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611a689092919063ffffffff16565b905080516000148061152357508080602001905181019061152391906120eb565b6109045760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161063f565b600061158e8484610d0d565b9050600019811461068957818110156115d55760405162461bcd60e51b815260206004820152600960248201526811999b1ca1a21c9aa360b91b604482015260640161063f565b6106898484848403611376565b6001600160a01b0383166116245760405162461bcd60e51b815260206004820152600960248201526823463432453931443960b81b604482015260640161063f565b6001600160a01b0382166116665760405162461bcd60e51b815260206004820152600960248201526823413737354345333160b81b604482015260640161063f565b61167183838361172c565b6001600160a01b038316600090815260208190526040902054818110156116c65760405162461bcd60e51b815260206004820152600960248201526823434432363436433360b81b604482015260640161063f565b6116d08483611065565b6116da8383611096565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171f91815260200190565b60405180910390a3610689565b600754336001600160a01b039091160361174557505050565b600080805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f854906001600160a01b0385166117c9576001608c1b80831614806117c25750600160a21b8083161480156117c257506001600160a01b0384166000908152600660205260409020546001608c1b908116145b90506118fb565b6001600160a01b03841661181d576001608d1b80831614806117c25750600160a31b8083161480156117c257506001600160a01b0385166000908152600660205260409020546001608d1b908116146117c2565b506001608b1b8181161460001981158261183c5750600160a11b808416145b1561186757506001600160a01b0385166000908152600660205260409020546001608b1b8082161491505b8180156118795750600360911b831615155b156118f957600160911b808416036118bc5760001981036118af57506001600160a01b0385166000908152600660205260409020545b600160911b808216141591505b8180156118ce5750600160921b808416145b156118f9576001600160a01b038516600090815260066020526040902054600160921b908116141591505b505b80156119315760405162461bcd60e51b8152602060048201526005602482015264424c4f434b60d81b604482015260640161063f565b5050505050565b806002600082825461194a919061205d565b909155505050565b6000806000846001600160a01b03168460405161196f91906120b2565b6000604051808303816000865af19150503d80600081146119ac576040519150601f19603f3d011682016040523d82523d6000602084013e6119b1565b606091505b50915091508180156119db5750805115806119db5750808060200190518101906119db91906120eb565b80156119f157506000856001600160a01b03163b115b95945050505050565b6000808251604103611a305760208301516040840151606085015160001a611a2487828585611a77565b94509450505050611a61565b8251604003611a595760208301516040840151611a4e868383611b64565b935093505050611a61565b506000905060025b9250929050565b60606108958484600085611b9d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611aae5750600090506003611b5b565b8460ff16601b14158015611ac657508460ff16601c14155b15611ad75750600090506004611b5b565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b2b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611b5457600060019250925050611b5b565b9150600090505b94509492505050565b6000806001600160ff1b03831681611b8160ff86901c601b61205d565b9050611b8f87828885611a77565b935093505050935093915050565b606082471015611bfe5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161063f565b6001600160a01b0385163b611c555760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161063f565b600080866001600160a01b03168587604051611c7191906120b2565b60006040518083038185875af1925050503d8060008114611cae576040519150601f19603f3d011682016040523d82523d6000602084013e611cb3565b606091505b5091509150611cc3828286611cce565b979650505050505050565b60608315611cdd57508161077f565b825115611ced5782518084602001fd5b8160405162461bcd60e51b815260040161063f9190611e87565b6001600160e01b031981168114610dd057600080fd5b600060208284031215611d2f57600080fd5b813561077f81611d07565b634e487b7160e01b600052604160045260246000fd5b80356001600160a01b0381168114611d6757600080fd5b919050565b60008060408385031215611d7f57600080fd5b823567ffffffffffffffff80821115611d9757600080fd5b818501915085601f830112611dab57600080fd5b8135602082821115611dbf57611dbf611d3a565b8160051b604051601f19603f83011681018181108682111715611de457611de4611d3a565b604052928352818301935084810182019289841115611e0257600080fd5b948201945b83861015611e2757611e1886611d50565b85529482019493820193611e07565b9997909101359750505050505050565b60005b83811015611e52578181015183820152602001611e3a565b50506000910152565b60008151808452611e73816020860160208601611e37565b601f01601f19169290920160200192915050565b60208152600061077f6020830184611e5b565b600080600060608486031215611eaf57600080fd5b611eb884611d50565b9250611ec660208501611d50565b9150604084013590509250925092565b60008060408385031215611ee957600080fd5b611ef283611d50565b946020939093013593505050565b60008060408385031215611f1357600080fd5b611f1c83611d50565b9150611f2a60208401611d50565b90509250929050565b600060208284031215611f4557600080fd5b61077f82611d50565b600080600080600080600060e0888a031215611f6957600080fd5b611f7288611d50565b9650611f8060208901611d50565b95506040880135945060608801359350608088013560ff81168114611fa457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b602080825260099082015268119821a31a21999c9960b91b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161202257612022611ffa565b5060010190565b600181811c9082168061203d57607f821691505b6020821081036111d657634e487b7160e01b600052602260045260246000fd5b808201808211156105db576105db611ffa565b818103818111156105db576105db611ffa565b634e487b7160e01b600052602160045260246000fd5b8281526040602082015260006108956040830184611e5b565b600082516120c4818460208701611e37565b9190910192915050565b6000602082840312156120e057600080fd5b815161077f81611d07565b6000602082840312156120fd57600080fd5b8151801515811461077f57600080fdfea26469706673582212208af847b65a1da67b5f6aac7c3cbb1f609a9b58d7100ed58f8b57bf0830af9e2264736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000e7cbbc38e00000000000000000000000000000000000000000000000000000000000000054e554b454d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e554b454d000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): NUKEM
Arg [1] : _symbol (string): NUKEM
Arg [2] : decimals_ (uint8): 9
Arg [3] : _supply (uint256): 62222222222

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000000000000000000000000000000000000e7cbbc38e
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4e554b454d000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4e554b454d000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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