ETH Price: $2,036.59 (-0.28%)

Transaction Decoder

Block:
15842022 at Oct-27-2022 09:13:47 PM +UTC
Transaction Fee:
0.00254629893487648 ETH $5.19
Gas Used:
173,320 Gas / 14.691316264 Gwei

Emitted Events:

376 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000005880a0e3a5716938fb956849187a0cf8ffc9c532, 0x000000000000000000000000a787f09349999a61434cfb75118c6a9d0cac9406, 00000000000000000000000000000000000000000000206dadf017fcaf484000 )

Account State Difference:

  Address   Before After State Difference Code
0x24DB93Ee...92d88f869
0.202442352036076221 Eth
Nonce: 7661
0.199896053101199741 Eth
Nonce: 7662
0.00254629893487648
0x5880a0E3...8Ffc9c532
(Flashbots: Builder)
1.207892915529405564 Eth1.208032985727879364 Eth0.0001400701984738
0xe7F72Bc0...b2429F2DD

Execution Trace

TransparentUpgradeableProxy.e3ec5351( )
  • 0xe1823c5a85e8d5ed385fb25cc70781ee4195bcf7.e3ec5351( )
    • TransparentUpgradeableProxy.a9059cbb( )
      • NFTL.transfer( recipient=0xa787F09349999A61434cFB75118C6A9d0CAc9406, amount=153138956100000000000000 ) => ( True )
        File 1 of 3: TransparentUpgradeableProxy
        pragma solidity ^0.6.12;
        
        /**
         * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
         * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
         * be specified by overriding the virtual {_implementation} function.
         * 
         * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
         * different contract through the {_delegate} function.
         * 
         * The success and return data of the delegated call will be returned back to the caller of the proxy.
         */
        abstract contract Proxy {
            /**
             * @dev Delegates the current call to `implementation`.
             * 
             * This function does not return to its internall call site, it will return directly to the external caller.
             */
            function _delegate(address implementation) internal {
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    // Copy msg.data. We take full control of memory in this inline assembly
                    // block because it will not return to Solidity code. We overwrite the
                    // Solidity scratch pad at memory position 0.
                    calldatacopy(0, 0, calldatasize())
        
                    // Call the implementation.
                    // out and outsize are 0 because we don't know the size yet.
                    let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)
        
                    // Copy the returned data.
                    returndatacopy(0, 0, returndatasize())
        
                    switch result
                    // delegatecall returns 0 on error.
                    case 0 { revert(0, returndatasize()) }
                    default { return(0, returndatasize()) }
                }
            }
        
            /**
             * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function
             * and {_fallback} should delegate.
             */
            function _implementation() internal virtual view returns (address);
        
            /**
             * @dev Delegates the current call to the address returned by `_implementation()`.
             * 
             * This function does not return to its internall call site, it will return directly to the external caller.
             */
            function _fallback() internal {
                _delegate(_implementation());
            }
        
            /**
             * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
             * function in the contract matches the call data.
             */
            fallback () payable external {
                _delegate(_implementation());
            }
        
            /**
             * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
             * is empty.
             */
            receive () payable external {
                _delegate(_implementation());
            }
        }
        
        /**
         * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
         * implementation address that can be changed. This address is stored in storage in the location specified by
         * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
         * implementation behind the proxy.
         * 
         * Upgradeability is only provided internally through {_upgradeTo}. For an externally upgradeable proxy see
         * {TransparentUpgradeableProxy}.
         */
        contract UpgradeableProxy is Proxy {
            /**
             * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
             * 
             * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
             * function call, and allows initializating the storage of the proxy like a Solidity constructor.
             */
            constructor() public payable {
                assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
            }
        
            /**
             * @dev Emitted when the implementation is upgraded.
             */
            event Upgraded(address indexed implementation);
        
            /**
             * @dev Storage slot with the address of the current implementation.
             * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
             * validated in the constructor.
             */
            bytes32 private constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
        
            /**
             * @dev Returns the current implementation address.
             */
            function _implementation() internal override view returns (address impl) {
                bytes32 slot = _IMPLEMENTATION_SLOT;
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    impl := sload(slot)
                }
            }
        
            /**
             * @dev Upgrades the proxy to a new implementation.
             * 
             * Emits an {Upgraded} event.
             */
            function _upgradeTo(address newImplementation) virtual internal {
                _setImplementation(newImplementation);
                emit Upgraded(newImplementation);
            }
        
            /**
             * @dev Stores a new address in the EIP1967 implementation slot.
             */
            function _setImplementation(address newImplementation) private {
                address implementation = _implementation();
                require(implementation != newImplementation, "Proxy: Attemps update proxy with the same implementation");
        
                bytes32 slot = _IMPLEMENTATION_SLOT;
        
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    sstore(slot, newImplementation)
                }
            }
        }
        
        /**
         * @dev This contract implements a proxy that is upgradeable by an admin.
         * 
         * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector
         * clashing], which can potentially be used in an attack, this contract uses the
         * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two
         * things that go hand in hand:
         * 
         * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if
         * that call matches one of the admin functions exposed by the proxy itself.
         * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the
         * implementation. If the admin tries to call a function on the implementation it will fail with an error that says
         * "admin cannot fallback to proxy target".
         * 
         * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing
         * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due
         * to sudden errors when trying to call a function from the proxy implementation.
         * 
         * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,
         * you should think of the `ProxyAdmin` instance as the real administrative inerface of your proxy.
         */
        contract TransparentUpgradeableProxy is UpgradeableProxy {
            /**
             * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and
             * optionally initialized with `_data` as explained in {UpgradeableProxy-constructor}.
             */
            constructor(address admin, address implementation) public payable UpgradeableProxy() {
                require(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1), "Wrong admin slot");
                _setAdmin(admin);
                _upgradeTo(implementation);
            }
        
            /**
             * @dev Emitted when the admin account has changed.
             */
            event AdminChanged(address previousAdmin, address newAdmin);
        
            /**
             * @dev Storage slot with the admin of the contract.
             * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
             * validated in the constructor.
             */
            bytes32 private constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
        
            /**
             * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.
             */
            modifier ifAdmin() {
                if (msg.sender == _admin()) {
                    _;
                } else {
                    _fallback();
                }
            }
        
            /**
             * @dev Returns the current admin.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}.
             * 
             * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
             * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
             * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
             */
            function admin() external ifAdmin returns (address) {
                return _admin();
            }
        
            /**
             * @dev Returns the current implementation.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}.
             * 
             * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
             * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
             * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
             */
            function implementation() external ifAdmin returns (address) {
                return _implementation();
            }
        
            /**
             * @dev Changes the admin of the proxy.
             * 
             * Emits an {AdminChanged} event.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}.
             */
            function changeAdmin(address newAdmin) external ifAdmin {
                require(newAdmin != _admin(), "Proxy: new admin is the same admin.");
                emit AdminChanged(_admin(), newAdmin);
                _setAdmin(newAdmin);
            }
        
            /**
             * @dev Upgrade the implementation of the proxy.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}.
             */
            function upgradeTo(address newImplementation) external ifAdmin {
                _upgradeTo(newImplementation);
            }
        
            /**
             * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified
             * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the
             * proxied contract.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}.
             */
            function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {
                _upgradeTo(newImplementation);
                // solhint-disable-next-line avoid-low-level-calls
                (bool success,) = newImplementation.delegatecall(data);
                require(success);
            }
        
            /**
             * @dev Returns the current admin.
             */
            function _admin() internal view returns (address adm) {
                bytes32 slot = _ADMIN_SLOT;
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    adm := sload(slot)
                }
            }
        
            /**
             * @dev Stores a new address in the EIP1967 admin slot.
             */
            function _setAdmin(address newAdmin) private {
                bytes32 slot = _ADMIN_SLOT;
                require(newAdmin != address(0), "Proxy: Can't set admin to zero address.");
        
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    sstore(slot, newAdmin)
                }
            }
        }

        File 2 of 3: TransparentUpgradeableProxy
        pragma solidity ^0.6.12;
        
        /**
         * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
         * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
         * be specified by overriding the virtual {_implementation} function.
         * 
         * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
         * different contract through the {_delegate} function.
         * 
         * The success and return data of the delegated call will be returned back to the caller of the proxy.
         */
        abstract contract Proxy {
            /**
             * @dev Delegates the current call to `implementation`.
             * 
             * This function does not return to its internall call site, it will return directly to the external caller.
             */
            function _delegate(address implementation) internal {
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    // Copy msg.data. We take full control of memory in this inline assembly
                    // block because it will not return to Solidity code. We overwrite the
                    // Solidity scratch pad at memory position 0.
                    calldatacopy(0, 0, calldatasize())
        
                    // Call the implementation.
                    // out and outsize are 0 because we don't know the size yet.
                    let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)
        
                    // Copy the returned data.
                    returndatacopy(0, 0, returndatasize())
        
                    switch result
                    // delegatecall returns 0 on error.
                    case 0 { revert(0, returndatasize()) }
                    default { return(0, returndatasize()) }
                }
            }
        
            /**
             * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function
             * and {_fallback} should delegate.
             */
            function _implementation() internal virtual view returns (address);
        
            /**
             * @dev Delegates the current call to the address returned by `_implementation()`.
             * 
             * This function does not return to its internall call site, it will return directly to the external caller.
             */
            function _fallback() internal {
                _delegate(_implementation());
            }
        
            /**
             * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
             * function in the contract matches the call data.
             */
            fallback () payable external {
                _delegate(_implementation());
            }
        
            /**
             * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
             * is empty.
             */
            receive () payable external {
                _delegate(_implementation());
            }
        }
        
        /**
         * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
         * implementation address that can be changed. This address is stored in storage in the location specified by
         * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
         * implementation behind the proxy.
         * 
         * Upgradeability is only provided internally through {_upgradeTo}. For an externally upgradeable proxy see
         * {TransparentUpgradeableProxy}.
         */
        contract UpgradeableProxy is Proxy {
            /**
             * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
             * 
             * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
             * function call, and allows initializating the storage of the proxy like a Solidity constructor.
             */
            constructor() public payable {
                assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
            }
        
            /**
             * @dev Emitted when the implementation is upgraded.
             */
            event Upgraded(address indexed implementation);
        
            /**
             * @dev Storage slot with the address of the current implementation.
             * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
             * validated in the constructor.
             */
            bytes32 private constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
        
            /**
             * @dev Returns the current implementation address.
             */
            function _implementation() internal override view returns (address impl) {
                bytes32 slot = _IMPLEMENTATION_SLOT;
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    impl := sload(slot)
                }
            }
        
            /**
             * @dev Upgrades the proxy to a new implementation.
             * 
             * Emits an {Upgraded} event.
             */
            function _upgradeTo(address newImplementation) virtual internal {
                _setImplementation(newImplementation);
                emit Upgraded(newImplementation);
            }
        
            /**
             * @dev Stores a new address in the EIP1967 implementation slot.
             */
            function _setImplementation(address newImplementation) private {
                address implementation = _implementation();
                require(implementation != newImplementation, "Proxy: Attemps update proxy with the same implementation");
        
                bytes32 slot = _IMPLEMENTATION_SLOT;
        
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    sstore(slot, newImplementation)
                }
            }
        }
        
        /**
         * @dev This contract implements a proxy that is upgradeable by an admin.
         * 
         * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector
         * clashing], which can potentially be used in an attack, this contract uses the
         * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two
         * things that go hand in hand:
         * 
         * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if
         * that call matches one of the admin functions exposed by the proxy itself.
         * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the
         * implementation. If the admin tries to call a function on the implementation it will fail with an error that says
         * "admin cannot fallback to proxy target".
         * 
         * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing
         * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due
         * to sudden errors when trying to call a function from the proxy implementation.
         * 
         * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,
         * you should think of the `ProxyAdmin` instance as the real administrative inerface of your proxy.
         */
        contract TransparentUpgradeableProxy is UpgradeableProxy {
            /**
             * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and
             * optionally initialized with `_data` as explained in {UpgradeableProxy-constructor}.
             */
            constructor(address admin, address implementation) public payable UpgradeableProxy() {
                require(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1), "Wrong admin slot");
                _setAdmin(admin);
                _upgradeTo(implementation);
            }
        
            /**
             * @dev Emitted when the admin account has changed.
             */
            event AdminChanged(address previousAdmin, address newAdmin);
        
            /**
             * @dev Storage slot with the admin of the contract.
             * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
             * validated in the constructor.
             */
            bytes32 private constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
        
            /**
             * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.
             */
            modifier ifAdmin() {
                if (msg.sender == _admin()) {
                    _;
                } else {
                    _fallback();
                }
            }
        
            /**
             * @dev Returns the current admin.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}.
             * 
             * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
             * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
             * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
             */
            function admin() external ifAdmin returns (address) {
                return _admin();
            }
        
            /**
             * @dev Returns the current implementation.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}.
             * 
             * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
             * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
             * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
             */
            function implementation() external ifAdmin returns (address) {
                return _implementation();
            }
        
            /**
             * @dev Changes the admin of the proxy.
             * 
             * Emits an {AdminChanged} event.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}.
             */
            function changeAdmin(address newAdmin) external ifAdmin {
                require(newAdmin != _admin(), "Proxy: new admin is the same admin.");
                emit AdminChanged(_admin(), newAdmin);
                _setAdmin(newAdmin);
            }
        
            /**
             * @dev Upgrade the implementation of the proxy.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}.
             */
            function upgradeTo(address newImplementation) external ifAdmin {
                _upgradeTo(newImplementation);
            }
        
            /**
             * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified
             * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the
             * proxied contract.
             * 
             * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}.
             */
            function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {
                _upgradeTo(newImplementation);
                // solhint-disable-next-line avoid-low-level-calls
                (bool success,) = newImplementation.delegatecall(data);
                require(success);
            }
        
            /**
             * @dev Returns the current admin.
             */
            function _admin() internal view returns (address adm) {
                bytes32 slot = _ADMIN_SLOT;
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    adm := sload(slot)
                }
            }
        
            /**
             * @dev Stores a new address in the EIP1967 admin slot.
             */
            function _setAdmin(address newAdmin) private {
                bytes32 slot = _ADMIN_SLOT;
                require(newAdmin != address(0), "Proxy: Can't set admin to zero address.");
        
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    sstore(slot, newAdmin)
                }
            }
        }

        File 3 of 3: NFTL
        // File: @openzeppelin/contracts-ethereum-package/contracts/utils/SafeCast.sol
        
        pragma solidity ^0.6.0;
        
        // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false
        library TransferHelper {
            function safeApprove(address token, address to, uint value) internal {
                // bytes4(keccak256(bytes('approve(address,uint256)')));
                (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value));
                require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: APPROVE_FAILED');
            }
        
            function safeTransfer(address token, address to, uint value) internal {
                // bytes4(keccak256(bytes('transfer(address,uint256)')));
                (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value));
                require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FAILED');
            }
        
            function safeTransferFrom(address token, address from, address to, uint value) internal {
                // bytes4(keccak256(bytes('transferFrom(address,address,uint256)')));
                (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value));
                require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FROM_FAILED');
            }
        
            function safeTransferETH(address to, uint value) internal {
                (bool success,) = to.call{value:value}(new bytes(0));
                require(success, 'TransferHelper: ETH_TRANSFER_FAILED');
            }
        }
        
        /**
         * @dev Wrappers over Solidity's uintXX casting operators with added overflow
         * checks.
         *
         * Downcasting from uint256 in Solidity does not revert on overflow. This can
         * easily result in undesired exploitation or bugs, since developers usually
         * assume that overflows raise errors. `SafeCast` restores this intuition by
         * reverting the transaction when such an operation overflows.
         *
         * Using this library instead of the unchecked operations eliminates an entire
         * class of bugs, so it's recommended to use it always.
         *
         * Can be combined with {SafeMath} to extend it to smaller types, by performing
         * all math on `uint256` and then downcasting.
         */
        library SafeCast {
        
            /**
             * @dev Returns the downcasted uint128 from uint256, reverting on
             * overflow (when the input is greater than largest uint128).
             *
             * Counterpart to Solidity's `uint128` operator.
             *
             * Requirements:
             *
             * - input must fit into 128 bits
             */
            function toUint128(uint256 value) internal pure returns (uint128) {
                require(value < 2**128, "SafeCast: value doesn\'t fit in 128 bits");
                return uint128(value);
            }
        
            /**
             * @dev Returns the downcasted uint64 from uint256, reverting on
             * overflow (when the input is greater than largest uint64).
             *
             * Counterpart to Solidity's `uint64` operator.
             *
             * Requirements:
             *
             * - input must fit into 64 bits
             */
            function toUint64(uint256 value) internal pure returns (uint64) {
                require(value < 2**64, "SafeCast: value doesn\'t fit in 64 bits");
                return uint64(value);
            }
        
            /**
             * @dev Returns the downcasted uint32 from uint256, reverting on
             * overflow (when the input is greater than largest uint32).
             *
             * Counterpart to Solidity's `uint32` operator.
             *
             * Requirements:
             *
             * - input must fit into 32 bits
             */
            function toUint32(uint256 value) internal pure returns (uint32) {
                require(value < 2**32, "SafeCast: value doesn\'t fit in 32 bits");
                return uint32(value);
            }
        
            /**
             * @dev Returns the downcasted uint16 from uint256, reverting on
             * overflow (when the input is greater than largest uint16).
             *
             * Counterpart to Solidity's `uint16` operator.
             *
             * Requirements:
             *
             * - input must fit into 16 bits
             */
            function toUint16(uint256 value) internal pure returns (uint16) {
                require(value < 2**16, "SafeCast: value doesn\'t fit in 16 bits");
                return uint16(value);
            }
        
            /**
             * @dev Returns the downcasted uint8 from uint256, reverting on
             * overflow (when the input is greater than largest uint8).
             *
             * Counterpart to Solidity's `uint8` operator.
             *
             * Requirements:
             *
             * - input must fit into 8 bits.
             */
            function toUint8(uint256 value) internal pure returns (uint8) {
                require(value < 2**8, "SafeCast: value doesn\'t fit in 8 bits");
                return uint8(value);
            }
        
            /**
             * @dev Converts a signed int256 into an unsigned uint256.
             *
             * Requirements:
             *
             * - input must be greater than or equal to 0.
             */
            function toUint256(int256 value) internal pure returns (uint256) {
                require(value >= 0, "SafeCast: value must be positive");
                return uint256(value);
            }
        
            /**
             * @dev Converts an unsigned uint256 into a signed int256.
             *
             * Requirements:
             *
             * - input must be less than or equal to maxInt256.
             */
            function toInt256(uint256 value) internal pure returns (int256) {
                require(value < 2**255, "SafeCast: value doesn't fit in an int256");
                return int256(value);
            }
        }
        
        // File: @openzeppelin/contracts-ethereum-package/contracts/Initializable.sol
        
        pragma solidity >=0.4.24 <0.7.0;
        
        
        /**
         * @title Initializable
         *
         * @dev Helper contract to support initializer functions. To use it, replace
         * the constructor with a function that has the `initializer` modifier.
         * WARNING: Unlike constructors, initializer functions must be manually
         * invoked. This applies both to deploying an Initializable contract, as well
         * as extending an Initializable contract via inheritance.
         * WARNING: When used with inheritance, manual care must be taken to not invoke
         * a parent initializer twice, or ensure that all initializers are idempotent,
         * because this is not dealt with automatically as with constructors.
         */
        contract Initializable {
        
          /**
           * @dev Indicates that the contract has been initialized.
           */
          bool private initialized;
        
          /**
           * @dev Indicates that the contract is in the process of being initialized.
           */
          bool private initializing;
        
          /**
           * @dev Modifier to use in the initializer function of a contract.
           */
          modifier initializer() {
            require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");
        
            bool isTopLevelCall = !initializing;
            if (isTopLevelCall) {
              initializing = true;
              initialized = true;
            }
        
            _;
        
            if (isTopLevelCall) {
              initializing = false;
            }
          }
        
          /// @dev Returns true if and only if the function is running in the constructor
          function isConstructor() private view returns (bool) {
            // extcodesize checks the size of the code stored in an address, and
            // address returns the current address. Since the code is still not
            // deployed when running a constructor, any checks on its code size will
            // yield zero, making it an effective way to detect if a contract is
            // under construction or not.
            address self = address(this);
            uint256 cs;
            assembly { cs := extcodesize(self) }
            return cs == 0;
          }
        
          // Reserved storage space to allow for layout changes in the future.
          uint256[50] private ______gap;
        }
        
        // File: @openzeppelin/contracts-ethereum-package/contracts/GSN/Context.sol
        
        pragma solidity ^0.6.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 GSN 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.
         */
        contract ContextUpgradeSafe is Initializable {
            // Empty internal constructor, to prevent people from mistakenly deploying
            // an instance of this contract, which should be used via inheritance.
        
            function __Context_init() internal initializer {
                __Context_init_unchained();
            }
        
            function __Context_init_unchained() internal initializer {
        
        
            }
        
        
            function _msgSender() internal view virtual returns (address payable) {
                return msg.sender;
            }
        
            function _msgData() internal view virtual returns (bytes memory) {
                this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                return msg.data;
            }
        
            uint256[50] private __gap;
        }
        
        // File: @openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol
        
        pragma solidity ^0.6.0;
        
        
        /**
         * @dev Contract module which provides a basic access control mechanism, where
         * there is an account (an owner) that can be granted exclusive access to
         * specific functions.
         *
         * By default, the owner account will be the one that deploys the contract. This
         * can later be changed with {transferOwnership}.
         *
         * This module is used through inheritance. It will make available the modifier
         * `onlyOwner`, which can be applied to your functions to restrict their use to
         * the owner.
         */
        contract OwnableUpgradeSafe is Initializable, ContextUpgradeSafe {
            address private _owner;
        
            event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
        
            /**
             * @dev Initializes the contract setting the deployer as the initial owner.
             */
        
            function __Ownable_init() internal initializer {
                __Context_init_unchained();
                __Ownable_init_unchained();
            }
        
            function __Ownable_init_unchained() internal initializer {
        
        
                address msgSender = _msgSender();
                _owner = msgSender;
                emit OwnershipTransferred(address(0), msgSender);
        
            }
        
        
            /**
             * @dev Returns the address of the current owner.
             */
            function owner() public view 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 {
                emit OwnershipTransferred(_owner, address(0));
                _owner = 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");
                emit OwnershipTransferred(_owner, newOwner);
                _owner = newOwner;
            }
        
            uint256[49] private __gap;
        }
        
        // File: @openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol
        
        pragma solidity ^0.6.0;
        
        /**
         * @dev Wrappers over Solidity's arithmetic operations with added overflow
         * checks.
         *
         * Arithmetic operations in Solidity wrap on overflow. This can easily result
         * in bugs, because programmers usually assume that an overflow raises an
         * error, which is the standard behavior in high level programming languages.
         * `SafeMath` restores this intuition by reverting the transaction when an
         * operation overflows.
         *
         * Using this library instead of the unchecked operations eliminates an entire
         * class of bugs, so it's recommended to use it always.
         */
        library SafeMath {
            /**
             * @dev Returns the addition of two unsigned integers, reverting on
             * overflow.
             *
             * Counterpart to Solidity's `+` operator.
             *
             * Requirements:
             * - Addition cannot overflow.
             */
            function add(uint256 a, uint256 b) internal pure returns (uint256) {
                uint256 c = a + b;
                require(c >= a, "SafeMath: addition overflow");
        
                return c;
            }
        
            /**
             * @dev Returns the subtraction of two unsigned integers, reverting on
             * overflow (when the result is negative).
             *
             * Counterpart to Solidity's `-` operator.
             *
             * Requirements:
             * - Subtraction cannot overflow.
             */
            function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                return sub(a, b, "SafeMath: subtraction overflow");
            }
        
            /**
             * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
             * overflow (when the result is negative).
             *
             * Counterpart to Solidity's `-` operator.
             *
             * Requirements:
             * - Subtraction cannot overflow.
             */
            function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                require(b <= a, errorMessage);
                uint256 c = a - b;
        
                return c;
            }
        
            /**
             * @dev Returns the multiplication of two unsigned integers, reverting on
             * overflow.
             *
             * Counterpart to Solidity's `*` operator.
             *
             * Requirements:
             * - Multiplication cannot overflow.
             */
            function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                // benefit is lost if 'b' is also tested.
                // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
                if (a == 0) {
                    return 0;
                }
        
                uint256 c = a * b;
                require(c / a == b, "SafeMath: multiplication overflow");
        
                return c;
            }
        
            /**
             * @dev Returns the integer division of two unsigned integers. Reverts on
             * division by zero. The result is rounded towards zero.
             *
             * Counterpart to Solidity's `/` operator. Note: this function uses a
             * `revert` opcode (which leaves remaining gas untouched) while Solidity
             * uses an invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             * - The divisor cannot be zero.
             */
            function div(uint256 a, uint256 b) internal pure returns (uint256) {
                return div(a, b, "SafeMath: division by zero");
            }
        
            /**
             * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
             * division by zero. The result is rounded towards zero.
             *
             * Counterpart to Solidity's `/` operator. Note: this function uses a
             * `revert` opcode (which leaves remaining gas untouched) while Solidity
             * uses an invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             * - The divisor cannot be zero.
             */
            function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                // Solidity only automatically asserts when dividing by 0
                require(b > 0, errorMessage);
                uint256 c = a / b;
                // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        
                return c;
            }
        
            /**
             * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
             * Reverts when dividing by zero.
             *
             * Counterpart to Solidity's `%` operator. This function uses a `revert`
             * opcode (which leaves remaining gas untouched) while Solidity uses an
             * invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             * - The divisor cannot be zero.
             */
            function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                return mod(a, b, "SafeMath: modulo by zero");
            }
        
            /**
             * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
             * Reverts with custom message when dividing by zero.
             *
             * Counterpart to Solidity's `%` operator. This function uses a `revert`
             * opcode (which leaves remaining gas untouched) while Solidity uses an
             * invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             * - The divisor cannot be zero.
             */
            function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                require(b != 0, errorMessage);
                return a % b;
            }
        }
        
        // File: @openzeppelin/contracts-ethereum-package/contracts/utils/Address.sol
        
        pragma solidity ^0.6.2;
        
        /**
         * @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
             * ====
             */
            function isContract(address account) internal view returns (bool) {
                // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
                // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
                // for accounts without code, i.e. `keccak256('')`
                bytes32 codehash;
                bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
                // solhint-disable-next-line no-inline-assembly
                assembly { codehash := extcodehash(account) }
                return (codehash != accountHash && codehash != 0x0);
            }
        
            /**
             * @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");
        
                // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
                (bool success, ) = recipient.call{ value: amount }("");
                require(success, "Address: unable to send value, recipient may have reverted");
            }
        }
        
        // SPDX-License-Identifier: MIT
        
        pragma solidity ^0.6.0;
        
        
        interface IERC20 {
            function totalSupply() external view returns (uint256);
            function decimals() external view returns (uint8);
            function symbol() external view returns (string memory);
            function name() external view returns (string memory);
            function balanceOf(address account) external view returns (uint256);
            function transfer(address recipient, uint256 amount) external returns (bool);
            function allowance(address _owner, address spender) external view returns (uint256);
            function approve(address spender, uint256 amount) external returns (bool);
            function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
            event Transfer(address indexed from, address indexed to, uint256 value);
            event Approval(address indexed owner, address indexed spender, uint256 value);
        }
        
        interface IWETH {
            function deposit() external payable;
            function transfer(address to, uint value) external returns (bool);
            function withdraw(uint) external;
        }
        
        interface IUniswapV2Factory {
            event PairCreated(address indexed token0, address indexed token1, address pair, uint);
        
            function feeTo() external view returns (address);
            function feeToSetter() external view returns (address);
        
            function getPair(address tokenA, address tokenB) external view returns (address pair);
            function allPairs(uint) external view returns (address pair);
            function allPairsLength() external view returns (uint);
        
            function createPair(address tokenA, address tokenB) external returns (address pair);
        
            function setFeeTo(address) external;
            function setFeeToSetter(address) external;
        }
        
        interface IUniswapV2Router01 {
            function factory() external pure returns (address);
            function WETH() external pure returns (address);
        
            function addLiquidity(
                address tokenA,
                address tokenB,
                uint amountADesired,
                uint amountBDesired,
                uint amountAMin,
                uint amountBMin,
                address to,
                uint deadline
            ) external returns (uint amountA, uint amountB, uint liquidity);
            function addLiquidityETH(
                address token,
                uint amountTokenDesired,
                uint amountTokenMin,
                uint amountETHMin,
                address to,
                uint deadline
            ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
            function removeLiquidity(
                address tokenA,
                address tokenB,
                uint liquidity,
                uint amountAMin,
                uint amountBMin,
                address to,
                uint deadline
            ) external returns (uint amountA, uint amountB);
            function removeLiquidityETH(
                address token,
                uint liquidity,
                uint amountTokenMin,
                uint amountETHMin,
                address to,
                uint deadline
            ) external returns (uint amountToken, uint amountETH);
            function removeLiquidityWithPermit(
                address tokenA,
                address tokenB,
                uint liquidity,
                uint amountAMin,
                uint amountBMin,
                address to,
                uint deadline,
                bool approveMax, uint8 v, bytes32 r, bytes32 s
            ) external returns (uint amountA, uint amountB);
            function removeLiquidityETHWithPermit(
                address token,
                uint liquidity,
                uint amountTokenMin,
                uint amountETHMin,
                address to,
                uint deadline,
                bool approveMax, uint8 v, bytes32 r, bytes32 s
            ) external returns (uint amountToken, uint amountETH);
            function swapExactTokensForTokens(
                uint amountIn,
                uint amountOutMin,
                address[] calldata path,
                address to,
                uint deadline
            ) external returns (uint[] memory amounts);
            function swapTokensForExactTokens(
                uint amountOut,
                uint amountInMax,
                address[] calldata path,
                address to,
                uint deadline
            ) external returns (uint[] memory amounts);
            function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
                external
                payable
                returns (uint[] memory amounts);
            function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
                external
                returns (uint[] memory amounts);
            function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
                external
                returns (uint[] memory amounts);
            function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
                external
                payable
                returns (uint[] memory amounts);
        
            function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
            function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
            function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
            function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
            function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
        }
        
        
        interface IUniswapV2Router02 is IUniswapV2Router01 {
            function removeLiquidityETHSupportingFeeOnTransferTokens(
                address token,
                uint liquidity,
                uint amountTokenMin,
                uint amountETHMin,
                address to,
                uint deadline
            ) external returns (uint amountETH);
            function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
                address token,
                uint liquidity,
                uint amountTokenMin,
                uint amountETHMin,
                address to,
                uint deadline,
                bool approveMax, uint8 v, bytes32 r, bytes32 s
            ) external returns (uint amountETH);
        
            function swapExactTokensForTokensSupportingFeeOnTransferTokens(
                uint amountIn,
                uint amountOutMin,
                address[] calldata path,
                address to,
                uint deadline
            ) external;
            function swapExactETHForTokensSupportingFeeOnTransferTokens(
                uint amountOutMin,
                address[] calldata path,
                address to,
                uint deadline
            ) external payable;
            function swapExactTokensForETHSupportingFeeOnTransferTokens(
                uint amountIn,
                uint amountOutMin,
                address[] calldata path,
                address to,
                uint deadline
            ) external;
        }
        
        contract LGEWhitelisted is ContextUpgradeSafe {
            
            using SafeMath for uint256;
            
            struct WhitelistRound {
                uint256 duration;
                uint256 amountMax;
                mapping(address => bool) addresses;
                mapping(address => uint256) purchased;
            }
          
            WhitelistRound[] public _lgeWhitelistRounds;
            
            uint256 public _lgeTimestamp;
            address public _lgePairAddress;
            
            address public _whitelister;
            
            event WhitelisterTransferred(address indexed previousWhitelister, address indexed newWhitelister);
            
        	function __LGEWhitelisted_init() internal initializer {
                __Context_init_unchained();
                __LGEWhitelisted_init_unchained();
            }
        	
        	function __LGEWhitelisted_init_unchained() internal initializer {
        		_whitelister = _msgSender();
        
            }
            
            modifier onlyWhitelister() {
                require(_whitelister == _msgSender(), "Caller is not the whitelister");
                _;
            }
            
            function renounceWhitelister() external onlyWhitelister {
                emit WhitelisterTransferred(_whitelister, address(0));
                _whitelister = address(0);
            }
            
            function transferWhitelister(address newWhitelister) external onlyWhitelister {
                _transferWhitelister(newWhitelister);
            }
            
            function _transferWhitelister(address newWhitelister) internal {
                require(newWhitelister != address(0), "New whitelister is the zero address");
                emit WhitelisterTransferred(_whitelister, newWhitelister);
                _whitelister = newWhitelister;
            }
            
            /*
             * createLGEWhitelist - Call this after initial Token Generation Event (TGE) 
             * 
             * pairAddress - address generated from createPair() event on DEX
             * durations - array of durations (seconds) for each whitelist rounds
             * amountsMax - array of max amounts (TOKEN decimals) for each whitelist round
             * 
             */
          
            function createLGEWhitelist(address pairAddress, uint256[] calldata durations, uint256[] calldata amountsMax) external onlyWhitelister() {
                require(durations.length == amountsMax.length, "Invalid whitelist(s)");
                
                _lgePairAddress = pairAddress;
                
                if(durations.length > 0) {
                    
                    delete _lgeWhitelistRounds;
                
                    for (uint256 i = 0; i < durations.length; i++) {
                        _lgeWhitelistRounds.push(WhitelistRound(durations[i], amountsMax[i]));
                    }
                
                }
            }
            
            /*
             * modifyLGEWhitelistAddresses - Define what addresses are included/excluded from a whitelist round
             * 
             * index - 0-based index of round to modify whitelist
             * duration - period in seconds from LGE event or previous whitelist round
             * amountMax - max amount (TOKEN decimals) for each whitelist round
             * 
             */
            
            function modifyLGEWhitelist(uint256 index, uint256 duration, uint256 amountMax, address[] calldata addresses, bool enabled) external onlyWhitelister() {
                require(index < _lgeWhitelistRounds.length, "Invalid index");
                require(amountMax > 0, "Invalid amountMax");
        
                if(duration != _lgeWhitelistRounds[index].duration)
                    _lgeWhitelistRounds[index].duration = duration;
                
                if(amountMax != _lgeWhitelistRounds[index].amountMax)  
                    _lgeWhitelistRounds[index].amountMax = amountMax;
                
                for (uint256 i = 0; i < addresses.length; i++) {
                    _lgeWhitelistRounds[index].addresses[addresses[i]] = enabled;
                }
            }
            
            /*
             *  getLGEWhitelistRound
             *
             *  returns:
             *
             *  1. whitelist round number ( 0 = no active round now )
             *  2. duration, in seconds, current whitelist round is active for
             *  3. timestamp current whitelist round closes at
             *  4. maximum amount a whitelister can purchase in this round
             *  5. is caller whitelisted
             *  6. how much caller has purchased in current whitelist round
             *
             */
            
            function getLGEWhitelistRound() public view returns (uint256, uint256, uint256, uint256, bool, uint256) {
                
                if(_lgeTimestamp > 0) {
                    
                    uint256 wlCloseTimestampLast = _lgeTimestamp;
                
                    for (uint256 i = 0; i < _lgeWhitelistRounds.length; i++) {
                        
                        WhitelistRound storage wlRound = _lgeWhitelistRounds[i];
                        
                        wlCloseTimestampLast = wlCloseTimestampLast.add(wlRound.duration);
                        if(now <= wlCloseTimestampLast)
                            return (i.add(1), wlRound.duration, wlCloseTimestampLast, wlRound.amountMax, wlRound.addresses[_msgSender()], wlRound.purchased[_msgSender()]);
                    }
                
                }
                
                return (0, 0, 0, 0, false, 0);
            }
            
            /*
             * _applyLGEWhitelist - internal function to be called initially before any transfers
             * 
             */
            
            function _applyLGEWhitelist(address sender, address recipient, uint256 amount) internal {
                
                if(_lgePairAddress == address(0) || _lgeWhitelistRounds.length == 0)
                    return;
                
                if(_lgeTimestamp == 0 && sender != _lgePairAddress && recipient == _lgePairAddress && amount > 0)
                    _lgeTimestamp = now;
                
                if(sender == _lgePairAddress && recipient != _lgePairAddress) {
                    //buying
                    
                    (uint256 wlRoundNumber,,,,,) = getLGEWhitelistRound();
                
                    if(wlRoundNumber > 0) {
                        
                        WhitelistRound storage wlRound = _lgeWhitelistRounds[wlRoundNumber.sub(1)];
                        
                        require(wlRound.addresses[recipient], "LGE - Buyer is not whitelisted");
                        
                        uint256 amountRemaining = 0;
                        
                        if(wlRound.purchased[recipient] < wlRound.amountMax)
                            amountRemaining = wlRound.amountMax.sub(wlRound.purchased[recipient]);
            
                        require(amount <= amountRemaining, "LGE - Amount exceeds whitelist maximum");
                        wlRound.purchased[recipient] = wlRound.purchased[recipient].add(amount);
                        
                    }
                    
                }
                
            }
            
        }
        
        contract TokenPool is OwnableUpgradeSafe {
            
            IERC20 public token;
            
            function initialize(address _token)
                public
                initializer
            {
                __Ownable_init();
                
                token = IERC20(_token);
            }
        
            function balance() public view returns (uint256) {
                return token.balanceOf(address(this));
            }
            
            function approve(address spender, uint256 amount) external onlyOwner returns (bool) {
                return token.approve(spender, amount);
            }
        
            function transfer(address to, uint256 value) external onlyOwner returns (bool) {
                return token.transfer(to, value);
            }
        
            function rescueFunds(address tokenToRescue, address to, uint256 amount) external onlyOwner returns (bool) {
                require(address(token) != tokenToRescue, 'TokenPool: Cannot claim token held by the contract');
        
                return IERC20(tokenToRescue).transfer(to, amount);
            }
        }
        
        contract NFTL is IERC20, OwnableUpgradeSafe, LGEWhitelisted {
            
            using SafeMath for uint256;
            using Address for address;
        
            mapping (address => uint256) private _balances;
        
            mapping (address => mapping (address => uint256)) private _allowances;
        
            uint256 private _totalSupply;
            
            uint256 private _cap;
        
            string private _name;
            string private _symbol;
            uint8 private _decimals;
            
            mapping(address => bool) public _feeExcluded;
        
        	uint256 public _feeBurnPct;
        	
        	address[] public _reserveSwapPath;	
        	
        	uint256 public _feeFundPct;
        	address public _feeFundAddress;
        	
        	uint256 public _feeRewardPct;
        	address public _feeRewardAddress;
        	
        	uint256 public _feeEcoPct;
        	address public _feeEcoAddress;
        	
        	uint256 public _feeCharityPct;
        	address public _feeCharityAddress;	
        
        	mapping(address => bool) public _pair;
        	
        	address public _router;
        	
        	TokenPool public _reserveTokenPool;
        	
        	event Distributed(uint256 feeFundAmount, uint256 feeRewardAmount, uint256 feeEcoAmount, uint256 feeCharityAmount);
            
            function initialize(
                        address router,
                        uint256 feeBurnPct, 
                        uint256 feeFundPct, 
                        address feeFundAddress, 
                        uint256 feeRewardPct, 
                        address feeRewardAddress, 
                        uint256 feeEcoPct, 
                        address feeEcoAddress, 
                        uint256 feeCharityPct, 
                        address feeCharityAddress
                )
                public
                initializer
            {
                
                _name = "NFTLAUNCH.network";
                _symbol = "NFTL";
                
                _decimals = 18;
                
                _cap = 1000000000e18;
                
                __Ownable_init();
        		__LGEWhitelisted_init();
        		
        		_router = router;
        		
        		setFees(
        		    feeBurnPct,
        		    feeFundPct,
        		    feeFundAddress,
        		    feeRewardPct,
        		    feeRewardAddress,
        		    feeEcoPct,
        		    feeEcoAddress,
        		    feeCharityPct,
        		    feeCharityAddress
        		    );
        		
        		IUniswapV2Router02 r = IUniswapV2Router02(_router);
        		IUniswapV2Factory f = IUniswapV2Factory(r.factory());
        		
                setPair(f.createPair(address(this), r.WETH()), true);
                
                address[] memory reserveSwapPath = new address[](2);
                    
                reserveSwapPath[0] = address(this);
                reserveSwapPath[1] = r.WETH();
                            
                setReserveSwapPath(reserveSwapPath);
        		
        		setFeeExcluded(_msgSender(), true);
        		setFeeExcluded(address(this), true);
            }
        
            function setRouter(address r) public onlyOwner {
                _router = r;
            }
            
            function setFees(
                        uint256 feeBurnPct, 
                        uint256 feeFundPct, 
                        address feeFundAddress, 
                        uint256 feeRewardPct, 
                        address feeRewardAddress, 
                        uint256 feeEcoPct, 
                        address feeEcoAddress, 
                        uint256 feeCharityPct, 
                        address feeCharityAddress
                        ) public onlyOwner {
                
        		require((feeBurnPct + feeFundPct + feeRewardPct + feeEcoPct + feeCharityPct) <= 10000, "Fees must not total more than 100%");
        		
        		require(feeFundAddress != address(0), "Fund address must not be zero address");
        		require(feeRewardAddress != address(0), "Reward address must not be zero address");
        		require(feeEcoAddress != address(0), "Eco address must not be zero address");
        		require(feeCharityAddress != address(0), "Charity address must not be zero address");
        		
        		_feeBurnPct = feeBurnPct;
        		
        		_feeFundPct = feeFundPct;
        		_feeFundAddress = feeFundAddress;
        		
        		_feeRewardPct = feeRewardPct;
        		_feeRewardAddress = feeRewardAddress;
        		
        		_feeEcoPct = feeEcoPct;
        		_feeEcoAddress = feeEcoAddress;
        		
        		_feeCharityPct = feeCharityPct;
        		_feeCharityAddress = feeCharityAddress;		
        		
            }
            
            function setReserveSwapPath(address[] memory path) public onlyOwner {
                
                require(path.length > 1, "Invalid path");
        
                distributeFees();
                
                _reserveSwapPath = path;
                
                _reserveTokenPool = new TokenPool();
        		_reserveTokenPool.initialize(_reserveSwapPath[_reserveSwapPath.length-1]);
        		
            }
            
            
            function collectedFees() public view returns (uint256 totalAmount, uint256 feeFundAmount, uint256 feeRewardAmount, uint256 feeEcoAmount, uint256 feeCharityAmount) {
                    
                    totalAmount = 0;
                    
                    if(address(_reserveTokenPool) != address(0))
                        totalAmount = _reserveTokenPool.balance();
                    
                    if(totalAmount > 0) {
                        
                        uint256 totalPct = _feeFundPct + _feeRewardPct + _feeEcoPct + _feeCharityPct;
                    
                        feeFundAmount = totalAmount.mul(_feeFundPct).div(totalPct);
                        feeRewardAmount = totalAmount.mul(_feeRewardPct).div(totalPct);
                        feeEcoAmount = totalAmount.mul(_feeEcoPct).div(totalPct);
                        
                        feeCharityAmount = totalAmount.sub(feeFundAmount).sub(feeRewardAmount).sub(feeEcoAmount);
                    
                    }
                    
            }
            
            function distributeFees() public onlyOwner {
                
                (uint256 totalAmount, uint256 feeFundAmount, uint256 feeRewardAmount, uint256 feeEcoAmount, uint256 feeCharityAmount) = collectedFees();
                
                if(totalAmount > 0) {
                    
                    IWETH weth = IWETH(IUniswapV2Router02(_router).WETH());
                    
                    if(_reserveSwapPath[_reserveSwapPath.length-1] == address(weth)) {
                    
                        _reserveTokenPool.transfer(address(this), totalAmount);
                        
                        weth.withdraw(totalAmount);
                        
                        if(feeFundAmount > 0)
                            TransferHelper.safeTransferETH(_feeFundAddress, feeFundAmount);
                        if(feeRewardAmount > 0)    
                            TransferHelper.safeTransferETH(_feeRewardAddress, feeRewardAmount);
                        if(feeEcoAmount > 0)    
                            TransferHelper.safeTransferETH(_feeEcoAddress, feeEcoAmount);
                        if(feeCharityAmount > 0)      
                            TransferHelper.safeTransferETH(_feeCharityAddress, feeCharityAmount);
                    
                    } else {
                        
                        if(feeFundAmount > 0)
                            _reserveTokenPool.transfer(_feeFundAddress, feeFundAmount);
                        if(feeRewardAmount > 0)
                            _reserveTokenPool.transfer(_feeRewardAddress, feeRewardAmount);
                        if(feeEcoAmount > 0)
                            _reserveTokenPool.transfer(_feeEcoAddress, feeEcoAmount);
                        if(feeCharityAmount > 0)
                            _reserveTokenPool.transfer(_feeCharityAddress, feeCharityAmount);
                        
                    }
                    
                    emit Distributed(feeFundAmount, feeRewardAmount, feeEcoAmount, feeCharityAmount);
                    
                }
                
            }
            
            receive() external payable {}
        
        	function setPair(address a, bool pair) public onlyOwner {
                _pair[a] = pair;
            }
        
        	function setFeeExcluded(address a, bool excluded) public onlyOwner {
                _feeExcluded[a] = excluded;
            }
            
            function mint(address _to, uint256 _amount) public onlyOwner {
                _mint(_to, _amount);
            }
            
            function _beforeTokenTransfer(address sender, address recipient, uint256 amount) internal {
                
        		LGEWhitelisted._applyLGEWhitelist(sender, recipient, amount);
        		
                if (sender == address(0)) { // When minting tokens
                    require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded");
                }
            }
        	
        	function _transfer(address sender, address recipient, uint256 amount) internal {
                require(sender != address(0), "ERC20: transfer from the zero address");
                require(recipient != address(0), "ERC20: transfer to the zero address");
        		
                _beforeTokenTransfer(sender, recipient, amount);
        		
        		_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        		
        		if(_pair[recipient] && !_feeExcluded[sender]) {
        			
        			uint256 feeBurnAmount = 0;
        			
        			if(_feeBurnPct > 0) {
        			
        				feeBurnAmount = amount.mul(_feeBurnPct).div(10000);
        				
        				_cap = _cap.sub(feeBurnAmount);
        				_totalSupply = _totalSupply.sub(feeBurnAmount);
        				emit Transfer(sender, address(0), feeBurnAmount);
        				
        			}
        			
        			uint256 feeToReservePct = _feeFundPct + _feeRewardPct + _feeEcoPct + _feeCharityPct;
        			uint256 feeToReserveAmount = 0;
        			
        			if(feeToReservePct > 0)  {
        			    
        				feeToReserveAmount = amount.mul(feeToReservePct).div(10000);
        				
        				if(_router != address(0)) {
        				    
        				    _balances[address(this)] = _balances[address(this)].add(feeToReserveAmount);
        				    emit Transfer(sender, address(this), feeToReserveAmount);
        
            				IUniswapV2Router02 r = IUniswapV2Router02(_router);
                            
                            _approve(address(this), _router, feeToReserveAmount);
            
                            r.swapExactTokensForTokensSupportingFeeOnTransferTokens(
                                feeToReserveAmount,
                                0,
                                _reserveSwapPath,
                                address(_reserveTokenPool),
                                block.timestamp
                            );
                        
        				} else {
        				    _balances[_feeFundAddress] = _balances[_feeFundAddress].add(feeToReserveAmount);
        				    emit Transfer(sender, _feeFundAddress, feeToReserveAmount);
        				}
        				
        			}
        			
        			amount = amount.sub(feeBurnAmount).sub(feeToReserveAmount);
        			
        		}
        
                _balances[recipient] = _balances[recipient].add(amount);
                emit Transfer(sender, recipient, amount);
            }
        	
        	function burn(uint256 amount) external {
                _cap=_cap.sub(amount);
                _burn(_msgSender(), amount);
            }
        
            function name() public view override returns (string memory) {
                return _name;
            }
        
            function symbol() public view override returns (string memory) {
                return _symbol;
            }
        
            function cap() public view returns (uint256) {
                return _cap;
            }
        
            function decimals() public view override returns (uint8) {
                return _decimals;
            }
        
            function totalSupply() public view override returns (uint256) {
                return _totalSupply;
            }
        
            function balanceOf(address account) public view override returns (uint256) {
                return _balances[account];
            }
        
            function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
                _transfer(_msgSender(), recipient, amount);
                return true;
            }
        
            function allowance(address owner, address spender) public view virtual override returns (uint256) {
                return _allowances[owner][spender];
            }
        
            function approve(address spender, uint256 amount) public virtual override returns (bool) {
                _approve(_msgSender(), spender, amount);
                return true;
            }
        
            function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
                _transfer(sender, recipient, amount);
                _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
                return true;
            }
        
            function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
                _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
                return true;
            }
        
            function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
                _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
                return true;
            }
        
            function _mint(address account, uint256 amount) internal virtual {
                require(account != address(0), "ERC20: mint to the zero address");
        
                _beforeTokenTransfer(address(0), account, amount);
        
                _totalSupply = _totalSupply.add(amount);
                _balances[account] = _balances[account].add(amount);
                emit Transfer(address(0), account, amount);
            }
        
            function _burn(address account, uint256 amount) internal virtual {
                require(account != address(0), "ERC20: burn from the zero address");
        
                _beforeTokenTransfer(account, address(0), amount);
        
                _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
                _totalSupply = _totalSupply.sub(amount);
                emit Transfer(account, address(0), amount);
            }
        
            function _approve(address owner, address spender, uint256 amount) internal virtual {
                require(owner != address(0), "ERC20: approve from the zero address");
                require(spender != address(0), "ERC20: approve to the zero address");
        
                _allowances[owner][spender] = amount;
                emit Approval(owner, spender, amount);
            }
            
            function rescueFunds(address tokenToRescue, address to, uint256 amount) external onlyOwner returns (bool) {
                return IERC20(tokenToRescue).transfer(to, amount);
            }
            
            function rescuePoolFunds(address tokenToRescue, address to, uint256 amount) external onlyOwner returns (bool) {
                return _reserveTokenPool.rescueFunds(tokenToRescue, to, amount);
            }
        	
        }