ETH Price: $1,821.25 (-2.94%)
Gas: 0.41 Gwei

Contract

0xE6Ddf910A1E0Cf0e4e48757FA389949770B42806
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer213954172024-12-13 18:35:23110 days ago1734114923IN
0xE6Ddf910...770B42806
0 ETH0.0010004221.0154644

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TIGER

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-12-13
*/

/**

*/

// SPDX-License-Identifier: MIT Licence 
// Copyright (c) 2024 Omar AlAli (tigertoken.org)
//// All rights reserved.
//
// This smart contract is provided "as-is" without warranty of any kind, either express or implied,
// including but not limited to the warranties of merchantability, fitness for a particular purpose,
// or non-infringement. In no event shall the authors or copyright holders be liable for any claim,
// damages, or other liability, whether in an action of contract, tort, or otherwise, arising from,
// out of, or in connection with the software or the use or other dealings in the software.
// Website: https://tigertoken.org
// Twitter: https://twitter.com/omarmal3li
// Instagram: https://www.instagram.com/3maral3li/profilecard/?igsh=dHUwNjFkb211aHh0
//
// TigerToken (TIG) is a decentralized finance (DeFi) project offering 0% trading fees, fair tokenomics,
// locked liquidity, and community-driven innovation. With a focus on transparency, security, and growth,
// TIG empowers investors through active engagement, marketing campaigns, and plans for major exchange listings.
// Join to shape the future of DeFi!

pragma solidity 0.8.16;

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; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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, "ERC20: transfer amount 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, "Bep20: Increased allowance if token reaches a zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer 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), "BEpP20: mint to the zero address");

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

        _totalSupply += amount;
        _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: burn from the zero address, Recipient should check for gas");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _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: appove to the zero address");
        require(spender != address(0), "ERC20: approve to the 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 {}
}

contract TIGER  is ERC20 {
    constructor () ERC20("TIGER", "TIG") 
    {    
        _mint(msg.sender, 1000000000 * (10 ** 18));
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"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":"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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f54494745520000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f544947000000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620004c4565b508060049081620000a19190620004c4565b505050620000c2336b033b2e3c9fd0803ce8000000620000c860201b60201c565b620006c6565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200013a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000131906200060c565b60405180910390fd5b6200014e600083836200024060201b60201c565b80600260008282546200016291906200065d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001b991906200065d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002209190620006a9565b60405180910390a36200023c600083836200024560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002cc57607f821691505b602082108103620002e257620002e162000284565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200034c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200030d565b6200035886836200030d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003a56200039f620003998462000370565b6200037a565b62000370565b9050919050565b6000819050919050565b620003c18362000384565b620003d9620003d082620003ac565b8484546200031a565b825550505050565b600090565b620003f0620003e1565b620003fd818484620003b6565b505050565b5b81811015620004255762000419600082620003e6565b60018101905062000403565b5050565b601f82111562000474576200043e81620002e8565b6200044984620002fd565b8101602085101562000459578190505b620004716200046885620002fd565b83018262000402565b50505b505050565b600082821c905092915050565b6000620004996000198460080262000479565b1980831691505092915050565b6000620004b4838362000486565b9150826002028217905092915050565b620004cf826200024a565b67ffffffffffffffff811115620004eb57620004ea62000255565b5b620004f78254620002b3565b6200050482828562000429565b600060209050601f8311600181146200053c576000841562000527578287015190505b620005338582620004a6565b865550620005a3565b601f1984166200054c86620002e8565b60005b8281101562000576578489015182556001820191506020850194506020810190506200054f565b8683101562000596578489015162000592601f89168262000486565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4245705032303a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000620005f4602083620005ab565b91506200060182620005bc565b602082019050919050565b600060208201905081810360008301526200062781620005e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200066a8262000370565b9150620006778362000370565b92508282019050808211156200069257620006916200062e565b5b92915050565b620006a38162000370565b82525050565b6000602082019050620006c0600083018462000698565b92915050565b6113a180620006d66000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c58565b60405180910390f35b6100e660048036038101906100e19190610d13565b610308565b6040516100f39190610d6e565b60405180910390f35b610104610326565b6040516101119190610d98565b60405180910390f35b610134600480360381019061012f9190610db3565b610330565b6040516101419190610d6e565b60405180910390f35b61015261044f565b60405161015f9190610e22565b60405180910390f35b610182600480360381019061017d9190610d13565b610458565b60405161018f9190610d6e565b60405180910390f35b6101b260048036038101906101ad9190610e3d565b610504565b6040516101bf9190610d98565b60405180910390f35b6101d061054c565b6040516101dd9190610c58565b60405180910390f35b61020060048036038101906101fb9190610d13565b6105de565b60405161020d9190610d6e565b60405180910390f35b610230600480360381019061022b9190610d13565b6106c9565b60405161023d9190610d6e565b60405180910390f35b610260600480360381019061025b9190610e6a565b6106e7565b60405161026d9190610d98565b60405180910390f35b60606003805461028590610ed9565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610ed9565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561076e565b8484610776565b6001905092915050565b6000600254905090565b600080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061037c61076e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146104385782811015610423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041a90610f7c565b60405180910390fd5b6104378561042f61076e565b858403610776565b5b61044385858561093f565b60019150509392505050565b60006012905090565b60006104fa61046561076e565b84846001600061047361076e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f59190610fcb565b610776565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461055b90610ed9565b80601f016020809104026020016040519081016040528092919081815260200182805461058790610ed9565b80156105d45780601f106105a9576101008083540402835291602001916105d4565b820191906000526020600020905b8154815290600101906020018083116105b757829003601f168201915b5050505050905090565b600080600160006105ed61076e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a190611071565b60405180910390fd5b6106be6106b561076e565b85858403610776565b600191505092915050565b60006106dd6106d661076e565b848461093f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dc90611103565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611195565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109329190610d98565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590611227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a14906112b9565b60405180910390fd5b610a28838383610bbe565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa59061134b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b419190610fcb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ba59190610d98565b60405180910390a3610bb8848484610bc3565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c02578082015181840152602081019050610be7565b60008484015250505050565b6000601f19601f8301169050919050565b6000610c2a82610bc8565b610c348185610bd3565b9350610c44818560208601610be4565b610c4d81610c0e565b840191505092915050565b60006020820190508181036000830152610c728184610c1f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610caa82610c7f565b9050919050565b610cba81610c9f565b8114610cc557600080fd5b50565b600081359050610cd781610cb1565b92915050565b6000819050919050565b610cf081610cdd565b8114610cfb57600080fd5b50565b600081359050610d0d81610ce7565b92915050565b60008060408385031215610d2a57610d29610c7a565b5b6000610d3885828601610cc8565b9250506020610d4985828601610cfe565b9150509250929050565b60008115159050919050565b610d6881610d53565b82525050565b6000602082019050610d836000830184610d5f565b92915050565b610d9281610cdd565b82525050565b6000602082019050610dad6000830184610d89565b92915050565b600080600060608486031215610dcc57610dcb610c7a565b5b6000610dda86828701610cc8565b9350506020610deb86828701610cc8565b9250506040610dfc86828701610cfe565b9150509250925092565b600060ff82169050919050565b610e1c81610e06565b82525050565b6000602082019050610e376000830184610e13565b92915050565b600060208284031215610e5357610e52610c7a565b5b6000610e6184828501610cc8565b91505092915050565b60008060408385031215610e8157610e80610c7a565b5b6000610e8f85828601610cc8565b9250506020610ea085828601610cc8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610ef157607f821691505b602082108103610f0457610f03610eaa565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f66602883610bd3565b9150610f7182610f0a565b604082019050919050565b60006020820190508181036000830152610f9581610f59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610fd682610cdd565b9150610fe183610cdd565b9250828201905080821115610ff957610ff8610f9c565b5b92915050565b7f42657032303a20496e6372656173656420616c6c6f77616e636520696620746f60008201527f6b656e20726561636865732061207a65726f0000000000000000000000000000602082015250565b600061105b603283610bd3565b915061106682610fff565b604082019050919050565b6000602082019050818103600083015261108a8161104e565b9050919050565b7f45524332303a206170706f766520746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006110ed602183610bd3565b91506110f882611091565b604082019050919050565b6000602082019050818103600083015261111c816110e0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061117f602283610bd3565b915061118a82611123565b604082019050919050565b600060208201905081810360008301526111ae81611172565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611211602583610bd3565b915061121c826111b5565b604082019050919050565b6000602082019050818103600083015261124081611204565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006112a3602383610bd3565b91506112ae82611247565b604082019050919050565b600060208201905081810360008301526112d281611296565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611335602683610bd3565b9150611340826112d9565b604082019050919050565b6000602082019050818103600083015261136481611328565b905091905056fea2646970667358221220231b5d668b746dd3f8516cb814240a57716d5ee240e49fa3d9c868b2f5bcdae464736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c58565b60405180910390f35b6100e660048036038101906100e19190610d13565b610308565b6040516100f39190610d6e565b60405180910390f35b610104610326565b6040516101119190610d98565b60405180910390f35b610134600480360381019061012f9190610db3565b610330565b6040516101419190610d6e565b60405180910390f35b61015261044f565b60405161015f9190610e22565b60405180910390f35b610182600480360381019061017d9190610d13565b610458565b60405161018f9190610d6e565b60405180910390f35b6101b260048036038101906101ad9190610e3d565b610504565b6040516101bf9190610d98565b60405180910390f35b6101d061054c565b6040516101dd9190610c58565b60405180910390f35b61020060048036038101906101fb9190610d13565b6105de565b60405161020d9190610d6e565b60405180910390f35b610230600480360381019061022b9190610d13565b6106c9565b60405161023d9190610d6e565b60405180910390f35b610260600480360381019061025b9190610e6a565b6106e7565b60405161026d9190610d98565b60405180910390f35b60606003805461028590610ed9565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610ed9565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561076e565b8484610776565b6001905092915050565b6000600254905090565b600080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061037c61076e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146104385782811015610423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041a90610f7c565b60405180910390fd5b6104378561042f61076e565b858403610776565b5b61044385858561093f565b60019150509392505050565b60006012905090565b60006104fa61046561076e565b84846001600061047361076e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f59190610fcb565b610776565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461055b90610ed9565b80601f016020809104026020016040519081016040528092919081815260200182805461058790610ed9565b80156105d45780601f106105a9576101008083540402835291602001916105d4565b820191906000526020600020905b8154815290600101906020018083116105b757829003601f168201915b5050505050905090565b600080600160006105ed61076e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a190611071565b60405180910390fd5b6106be6106b561076e565b85858403610776565b600191505092915050565b60006106dd6106d661076e565b848461093f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dc90611103565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611195565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109329190610d98565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590611227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a14906112b9565b60405180910390fd5b610a28838383610bbe565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa59061134b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b419190610fcb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ba59190610d98565b60405180910390a3610bb8848484610bc3565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c02578082015181840152602081019050610be7565b60008484015250505050565b6000601f19601f8301169050919050565b6000610c2a82610bc8565b610c348185610bd3565b9350610c44818560208601610be4565b610c4d81610c0e565b840191505092915050565b60006020820190508181036000830152610c728184610c1f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610caa82610c7f565b9050919050565b610cba81610c9f565b8114610cc557600080fd5b50565b600081359050610cd781610cb1565b92915050565b6000819050919050565b610cf081610cdd565b8114610cfb57600080fd5b50565b600081359050610d0d81610ce7565b92915050565b60008060408385031215610d2a57610d29610c7a565b5b6000610d3885828601610cc8565b9250506020610d4985828601610cfe565b9150509250929050565b60008115159050919050565b610d6881610d53565b82525050565b6000602082019050610d836000830184610d5f565b92915050565b610d9281610cdd565b82525050565b6000602082019050610dad6000830184610d89565b92915050565b600080600060608486031215610dcc57610dcb610c7a565b5b6000610dda86828701610cc8565b9350506020610deb86828701610cc8565b9250506040610dfc86828701610cfe565b9150509250925092565b600060ff82169050919050565b610e1c81610e06565b82525050565b6000602082019050610e376000830184610e13565b92915050565b600060208284031215610e5357610e52610c7a565b5b6000610e6184828501610cc8565b91505092915050565b60008060408385031215610e8157610e80610c7a565b5b6000610e8f85828601610cc8565b9250506020610ea085828601610cc8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610ef157607f821691505b602082108103610f0457610f03610eaa565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f66602883610bd3565b9150610f7182610f0a565b604082019050919050565b60006020820190508181036000830152610f9581610f59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610fd682610cdd565b9150610fe183610cdd565b9250828201905080821115610ff957610ff8610f9c565b5b92915050565b7f42657032303a20496e6372656173656420616c6c6f77616e636520696620746f60008201527f6b656e20726561636865732061207a65726f0000000000000000000000000000602082015250565b600061105b603283610bd3565b915061106682610fff565b604082019050919050565b6000602082019050818103600083015261108a8161104e565b9050919050565b7f45524332303a206170706f766520746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006110ed602183610bd3565b91506110f882611091565b604082019050919050565b6000602082019050818103600083015261111c816110e0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061117f602283610bd3565b915061118a82611123565b604082019050919050565b600060208201905081810360008301526111ae81611172565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611211602583610bd3565b915061121c826111b5565b604082019050919050565b6000602082019050818103600083015261124081611204565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006112a3602383610bd3565b91506112ae82611247565b604082019050919050565b600060208201905081810360008301526112d281611296565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611335602683610bd3565b9150611340826112d9565b604082019050919050565b6000602082019050818103600083015261136481611328565b905091905056fea2646970667358221220231b5d668b746dd3f8516cb814240a57716d5ee240e49fa3d9c868b2f5bcdae464736f6c63430008100033

Deployed Bytecode Sourcemap

7680:143:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2923:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3837:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3244:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4014:573;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3143:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4595:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3360:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3031:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4818:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3495:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3678:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2923:100;2977:13;3010:5;3003:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2923:100;:::o;3837:169::-;3920:4;3937:39;3946:12;:10;:12::i;:::-;3960:7;3969:6;3937:8;:39::i;:::-;3994:4;3987:11;;3837:169;;;;:::o;3244:108::-;3305:7;3332:12;;3325:19;;3244:108;:::o;4014:573::-;4154:4;4171:24;4198:11;:19;4210:6;4198:19;;;;;;;;;;;;;;;:33;4218:12;:10;:12::i;:::-;4198:33;;;;;;;;;;;;;;;;4171:60;;4266:17;4246:16;:37;4242:265;;4328:6;4308:16;:26;;4300:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;4423:57;4432:6;4440:12;:10;:12::i;:::-;4473:6;4454:16;:25;4423:8;:57::i;:::-;4242:265;4519:36;4529:6;4537:9;4548:6;4519:9;:36::i;:::-;4575:4;4568:11;;;4014:573;;;;;:::o;3143:93::-;3201:5;3226:2;3219:9;;3143:93;:::o;4595:215::-;4683:4;4700:80;4709:12;:10;:12::i;:::-;4723:7;4769:10;4732:11;:25;4744:12;:10;:12::i;:::-;4732:25;;;;;;;;;;;;;;;:34;4758:7;4732:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;4700:8;:80::i;:::-;4798:4;4791:11;;4595:215;;;;:::o;3360:127::-;3434:7;3461:9;:18;3471:7;3461:18;;;;;;;;;;;;;;;;3454:25;;3360:127;;;:::o;3031:104::-;3087:13;3120:7;3113:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3031:104;:::o;4818:426::-;4911:4;4928:24;4955:11;:25;4967:12;:10;:12::i;:::-;4955:25;;;;;;;;;;;;;;;:34;4981:7;4955:34;;;;;;;;;;;;;;;;4928:61;;5028:15;5008:16;:35;;5000:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;5134:67;5143:12;:10;:12::i;:::-;5157:7;5185:15;5166:16;:34;5134:8;:67::i;:::-;5232:4;5225:11;;;4818:426;;;;:::o;3495:175::-;3581:4;3598:42;3608:12;:10;:12::i;:::-;3622:9;3633:6;3598:9;:42::i;:::-;3658:4;3651:11;;3495:175;;;;:::o;3678:151::-;3767:7;3794:11;:18;3806:5;3794:18;;;;;;;;;;;;;;;:27;3813:7;3794:27;;;;;;;;;;;;;;;;3787:34;;3678:151;;;;:::o;2169:98::-;2222:7;2249:10;2242:17;;2169:98;:::o;7031:377::-;7184:1;7167:19;;:5;:19;;;7159:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;7262:1;7243:21;;:7;:21;;;7235:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7346:6;7316:11;:18;7328:5;7316:18;;;;;;;;;;;;;;;:27;7335:7;7316:27;;;;;;;;;;;;;;;:36;;;;7384:7;7368:32;;7377:5;7368:32;;;7393:6;7368:32;;;;;;:::i;:::-;;;;;;;;7031:377;;;:::o;5252:733::-;5410:1;5392:20;;:6;:20;;;5384:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;5494:1;5473:23;;:9;:23;;;5465:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5549:47;5570:6;5578:9;5589:6;5549:20;:47::i;:::-;5609:21;5633:9;:17;5643:6;5633:17;;;;;;;;;;;;;;;;5609:41;;5686:6;5669:13;:23;;5661:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;5807:6;5791:13;:22;5771:9;:17;5781:6;5771:17;;;;;;;;;;;;;;;:42;;;;5859:6;5835:9;:20;5845:9;5835:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;5900:9;5883:35;;5892:6;5883:35;;;5911:6;5883:35;;;;;;:::i;:::-;;;;;;;;5931:46;5951:6;5959:9;5970:6;5931:19;:46::i;:::-;5373:612;5252:733;;;:::o;7416:125::-;;;;:::o;7549: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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:227::-;6320:34;6316:1;6308:6;6304:14;6297:58;6389:10;6384:2;6376:6;6372:15;6365:35;6180:227;:::o;6413:366::-;6555:3;6576:67;6640:2;6635:3;6576:67;:::i;:::-;6569:74;;6652:93;6741:3;6652:93;:::i;:::-;6770:2;6765:3;6761:12;6754:19;;6413:366;;;:::o;6785:419::-;6951:4;6989:2;6978:9;6974:18;6966:26;;7038:9;7032:4;7028:20;7024:1;7013:9;7009:17;7002:47;7066:131;7192:4;7066:131;:::i;:::-;7058:139;;6785:419;;;:::o;7210:180::-;7258:77;7255:1;7248:88;7355:4;7352:1;7345:15;7379:4;7376:1;7369:15;7396:191;7436:3;7455:20;7473:1;7455:20;:::i;:::-;7450:25;;7489:20;7507:1;7489:20;:::i;:::-;7484:25;;7532:1;7529;7525:9;7518:16;;7553:3;7550:1;7547:10;7544:36;;;7560:18;;:::i;:::-;7544:36;7396:191;;;;:::o;7593:237::-;7733:34;7729:1;7721:6;7717:14;7710:58;7802:20;7797:2;7789:6;7785:15;7778:45;7593:237;:::o;7836:366::-;7978:3;7999:67;8063:2;8058:3;7999:67;:::i;:::-;7992:74;;8075:93;8164:3;8075:93;:::i;:::-;8193:2;8188:3;8184:12;8177:19;;7836:366;;;:::o;8208:419::-;8374:4;8412:2;8401:9;8397:18;8389:26;;8461:9;8455:4;8451:20;8447:1;8436:9;8432:17;8425:47;8489:131;8615:4;8489:131;:::i;:::-;8481:139;;8208:419;;;:::o;8633:220::-;8773:34;8769:1;8761:6;8757:14;8750:58;8842:3;8837:2;8829:6;8825:15;8818:28;8633:220;:::o;8859:366::-;9001:3;9022:67;9086:2;9081:3;9022:67;:::i;:::-;9015:74;;9098:93;9187:3;9098:93;:::i;:::-;9216:2;9211:3;9207:12;9200:19;;8859:366;;;:::o;9231:419::-;9397:4;9435:2;9424:9;9420:18;9412:26;;9484:9;9478:4;9474:20;9470:1;9459:9;9455:17;9448:47;9512:131;9638:4;9512:131;:::i;:::-;9504:139;;9231:419;;;:::o;9656:221::-;9796:34;9792:1;9784:6;9780:14;9773:58;9865:4;9860:2;9852:6;9848:15;9841:29;9656:221;:::o;9883:366::-;10025:3;10046:67;10110:2;10105:3;10046:67;:::i;:::-;10039:74;;10122:93;10211:3;10122:93;:::i;:::-;10240:2;10235:3;10231:12;10224:19;;9883:366;;;:::o;10255:419::-;10421:4;10459:2;10448:9;10444:18;10436:26;;10508:9;10502:4;10498:20;10494:1;10483:9;10479:17;10472:47;10536:131;10662:4;10536:131;:::i;:::-;10528:139;;10255:419;;;:::o;10680:224::-;10820:34;10816:1;10808:6;10804:14;10797:58;10889:7;10884:2;10876:6;10872:15;10865:32;10680:224;:::o;10910:366::-;11052:3;11073:67;11137:2;11132:3;11073:67;:::i;:::-;11066:74;;11149:93;11238:3;11149:93;:::i;:::-;11267:2;11262:3;11258:12;11251:19;;10910:366;;;:::o;11282:419::-;11448:4;11486:2;11475:9;11471:18;11463:26;;11535:9;11529:4;11525:20;11521:1;11510:9;11506:17;11499:47;11563:131;11689:4;11563:131;:::i;:::-;11555:139;;11282:419;;;:::o;11707:222::-;11847:34;11843:1;11835:6;11831:14;11824:58;11916:5;11911:2;11903:6;11899:15;11892:30;11707:222;:::o;11935:366::-;12077:3;12098:67;12162:2;12157:3;12098:67;:::i;:::-;12091:74;;12174:93;12263:3;12174:93;:::i;:::-;12292:2;12287:3;12283:12;12276:19;;11935:366;;;:::o;12307:419::-;12473:4;12511:2;12500:9;12496:18;12488:26;;12560:9;12554:4;12550:20;12546:1;12535:9;12531:17;12524:47;12588:131;12714:4;12588:131;:::i;:::-;12580:139;;12307:419;;;:::o;12732:225::-;12872:34;12868:1;12860:6;12856:14;12849:58;12941:8;12936:2;12928:6;12924:15;12917:33;12732:225;:::o;12963:366::-;13105:3;13126:67;13190:2;13185:3;13126:67;:::i;:::-;13119:74;;13202:93;13291:3;13202:93;:::i;:::-;13320:2;13315:3;13311:12;13304:19;;12963:366;;;:::o;13335:419::-;13501:4;13539:2;13528:9;13524:18;13516:26;;13588:9;13582:4;13578:20;13574:1;13563:9;13559:17;13552:47;13616:131;13742:4;13616:131;:::i;:::-;13608:139;;13335:419;;;:::o

Swarm Source

ipfs://231b5d668b746dd3f8516cb814240a57716d5ee240e49fa3d9c868b2f5bcdae4

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.