ETH Price: $3,360.77 (-3.25%)

Contract

0x7BD9023Fe15b179506Fa270af03700c4d51D0dDb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Finish Sale208211882024-09-24 14:54:5993 days ago1727189699IN
0x7BD9023F...4d51D0dDb
0 ETH0.0012393725.85255041
Purchase208140202024-09-23 14:56:4794 days ago1727103407IN
0x7BD9023F...4d51D0dDb
0.5 ETH0.003138348.73147242
Purchase208139522024-09-23 14:42:4794 days ago1727102567IN
0x7BD9023F...4d51D0dDb
0.1 ETH0.0024829838.55564518
Purchase208136322024-09-23 13:38:3594 days ago1727098715IN
0x7BD9023F...4d51D0dDb
1 ETH0.0019305729.97785321
Purchase208135592024-09-23 13:23:5994 days ago1727097839IN
0x7BD9023F...4d51D0dDb
0.2 ETH0.0014274222.16501275
Purchase208134972024-09-23 13:11:3594 days ago1727097095IN
0x7BD9023F...4d51D0dDb
0.2 ETH0.0016928226.28608792
Purchase208133772024-09-23 12:47:3594 days ago1727095655IN
0x7BD9023F...4d51D0dDb
0.5 ETH0.0014642122.7362825
Purchase208128972024-09-23 11:11:2394 days ago1727089883IN
0x7BD9023F...4d51D0dDb
0.5 ETH0.0009580320.25436845
Purchase208128092024-09-23 10:53:2394 days ago1727088803IN
0x7BD9023F...4d51D0dDb
0.2 ETH0.0014599122.66942894
Purchase208127912024-09-23 10:49:4794 days ago1727088587IN
0x7BD9023F...4d51D0dDb
0.4 ETH0.0013731421.32212927
Purchase208121082024-09-23 8:31:2394 days ago1727080283IN
0x7BD9023F...4d51D0dDb
0.2 ETH0.0011877625.1113966
Purchase208114942024-09-23 6:27:5994 days ago1727072879IN
0x7BD9023F...4d51D0dDb
0.5 ETH0.0010839322.91611192
Purchase208113332024-09-23 5:55:3594 days ago1727070935IN
0x7BD9023F...4d51D0dDb
0.6 ETH0.001242919.29982092
Purchase208107952024-09-23 4:07:2394 days ago1727064443IN
0x7BD9023F...4d51D0dDb
0.4 ETH0.0016682725.9049564
Purchase208100192024-09-23 1:31:3595 days ago1727055095IN
0x7BD9023F...4d51D0dDb
0.1 ETH0.000392786.09917611
Purchase208089662024-09-22 22:00:2395 days ago1727042423IN
0x7BD9023F...4d51D0dDb
1 ETH0.0008106612.58802248
Purchase208086272024-09-22 20:52:1195 days ago1727038331IN
0x7BD9023F...4d51D0dDb
0.4 ETH0.0005596111.83114175
Purchase208086212024-09-22 20:50:5995 days ago1727038259IN
0x7BD9023F...4d51D0dDb
0.8 ETH0.0007933512.31925042
Purchase208080382024-09-22 18:53:4795 days ago1727031227IN
0x7BD9023F...4d51D0dDb
1 ETH0.0010524216.34200511
Purchase208078032024-09-22 18:06:3595 days ago1727028395IN
0x7BD9023F...4d51D0dDb
0.2 ETH0.001643525.52031746
Purchase208077892024-09-22 18:03:4795 days ago1727028227IN
0x7BD9023F...4d51D0dDb
0.7 ETH0.0020079531.17946783
Purchase208077802024-09-22 18:01:5995 days ago1727028119IN
0x7BD9023F...4d51D0dDb
0.4 ETH0.0021786333.82970695
Purchase208077292024-09-22 17:51:4795 days ago1727027507IN
0x7BD9023F...4d51D0dDb
0.3 ETH0.0023893637.10190347
Purchase208077252024-09-22 17:50:5995 days ago1727027459IN
0x7BD9023F...4d51D0dDb
0.1 ETH0.001823538.55185612
Purchase208075642024-09-22 17:18:3595 days ago1727025515IN
0x7BD9023F...4d51D0dDb
0.5 ETH0.0012085818.76680256
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
208211882024-09-24 14:54:5993 days ago1727189699
0x7BD9023F...4d51D0dDb
25.3 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x66e2b308...7CA34F432
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SimplePresaleNoClaim

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 7 : SimplePresaleNoClaim.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.24;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract SimplePresaleNoClaim is Ownable, ReentrancyGuard {
    using Address for address payable;
    using SafeMath for uint;

    bool public isInit;
    bool public isRefund;
    bool public isFinish;
    address payable public dev;
    uint public ethRaised;

    struct Pool {
        uint startTime;
        uint endTime;
        uint hardCap;
        uint softCap;
        uint maxBuy;
        uint minBuy;
    }

    Pool public pool;
    mapping(address => uint) public ethContribution;

    modifier onlyActive {
        require(block.timestamp >= pool.startTime, "Presale must be active.");
        require(block.timestamp <= pool.endTime, "Presale must be active.");
        _;
    }

    modifier onlyInactive {
        require(
            block.timestamp < pool.startTime || 
            block.timestamp > pool.endTime || 
            ethRaised >= pool.softCap, "Presale must be inactive."
        );
        _;
    }

    modifier onlyRefund {
        require(
            isRefund == true || 
            (block.timestamp > pool.endTime && ethRaised < pool.softCap), "Refund unavailable."
        );
        _;
    }

    constructor() {
        isInit = false;
        isFinish = false;
        isRefund = false;
        ethRaised = 0;

        dev = payable(_msgSender());
    }

    receive() external payable {
        if (block.timestamp >= pool.startTime && block.timestamp <= pool.endTime) {
            purchase();
        } else {
            revert("Presale is closed");
        }
    }

    function getUserInfo(address beneficiary) external view returns (uint ethAmount) {
        ethAmount = ethContribution[beneficiary];
    }

    function purchase() public payable onlyActive {
        require(!isRefund, "Presale has been cancelled.");

        uint weiAmount = msg.value;
        _checkSaleRequirements(msg.sender, weiAmount);
        ethRaised += weiAmount;
        ethContribution[msg.sender] += weiAmount;
        emit Bought(_msgSender(), weiAmount);
    }

    function refund() external onlyRefund {
        uint refundAmount = ethContribution[msg.sender];

        if (address(this).balance >= refundAmount) {
            if (refundAmount > 0) {
                ethContribution[msg.sender] = 0;
                address payable refunder = payable(msg.sender);
                Address.sendValue(refunder, refundAmount);
                emit Refunded(refunder, refundAmount);
            }
        }
    }

    function _checkSaleRequirements(address _beneficiary, uint _amount) internal view { 
        require(_beneficiary != address(0), "Transfer to 0 address.");
        require(_amount != 0, "Wei Amount is 0");
        require(_amount >= pool.minBuy, "Min buy is not met.");
        require(_amount % pool.minBuy == 0, "Please only buy in increments of the minimum buy");
        require(_amount + ethContribution[_beneficiary] <= pool.maxBuy, "Max buy limit exceeded.");
        require(ethRaised + _amount <= pool.hardCap, "HC Reached.");
        this;
    }

    function initSale(
        uint _startTime,
        uint _endTime,
        uint _hardCap,
        uint _softCap,
        uint _maxBuy,
        uint _minBuy
    ) external onlyOwner onlyInactive {        
        require(isInit == false, "Presale is not initialized");
        require(_startTime >= block.timestamp, "Invalid start time.");
        require(_endTime > block.timestamp, "Invalid end time.");
        require(_hardCap >= _softCap, "Hard cap must be greater than or equal to soft cap");
        require(_hardCap % _minBuy == 0, "Hard cap must be multiple of min buy.");
        require(_minBuy <= _maxBuy, "Min buy must not be greater than max buy.");
        require(_minBuy > 0, "Min buy must exceed 0.");

        Pool memory newPool = Pool(
            _startTime,
            _endTime, 
            _hardCap,
            _softCap, 
            _maxBuy, 
            _minBuy
        );

        pool = newPool;
        isInit = true;
    }

    function finishSale() external onlyOwner onlyInactive {
        require(ethRaised >= pool.softCap, "Soft Cap is not met.");
        require(block.timestamp > pool.startTime, "Can not finish before start");
        require(!isFinish, "Presale is already closed.");
        require(!isRefund, "Presale is in refund process.");

        isFinish = true;
        pool.endTime = block.timestamp;
        Address.sendValue(dev, address(this).balance);
    }

    function cancelSale() external onlyOwner onlyActive {
        require(!isFinish, "Sale is finished.");
        pool.endTime = 0;
        isRefund = true;

        emit Cancelled(msg.sender, address(this));
    }

    event Cancelled(
        address indexed _inititator, 
        address indexed _presale
    );

    event Bought(
        address indexed _buyer, 
        uint _ethAmount
    );

    event Refunded(
        address indexed _refunder, 
        uint _ethAmount
    );
}

File 2 of 7 : 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 3 of 7 : 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 7 : 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 5 of 7 : 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 6 of 7 : 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 7 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ethAmount","type":"uint256"}],"name":"Bought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_inititator","type":"address"},{"indexed":true,"internalType":"address","name":"_presale","type":"address"}],"name":"Cancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_refunder","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ethAmount","type":"uint256"}],"name":"Refunded","type":"event"},{"inputs":[],"name":"cancelSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ethContribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finishSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"getUserInfo","outputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_hardCap","type":"uint256"},{"internalType":"uint256","name":"_softCap","type":"uint256"},{"internalType":"uint256","name":"_maxBuy","type":"uint256"},{"internalType":"uint256","name":"_minBuy","type":"uint256"}],"name":"initSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isFinish","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRefund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"hardCap","type":"uint256"},{"internalType":"uint256","name":"softCap","type":"uint256"},{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"minBuy","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x6080604052600436106100f75760003560e01c80638f86f5ea1161008a578063d921eb7811610059578063d921eb7814610338578063e7e1049014610363578063f2fde38b1461037a578063fddf0fc0146103a357610165565b80638f86f5ea146102a257806391cca3db146102b9578063a99a3f98146102e4578063b145a5b81461030d57610165565b80636386c1c7116100c65780636386c1c71461021957806364edfbf014610256578063715018a6146102605780638da5cb5b1461027757610165565b806316f0115b1461016a5780632c8ca0ea1461019a5780634034175e146101c5578063590e1ae31461020257610165565b3661016557600460000154421015801561011657506004600101544211155b15610128576101236103ce565b610163565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161015a906113c9565b60405180910390fd5b005b600080fd5b34801561017657600080fd5b5061017f610584565b60405161019196959493929190611402565b60405180910390f35b3480156101a657600080fd5b506101af6105ae565b6040516101bc919061147e565b60405180910390f35b3480156101d157600080fd5b506101ec60048036038101906101e791906114fc565b6105bf565b6040516101f99190611529565b60405180910390f35b34801561020e57600080fd5b506102176105d7565b005b34801561022557600080fd5b50610240600480360381019061023b91906114fc565b61074a565b60405161024d9190611529565b60405180910390f35b61025e6103ce565b005b34801561026c57600080fd5b50610275610793565b005b34801561028357600080fd5b5061028c6107a7565b6040516102999190611553565b60405180910390f35b3480156102ae57600080fd5b506102b76107d0565b005b3480156102c557600080fd5b506102ce6109c1565b6040516102db919061158f565b60405180910390f35b3480156102f057600080fd5b5061030b600480360381019061030691906115d6565b6109e7565b005b34801561031957600080fd5b50610322610ce0565b60405161032f919061147e565b60405180910390f35b34801561034457600080fd5b5061034d610cf3565b60405161035a919061147e565b60405180910390f35b34801561036f57600080fd5b50610378610d06565b005b34801561038657600080fd5b506103a1600480360381019061039c91906114fc565b610e6e565b005b3480156103af57600080fd5b506103b8610ef1565b6040516103c59190611529565b60405180910390f35b600460000154421015610416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040d906116af565b60405180910390fd5b60046001015442111561045e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610455906116af565b60405180910390fd5b600260019054906101000a900460ff16156104ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a59061171b565b60405180910390fd5b60003490506104bd3382610ef7565b80600360008282546104cf919061176a565b9250508190555080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610525919061176a565b9250508190555061053461112e565b73ffffffffffffffffffffffffffffffffffffffff167fc55650ccda1011e1cdc769b1fbf546ebb8c97800b6072b49e06cd560305b1d67826040516105799190611529565b60405180910390a250565b60048060000154908060010154908060020154908060030154908060040154908060050154905086565b60028054906101000a900460ff1681565b600a6020528060005260406000206000915090505481565b60011515600260019054906101000a900460ff161515148061060f57506004600101544211801561060e5750600460030154600354105b5b61064e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610645906117ea565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050804710610747576000811115610746576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060003390506106f68183611136565b8073ffffffffffffffffffffffffffffffffffffffff167fd7dee2702d63ad89917b6a4da9981c90c4d24f8c2bdfd64c604ecae57d8d06518360405161073c9190611529565b60405180910390a2505b5b50565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61079b61122a565b6107a560006112a8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107d861122a565b6004600001544210806107ef575060046001015442115b80610801575060046003015460035410155b610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790611856565b60405180910390fd5b600460030154600354101561088a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610881906118c2565b60405180910390fd5b60046000015442116108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c89061192e565b60405180910390fd5b60028054906101000a900460ff161561091f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109169061199a565b60405180910390fd5b600260019054906101000a900460ff161561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690611a06565b60405180910390fd5b60016002806101000a81548160ff021916908315150217905550426004600101819055506109bf600260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1647611136565b565b600260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109ef61122a565b600460000154421080610a06575060046001015442115b80610a18575060046003015460035410155b610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e90611856565b60405180910390fd5b60001515600260009054906101000a900460ff16151514610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490611a72565b60405180910390fd5b42861015610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790611ade565b60405180910390fd5b428511610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2990611b4a565b60405180910390fd5b82841015610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90611bdc565b60405180910390fd5b60008185610b839190611c2b565b14610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90611cce565b60405180910390fd5b81811115610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90611d60565b60405180910390fd5b60008111610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090611dcc565b60405180910390fd5b60006040518060c00160405280888152602001878152602001868152602001858152602001848152602001838152509050806004600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a082015181600501559050506001600260006101000a81548160ff02191690831515021790555050505050505050565b600260009054906101000a900460ff1681565b600260019054906101000a900460ff1681565b610d0e61122a565b600460000154421015610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d906116af565b60405180910390fd5b600460010154421115610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d95906116af565b60405180910390fd5b60028054906101000a900460ff1615610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390611e38565b60405180910390fd5b60006004600101819055506001600260016101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167ff91f011c087a627ca425b0ca8a8859a2ae764d033f94c53b18359b02b374726f60405160405180910390a3565b610e7661122a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611eca565b60405180910390fd5b610eee816112a8565b50565b60035481565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90611f36565b60405180910390fd5b60008103610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090611fa2565b60405180910390fd5b600460050154811015610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe89061200e565b60405180910390fd5b6000600460050154826110049190611c2b565b14611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b906120a0565b60405180910390fd5b6004800154600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611094919061176a565b11156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc9061210c565b60405180910390fd5b600460020154816003546110e9919061176a565b111561112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190612178565b60405180910390fd5b5050565b600033905090565b80471015611179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611170906121e4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161119f90612235565b60006040518083038185875af1925050503d80600081146111dc576040519150601f19603f3d011682016040523d82523d6000602084013e6111e1565b606091505b5050905080611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c906122bc565b60405180910390fd5b505050565b61123261112e565b73ffffffffffffffffffffffffffffffffffffffff166112506107a7565b73ffffffffffffffffffffffffffffffffffffffff16146112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90612328565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082825260208201905092915050565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b60006113b360118361136c565b91506113be8261137d565b602082019050919050565b600060208201905081810360008301526113e2816113a6565b9050919050565b6000819050919050565b6113fc816113e9565b82525050565b600060c08201905061141760008301896113f3565b61142460208301886113f3565b61143160408301876113f3565b61143e60608301866113f3565b61144b60808301856113f3565b61145860a08301846113f3565b979650505050505050565b60008115159050919050565b61147881611463565b82525050565b6000602082019050611493600083018461146f565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114c98261149e565b9050919050565b6114d9816114be565b81146114e457600080fd5b50565b6000813590506114f6816114d0565b92915050565b60006020828403121561151257611511611499565b5b6000611520848285016114e7565b91505092915050565b600060208201905061153e60008301846113f3565b92915050565b61154d816114be565b82525050565b60006020820190506115686000830184611544565b92915050565b60006115798261149e565b9050919050565b6115898161156e565b82525050565b60006020820190506115a46000830184611580565b92915050565b6115b3816113e9565b81146115be57600080fd5b50565b6000813590506115d0816115aa565b92915050565b60008060008060008060c087890312156115f3576115f2611499565b5b600061160189828a016115c1565b965050602061161289828a016115c1565b955050604061162389828a016115c1565b945050606061163489828a016115c1565b935050608061164589828a016115c1565b92505060a061165689828a016115c1565b9150509295509295509295565b7f50726573616c65206d757374206265206163746976652e000000000000000000600082015250565b600061169960178361136c565b91506116a482611663565b602082019050919050565b600060208201905081810360008301526116c88161168c565b9050919050565b7f50726573616c6520686173206265656e2063616e63656c6c65642e0000000000600082015250565b6000611705601b8361136c565b9150611710826116cf565b602082019050919050565b60006020820190508181036000830152611734816116f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611775826113e9565b9150611780836113e9565b92508282019050808211156117985761179761173b565b5b92915050565b7f526566756e6420756e617661696c61626c652e00000000000000000000000000600082015250565b60006117d460138361136c565b91506117df8261179e565b602082019050919050565b60006020820190508181036000830152611803816117c7565b9050919050565b7f50726573616c65206d75737420626520696e6163746976652e00000000000000600082015250565b600061184060198361136c565b915061184b8261180a565b602082019050919050565b6000602082019050818103600083015261186f81611833565b9050919050565b7f536f667420436170206973206e6f74206d65742e000000000000000000000000600082015250565b60006118ac60148361136c565b91506118b782611876565b602082019050919050565b600060208201905081810360008301526118db8161189f565b9050919050565b7f43616e206e6f742066696e697368206265666f72652073746172740000000000600082015250565b6000611918601b8361136c565b9150611923826118e2565b602082019050919050565b600060208201905081810360008301526119478161190b565b9050919050565b7f50726573616c6520697320616c726561647920636c6f7365642e000000000000600082015250565b6000611984601a8361136c565b915061198f8261194e565b602082019050919050565b600060208201905081810360008301526119b381611977565b9050919050565b7f50726573616c6520697320696e20726566756e642070726f636573732e000000600082015250565b60006119f0601d8361136c565b91506119fb826119ba565b602082019050919050565b60006020820190508181036000830152611a1f816119e3565b9050919050565b7f50726573616c65206973206e6f7420696e697469616c697a6564000000000000600082015250565b6000611a5c601a8361136c565b9150611a6782611a26565b602082019050919050565b60006020820190508181036000830152611a8b81611a4f565b9050919050565b7f496e76616c69642073746172742074696d652e00000000000000000000000000600082015250565b6000611ac860138361136c565b9150611ad382611a92565b602082019050919050565b60006020820190508181036000830152611af781611abb565b9050919050565b7f496e76616c696420656e642074696d652e000000000000000000000000000000600082015250565b6000611b3460118361136c565b9150611b3f82611afe565b602082019050919050565b60006020820190508181036000830152611b6381611b27565b9050919050565b7f4861726420636170206d7573742062652067726561746572207468616e206f7260008201527f20657175616c20746f20736f6674206361700000000000000000000000000000602082015250565b6000611bc660328361136c565b9150611bd182611b6a565b604082019050919050565b60006020820190508181036000830152611bf581611bb9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c36826113e9565b9150611c41836113e9565b925082611c5157611c50611bfc565b5b828206905092915050565b7f4861726420636170206d757374206265206d756c7469706c65206f66206d696e60008201527f206275792e000000000000000000000000000000000000000000000000000000602082015250565b6000611cb860258361136c565b9150611cc382611c5c565b604082019050919050565b60006020820190508181036000830152611ce781611cab565b9050919050565b7f4d696e20627579206d757374206e6f742062652067726561746572207468616e60008201527f206d6178206275792e0000000000000000000000000000000000000000000000602082015250565b6000611d4a60298361136c565b9150611d5582611cee565b604082019050919050565b60006020820190508181036000830152611d7981611d3d565b9050919050565b7f4d696e20627579206d7573742065786365656420302e00000000000000000000600082015250565b6000611db660168361136c565b9150611dc182611d80565b602082019050919050565b60006020820190508181036000830152611de581611da9565b9050919050565b7f53616c652069732066696e69736865642e000000000000000000000000000000600082015250565b6000611e2260118361136c565b9150611e2d82611dec565b602082019050919050565b60006020820190508181036000830152611e5181611e15565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611eb460268361136c565b9150611ebf82611e58565b604082019050919050565b60006020820190508181036000830152611ee381611ea7565b9050919050565b7f5472616e7366657220746f203020616464726573732e00000000000000000000600082015250565b6000611f2060168361136c565b9150611f2b82611eea565b602082019050919050565b60006020820190508181036000830152611f4f81611f13565b9050919050565b7f57656920416d6f756e7420697320300000000000000000000000000000000000600082015250565b6000611f8c600f8361136c565b9150611f9782611f56565b602082019050919050565b60006020820190508181036000830152611fbb81611f7f565b9050919050565b7f4d696e20627579206973206e6f74206d65742e00000000000000000000000000600082015250565b6000611ff860138361136c565b915061200382611fc2565b602082019050919050565b6000602082019050818103600083015261202781611feb565b9050919050565b7f506c65617365206f6e6c792062757920696e20696e6372656d656e7473206f6660008201527f20746865206d696e696d756d2062757900000000000000000000000000000000602082015250565b600061208a60308361136c565b91506120958261202e565b604082019050919050565b600060208201905081810360008301526120b98161207d565b9050919050565b7f4d617820627579206c696d69742065786365656465642e000000000000000000600082015250565b60006120f660178361136c565b9150612101826120c0565b602082019050919050565b60006020820190508181036000830152612125816120e9565b9050919050565b7f484320526561636865642e000000000000000000000000000000000000000000600082015250565b6000612162600b8361136c565b915061216d8261212c565b602082019050919050565b6000602082019050818103600083015261219181612155565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006121ce601d8361136c565b91506121d982612198565b602082019050919050565b600060208201905081810360008301526121fd816121c1565b9050919050565b600081905092915050565b50565b600061221f600083612204565b915061222a8261220f565b600082019050919050565b600061224082612212565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006122a6603a8361136c565b91506122b18261224a565b604082019050919050565b600060208201905081810360008301526122d581612299565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061231260208361136c565b915061231d826122dc565b602082019050919050565b6000602082019050818103600083015261234181612305565b905091905056fea26469706673582212201b336ea6e2e028a7adabc17750fea523943492ef690cfbe2a695969f556b72f664736f6c63430008180033

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  ]
[ 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.