ETH Price: $2,676.30 (+1.56%)
Gas: 1 Gwei

Contract

0x6Cd873d6355ed91C7eC5B8980D2a47EcCcE52521
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040150225172022-06-25 7:10:48778 days ago1656141048IN
 Create: AikoPaymentSplitter
0 ETH0.0189111823.57097542

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
150725472022-07-03 23:24:11769 days ago1656890651
0x6Cd873d6...cCcE52521
0.0162 ETH
150725472022-07-03 23:24:11769 days ago1656890651
0x6Cd873d6...cCcE52521
0.0018 ETH
150725472022-07-03 23:24:11769 days ago1656890651
0x6Cd873d6...cCcE52521
0.018 ETH
150512552022-06-30 16:13:54772 days ago1656605634
0x6Cd873d6...cCcE52521
0.010746 ETH
150512552022-06-30 16:13:54772 days ago1656605634
0x6Cd873d6...cCcE52521
0.001194 ETH
150512552022-06-30 16:13:54772 days ago1656605634
0x6Cd873d6...cCcE52521
0.01194 ETH
150511232022-06-30 15:39:52772 days ago1656603592
0x6Cd873d6...cCcE52521
0.0135 ETH
150511232022-06-30 15:39:52772 days ago1656603592
0x6Cd873d6...cCcE52521
0.0015 ETH
150511232022-06-30 15:39:52772 days ago1656603592
0x6Cd873d6...cCcE52521
0.015 ETH
150509492022-06-30 15:00:06772 days ago1656601206
0x6Cd873d6...cCcE52521
0.0135 ETH
150509492022-06-30 15:00:06772 days ago1656601206
0x6Cd873d6...cCcE52521
0.0015 ETH
150509492022-06-30 15:00:06772 days ago1656601206
0x6Cd873d6...cCcE52521
0.015 ETH
150509442022-06-30 14:59:12772 days ago1656601152
0x6Cd873d6...cCcE52521
0.0108 ETH
150509442022-06-30 14:59:12772 days ago1656601152
0x6Cd873d6...cCcE52521
0.0012 ETH
150509442022-06-30 14:59:12772 days ago1656601152
0x6Cd873d6...cCcE52521
0.012 ETH
150310342022-06-26 21:43:06776 days ago1656279786
0x6Cd873d6...cCcE52521
0.00972 ETH
150310342022-06-26 21:43:06776 days ago1656279786
0x6Cd873d6...cCcE52521
0.00108 ETH
150310342022-06-26 21:43:06776 days ago1656279786
0x6Cd873d6...cCcE52521
0.0108 ETH
150309922022-06-26 21:31:34776 days ago1656279094
0x6Cd873d6...cCcE52521
0.01053 ETH
150309922022-06-26 21:31:34776 days ago1656279094
0x6Cd873d6...cCcE52521
0.00117 ETH
150309922022-06-26 21:31:34776 days ago1656279094
0x6Cd873d6...cCcE52521
0.0117 ETH
150309852022-06-26 21:30:35776 days ago1656279035
0x6Cd873d6...cCcE52521
0.010206 ETH
150309852022-06-26 21:30:35776 days ago1656279035
0x6Cd873d6...cCcE52521
0.001134 ETH
150309852022-06-26 21:30:35776 days ago1656279035
0x6Cd873d6...cCcE52521
0.01134 ETH
150309772022-06-26 21:28:19776 days ago1656278899
0x6Cd873d6...cCcE52521
0.01053 ETH
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AikoPaymentSplitter

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-06-25
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);
}

library SafeERC20Upgradeable {
    using Address for address;

    function safeTransfer(IERC20Upgradeable token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20Upgradeable token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @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(IERC20Upgradeable 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");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

contract AikoPaymentSplitter {
    using SafeERC20Upgradeable for IERC20Upgradeable;

    address constant AIKO_TREASURY = 0xBa89826aE052da88962c0fB23bF3840F594d630E; 
    address constant UWU_LABS = 0x354A70969F0b4a4C994403051A81C2ca45db3615;
    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        uint256 uwulabs = (0.1 gwei*address(this).balance)/1 gwei;
        sendValue(payable(UWU_LABS), uwulabs);
        sendValue(payable(AIKO_TREASURY), address(this).balance);
    }

    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");
    }

    function rescue(address token) external {
        if (token == address(0)) {
            uint256 uwulabs = (0.1 gwei*address(this).balance)/1 gwei;
            sendValue(payable(UWU_LABS), uwulabs);
            sendValue(payable(AIKO_TREASURY), address(this).balance);
        } else {
            uint256 balance = IERC20Upgradeable(token).balanceOf(address(this));
            uint256 uwulabs = (0.1 gwei*balance)/1 gwei;
            IERC20Upgradeable(token).safeTransfer(payable(UWU_LABS), uwulabs);
            IERC20Upgradeable(token).safeTransfer(payable(AIKO_TREASURY), IERC20Upgradeable(token).balanceOf(address(this)));
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b50610d9e806100206000396000f3fe6080604052600436106100225760003560e01c8063839006f21461008e57610089565b36610089576000633b9aca00476305f5e10061003e9190610a9d565b6100489190610a6c565b905061006873354a70969f0b4a4c994403051a81c2ca45db3615826100b7565b61008673ba89826ae052da88962c0fb23bf3840f594d630e476100b7565b50005b600080fd5b34801561009a57600080fd5b506100b560048036038101906100b09190610733565b6101ab565b005b804710156100fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100f1906109ba565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516101209061091f565b60006040518083038185875af1925050503d806000811461015d576040519150601f19603f3d011682016040523d82523d6000602084013e610162565b606091505b50509050806101a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019d9061099a565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610245576000633b9aca00476305f5e1006101f79190610a9d565b6102019190610a6c565b905061022173354a70969f0b4a4c994403051a81c2ca45db3615826100b7565b61023f73ba89826ae052da88962c0fb23bf3840f594d630e476100b7565b506103fe565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016102809190610934565b60206040518083038186803b15801561029857600080fd5b505afa1580156102ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d09190610785565b90506000633b9aca00826305f5e1006102e99190610a9d565b6102f39190610a6c565b905061033473354a70969f0b4a4c994403051a81c2ca45db3615828573ffffffffffffffffffffffffffffffffffffffff166104019092919063ffffffff16565b6103fb73ba89826ae052da88962c0fb23bf3840f594d630e8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016103859190610934565b60206040518083038186803b15801561039d57600080fd5b505afa1580156103b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d59190610785565b8573ffffffffffffffffffffffffffffffffffffffff166104019092919063ffffffff16565b50505b50565b6104828363a9059cbb60e01b848460405160240161042092919061094f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610487565b505050565b60006104e9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661054e9092919063ffffffff16565b90506000815111156105495780806020019051810190610509919061075c565b610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f90610a1a565b60405180910390fd5b5b505050565b606061055d8484600085610566565b90509392505050565b6060824710156105ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a2906109da565b60405180910390fd5b6105b48561067a565b6105f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ea906109fa565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161061c9190610908565b60006040518083038185875af1925050503d8060008114610659576040519150601f19603f3d011682016040523d82523d6000602084013e61065e565b606091505b509150915061066e82828661068d565b92505050949350505050565b600080823b905060008111915050919050565b6060831561069d578290506106ed565b6000835111156106b05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e49190610978565b60405180910390fd5b9392505050565b60008135905061070381610d23565b92915050565b60008151905061071881610d3a565b92915050565b60008151905061072d81610d51565b92915050565b60006020828403121561074557600080fd5b6000610753848285016106f4565b91505092915050565b60006020828403121561076e57600080fd5b600061077c84828501610709565b91505092915050565b60006020828403121561079757600080fd5b60006107a58482850161071e565b91505092915050565b6107b781610af7565b82525050565b60006107c882610a3a565b6107d28185610a50565b93506107e2818560208601610b3f565b80840191505092915050565b60006107f982610a45565b6108038185610a5b565b9350610813818560208601610b3f565b61081c81610bd0565b840191505092915050565b6000610834603a83610a5b565b915061083f82610be1565b604082019050919050565b6000610857601d83610a5b565b915061086282610c30565b602082019050919050565b600061087a602683610a5b565b915061088582610c59565b604082019050919050565b600061089d600083610a50565b91506108a882610ca8565b600082019050919050565b60006108c0601d83610a5b565b91506108cb82610cab565b602082019050919050565b60006108e3602a83610a5b565b91506108ee82610cd4565b604082019050919050565b61090281610b35565b82525050565b600061091482846107bd565b915081905092915050565b600061092a82610890565b9150819050919050565b600060208201905061094960008301846107ae565b92915050565b600060408201905061096460008301856107ae565b61097160208301846108f9565b9392505050565b6000602082019050818103600083015261099281846107ee565b905092915050565b600060208201905081810360008301526109b381610827565b9050919050565b600060208201905081810360008301526109d38161084a565b9050919050565b600060208201905081810360008301526109f38161086d565b9050919050565b60006020820190508181036000830152610a13816108b3565b9050919050565b60006020820190508181036000830152610a33816108d6565b9050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000610a7782610b35565b9150610a8283610b35565b925082610a9257610a91610ba1565b5b828204905092915050565b6000610aa882610b35565b9150610ab383610b35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610aec57610aeb610b72565b5b828202905092915050565b6000610b0282610b15565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015610b5d578082015181840152602081019050610b42565b83811115610b6c576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b610d2c81610af7565b8114610d3757600080fd5b50565b610d4381610b09565b8114610d4e57600080fd5b50565b610d5a81610b35565b8114610d6557600080fd5b5056fea2646970667358221220e4d3f153c17a0a7064125c0daad278fbe6d49fdd0d74f1f9906337b258bc479b64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106100225760003560e01c8063839006f21461008e57610089565b36610089576000633b9aca00476305f5e10061003e9190610a9d565b6100489190610a6c565b905061006873354a70969f0b4a4c994403051a81c2ca45db3615826100b7565b61008673ba89826ae052da88962c0fb23bf3840f594d630e476100b7565b50005b600080fd5b34801561009a57600080fd5b506100b560048036038101906100b09190610733565b6101ab565b005b804710156100fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100f1906109ba565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516101209061091f565b60006040518083038185875af1925050503d806000811461015d576040519150601f19603f3d011682016040523d82523d6000602084013e610162565b606091505b50509050806101a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019d9061099a565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610245576000633b9aca00476305f5e1006101f79190610a9d565b6102019190610a6c565b905061022173354a70969f0b4a4c994403051a81c2ca45db3615826100b7565b61023f73ba89826ae052da88962c0fb23bf3840f594d630e476100b7565b506103fe565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016102809190610934565b60206040518083038186803b15801561029857600080fd5b505afa1580156102ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d09190610785565b90506000633b9aca00826305f5e1006102e99190610a9d565b6102f39190610a6c565b905061033473354a70969f0b4a4c994403051a81c2ca45db3615828573ffffffffffffffffffffffffffffffffffffffff166104019092919063ffffffff16565b6103fb73ba89826ae052da88962c0fb23bf3840f594d630e8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016103859190610934565b60206040518083038186803b15801561039d57600080fd5b505afa1580156103b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d59190610785565b8573ffffffffffffffffffffffffffffffffffffffff166104019092919063ffffffff16565b50505b50565b6104828363a9059cbb60e01b848460405160240161042092919061094f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610487565b505050565b60006104e9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661054e9092919063ffffffff16565b90506000815111156105495780806020019051810190610509919061075c565b610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f90610a1a565b60405180910390fd5b5b505050565b606061055d8484600085610566565b90509392505050565b6060824710156105ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a2906109da565b60405180910390fd5b6105b48561067a565b6105f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ea906109fa565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161061c9190610908565b60006040518083038185875af1925050503d8060008114610659576040519150601f19603f3d011682016040523d82523d6000602084013e61065e565b606091505b509150915061066e82828661068d565b92505050949350505050565b600080823b905060008111915050919050565b6060831561069d578290506106ed565b6000835111156106b05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e49190610978565b60405180910390fd5b9392505050565b60008135905061070381610d23565b92915050565b60008151905061071881610d3a565b92915050565b60008151905061072d81610d51565b92915050565b60006020828403121561074557600080fd5b6000610753848285016106f4565b91505092915050565b60006020828403121561076e57600080fd5b600061077c84828501610709565b91505092915050565b60006020828403121561079757600080fd5b60006107a58482850161071e565b91505092915050565b6107b781610af7565b82525050565b60006107c882610a3a565b6107d28185610a50565b93506107e2818560208601610b3f565b80840191505092915050565b60006107f982610a45565b6108038185610a5b565b9350610813818560208601610b3f565b61081c81610bd0565b840191505092915050565b6000610834603a83610a5b565b915061083f82610be1565b604082019050919050565b6000610857601d83610a5b565b915061086282610c30565b602082019050919050565b600061087a602683610a5b565b915061088582610c59565b604082019050919050565b600061089d600083610a50565b91506108a882610ca8565b600082019050919050565b60006108c0601d83610a5b565b91506108cb82610cab565b602082019050919050565b60006108e3602a83610a5b565b91506108ee82610cd4565b604082019050919050565b61090281610b35565b82525050565b600061091482846107bd565b915081905092915050565b600061092a82610890565b9150819050919050565b600060208201905061094960008301846107ae565b92915050565b600060408201905061096460008301856107ae565b61097160208301846108f9565b9392505050565b6000602082019050818103600083015261099281846107ee565b905092915050565b600060208201905081810360008301526109b381610827565b9050919050565b600060208201905081810360008301526109d38161084a565b9050919050565b600060208201905081810360008301526109f38161086d565b9050919050565b60006020820190508181036000830152610a13816108b3565b9050919050565b60006020820190508181036000830152610a33816108d6565b9050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000610a7782610b35565b9150610a8283610b35565b925082610a9257610a91610ba1565b5b828204905092915050565b6000610aa882610b35565b9150610ab383610b35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610aec57610aeb610b72565b5b828202905092915050565b6000610b0282610b15565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015610b5d578082015181840152602081019050610b42565b83811115610b6c576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b610d2c81610af7565b8114610d3757600080fd5b50565b610d4381610b09565b8114610d4e57600080fd5b50565b610d5a81610b35565b8114610d6557600080fd5b5056fea2646970667358221220e4d3f153c17a0a7064125c0daad278fbe6d49fdd0d74f1f9906337b258bc479b64736f6c63430008040033

Deployed Bytecode Sourcemap

11888:1985:0:-:0;;;;;;;;;;;;;;;;;;;;;;;12702:15;12753:6;12730:21;12721:8;:30;;;;:::i;:::-;12720:39;;;;:::i;:::-;12702:57;;12770:37;12092:42;12799:7;12770:9;:37::i;:::-;12818:56;12014:42;12852:21;12818:9;:56::i;:::-;12656:226;11888:1985;;;;;13215:655;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12890:317;13005:6;12980:21;:31;;12972:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13059:12;13077:9;:14;;13099:6;13077:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13058:52;;;13129:7;13121:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;12890:317;;;:::o;13215:655::-;13287:1;13270:19;;:5;:19;;;13266:597;;;13306:15;13357:6;13334:21;13325:8;:30;;;;:::i;:::-;13324:39;;;;:::i;:::-;13306:57;;13378:37;12092:42;13407:7;13378:9;:37::i;:::-;13430:56;12014:42;13464:21;13430:9;:56::i;:::-;13266:597;;;;13519:15;13555:5;13537:34;;;13580:4;13537:49;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13519:67;;13601:15;13638:6;13629:7;13620:8;:16;;;;:::i;:::-;13619:25;;;;:::i;:::-;13601:43;;13659:65;12092:42;13716:7;13677:5;13659:37;;;;:65;;;;;:::i;:::-;13739:112;12014:42;13819:5;13801:34;;;13844:4;13801:49;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13757:5;13739:37;;;;:112;;;;;:::i;:::-;13266:597;;;13215:655;:::o;10306:188::-;10400:86;10420:5;10450:23;;;10475:2;10479:5;10427:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10400:19;:86::i;:::-;10306:188;;;:::o;11109:772::-;11544:23;11570:69;11598:4;11570:69;;;;;;;;;;;;;;;;;11578:5;11570:27;;;;:69;;;;;:::i;:::-;11544:95;;11674:1;11654:10;:17;:21;11650:224;;;11796:10;11785:30;;;;;;;;;;;;:::i;:::-;11777:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11650:224;11109:772;;;:::o;3663:195::-;3766:12;3798:52;3820:6;3828:4;3834:1;3837:12;3798:21;:52::i;:::-;3791:59;;3663:195;;;;;:::o;4715:530::-;4842:12;4900:5;4875:21;:30;;4867:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;4967:18;4978:6;4967:10;:18::i;:::-;4959:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5093:12;5107:23;5134:6;:11;;5154:5;5162:4;5134:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5092:75;;;;5185:52;5203:7;5212:10;5224:12;5185:17;:52::i;:::-;5178:59;;;;4715:530;;;;;;:::o;745:422::-;805:4;1013:12;1124:7;1112:20;1104:28;;1158:1;1151:4;:8;1144:15;;;745:422;;;:::o;7255:742::-;7370:12;7399:7;7395:595;;;7430:10;7423:17;;;;7395:595;7564:1;7544:10;:17;:21;7540:439;;;7807:10;7801:17;7868:15;7855:10;7851:2;7847:19;7840:44;7755:148;7950:12;7943:20;;;;;;;;;;;:::i;:::-;;;;;;;;7255:742;;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;212:77;;;;:::o;295:143::-;352:5;383:6;377:13;368:22;;399:33;426:5;399:33;:::i;:::-;358:80;;;;:::o;444:262::-;503:6;552:2;540:9;531:7;527:23;523:32;520:2;;;568:1;565;558:12;520:2;611:1;636:53;681:7;672:6;661:9;657:22;636:53;:::i;:::-;626:63;;582:117;510:196;;;;:::o;712:278::-;779:6;828:2;816:9;807:7;803:23;799:32;796:2;;;844:1;841;834:12;796:2;887:1;912:61;965:7;956:6;945:9;941:22;912:61;:::i;:::-;902:71;;858:125;786:204;;;;:::o;996:284::-;1066:6;1115:2;1103:9;1094:7;1090:23;1086:32;1083:2;;;1131:1;1128;1121:12;1083:2;1174:1;1199:64;1255:7;1246:6;1235:9;1231:22;1199:64;:::i;:::-;1189:74;;1145:128;1073:207;;;;:::o;1286:118::-;1373:24;1391:5;1373:24;:::i;:::-;1368:3;1361:37;1351:53;;:::o;1410:373::-;1514:3;1542:38;1574:5;1542:38;:::i;:::-;1596:88;1677:6;1672:3;1596:88;:::i;:::-;1589:95;;1693:52;1738:6;1733:3;1726:4;1719:5;1715:16;1693:52;:::i;:::-;1770:6;1765:3;1761:16;1754:23;;1518:265;;;;;:::o;1789:364::-;1877:3;1905:39;1938:5;1905:39;:::i;:::-;1960:71;2024:6;2019:3;1960:71;:::i;:::-;1953:78;;2040:52;2085:6;2080:3;2073:4;2066:5;2062:16;2040:52;:::i;:::-;2117:29;2139:6;2117:29;:::i;:::-;2112:3;2108:39;2101:46;;1881:272;;;;;:::o;2159:366::-;2301:3;2322:67;2386:2;2381:3;2322:67;:::i;:::-;2315:74;;2398:93;2487:3;2398:93;:::i;:::-;2516:2;2511:3;2507:12;2500:19;;2305:220;;;:::o;2531:366::-;2673:3;2694:67;2758:2;2753:3;2694:67;:::i;:::-;2687:74;;2770:93;2859:3;2770:93;:::i;:::-;2888:2;2883:3;2879:12;2872:19;;2677:220;;;:::o;2903:366::-;3045:3;3066:67;3130:2;3125:3;3066:67;:::i;:::-;3059:74;;3142:93;3231:3;3142:93;:::i;:::-;3260:2;3255:3;3251:12;3244:19;;3049:220;;;:::o;3275:398::-;3434:3;3455:83;3536:1;3531:3;3455:83;:::i;:::-;3448:90;;3547:93;3636:3;3547:93;:::i;:::-;3665:1;3660:3;3656:11;3649:18;;3438:235;;;:::o;3679:366::-;3821:3;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3918:93;4007:3;3918:93;:::i;:::-;4036:2;4031:3;4027:12;4020:19;;3825:220;;;:::o;4051:366::-;4193:3;4214:67;4278:2;4273:3;4214:67;:::i;:::-;4207:74;;4290:93;4379:3;4290:93;:::i;:::-;4408:2;4403:3;4399:12;4392:19;;4197:220;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4488:53;;:::o;4547:271::-;4677:3;4699:93;4788:3;4779:6;4699:93;:::i;:::-;4692:100;;4809:3;4802:10;;4681:137;;;;:::o;4824:379::-;5008:3;5030:147;5173:3;5030:147;:::i;:::-;5023:154;;5194:3;5187:10;;5012:191;;;:::o;5209:222::-;5302:4;5340:2;5329:9;5325:18;5317:26;;5353:71;5421:1;5410:9;5406:17;5397:6;5353:71;:::i;:::-;5307:124;;;;:::o;5437:332::-;5558:4;5596:2;5585:9;5581:18;5573:26;;5609:71;5677:1;5666:9;5662:17;5653:6;5609:71;:::i;:::-;5690:72;5758:2;5747:9;5743:18;5734:6;5690:72;:::i;:::-;5563:206;;;;;:::o;5775:313::-;5888:4;5926:2;5915:9;5911:18;5903:26;;5975:9;5969:4;5965:20;5961:1;5950:9;5946:17;5939:47;6003:78;6076:4;6067:6;6003:78;:::i;:::-;5995:86;;5893:195;;;;:::o;6094:419::-;6260:4;6298:2;6287:9;6283:18;6275:26;;6347:9;6341:4;6337:20;6333:1;6322:9;6318:17;6311:47;6375:131;6501:4;6375:131;:::i;:::-;6367:139;;6265:248;;;:::o;6519:419::-;6685:4;6723:2;6712:9;6708:18;6700:26;;6772:9;6766:4;6762:20;6758:1;6747:9;6743:17;6736:47;6800:131;6926:4;6800:131;:::i;:::-;6792:139;;6690:248;;;:::o;6944:419::-;7110:4;7148:2;7137:9;7133:18;7125:26;;7197:9;7191:4;7187:20;7183:1;7172:9;7168:17;7161:47;7225:131;7351:4;7225:131;:::i;:::-;7217:139;;7115:248;;;:::o;7369:419::-;7535:4;7573:2;7562:9;7558:18;7550:26;;7622:9;7616:4;7612:20;7608:1;7597:9;7593:17;7586:47;7650:131;7776:4;7650:131;:::i;:::-;7642:139;;7540:248;;;:::o;7794:419::-;7960:4;7998:2;7987:9;7983:18;7975:26;;8047:9;8041:4;8037:20;8033:1;8022:9;8018:17;8011:47;8075:131;8201:4;8075:131;:::i;:::-;8067:139;;7965:248;;;:::o;8219:98::-;8270:6;8304:5;8298:12;8288:22;;8277:40;;;:::o;8323:99::-;8375:6;8409:5;8403:12;8393:22;;8382:40;;;:::o;8428:147::-;8529:11;8566:3;8551:18;;8541:34;;;;:::o;8581:169::-;8665:11;8699:6;8694:3;8687:19;8739:4;8734:3;8730:14;8715:29;;8677:73;;;;:::o;8756:185::-;8796:1;8813:20;8831:1;8813:20;:::i;:::-;8808:25;;8847:20;8865:1;8847:20;:::i;:::-;8842:25;;8886:1;8876:2;;8891:18;;:::i;:::-;8876:2;8933:1;8930;8926:9;8921:14;;8798:143;;;;:::o;8947:348::-;8987:7;9010:20;9028:1;9010:20;:::i;:::-;9005:25;;9044:20;9062:1;9044:20;:::i;:::-;9039:25;;9232:1;9164:66;9160:74;9157:1;9154:81;9149:1;9142:9;9135:17;9131:105;9128:2;;;9239:18;;:::i;:::-;9128:2;9287:1;9284;9280:9;9269:20;;8995:300;;;;:::o;9301:96::-;9338:7;9367:24;9385:5;9367:24;:::i;:::-;9356:35;;9346:51;;;:::o;9403:90::-;9437:7;9480:5;9473:13;9466:21;9455:32;;9445:48;;;:::o;9499:126::-;9536:7;9576:42;9569:5;9565:54;9554:65;;9544:81;;;:::o;9631:77::-;9668:7;9697:5;9686:16;;9676:32;;;:::o;9714:307::-;9782:1;9792:113;9806:6;9803:1;9800:13;9792:113;;;9891:1;9886:3;9882:11;9876:18;9872:1;9867:3;9863:11;9856:39;9828:2;9825:1;9821:10;9816:15;;9792:113;;;9923:6;9920:1;9917:13;9914:2;;;10003:1;9994:6;9989:3;9985:16;9978:27;9914:2;9763:258;;;;:::o;10027:180::-;10075:77;10072:1;10065:88;10172:4;10169:1;10162:15;10196:4;10193:1;10186:15;10213:180;10261:77;10258:1;10251:88;10358:4;10355:1;10348:15;10382:4;10379:1;10372:15;10399:102;10440:6;10491:2;10487:7;10482:2;10475:5;10471:14;10467:28;10457:38;;10447:54;;;:::o;10507:245::-;10647:34;10643:1;10635:6;10631:14;10624:58;10716:28;10711:2;10703:6;10699:15;10692:53;10613:139;:::o;10758:179::-;10898:31;10894:1;10886:6;10882:14;10875:55;10864:73;:::o;10943:225::-;11083:34;11079:1;11071:6;11067:14;11060:58;11152:8;11147:2;11139:6;11135:15;11128:33;11049:119;:::o;11174:114::-;11280:8;:::o;11294:179::-;11434:31;11430:1;11422:6;11418:14;11411:55;11400:73;:::o;11479:229::-;11619:34;11615:1;11607:6;11603:14;11596:58;11688:12;11683:2;11675:6;11671:15;11664:37;11585:123;:::o;11714:122::-;11787:24;11805:5;11787:24;:::i;:::-;11780:5;11777:35;11767:2;;11826:1;11823;11816:12;11767:2;11757:79;:::o;11842:116::-;11912:21;11927:5;11912:21;:::i;:::-;11905:5;11902:32;11892:2;;11948:1;11945;11938:12;11892:2;11882:76;:::o;11964:122::-;12037:24;12055:5;12037:24;:::i;:::-;12030:5;12027:35;12017:2;;12076:1;12073;12066:12;12017:2;12007:79;:::o

Swarm Source

ipfs://e4d3f153c17a0a7064125c0daad278fbe6d49fdd0d74f1f9906337b258bc479b

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.