ETH Price: $3,449.57 (-0.17%)
Gas: 2 Gwei

Contract

0xd9dD5b3f198D9748E0603c831a025F065fF18C2a
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw Tokens201018342024-06-16 4:02:5938 days ago1718510579IN
0xd9dD5b3f...65fF18C2a
0 ETH0.00038163.01137158
Withdraw Tokens201017972024-06-16 3:55:2338 days ago1718510123IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000392743.0992485
Withdraw Tokens201017802024-06-16 3:51:5938 days ago1718509919IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000392423.09676672
Withdraw Tokens199960192024-06-01 9:17:1152 days ago1717233431IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000565464.46266925
Withdraw Tokens199024732024-05-19 7:24:1166 days ago1716103451IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000398733.14653417
Withdraw Tokens198934182024-05-18 0:59:4767 days ago1715993987IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000630383.46429885
Rescure198869542024-05-17 3:16:1168 days ago1715915771IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000362713.31300076
Withdraw Tokens198830672024-05-16 14:15:1168 days ago1715868911IN
0xd9dD5b3f...65fF18C2a
0 ETH0.00083916.62165297
Withdraw Tokens198830632024-05-16 14:14:2368 days ago1715868863IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000933577.36710252
Withdraw Tokens198830572024-05-16 14:13:1168 days ago1715868791IN
0xd9dD5b3f...65fF18C2a
0 ETH0.0009827.74929353
Withdraw Tokens198817682024-05-16 9:53:3568 days ago1715853215IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000690385.44805932
Withdraw Tokens198803232024-05-16 5:02:3569 days ago1715835755IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000552394.35913356
Withdraw Tokens197945432024-05-04 5:06:2381 days ago1714799183IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000926645.09241199
Withdraw Tokens197539082024-04-28 12:46:5986 days ago1714308419IN
0xd9dD5b3f...65fF18C2a
0 ETH0.001165136.40301896
Withdraw Tokens197391782024-04-26 11:17:2388 days ago1714130243IN
0xd9dD5b3f...65fF18C2a
0 ETH0.000212686.94440808
Withdraw Tokens197391752024-04-26 11:16:4788 days ago1714130207IN
0xd9dD5b3f...65fF18C2a
0 ETH0.001247396.85507351
Withdraw Tokens197391382024-04-26 11:09:2388 days ago1714129763IN
0xd9dD5b3f...65fF18C2a
0 ETH0.001332967.32534684
Withdraw Tokens197092792024-04-22 6:54:5993 days ago1713768899IN
0xd9dD5b3f...65fF18C2a
0 ETH0.00123996.81392735
Withdraw Tokens197092592024-04-22 6:50:5993 days ago1713768659IN
0xd9dD5b3f...65fF18C2a
0 ETH0.001230326.76128488
Withdraw Tokens196930572024-04-20 0:28:5995 days ago1713572939IN
0xd9dD5b3f...65fF18C2a
0 ETH0.001075565.91079514
Withdraw Tokens196683332024-04-16 13:26:4798 days ago1713274007IN
0xd9dD5b3f...65fF18C2a
0 ETH0.002266112.45346912
Withdraw Tokens196682482024-04-16 13:09:3598 days ago1713272975IN
0xd9dD5b3f...65fF18C2a
0 ETH0.0018926310.40105154
Withdraw Tokens196679702024-04-16 12:13:5998 days ago1713269639IN
0xd9dD5b3f...65fF18C2a
0 ETH0.0021072511.580492
Withdraw Tokens196676172024-04-16 11:02:4798 days ago1713265367IN
0xd9dD5b3f...65fF18C2a
0 ETH0.0018862610.36674096
Withdraw Tokens196670712024-04-16 9:11:5998 days ago1713258719IN
0xd9dD5b3f...65fF18C2a
0 ETH0.002101711.55
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CrowdsaleERC20

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : cd2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/security/ReentrancyGuard.sol";
import "@openzeppelin/[email protected]/security/Pausable.sol";

contract CrowdsaleERC20 is Ownable, ReentrancyGuard, Pausable {
    using SafeERC20 for IERC20;

    // The token being sold
    IERC20 private _token;
    address payable private _wallet;

    uint256 public cap;
    uint256 public leastBuy;
    uint256 public rate;
    uint256 public weiRaised;
    uint256 public openingTime;
    uint256 public closingTime;
    uint256 public releaseCooldown;
    uint256 public releaseBatchs;
    address public raiseToken;

    mapping(address => uint256) public balances;
    mapping(address => uint256) public totalBalance;
    mapping(address => uint256) public refs;
    mapping(address => uint256) public refAmounts;
    mapping(address => bool) public donated;
    mapping(address => uint256) public lastWithdraw;

    event TokensPurchased(
        address indexed purchaser,
        address indexed beneficiary,
        uint256 value,
        uint256 amount
    );
    event TimedCrowdsaleExtended(
        uint256 prevClosingTime,
        uint256 newClosingTime
    );
    event TokensReferred(
        address indexed purchaser,
        address indexed beneficiary,
        address indexed referral,
        uint256 value,
        uint256 amount
    );

    modifier onlyWhileOpen() {
        require(isOpen(), "TimedCrowdsale: not open");
        _;
    }

    constructor(
        address raiseToken_,
        uint256 rate_,
        address payable wallet_,
        address token_,
        uint256 cap_,
        uint256 leastBuy_,
        uint256 openingTime_,
        uint256 closingTime_
    ) {
        require(rate_ > 0, "Crowdsale: rate is 0"); //1u=100  whose rate is 10**14
        require(wallet_ != address(0), "Crowdsale: wallet is the zero address");
        require(token_ != address(0), "Crowdsale: token is the zero address");
        require(cap_ > 0, "CappedCrowdsale: cap is 0");
        require(
            openingTime_ >= block.timestamp,
            "TimedCrowdsale: opening time is before current time"
        );
        require(
            closingTime_ > openingTime_,
            "TimedCrowdsale: opening time is not before closing time"
        );

        raiseToken = raiseToken_;
        rate = rate_;
        _wallet = wallet_;
        _token = IERC20(token_);
        cap = cap_;
        leastBuy = leastBuy_;
        openingTime = openingTime_;
        closingTime = closingTime_; //block.timestamp + 48 hours
        releaseCooldown = 30 days;
        releaseBatchs = 20;
    }

    receive() external payable {}

    function buyTokens(
        uint256 amount,
        address beneficiary,
        address referral
    ) public payable nonReentrant {
        _preValidatePurchase(beneficiary, amount);

        // calculate token amount to be created
        uint256 tokensAmount = _getTokenAmount(amount);

        // update state
        weiRaised += amount;

        _processPurchase(beneficiary, tokensAmount);
        emit TokensPurchased(_msgSender(), beneficiary, amount, tokensAmount);

        _updatePurchasingState(beneficiary, amount);

        _forwardFunds(amount);
        _postValidatePurchase(beneficiary, amount);

        if (referral != address(0) && referral != _msgSender()) {
            refs[referral] += 1;
            refAmounts[referral] += amount;
            emit TokensReferred(
                _msgSender(),
                beneficiary,
                referral,
                amount,
                tokensAmount
            );
        }

        donated[beneficiary] = true;
    }

    function _preValidatePurchase(
        address beneficiary,
        uint256 weiAmount
    ) internal view whenNotPaused onlyWhileOpen {
        require(
            beneficiary != address(0),
            "Crowdsale: beneficiary is the zero address"
        );
        require(weiAmount != 0, "Crowdsale: weiAmount is 0");
        require(
            (weiRaised + weiAmount) <= cap,
            "CappedCrowdsale: cap exceeded"
        );
        require(weiAmount > leastBuy, "CappedCrowdsale: not enough to buy");
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
    }

    function _postValidatePurchase(
        address beneficiary,
        uint256 weiAmount
    ) internal view {
        // solhint-disable-previous-line no-empty-blocks
    }

    function _deliverTokens(address beneficiary, uint256 tokenAmount) internal {
        _token.safeTransfer(beneficiary, tokenAmount);
    }

    function _processPurchase(
        address beneficiary,
        uint256 tokenAmount
    ) internal {
        balances[beneficiary] += tokenAmount;
        totalBalance[beneficiary] += tokenAmount;
    }

    function _updatePurchasingState(
        address beneficiary,
        uint256 weiAmount
    ) internal {
        // solhint-disable-previous-line no-empty-blocks
    }

    function _getTokenAmount(
        uint256 weiAmount
    ) internal view returns (uint256) {
        return weiAmount * rate;
    }

    // function _getTokenAmount() internal pure returns (uint256) {
    //     return 5000000 * (10 ** 6);
    // }

    function _forwardFunds(uint256 amount) internal {
        IERC20(raiseToken).safeTransferFrom(_msgSender(), _wallet, amount);
    }

    function capReached() public view returns (bool) {
        return weiRaised >= cap;
    }

    function isOpen() public view returns (bool) {
        return block.timestamp >= openingTime && block.timestamp <= closingTime;
    }

    function hasClosed() public view returns (bool) {
        // solhint-disable-next-line not-rely-on-time
        return block.timestamp > closingTime;
    }

    function extendTime(uint256 newClosingTime) public onlyOwner {
        require(!hasClosed(), "TimedCrowdsale: already closed");
        // solhint-disable-next-line max-line-length
        require(
            newClosingTime > closingTime,
            "TimedCrowdsale: new closing time is before current closing time"
        );

        emit TimedCrowdsaleExtended(closingTime, newClosingTime);
        closingTime = newClosingTime;
    }

    function withdrawTokens(address beneficiary) public {
        require(hasClosed(), "PostDeliveryCrowdsale: not closed");
        uint256 amount = balances[beneficiary];
        require(
            amount > 0,
            "PostDeliveryCrowdsale: beneficiary is not due any tokens"
        );
        require(
            lastWithdraw[beneficiary] + releaseCooldown < block.timestamp,
            "Not yet claimable"
        );

        lastWithdraw[beneficiary] = block.timestamp;
        uint amoutToRelease = totalBalance[beneficiary] / releaseBatchs;
        balances[beneficiary] -= amoutToRelease;
        _token.safeTransfer(beneficiary, amoutToRelease);
    }

    function rescure() public payable onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");

        (bool success, ) = (_msgSender()).call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function rescure(address t) public onlyOwner {
        IERC20(t).safeTransfer(
            _msgSender(),
            IERC20(t).balanceOf(address(this))
        );
    }
}

File 2 of 11 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 3 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 4 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

File 5 of 11 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/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;

    /**
     * @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.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @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.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @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);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, 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");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, 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. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, 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.isContract(address(token));
    }
}

File 6 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 8 of 11 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/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.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
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].
     *
     * CAUTION: See Security Considerations above.
     */
    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 9 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 10 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 11 of 11 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"raiseToken_","type":"address"},{"internalType":"uint256","name":"rate_","type":"uint256"},{"internalType":"address payable","name":"wallet_","type":"address"},{"internalType":"address","name":"token_","type":"address"},{"internalType":"uint256","name":"cap_","type":"uint256"},{"internalType":"uint256","name":"leastBuy_","type":"uint256"},{"internalType":"uint256","name":"openingTime_","type":"uint256"},{"internalType":"uint256","name":"closingTime_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"prevClosingTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newClosingTime","type":"uint256"}],"name":"TimedCrowdsaleExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"purchaser","type":"address"},{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"purchaser","type":"address"},{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":true,"internalType":"address","name":"referral","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensReferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"address","name":"referral","type":"address"}],"name":"buyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capReached","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"donated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newClosingTime","type":"uint256"}],"name":"extendTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasClosed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leastBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raiseToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"refAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"refs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseBatchs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"t","type":"address"}],"name":"rescure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescure","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weiRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801562000010575f80fd5b50604051620017ca380380620017ca833981016040819052620000339162000364565b6200003e33620002fd565b600180556002805460ff19169055866200009f5760405162461bcd60e51b815260206004820152601460248201527f43726f776473616c653a2072617465206973203000000000000000000000000060448201526064015b60405180910390fd5b6001600160a01b038616620001055760405162461bcd60e51b815260206004820152602560248201527f43726f776473616c653a2077616c6c657420697320746865207a65726f206164604482015264647265737360d81b606482015260840162000096565b6001600160a01b038516620001695760405162461bcd60e51b8152602060048201526024808201527f43726f776473616c653a20746f6b656e20697320746865207a65726f206164646044820152637265737360e01b606482015260840162000096565b5f8411620001ba5760405162461bcd60e51b815260206004820152601960248201527f43617070656443726f776473616c653a20636170206973203000000000000000604482015260640162000096565b42821015620002205760405162461bcd60e51b815260206004820152603360248201525f80516020620017aa83398151915260448201527f6265666f72652063757272656e742074696d6500000000000000000000000000606482015260840162000096565b818111620002855760405162461bcd60e51b815260206004820152603760248201525f80516020620017aa83398151915260448201527f6e6f74206265666f726520636c6f73696e672074696d65000000000000000000606482015260840162000096565b600c80546001600160a01b03199081166001600160a01b039a8b1617909155600697909755600380549097169588169590951790955560028054610100600160a81b03191661010094909716939093029590951790915560045560059290925560085560095562278d00600a556014600b55620003e2565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116811462000361575f80fd5b50565b5f805f805f805f80610100898b0312156200037d575f80fd5b88516200038a816200034c565b60208a015160408b01519199509750620003a4816200034c565b60608a0151909650620003b7816200034c565b60808a015160a08b015160c08c015160e0909c01519a9d999c50979a91999098919650945092505050565b6113ba80620003f05f395ff3fe608060405260043610610198575f3560e01c80636eacd398116100e7578063adc42f2911610087578063f0293e8611610062578063f0293e861461045f578063f2fde38b14610474578063f53a736014610493578063fb690dcc1461049b575f80fd5b8063adc42f291461040c578063b7a8807c1461041f578063c4cdc92414610434575f80fd5b806383fe53fe116100c257806383fe53fe1461039d5780638da5cb5b146103b257806398d079b0146103ce578063a27aebbc146103ed575f80fd5b80636eacd39814610333578063715018a61461035e57806375c6c6da14610372575f80fd5b806347535d7b116101525780634da60aa51161012d5780634da60aa5146102a15780634f935945146102d85780635c975abb146102f1578063624d7b7214610308575f80fd5b806347535d7b1461025757806349df728c1461026b5780634b6753bc1461028c575f80fd5b80630e0250ba146101a35780631515bc2b146101cb57806327e235e3146101ed5780632c4e722e14610218578063355274ea1461022d5780634042b66f14610242575f80fd5b3661019f57005b5f80fd5b3480156101ae575f80fd5b506101b8600a5481565b6040519081526020015b60405180910390f35b3480156101d6575f80fd5b5060095442115b60405190151581526020016101c2565b3480156101f8575f80fd5b506101b86102073660046111ff565b600d6020525f908152604090205481565b348015610223575f80fd5b506101b860065481565b348015610238575f80fd5b506101b860045481565b34801561024d575f80fd5b506101b860075481565b348015610262575f80fd5b506101dd6104c9565b348015610276575f80fd5b5061028a6102853660046111ff565b6104e3565b005b348015610297575f80fd5b506101b860095481565b3480156102ac575f80fd5b50600c546102c0906001600160a01b031681565b6040516001600160a01b0390911681526020016101c2565b3480156102e3575f80fd5b5060045460075410156101dd565b3480156102fc575f80fd5b5060025460ff166101dd565b348015610313575f80fd5b506101b86103223660046111ff565b60126020525f908152604090205481565b34801561033e575f80fd5b506101b861034d3660046111ff565b600e6020525f908152604090205481565b348015610369575f80fd5b5061028a6106b9565b34801561037d575f80fd5b506101b861038c3660046111ff565b600f6020525f908152604090205481565b3480156103a8575f80fd5b506101b860055481565b3480156103bd575f80fd5b505f546001600160a01b03166102c0565b3480156103d9575f80fd5b5061028a6103e83660046111ff565b6106cc565b3480156103f8575f80fd5b5061028a61040736600461121f565b610752565b61028a61041a366004611236565b610864565b34801561042a575f80fd5b506101b860085481565b34801561043f575f80fd5b506101b861044e3660046111ff565b60106020525f908152604090205481565b34801561046a575f80fd5b506101b8600b5481565b34801561047f575f80fd5b5061028a61048e3660046111ff565b6109e9565b61028a610a5f565b3480156104a6575f80fd5b506101dd6104b53660046111ff565b60116020525f908152604090205460ff1681565b5f60085442101580156104de57506009544211155b905090565b60095442116105435760405162461bcd60e51b815260206004820152602160248201527f506f737444656c697665727943726f776473616c653a206e6f7420636c6f73656044820152601960fa1b60648201526084015b60405180910390fd5b6001600160a01b0381165f908152600d6020526040902054806105ce5760405162461bcd60e51b815260206004820152603860248201527f506f737444656c697665727943726f776473616c653a2062656e65666963696160448201527f7279206973206e6f742064756520616e7920746f6b656e730000000000000000606482015260840161053a565b600a546001600160a01b0383165f9081526012602052604090205442916105f491611283565b106106355760405162461bcd60e51b81526020600482015260116024820152704e6f742079657420636c61696d61626c6560781b604482015260640161053a565b6001600160a01b0382165f908152601260209081526040808320429055600b54600e9092528220546106679190611296565b6001600160a01b0384165f908152600d60205260408120805492935083929091906106939084906112b5565b90915550506002546106b49061010090046001600160a01b03168483610b41565b505050565b6106c1610ba4565b6106ca5f610bfd565b565b6106d4610ba4565b61074f336040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa15801561071a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061073e91906112c8565b6001600160a01b0384169190610b41565b50565b61075a610ba4565b6009544211156107ac5760405162461bcd60e51b815260206004820152601e60248201527f54696d656443726f776473616c653a20616c726561647920636c6f7365640000604482015260640161053a565b60095481116108235760405162461bcd60e51b815260206004820152603f60248201527f54696d656443726f776473616c653a206e657720636c6f73696e672074696d6560448201527f206973206265666f72652063757272656e7420636c6f73696e672074696d6500606482015260840161053a565b60095460408051918252602082018390527f46711e222f558a07afd26e5e71b48ecb0a8b2cdcd40faeb1323e05e2c76a2f32910160405180910390a1600955565b61086c610c4c565b6108768284610ca5565b5f61088084610e74565b90508360075f8282546108939190611283565b909155506108a390508382610e89565b60408051858152602081018390526001600160a01b0385169133917f6faf93231a456e552dbc9961f58d9713ee4f2e69d15f1975b050ef0911053a7b910160405180910390a36108f284610ee5565b6001600160a01b0382161580159061091357506001600160a01b0382163314155b156109bd576001600160a01b0382165f908152600f60205260408120805460019290610940908490611283565b90915550506001600160a01b0382165f908152601060205260408120805486929061096c908490611283565b909155505060408051858152602081018390526001600160a01b03848116929086169133917f81a549e5abc2ca1c1d8e289cb3260f10c042024ad668cdf96ba0f5253587f065910160405180910390a45b506001600160a01b0382165f908152601160205260409020805460ff191660011790556106b460018055565b6109f1610ba4565b6001600160a01b038116610a565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053a565b61074f81610bfd565b610a67610ba4565b4780610ab55760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f20776974686472617700000000000000604482015260640161053a565b6040515f90339083908381818185875af1925050503d805f8114610af4576040519150601f19603f3d011682016040523d82523d5f602084013e610af9565b606091505b5050905080610b3d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161053a565b5050565b6040516001600160a01b0383166024820152604481018290526106b490849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610f03565b5f546001600160a01b031633146106ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161053a565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600260015403610c9e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161053a565b6002600155565b610cad610fd6565b610cb56104c9565b610d015760405162461bcd60e51b815260206004820152601860248201527f54696d656443726f776473616c653a206e6f74206f70656e0000000000000000604482015260640161053a565b6001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152602a60248201527f43726f776473616c653a2062656e656669636961727920697320746865207a65604482015269726f206164647265737360b01b606482015260840161053a565b805f03610db95760405162461bcd60e51b815260206004820152601960248201527f43726f776473616c653a20776569416d6f756e74206973203000000000000000604482015260640161053a565b60045481600754610dca9190611283565b1115610e185760405162461bcd60e51b815260206004820152601d60248201527f43617070656443726f776473616c653a20636170206578636565646564000000604482015260640161053a565b6005548111610b3d5760405162461bcd60e51b815260206004820152602260248201527f43617070656443726f776473616c653a206e6f7420656e6f75676820746f2062604482015261757960f01b606482015260840161053a565b5f60065482610e8391906112df565b92915050565b6001600160a01b0382165f908152600d602052604081208054839290610eb0908490611283565b90915550506001600160a01b0382165f908152600e602052604081208054839290610edc908490611283565b90915550505050565b61074f33600354600c546001600160a01b039081169291168461101c565b5f610f57826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661105a9092919063ffffffff16565b905080515f1480610f77575080806020019051810190610f7791906112f6565b6106b45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161053a565b60025460ff16156106ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161053a565b6040516001600160a01b03808516602483015283166044820152606481018290526110549085906323b872dd60e01b90608401610b6d565b50505050565b606061106884845f85611070565b949350505050565b6060824710156110d15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161053a565b5f80866001600160a01b031685876040516110ec9190611337565b5f6040518083038185875af1925050503d805f8114611126576040519150601f19603f3d011682016040523d82523d5f602084013e61112b565b606091505b509150915061113c87838387611147565b979650505050505050565b606083156111b55782515f036111ae576001600160a01b0385163b6111ae5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161053a565b5081611068565b61106883838151156111ca5781518083602001fd5b8060405162461bcd60e51b815260040161053a9190611352565b80356001600160a01b03811681146111fa575f80fd5b919050565b5f6020828403121561120f575f80fd5b611218826111e4565b9392505050565b5f6020828403121561122f575f80fd5b5035919050565b5f805f60608486031215611248575f80fd5b83359250611258602085016111e4565b9150611266604085016111e4565b90509250925092565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610e8357610e8361126f565b5f826112b057634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610e8357610e8361126f565b5f602082840312156112d8575f80fd5b5051919050565b8082028115828204841417610e8357610e8361126f565b5f60208284031215611306575f80fd5b81518015158114611218575f80fd5b5f5b8381101561132f578181015183820152602001611317565b50505f910152565b5f8251611348818460208701611315565b9190910192915050565b602081525f8251806020840152611370816040850160208701611315565b601f01601f1916919091016040019291505056fea2646970667358221220cb8ee4aa316cf8bc806860c0fbefed6121c1458a4e16bc0e5909a41f248eb85964736f6c6343000816003354696d656443726f776473616c653a206f70656e696e672074696d6520697320000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000009daefba6d70f0ea86598b07912230947e5e5e838000000000000000000000000fd22e7b5ef6c7a95ab2b6bf702b8665e3e0d50990000000000000000000000000000000000000000000000000000048c2739500000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000657cfa620000000000000000000000000000000000000000000000000000000065ceb762

Deployed Bytecode

0x608060405260043610610198575f3560e01c80636eacd398116100e7578063adc42f2911610087578063f0293e8611610062578063f0293e861461045f578063f2fde38b14610474578063f53a736014610493578063fb690dcc1461049b575f80fd5b8063adc42f291461040c578063b7a8807c1461041f578063c4cdc92414610434575f80fd5b806383fe53fe116100c257806383fe53fe1461039d5780638da5cb5b146103b257806398d079b0146103ce578063a27aebbc146103ed575f80fd5b80636eacd39814610333578063715018a61461035e57806375c6c6da14610372575f80fd5b806347535d7b116101525780634da60aa51161012d5780634da60aa5146102a15780634f935945146102d85780635c975abb146102f1578063624d7b7214610308575f80fd5b806347535d7b1461025757806349df728c1461026b5780634b6753bc1461028c575f80fd5b80630e0250ba146101a35780631515bc2b146101cb57806327e235e3146101ed5780632c4e722e14610218578063355274ea1461022d5780634042b66f14610242575f80fd5b3661019f57005b5f80fd5b3480156101ae575f80fd5b506101b8600a5481565b6040519081526020015b60405180910390f35b3480156101d6575f80fd5b5060095442115b60405190151581526020016101c2565b3480156101f8575f80fd5b506101b86102073660046111ff565b600d6020525f908152604090205481565b348015610223575f80fd5b506101b860065481565b348015610238575f80fd5b506101b860045481565b34801561024d575f80fd5b506101b860075481565b348015610262575f80fd5b506101dd6104c9565b348015610276575f80fd5b5061028a6102853660046111ff565b6104e3565b005b348015610297575f80fd5b506101b860095481565b3480156102ac575f80fd5b50600c546102c0906001600160a01b031681565b6040516001600160a01b0390911681526020016101c2565b3480156102e3575f80fd5b5060045460075410156101dd565b3480156102fc575f80fd5b5060025460ff166101dd565b348015610313575f80fd5b506101b86103223660046111ff565b60126020525f908152604090205481565b34801561033e575f80fd5b506101b861034d3660046111ff565b600e6020525f908152604090205481565b348015610369575f80fd5b5061028a6106b9565b34801561037d575f80fd5b506101b861038c3660046111ff565b600f6020525f908152604090205481565b3480156103a8575f80fd5b506101b860055481565b3480156103bd575f80fd5b505f546001600160a01b03166102c0565b3480156103d9575f80fd5b5061028a6103e83660046111ff565b6106cc565b3480156103f8575f80fd5b5061028a61040736600461121f565b610752565b61028a61041a366004611236565b610864565b34801561042a575f80fd5b506101b860085481565b34801561043f575f80fd5b506101b861044e3660046111ff565b60106020525f908152604090205481565b34801561046a575f80fd5b506101b8600b5481565b34801561047f575f80fd5b5061028a61048e3660046111ff565b6109e9565b61028a610a5f565b3480156104a6575f80fd5b506101dd6104b53660046111ff565b60116020525f908152604090205460ff1681565b5f60085442101580156104de57506009544211155b905090565b60095442116105435760405162461bcd60e51b815260206004820152602160248201527f506f737444656c697665727943726f776473616c653a206e6f7420636c6f73656044820152601960fa1b60648201526084015b60405180910390fd5b6001600160a01b0381165f908152600d6020526040902054806105ce5760405162461bcd60e51b815260206004820152603860248201527f506f737444656c697665727943726f776473616c653a2062656e65666963696160448201527f7279206973206e6f742064756520616e7920746f6b656e730000000000000000606482015260840161053a565b600a546001600160a01b0383165f9081526012602052604090205442916105f491611283565b106106355760405162461bcd60e51b81526020600482015260116024820152704e6f742079657420636c61696d61626c6560781b604482015260640161053a565b6001600160a01b0382165f908152601260209081526040808320429055600b54600e9092528220546106679190611296565b6001600160a01b0384165f908152600d60205260408120805492935083929091906106939084906112b5565b90915550506002546106b49061010090046001600160a01b03168483610b41565b505050565b6106c1610ba4565b6106ca5f610bfd565b565b6106d4610ba4565b61074f336040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa15801561071a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061073e91906112c8565b6001600160a01b0384169190610b41565b50565b61075a610ba4565b6009544211156107ac5760405162461bcd60e51b815260206004820152601e60248201527f54696d656443726f776473616c653a20616c726561647920636c6f7365640000604482015260640161053a565b60095481116108235760405162461bcd60e51b815260206004820152603f60248201527f54696d656443726f776473616c653a206e657720636c6f73696e672074696d6560448201527f206973206265666f72652063757272656e7420636c6f73696e672074696d6500606482015260840161053a565b60095460408051918252602082018390527f46711e222f558a07afd26e5e71b48ecb0a8b2cdcd40faeb1323e05e2c76a2f32910160405180910390a1600955565b61086c610c4c565b6108768284610ca5565b5f61088084610e74565b90508360075f8282546108939190611283565b909155506108a390508382610e89565b60408051858152602081018390526001600160a01b0385169133917f6faf93231a456e552dbc9961f58d9713ee4f2e69d15f1975b050ef0911053a7b910160405180910390a36108f284610ee5565b6001600160a01b0382161580159061091357506001600160a01b0382163314155b156109bd576001600160a01b0382165f908152600f60205260408120805460019290610940908490611283565b90915550506001600160a01b0382165f908152601060205260408120805486929061096c908490611283565b909155505060408051858152602081018390526001600160a01b03848116929086169133917f81a549e5abc2ca1c1d8e289cb3260f10c042024ad668cdf96ba0f5253587f065910160405180910390a45b506001600160a01b0382165f908152601160205260409020805460ff191660011790556106b460018055565b6109f1610ba4565b6001600160a01b038116610a565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053a565b61074f81610bfd565b610a67610ba4565b4780610ab55760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f20776974686472617700000000000000604482015260640161053a565b6040515f90339083908381818185875af1925050503d805f8114610af4576040519150601f19603f3d011682016040523d82523d5f602084013e610af9565b606091505b5050905080610b3d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161053a565b5050565b6040516001600160a01b0383166024820152604481018290526106b490849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610f03565b5f546001600160a01b031633146106ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161053a565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600260015403610c9e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161053a565b6002600155565b610cad610fd6565b610cb56104c9565b610d015760405162461bcd60e51b815260206004820152601860248201527f54696d656443726f776473616c653a206e6f74206f70656e0000000000000000604482015260640161053a565b6001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152602a60248201527f43726f776473616c653a2062656e656669636961727920697320746865207a65604482015269726f206164647265737360b01b606482015260840161053a565b805f03610db95760405162461bcd60e51b815260206004820152601960248201527f43726f776473616c653a20776569416d6f756e74206973203000000000000000604482015260640161053a565b60045481600754610dca9190611283565b1115610e185760405162461bcd60e51b815260206004820152601d60248201527f43617070656443726f776473616c653a20636170206578636565646564000000604482015260640161053a565b6005548111610b3d5760405162461bcd60e51b815260206004820152602260248201527f43617070656443726f776473616c653a206e6f7420656e6f75676820746f2062604482015261757960f01b606482015260840161053a565b5f60065482610e8391906112df565b92915050565b6001600160a01b0382165f908152600d602052604081208054839290610eb0908490611283565b90915550506001600160a01b0382165f908152600e602052604081208054839290610edc908490611283565b90915550505050565b61074f33600354600c546001600160a01b039081169291168461101c565b5f610f57826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661105a9092919063ffffffff16565b905080515f1480610f77575080806020019051810190610f7791906112f6565b6106b45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161053a565b60025460ff16156106ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161053a565b6040516001600160a01b03808516602483015283166044820152606481018290526110549085906323b872dd60e01b90608401610b6d565b50505050565b606061106884845f85611070565b949350505050565b6060824710156110d15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161053a565b5f80866001600160a01b031685876040516110ec9190611337565b5f6040518083038185875af1925050503d805f8114611126576040519150601f19603f3d011682016040523d82523d5f602084013e61112b565b606091505b509150915061113c87838387611147565b979650505050505050565b606083156111b55782515f036111ae576001600160a01b0385163b6111ae5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161053a565b5081611068565b61106883838151156111ca5781518083602001fd5b8060405162461bcd60e51b815260040161053a9190611352565b80356001600160a01b03811681146111fa575f80fd5b919050565b5f6020828403121561120f575f80fd5b611218826111e4565b9392505050565b5f6020828403121561122f575f80fd5b5035919050565b5f805f60608486031215611248575f80fd5b83359250611258602085016111e4565b9150611266604085016111e4565b90509250925092565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610e8357610e8361126f565b5f826112b057634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610e8357610e8361126f565b5f602082840312156112d8575f80fd5b5051919050565b8082028115828204841417610e8357610e8361126f565b5f60208284031215611306575f80fd5b81518015158114611218575f80fd5b5f5b8381101561132f578181015183820152602001611317565b50505f910152565b5f8251611348818460208701611315565b9190910192915050565b602081525f8251806020840152611370816040850160208701611315565b601f01601f1916919091016040019291505056fea2646970667358221220cb8ee4aa316cf8bc806860c0fbefed6121c1458a4e16bc0e5909a41f248eb85964736f6c63430008160033

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

000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000009daefba6d70f0ea86598b07912230947e5e5e838000000000000000000000000fd22e7b5ef6c7a95ab2b6bf702b8665e3e0d50990000000000000000000000000000000000000000000000000000048c2739500000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000657cfa620000000000000000000000000000000000000000000000000000000065ceb762

-----Decoded View---------------
Arg [0] : raiseToken_ (address): 0xdAC17F958D2ee523a2206206994597C13D831ec7
Arg [1] : rate_ (uint256): 100000000000000
Arg [2] : wallet_ (address): 0x9DaeFBA6D70f0eA86598b07912230947e5e5e838
Arg [3] : token_ (address): 0xFD22E7B5Ef6C7a95AB2B6bF702b8665E3e0D5099
Arg [4] : cap_ (uint256): 5000000000000
Arg [5] : leastBuy_ (uint256): 1000000
Arg [6] : openingTime_ (uint256): 1702689378
Arg [7] : closingTime_ (uint256): 1708046178

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Arg [1] : 00000000000000000000000000000000000000000000000000005af3107a4000
Arg [2] : 0000000000000000000000009daefba6d70f0ea86598b07912230947e5e5e838
Arg [3] : 000000000000000000000000fd22e7b5ef6c7a95ab2b6bf702b8665e3e0d5099
Arg [4] : 0000000000000000000000000000000000000000000000000000048c27395000
Arg [5] : 00000000000000000000000000000000000000000000000000000000000f4240
Arg [6] : 00000000000000000000000000000000000000000000000000000000657cfa62
Arg [7] : 0000000000000000000000000000000000000000000000000000000065ceb762


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.