Holesky Testnet

Contract

0x1c3cBf7679D3094A83B9A8968182571db3e4cbcC

Overview

ETH Balance

0 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Approve26728732024-11-04 18:35:48104 days ago1730745348IN
0x1c3cBf76...db3e4cbcC
0 ETH0.000020210.43058895
Approve26728562024-11-04 18:32:24104 days ago1730745144IN
0x1c3cBf76...db3e4cbcC
0 ETH0.000020810.44390614

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
26728772024-11-04 18:36:36104 days ago1730745396
0x1c3cBf76...db3e4cbcC
0.00097078 ETH
26728772024-11-04 18:36:36104 days ago1730745396
0x1c3cBf76...db3e4cbcC
0.00388312 ETH
26728772024-11-04 18:36:36104 days ago1730745396
0x1c3cBf76...db3e4cbcC
0.0048539 ETH
Loading...
Loading

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

Contract Name:
GPUBase

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-04
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(
        address sender, 
        address recipient, 
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; 
        return msg.data;
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "New owner is zero");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        if (currentAllowance != type(uint256).max) {
        require(currentAllowance >= amount, "Transfer exceeds allowance");
            unchecked {
                _approve(sender, _msgSender(), currentAllowance - amount);
            }
        }

        _transfer(sender, recipient, amount);

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "Allow: decreased below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: zero address");
        require(recipient != address(0), "ERC20: zero address");
        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "Exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply + amount;
        _balances[account] = _balances[account] + amount;
        emit Transfer(address(0), account, amount);

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: zero address");
        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "Burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply = _totalSupply - amount;


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

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

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: zero address");
        require(spender != address(0), "ERC20: zero address");


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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract GPUBase is ERC20, Ownable {

    uint256 public buyFee   = 5;
    uint256 public sellFee  = 5;

    address immutable private marketingWallet;
    address immutable private stakingWallet;

    IUniswapV2Router02 immutable public uniswapV2Router;
    address public  uniswapV2Pair;
    
    address private DEAD = 0x000000000000000000000000000000000000dEaD;

    bool    private swapping;
    uint256 public swapTokensAtAmount;

    mapping (address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWalletLimit;

    uint256 private maxWalletLimitRate   = 1000;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    constructor (address _marketingWallet, address _stakingWallet) ERC20("GPUBase", "GPUBase") 
    {   
        marketingWallet = _marketingWallet;
        stakingWallet   = _stakingWallet;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x548625e4184F59d1AFCe7cbe67A67d5D9eF39029);

        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair   = _uniswapV2Pair;

        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[DEAD] = true;
        _isExcludedFromFees[address(this)] = true;
        
        _isExcludedFromMaxWalletLimit[owner()] = true;
        _isExcludedFromMaxWalletLimit[DEAD] = true;
        _isExcludedFromMaxWalletLimit[address(this)] = true;
        _isExcludedFromMaxWalletLimit[address(0)] = true;
        
        _mint(owner(), 30e6 * 1e18);
        swapTokensAtAmount = totalSupply() / 600;
    }

    receive() external payable {}

    function sendETH(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Send failed");
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal  override {
        require(from != address(0), "ERC20: zero from");
        require(to != address(0), "ERC20: zero addr");


        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
		uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( canSwap &&
            !swapping &&
            from != uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = uniswapV2Router.WETH();

            uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                contractTokenBalance,
                0, // accept any amount of ETH
                path,
                address(this),
                block.timestamp);

            uint256 newBalance = address(this).balance;

            if (newBalance != 0) {
                uint256 marketingAmount = newBalance * 80 / 100;
                uint256 stakingAmount = newBalance - marketingAmount;
                sendETH(payable(marketingWallet), marketingAmount);
                sendETH(payable(stakingWallet), stakingAmount);
            }
            
            swapping = false;
        }

        bool takeFee = !swapping;

        if((_isExcludedFromFees[from] || _isExcludedFromFees[to]) || ( from != uniswapV2Pair && to != uniswapV2Pair)){
            takeFee = false;
        }

        if(takeFee) {
            uint256 _totalFees = 0;
            if(from == uniswapV2Pair) {
                _totalFees = buyFee;
            } else if(to == uniswapV2Pair) {
                _totalFees = sellFee;
            }

            if (_totalFees != 0) {
                uint256 fees = amount * _totalFees / 100;
                amount = amount - fees;
                super._transfer(from, address(this), fees);
            }
        }

        if (_isExcludedFromMaxWalletLimit[from]  == false && 
            _isExcludedFromMaxWalletLimit[to]    == false &&
            to != uniswapV2Pair && from == uniswapV2Pair
        ) {
            uint balance  = balanceOf(to);
            require(
                balance + amount <=totalSupply() * maxWalletLimitRate / 1000, 
                "Max limit exceeded"
            );
        }

        super._transfer(from, to, amount);

    }
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_stakingWallet","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x608060405260043610610117575f3560e01c806349bd5a5e1161009f578063a457c2d711610063578063a457c2d7146103a2578063a9059cbb146103de578063dd62ed3e1461041a578063e2f4560514610456578063f2fde38b146104805761011e565b806349bd5a5e146102d257806370a08231146102fc578063715018a6146103385780638da5cb5b1461034e57806395d89b41146103785761011e565b806323b872dd116100e657806323b872dd146101dc5780632b14ca5614610218578063313ce56714610242578063395093511461026c57806347062402146102a85761011e565b806306fdde0314610122578063095ea7b31461014c5780631694505e1461018857806318160ddd146101b25761011e565b3661011e57005b5f80fd5b34801561012d575f80fd5b506101366104a8565b6040516101439190611c22565b60405180910390f35b348015610157575f80fd5b50610172600480360381019061016d9190611cd3565b610538565b60405161017f9190611d2b565b60405180910390f35b348015610193575f80fd5b5061019c610555565b6040516101a99190611d9f565b60405180910390f35b3480156101bd575f80fd5b506101c6610579565b6040516101d39190611dc7565b60405180910390f35b3480156101e7575f80fd5b5061020260048036038101906101fd9190611de0565b610582565b60405161020f9190611d2b565b60405180910390f35b348015610223575f80fd5b5061022c61069c565b6040516102399190611dc7565b60405180910390f35b34801561024d575f80fd5b506102566106a2565b6040516102639190611e4b565b60405180910390f35b348015610277575f80fd5b50610292600480360381019061028d9190611cd3565b6106aa565b60405161029f9190611d2b565b60405180910390f35b3480156102b3575f80fd5b506102bc610751565b6040516102c99190611dc7565b60405180910390f35b3480156102dd575f80fd5b506102e6610757565b6040516102f39190611e73565b60405180910390f35b348015610307575f80fd5b50610322600480360381019061031d9190611e8c565b61077c565b60405161032f9190611dc7565b60405180910390f35b348015610343575f80fd5b5061034c6107c1565b005b348015610359575f80fd5b50610362610914565b60405161036f9190611e73565b60405180910390f35b348015610383575f80fd5b5061038c61093c565b6040516103999190611c22565b60405180910390f35b3480156103ad575f80fd5b506103c860048036038101906103c39190611cd3565b6109cc565b6040516103d59190611d2b565b60405180910390f35b3480156103e9575f80fd5b5061040460048036038101906103ff9190611cd3565b610ab2565b6040516104119190611d2b565b60405180910390f35b348015610425575f80fd5b50610440600480360381019061043b9190611eb7565b610acf565b60405161044d9190611dc7565b60405180910390f35b348015610461575f80fd5b5061046a610b51565b6040516104779190611dc7565b60405180910390f35b34801561048b575f80fd5b506104a660048036038101906104a19190611e8c565b610b57565b005b6060600380546104b790611f22565b80601f01602080910402602001604051908101604052809291908181526020018280546104e390611f22565b801561052e5780601f106105055761010080835404028352916020019161052e565b820191905f5260205f20905b81548152906001019060200180831161051157829003601f168201915b5050505050905090565b5f61054b610544610d19565b8484610d20565b6001905092915050565b7f000000000000000000000000548625e4184f59d1afce7cbe67a67d5d9ef3902981565b5f600254905090565b5f8060015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105ca610d19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106855782811015610670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066790611f9c565b60405180910390fd5b6106848561067c610d19565b858403610d20565b5b610690858585610ee3565b60019150509392505050565b60075481565b5f6012905090565b5f6107476106b6610d19565b848460015f6106c3610d19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546107429190611fe7565b610d20565b6001905092915050565b60065481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107c9610d19565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e90612064565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461094b90611f22565b80601f016020809104026020016040519081016040528092919081815260200182805461097790611f22565b80156109c25780601f10610999576101008083540402835291602001916109c2565b820191905f5260205f20905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b5f8060015f6109d9610d19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a906120cc565b60405180910390fd5b610aa7610a9e610d19565b85858403610d20565b600191505092915050565b5f610ac5610abe610d19565b8484610ee3565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600a5481565b610b5f610d19565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490612064565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290612134565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d859061219c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df39061219c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ed69190611dc7565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890612204565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb69061226c565b60405180910390fd5b5f8103610fd657610fd183835f611829565b611824565b5f610fe03061077c565b90505f600a5482101590508080156110055750600960149054906101000a900460ff16155b801561105e575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156110b15750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156111045750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156113d2576001600960146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156111405761113f61228a565b5b60405190808252806020026020018201604052801561116e5781602001602082028036833780820191505090505b50905030815f81518110611185576111846122b7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000548625e4184f59d1afce7cbe67a67d5d9ef3902973ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611228573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124c91906122f8565b816001815181106112605761125f6122b7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000548625e4184f59d1afce7cbe67a67d5d9ef3902973ffffffffffffffffffffffffffffffffffffffff1663791ac947845f8430426040518663ffffffff1660e01b81526004016112fb959493929190612413565b5f604051808303815f87803b158015611312575f80fd5b505af1158015611324573d5f803e3d5ffd5b505050505f4790505f81146113b5575f6064605083611343919061246b565b61134d91906124d9565b90505f818361135c9190612509565b90506113887f0000000000000000000000005f2d0be56793a77dbf14571f52f17b6459a1d53c83611a9e565b6113b27f000000000000000000000000d5d142d7d21804fe1cce6638a97e88156d4b4d3882611a9e565b50505b5f600960146101000a81548160ff02191690831515021790555050505b5f600960149054906101000a900460ff16159050600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806114815750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611532575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015611531575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b5b1561153b575f90505b801561163a575f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16036115a05760065490506115fb565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036115fa5760075490505b5b5f8114611638575f60648287611611919061246b565b61161b91906124d9565b905080866116299190612509565b9550611636883083611829565b505b505b5f1515600c5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615151480156116e257505f1515600c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b801561173b575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611793575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15611815575f6117a28661077c565b90506103e8600d546117b2610579565b6117bc919061246b565b6117c691906124d9565b85826117d29190611fe7565b1115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90612586565b60405180910390fd5b505b611820868686611829565b5050505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e9061219c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc9061219c565b60405180910390fd5b611910838383611b8e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a906125ee565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611a219190611fe7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a859190611dc7565b60405180910390a3611a98848484611b93565b50505050565b80471015611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890612656565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611b06906126a1565b5f6040518083038185875af1925050503d805f8114611b40576040519150601f19603f3d011682016040523d82523d5f602084013e611b45565b606091505b5050905080611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b80906126ff565b60405180910390fd5b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611bcf578082015181840152602081019050611bb4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bf482611b98565b611bfe8185611ba2565b9350611c0e818560208601611bb2565b611c1781611bda565b840191505092915050565b5f6020820190508181035f830152611c3a8184611bea565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c6f82611c46565b9050919050565b611c7f81611c65565b8114611c89575f80fd5b50565b5f81359050611c9a81611c76565b92915050565b5f819050919050565b611cb281611ca0565b8114611cbc575f80fd5b50565b5f81359050611ccd81611ca9565b92915050565b5f8060408385031215611ce957611ce8611c42565b5b5f611cf685828601611c8c565b9250506020611d0785828601611cbf565b9150509250929050565b5f8115159050919050565b611d2581611d11565b82525050565b5f602082019050611d3e5f830184611d1c565b92915050565b5f819050919050565b5f611d67611d62611d5d84611c46565b611d44565b611c46565b9050919050565b5f611d7882611d4d565b9050919050565b5f611d8982611d6e565b9050919050565b611d9981611d7f565b82525050565b5f602082019050611db25f830184611d90565b92915050565b611dc181611ca0565b82525050565b5f602082019050611dda5f830184611db8565b92915050565b5f805f60608486031215611df757611df6611c42565b5b5f611e0486828701611c8c565b9350506020611e1586828701611c8c565b9250506040611e2686828701611cbf565b9150509250925092565b5f60ff82169050919050565b611e4581611e30565b82525050565b5f602082019050611e5e5f830184611e3c565b92915050565b611e6d81611c65565b82525050565b5f602082019050611e865f830184611e64565b92915050565b5f60208284031215611ea157611ea0611c42565b5b5f611eae84828501611c8c565b91505092915050565b5f8060408385031215611ecd57611ecc611c42565b5b5f611eda85828601611c8c565b9250506020611eeb85828601611c8c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f3957607f821691505b602082108103611f4c57611f4b611ef5565b5b50919050565b7f5472616e73666572206578636565647320616c6c6f77616e63650000000000005f82015250565b5f611f86601a83611ba2565b9150611f9182611f52565b602082019050919050565b5f6020820190508181035f830152611fb381611f7a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ff182611ca0565b9150611ffc83611ca0565b925082820190508082111561201457612013611fba565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61204e602083611ba2565b91506120598261201a565b602082019050919050565b5f6020820190508181035f83015261207b81612042565b9050919050565b7f416c6c6f773a206465637265617365642062656c6f77207a65726f00000000005f82015250565b5f6120b6601b83611ba2565b91506120c182612082565b602082019050919050565b5f6020820190508181035f8301526120e3816120aa565b9050919050565b7f4e6577206f776e6572206973207a65726f0000000000000000000000000000005f82015250565b5f61211e601183611ba2565b9150612129826120ea565b602082019050919050565b5f6020820190508181035f83015261214b81612112565b9050919050565b7f45524332303a207a65726f2061646472657373000000000000000000000000005f82015250565b5f612186601383611ba2565b915061219182612152565b602082019050919050565b5f6020820190508181035f8301526121b38161217a565b9050919050565b7f45524332303a207a65726f2066726f6d000000000000000000000000000000005f82015250565b5f6121ee601083611ba2565b91506121f9826121ba565b602082019050919050565b5f6020820190508181035f83015261221b816121e2565b9050919050565b7f45524332303a207a65726f2061646472000000000000000000000000000000005f82015250565b5f612256601083611ba2565b915061226182612222565b602082019050919050565b5f6020820190508181035f8301526122838161224a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506122f281611c76565b92915050565b5f6020828403121561230d5761230c611c42565b5b5f61231a848285016122e4565b91505092915050565b5f819050919050565b5f61234661234161233c84612323565b611d44565b611ca0565b9050919050565b6123568161232c565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61238e81611c65565b82525050565b5f61239f8383612385565b60208301905092915050565b5f602082019050919050565b5f6123c18261235c565b6123cb8185612366565b93506123d683612376565b805f5b838110156124065781516123ed8882612394565b97506123f8836123ab565b9250506001810190506123d9565b5085935050505092915050565b5f60a0820190506124265f830188611db8565b612433602083018761234d565b818103604083015261244581866123b7565b90506124546060830185611e64565b6124616080830184611db8565b9695505050505050565b5f61247582611ca0565b915061248083611ca0565b925082820261248e81611ca0565b915082820484148315176124a5576124a4611fba565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6124e382611ca0565b91506124ee83611ca0565b9250826124fe576124fd6124ac565b5b828204905092915050565b5f61251382611ca0565b915061251e83611ca0565b925082820390508181111561253657612535611fba565b5b92915050565b7f4d6178206c696d697420657863656564656400000000000000000000000000005f82015250565b5f612570601283611ba2565b915061257b8261253c565b602082019050919050565b5f6020820190508181035f83015261259d81612564565b9050919050565b7f457863656564732062616c616e636500000000000000000000000000000000005f82015250565b5f6125d8600f83611ba2565b91506125e3826125a4565b602082019050919050565b5f6020820190508181035f830152612605816125cc565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f612640601d83611ba2565b915061264b8261260c565b602082019050919050565b5f6020820190508181035f83015261266d81612634565b9050919050565b5f81905092915050565b50565b5f61268c5f83612674565b91506126978261267e565b5f82019050919050565b5f6126ab82612681565b9150819050919050565b7f53656e64206661696c65640000000000000000000000000000000000000000005f82015250565b5f6126e9600b83611ba2565b91506126f4826126b5565b602082019050919050565b5f6020820190508181035f830152612716816126dd565b905091905056fea26469706673582212209de478c50e06347edead02d80d27b66cb3738355f4b8c1a10f3115b2955a778864736f6c63430008180033

Deployed Bytecode Sourcemap

7704:4794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2594:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3508:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7914:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2915:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3685:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7782:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2814:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4248:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7748:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7972:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3031:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1802:148;;;;;;;;;;;;;:::i;:::-;;1588:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2702:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4471:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3166:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3349:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8119:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1958:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2594:100;2648:13;2681:5;2674:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2594:100;:::o;3508:169::-;3591:4;3608:39;3617:12;:10;:12::i;:::-;3631:7;3640:6;3608:8;:39::i;:::-;3665:4;3658:11;;3508:169;;;;:::o;7914:51::-;;;:::o;2915:108::-;2976:7;3003:12;;2996:19;;2915:108;:::o;3685:555::-;3825:4;3842:24;3869:11;:19;3881:6;3869:19;;;;;;;;;;;;;;;:33;3889:12;:10;:12::i;:::-;3869:33;;;;;;;;;;;;;;;;3842:60;;3937:17;3917:16;:37;3913:247;;3995:6;3975:16;:26;;3967:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;4076:57;4085:6;4093:12;:10;:12::i;:::-;4126:6;4107:16;:25;4076:8;:57::i;:::-;3913:247;4172:36;4182:6;4190:9;4201:6;4172:9;:36::i;:::-;4228:4;4221:11;;;3685:555;;;;;:::o;7782:27::-;;;;:::o;2814:93::-;2872:5;2897:2;2890:9;;2814:93;:::o;4248:215::-;4336:4;4353:80;4362:12;:10;:12::i;:::-;4376:7;4422:10;4385:11;:25;4397:12;:10;:12::i;:::-;4385:25;;;;;;;;;;;;;;;:34;4411:7;4385:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;4353:8;:80::i;:::-;4451:4;4444:11;;4248:215;;;;:::o;7748:27::-;;;;:::o;7972:29::-;;;;;;;;;;;;;:::o;3031:127::-;3105:7;3132:9;:18;3142:7;3132:18;;;;;;;;;;;;;;;;3125:25;;3031:127;;;:::o;1802:148::-;1725:12;:10;:12::i;:::-;1715:22;;:6;;;;;;;;;;;:22;;;1707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1909:1:::1;1872:40;;1893:6;;;;;;;;;;;1872:40;;;;;;;;;;;;1940:1;1923:6;;:19;;;;;;;;;;;;;;;;;;1802:148::o:0;1588:79::-;1626:7;1653:6;;;;;;;;;;;1646:13;;1588:79;:::o;2702:104::-;2758:13;2791:7;2784:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2702:104;:::o;4471:403::-;4564:4;4581:24;4608:11;:25;4620:12;:10;:12::i;:::-;4608:25;;;;;;;;;;;;;;;:34;4634:7;4608:34;;;;;;;;;;;;;;;;4581:61;;4681:15;4661:16;:35;;4653:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4764:67;4773:12;:10;:12::i;:::-;4787:7;4815:15;4796:16;:34;4764:8;:67::i;:::-;4862:4;4855:11;;;4471:403;;;;:::o;3166:175::-;3252:4;3269:42;3279:12;:10;:12::i;:::-;3293:9;3304:6;3269:9;:42::i;:::-;3329:4;3322:11;;3166:175;;;;:::o;3349:151::-;3438:7;3465:11;:18;3477:5;3465:18;;;;;;;;;;;;;;;:27;3484:7;3465:27;;;;;;;;;;;;;;;;3458:34;;3349:151;;;;:::o;8119:33::-;;;;:::o;1958:223::-;1725:12;:10;:12::i;:::-;1715:22;;:6;;;;;;;;;;;:22;;;1707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2067:1:::1;2047:22;;:8;:22;;::::0;2039:52:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2136:8;2107:38;;2128:6;;;;;;;;;;;2107:38;;;;;;;;;;;;2165:8;2156:6;;:17;;;;;;;;;;;;;;;;;;1958:223:::0;:::o;1029:98::-;1082:7;1109:10;1102:17;;1029:98;:::o;6595:350::-;6748:1;6731:19;;:5;:19;;;6723:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;6812:1;6793:21;;:7;:21;;;6785:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;6883:6;6853:11;:18;6865:5;6853:18;;;;;;;;;;;;;;;:27;6872:7;6853:27;;;;;;;;;;;;;;;:36;;;;6921:7;6905:32;;6914:5;6905:32;;;6930:6;6905:32;;;;;;:::i;:::-;;;;;;;;6595:350;;;:::o;9845:2650::-;9994:1;9978:18;;:4;:18;;;9970:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;10050:1;10036:16;;:2;:16;;;10028:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;10101:1;10091:6;:11;10088:92;;10119:28;10135:4;10141:2;10145:1;10119:15;:28::i;:::-;10162:7;;10088:92;10184:28;10215:24;10233:4;10215:9;:24::i;:::-;10184:55;;10252:12;10291:18;;10267:20;:42;;10252:57;;10326:7;:33;;;;;10351:8;;;;;;;;;;;10350:9;10326:33;:71;;;;;10384:13;;;;;;;;;;;10376:21;;:4;:21;;;;10326:71;:114;;;;;10415:19;:25;10435:4;10415:25;;;;;;;;;;;;;;;;;;;;;;;;;10414:26;10326:114;:155;;;;;10458:19;:23;10478:2;10458:23;;;;;;;;;;;;;;;;;;;;;;;;;10457:24;10326:155;10322:1043;;;10519:4;10508:8;;:15;;;;;;;;;;;;;;;;;;10540:21;10578:1;10564:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10540:40;;10613:4;10595;10600:1;10595:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;10643:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10633:4;10638:1;10633:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;10682:15;:66;;;10767:20;10806:1;10854:4;10885;10909:15;10682:243;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10942:18;10963:21;10942:42;;11019:1;11005:10;:15;11001:308;;11041:23;11085:3;11080:2;11067:10;:15;;;;:::i;:::-;:21;;;;:::i;:::-;11041:47;;11107:21;11144:15;11131:10;:28;;;;:::i;:::-;11107:52;;11178:50;11194:15;11212;11178:7;:50::i;:::-;11247:46;11263:13;11279;11247:7;:46::i;:::-;11022:287;;11001:308;11348:5;11337:8;;:16;;;;;;;;;;;;;;;;;;10493:872;;10322:1043;11377:12;11393:8;;;;;;;;;;;11392:9;11377:24;;11418:19;:25;11438:4;11418:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;11447:19;:23;11467:2;11447:23;;;;;;;;;;;;;;;;;;;;;;;;;11418:52;11417:105;;;;11485:13;;;;;;;;;;;11477:21;;:4;:21;;;;:44;;;;;11508:13;;;;;;;;;;;11502:19;;:2;:19;;;;11477:44;11417:105;11414:151;;;11548:5;11538:15;;11414:151;11580:7;11577:454;;;11604:18;11652:13;;;;;;;;;;;11644:21;;:4;:21;;;11641:165;;11699:6;;11686:19;;11641:165;;;11736:13;;;;;;;;;;;11730:19;;:2;:19;;;11727:79;;11783:7;;11770:20;;11727:79;11641:165;11840:1;11826:10;:15;11822:198;;11862:12;11899:3;11886:10;11877:6;:19;;;;:::i;:::-;:25;;;;:::i;:::-;11862:40;;11939:4;11930:6;:13;;;;:::i;:::-;11921:22;;11962:42;11978:4;11992;11999;11962:15;:42::i;:::-;11843:177;11822:198;11589:442;11577:454;12087:5;12047:45;;:29;:35;12077:4;12047:35;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;:108;;;;;12150:5;12110:45;;:29;:33;12140:2;12110:33;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;12047:108;:144;;;;;12178:13;;;;;;;;;;;12172:19;;:2;:19;;;;12047:144;:169;;;;;12203:13;;;;;;;;;;;12195:21;;:4;:21;;;12047:169;12043:397;;;12243:12;12259:13;12269:2;12259:9;:13::i;:::-;12243:29;;12369:4;12348:18;;12332:13;:11;:13::i;:::-;:34;;;;:::i;:::-;:41;;;;:::i;:::-;12323:6;12313:7;:16;;;;:::i;:::-;:60;;12287:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;12228:212;12043:397;12452:33;12468:4;12474:2;12478:6;12452:15;:33::i;:::-;9959:2536;;;9845:2650;;;;:::o;4882:674::-;5040:1;5022:20;;:6;:20;;;5014:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;5106:1;5085:23;;:9;:23;;;5077:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;5143:47;5164:6;5172:9;5183:6;5143:20;:47::i;:::-;5203:21;5227:9;:17;5237:6;5227:17;;;;;;;;;;;;;;;;5203:41;;5280:6;5263:13;:23;;5255:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;5378:6;5362:13;:22;5342:9;:17;5352:6;5342:17;;;;;;;;;;;;;;;:42;;;;5430:6;5406:9;:20;5416:9;5406:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;5471:9;5454:35;;5463:6;5454:35;;;5482:6;5454:35;;;;;;:::i;:::-;;;;;;;;5502:46;5522:6;5530:9;5541:6;5502:19;:46::i;:::-;5003:553;4882:674;;;:::o;9569:268::-;9682:6;9657:21;:31;;9649:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9736:12;9754:9;:14;;9776:6;9754:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9735:52;;;9806:7;9798:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;9638:199;9569:268;;:::o;6953:125::-;;;;:::o;7086:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:474::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6764:1;6789:53;6834:7;6825:6;6814:9;6810:22;6789:53;:::i;:::-;6779:63;;6735:117;6891:2;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6862:118;6513:474;;;;;:::o;6993:180::-;7041:77;7038:1;7031:88;7138:4;7135:1;7128:15;7162:4;7159:1;7152:15;7179:320;7223:6;7260:1;7254:4;7250:12;7240:22;;7307:1;7301:4;7297:12;7328:18;7318:81;;7384:4;7376:6;7372:17;7362:27;;7318:81;7446:2;7438:6;7435:14;7415:18;7412:38;7409:84;;7465:18;;:::i;:::-;7409:84;7230:269;7179:320;;;:::o;7505:176::-;7645:28;7641:1;7633:6;7629:14;7622:52;7505:176;:::o;7687:366::-;7829:3;7850:67;7914:2;7909:3;7850:67;:::i;:::-;7843:74;;7926:93;8015:3;7926:93;:::i;:::-;8044:2;8039:3;8035:12;8028:19;;7687:366;;;:::o;8059:419::-;8225:4;8263:2;8252:9;8248:18;8240:26;;8312:9;8306:4;8302:20;8298:1;8287:9;8283:17;8276:47;8340:131;8466:4;8340:131;:::i;:::-;8332:139;;8059:419;;;:::o;8484:180::-;8532:77;8529:1;8522:88;8629:4;8626:1;8619:15;8653:4;8650:1;8643:15;8670:191;8710:3;8729:20;8747:1;8729:20;:::i;:::-;8724:25;;8763:20;8781:1;8763:20;:::i;:::-;8758:25;;8806:1;8803;8799:9;8792:16;;8827:3;8824:1;8821:10;8818:36;;;8834:18;;:::i;:::-;8818:36;8670:191;;;;:::o;8867:182::-;9007:34;9003:1;8995:6;8991:14;8984:58;8867:182;:::o;9055:366::-;9197:3;9218:67;9282:2;9277:3;9218:67;:::i;:::-;9211:74;;9294:93;9383:3;9294:93;:::i;:::-;9412:2;9407:3;9403:12;9396:19;;9055:366;;;:::o;9427:419::-;9593:4;9631:2;9620:9;9616:18;9608:26;;9680:9;9674:4;9670:20;9666:1;9655:9;9651:17;9644:47;9708:131;9834:4;9708:131;:::i;:::-;9700:139;;9427:419;;;:::o;9852:177::-;9992:29;9988:1;9980:6;9976:14;9969:53;9852:177;:::o;10035:366::-;10177:3;10198:67;10262:2;10257:3;10198:67;:::i;:::-;10191:74;;10274:93;10363:3;10274:93;:::i;:::-;10392:2;10387:3;10383:12;10376:19;;10035:366;;;:::o;10407:419::-;10573:4;10611:2;10600:9;10596:18;10588:26;;10660:9;10654:4;10650:20;10646:1;10635:9;10631:17;10624:47;10688:131;10814:4;10688:131;:::i;:::-;10680:139;;10407:419;;;:::o;10832:167::-;10972:19;10968:1;10960:6;10956:14;10949:43;10832:167;:::o;11005:366::-;11147:3;11168:67;11232:2;11227:3;11168:67;:::i;:::-;11161:74;;11244:93;11333:3;11244:93;:::i;:::-;11362:2;11357:3;11353:12;11346:19;;11005:366;;;:::o;11377:419::-;11543:4;11581:2;11570:9;11566:18;11558:26;;11630:9;11624:4;11620:20;11616:1;11605:9;11601:17;11594:47;11658:131;11784:4;11658:131;:::i;:::-;11650:139;;11377:419;;;:::o;11802:169::-;11942:21;11938:1;11930:6;11926:14;11919:45;11802:169;:::o;11977:366::-;12119:3;12140:67;12204:2;12199:3;12140:67;:::i;:::-;12133:74;;12216:93;12305:3;12216:93;:::i;:::-;12334:2;12329:3;12325:12;12318:19;;11977:366;;;:::o;12349:419::-;12515:4;12553:2;12542:9;12538:18;12530:26;;12602:9;12596:4;12592:20;12588:1;12577:9;12573:17;12566:47;12630:131;12756:4;12630:131;:::i;:::-;12622:139;;12349:419;;;:::o;12774:166::-;12914:18;12910:1;12902:6;12898:14;12891:42;12774:166;:::o;12946:366::-;13088:3;13109:67;13173:2;13168:3;13109:67;:::i;:::-;13102:74;;13185:93;13274:3;13185:93;:::i;:::-;13303:2;13298:3;13294:12;13287:19;;12946:366;;;:::o;13318:419::-;13484:4;13522:2;13511:9;13507:18;13499:26;;13571:9;13565:4;13561:20;13557:1;13546:9;13542:17;13535:47;13599:131;13725:4;13599:131;:::i;:::-;13591:139;;13318:419;;;:::o;13743:166::-;13883:18;13879:1;13871:6;13867:14;13860:42;13743:166;:::o;13915:366::-;14057:3;14078:67;14142:2;14137:3;14078:67;:::i;:::-;14071:74;;14154:93;14243:3;14154:93;:::i;:::-;14272:2;14267:3;14263:12;14256:19;;13915:366;;;:::o;14287:419::-;14453:4;14491:2;14480:9;14476:18;14468:26;;14540:9;14534:4;14530:20;14526:1;14515:9;14511:17;14504:47;14568:131;14694:4;14568:131;:::i;:::-;14560:139;;14287:419;;;:::o;14712:180::-;14760:77;14757:1;14750:88;14857:4;14854:1;14847:15;14881:4;14878:1;14871:15;14898:180;14946:77;14943:1;14936:88;15043:4;15040:1;15033:15;15067:4;15064:1;15057:15;15084:143;15141:5;15172:6;15166:13;15157:22;;15188:33;15215:5;15188:33;:::i;:::-;15084:143;;;;:::o;15233:351::-;15303:6;15352:2;15340:9;15331:7;15327:23;15323:32;15320:119;;;15358:79;;:::i;:::-;15320:119;15478:1;15503:64;15559:7;15550:6;15539:9;15535:22;15503:64;:::i;:::-;15493:74;;15449:128;15233:351;;;;:::o;15590:85::-;15635:7;15664:5;15653:16;;15590:85;;;:::o;15681:158::-;15739:9;15772:61;15790:42;15799:32;15825:5;15799:32;:::i;:::-;15790:42;:::i;:::-;15772:61;:::i;:::-;15759:74;;15681:158;;;:::o;15845:147::-;15940:45;15979:5;15940:45;:::i;:::-;15935:3;15928:58;15845:147;;:::o;15998:114::-;16065:6;16099:5;16093:12;16083:22;;15998:114;;;:::o;16118:184::-;16217:11;16251:6;16246:3;16239:19;16291:4;16286:3;16282:14;16267:29;;16118:184;;;;:::o;16308:132::-;16375:4;16398:3;16390:11;;16428:4;16423:3;16419:14;16411:22;;16308:132;;;:::o;16446:108::-;16523:24;16541:5;16523:24;:::i;:::-;16518:3;16511:37;16446:108;;:::o;16560:179::-;16629:10;16650:46;16692:3;16684:6;16650:46;:::i;:::-;16728:4;16723:3;16719:14;16705:28;;16560:179;;;;:::o;16745:113::-;16815:4;16847;16842:3;16838:14;16830:22;;16745:113;;;:::o;16894:732::-;17013:3;17042:54;17090:5;17042:54;:::i;:::-;17112:86;17191:6;17186:3;17112:86;:::i;:::-;17105:93;;17222:56;17272:5;17222:56;:::i;:::-;17301:7;17332:1;17317:284;17342:6;17339:1;17336:13;17317:284;;;17418:6;17412:13;17445:63;17504:3;17489:13;17445:63;:::i;:::-;17438:70;;17531:60;17584:6;17531:60;:::i;:::-;17521:70;;17377:224;17364:1;17361;17357:9;17352:14;;17317:284;;;17321:14;17617:3;17610:10;;17018:608;;;16894:732;;;;:::o;17632:831::-;17895:4;17933:3;17922:9;17918:19;17910:27;;17947:71;18015:1;18004:9;18000:17;17991:6;17947:71;:::i;:::-;18028:80;18104:2;18093:9;18089:18;18080:6;18028:80;:::i;:::-;18155:9;18149:4;18145:20;18140:2;18129:9;18125:18;18118:48;18183:108;18286:4;18277:6;18183:108;:::i;:::-;18175:116;;18301:72;18369:2;18358:9;18354:18;18345:6;18301:72;:::i;:::-;18383:73;18451:3;18440:9;18436:19;18427:6;18383:73;:::i;:::-;17632:831;;;;;;;;:::o;18469:410::-;18509:7;18532:20;18550:1;18532:20;:::i;:::-;18527:25;;18566:20;18584:1;18566:20;:::i;:::-;18561:25;;18621:1;18618;18614:9;18643:30;18661:11;18643:30;:::i;:::-;18632:41;;18822:1;18813:7;18809:15;18806:1;18803:22;18783:1;18776:9;18756:83;18733:139;;18852:18;;:::i;:::-;18733:139;18517:362;18469:410;;;;:::o;18885:180::-;18933:77;18930:1;18923:88;19030:4;19027:1;19020:15;19054:4;19051:1;19044:15;19071:185;19111:1;19128:20;19146:1;19128:20;:::i;:::-;19123:25;;19162:20;19180:1;19162:20;:::i;:::-;19157:25;;19201:1;19191:35;;19206:18;;:::i;:::-;19191:35;19248:1;19245;19241:9;19236:14;;19071:185;;;;:::o;19262:194::-;19302:4;19322:20;19340:1;19322:20;:::i;:::-;19317:25;;19356:20;19374:1;19356:20;:::i;:::-;19351:25;;19400:1;19397;19393:9;19385:17;;19424:1;19418:4;19415:11;19412:37;;;19429:18;;:::i;:::-;19412:37;19262:194;;;;:::o;19462:168::-;19602:20;19598:1;19590:6;19586:14;19579:44;19462:168;:::o;19636:366::-;19778:3;19799:67;19863:2;19858:3;19799:67;:::i;:::-;19792:74;;19875:93;19964:3;19875:93;:::i;:::-;19993:2;19988:3;19984:12;19977:19;;19636:366;;;:::o;20008:419::-;20174:4;20212:2;20201:9;20197:18;20189:26;;20261:9;20255:4;20251:20;20247:1;20236:9;20232:17;20225:47;20289:131;20415:4;20289:131;:::i;:::-;20281:139;;20008:419;;;:::o;20433:165::-;20573:17;20569:1;20561:6;20557:14;20550:41;20433:165;:::o;20604:366::-;20746:3;20767:67;20831:2;20826:3;20767:67;:::i;:::-;20760:74;;20843:93;20932:3;20843:93;:::i;:::-;20961:2;20956:3;20952:12;20945:19;;20604:366;;;:::o;20976:419::-;21142:4;21180:2;21169:9;21165:18;21157:26;;21229:9;21223:4;21219:20;21215:1;21204:9;21200:17;21193:47;21257:131;21383:4;21257:131;:::i;:::-;21249:139;;20976:419;;;:::o;21401:179::-;21541:31;21537:1;21529:6;21525:14;21518:55;21401:179;:::o;21586:366::-;21728:3;21749:67;21813:2;21808:3;21749:67;:::i;:::-;21742:74;;21825:93;21914:3;21825:93;:::i;:::-;21943:2;21938:3;21934:12;21927:19;;21586:366;;;:::o;21958:419::-;22124:4;22162:2;22151:9;22147:18;22139:26;;22211:9;22205:4;22201:20;22197:1;22186:9;22182:17;22175:47;22239:131;22365:4;22239:131;:::i;:::-;22231:139;;21958:419;;;:::o;22383:147::-;22484:11;22521:3;22506:18;;22383:147;;;;:::o;22536:114::-;;:::o;22656:398::-;22815:3;22836:83;22917:1;22912:3;22836:83;:::i;:::-;22829:90;;22928:93;23017:3;22928:93;:::i;:::-;23046:1;23041:3;23037:11;23030:18;;22656:398;;;:::o;23060:379::-;23244:3;23266:147;23409:3;23266:147;:::i;:::-;23259:154;;23430:3;23423:10;;23060:379;;;:::o;23445:161::-;23585:13;23581:1;23573:6;23569:14;23562:37;23445:161;:::o;23612:366::-;23754:3;23775:67;23839:2;23834:3;23775:67;:::i;:::-;23768:74;;23851:93;23940:3;23851:93;:::i;:::-;23969:2;23964:3;23960:12;23953:19;;23612:366;;;:::o;23984:419::-;24150:4;24188:2;24177:9;24173:18;24165:26;;24237:9;24231:4;24227:20;24223:1;24212:9;24208:17;24201:47;24265:131;24391:4;24265:131;:::i;:::-;24257:139;;23984:419;;;:::o

Swarm Source

ipfs://9de478c50e06347edead02d80d27b66cb3738355f4b8c1a10f3115b2955a7788

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.