Sepolia Testnet

Contract

0x707F8b1519B2c0304Df7D195227B845Ce78d7Baf

Overview

ETH Balance

0 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
_give Me A Token...41364562023-08-22 7:38:36520 days ago1692689916IN
0x707F8b15...Ce78d7Baf
0 ETH0.000262747.23834215
_give Me A Token...41364422023-08-22 7:35:36520 days ago1692689736IN
0x707F8b15...Ce78d7Baf
0 ETH0.000298848.23277948
_give Me A Token...41308462023-08-21 10:07:48521 days ago1692612468IN
0x707F8b15...Ce78d7Baf
0 ETH0.0007223619.90050038
_give Me A Token...41308362023-08-21 10:05:36521 days ago1692612336IN
0x707F8b15...Ce78d7Baf
0 ETH0.0010034827.64485567
_give Me A Token...41307582023-08-21 9:45:48521 days ago1692611148IN
0x707F8b15...Ce78d7Baf
0 ETH0.0012106722.67230042
Transfer31731882023-03-27 11:38:00668 days ago1679917080IN
0x707F8b15...Ce78d7Baf
0 ETH0.00004621.00000004
Transfer31731852023-03-27 11:37:12668 days ago1679917032IN
0x707F8b15...Ce78d7Baf
0 ETH0.00004621.00000004
Transfer31731802023-03-27 11:36:12668 days ago1679916972IN
0x707F8b15...Ce78d7Baf
0 ETH0.00004621.00000005
Transfer31731792023-03-27 11:36:00668 days ago1679916960IN
0x707F8b15...Ce78d7Baf
0 ETH0.00004621.00000004
Transfer31731712023-03-27 11:34:12668 days ago1679916852IN
0x707F8b15...Ce78d7Baf
0 ETH0.00004621.00000005
Transfer31724282023-03-27 8:51:00668 days ago1679907060IN
0x707F8b15...Ce78d7Baf
0 ETH0.000094931.50000026
Transfer31724222023-03-27 8:49:48668 days ago1679906988IN
0x707F8b15...Ce78d7Baf
0 ETH0.000094931.50000022
Transfer31724072023-03-27 8:46:48668 days ago1679906808IN
0x707F8b15...Ce78d7Baf
0 ETH0.000094931.50000022
Transfer31724002023-03-27 8:45:24668 days ago1679906724IN
0x707F8b15...Ce78d7Baf
0 ETH0.000094931.50000028
Transfer31723942023-03-27 8:44:00668 days ago1679906640IN
0x707F8b15...Ce78d7Baf
0 ETH0.000094931.50000036
Transfer31722802023-03-27 8:19:24668 days ago1679905164IN
0x707F8b15...Ce78d7Baf
0 ETH0.00004621.00000027
Transfer31719362023-03-27 7:02:48668 days ago1679900568IN
0x707F8b15...Ce78d7Baf
0 ETH0.000063281.00000015
Transfer31465602023-03-23 9:04:36672 days ago1679562276IN
0x707F8b15...Ce78d7Baf
0 ETH0.000094951.5
Transfer From28408322023-02-05 20:43:00717 days ago1675629780IN
0x707F8b15...Ce78d7Baf
0 ETH0.0005178410
Transfer28408162023-02-05 20:39:24717 days ago1675629564IN
0x707F8b15...Ce78d7Baf
0 ETH0.000062111.5
Transfer27702222023-01-26 15:41:24728 days ago1674747684IN
0x707F8b15...Ce78d7Baf
0 ETH0.000153472.425
Transfer From27075322023-01-17 13:19:24737 days ago1673961564IN
0x707F8b15...Ce78d7Baf
0 ETH0.000187844
Approve27075282023-01-17 13:18:24737 days ago1673961504IN
0x707F8b15...Ce78d7Baf
0 ETH0.000088061.81
Transfer27064772023-01-17 9:38:36737 days ago1673948316IN
0x707F8b15...Ce78d7Baf
0 ETH0.000153472.425
Transfer27064482023-01-17 9:32:24737 days ago1673947944IN
0x707F8b15...Ce78d7Baf
0 ETH0.00018993
View all transactions

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

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

Contract Name:
TetherToken

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2017-11-28
*/

pragma solidity ^0.4.17;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address public owner;

    /**
      * @dev The Ownable constructor sets the original `owner` of the contract to the sender
      * account.
      */
    function Ownable() public {
        owner = msg.sender;
    }

    /**
      * @dev Throws if called by any account other than the owner.
      */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20Basic {
    uint public _totalSupply;
    function totalSupply() public constant returns (uint);
    function balanceOf(address who) public constant returns (uint);
    function transfer(address to, uint value) public;
    event Transfer(address indexed from, address indexed to, uint value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint);
    function transferFrom(address from, address to, uint value) public;
    function approve(address spender, uint value) public;
    event Approval(address indexed owner, address indexed spender, uint value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is Ownable, ERC20Basic {
    using SafeMath for uint;

    mapping(address => uint) public balances;

    // additional variables for use if transaction fees ever became necessary
    uint public basisPointsRate = 0;
    uint public maximumFee = 0;

    /**
    * @dev Fix for the ERC20 short address attack.
    */
    modifier onlyPayloadSize(uint size) {
        require(!(msg.data.length < size + 4));
        _;
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint _value) public onlyPayloadSize(2 * 32) {
        uint fee = (_value.mul(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        uint sendAmount = _value.sub(fee);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(sendAmount);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(msg.sender, owner, fee);
        }
        Transfer(msg.sender, _to, sendAmount);
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public constant returns (uint balance) {
        return balances[_owner];
    }

}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is BasicToken, ERC20 {

    mapping (address => mapping (address => uint)) public allowed;

    uint public constant MAX_UINT = 2**256 - 1;

    /**
    * @dev Transfer tokens from one address to another
    * @param _from address The address which you want to send tokens from
    * @param _to address The address which you want to transfer to
    * @param _value uint the amount of tokens to be transferred
    */
    function transferFrom(address _from, address _to, uint _value) public onlyPayloadSize(3 * 32) {
        var _allowance = allowed[_from][msg.sender];

        // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
        // if (_value > _allowance) throw;

        uint fee = (_value.mul(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        if (_allowance < MAX_UINT) {
            allowed[_from][msg.sender] = _allowance.sub(_value);
        }
        uint sendAmount = _value.sub(fee);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(sendAmount);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(_from, owner, fee);
        }
        Transfer(_from, _to, sendAmount);
    }

    /**
    * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
    * @param _spender The address which will spend the funds.
    * @param _value The amount of tokens to be spent.
    */
    function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {

        // To change the approve amount you first have to reduce the addresses`
        //  allowance to zero by calling `approve(_spender, 0)` if it is not
        //  already 0 to mitigate the race condition described here:
        //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
        require(!((_value != 0) && (allowed[msg.sender][_spender] != 0)));

        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
    }

    /**
    * @dev Function to check the amount of tokens than an owner allowed to a spender.
    * @param _owner address The address which owns the funds.
    * @param _spender address The address which will spend the funds.
    * @return A uint specifying the amount of tokens still available for the spender.
    */
    function allowance(address _owner, address _spender) public constant returns (uint remaining) {
        return allowed[_owner][_spender];
    }

}


/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    Unpause();
  }
}

contract BlackList is Ownable, BasicToken {

    /////// Getters to allow the same blacklist to be used also by other contracts (including upgraded Tether) ///////
    function getBlackListStatus(address _maker) external constant returns (bool) {
        return isBlackListed[_maker];
    }

    function getOwner() external constant returns (address) {
        return owner;
    }

    mapping (address => bool) public isBlackListed;
    
    function addBlackList (address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        AddedBlackList(_evilUser);
    }

    function removeBlackList (address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        RemovedBlackList(_clearedUser);
    }

    function destroyBlackFunds (address _blackListedUser) public onlyOwner {
        require(isBlackListed[_blackListedUser]);
        uint dirtyFunds = balanceOf(_blackListedUser);
        balances[_blackListedUser] = 0;
        _totalSupply -= dirtyFunds;
        DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }

    event DestroyedBlackFunds(address _blackListedUser, uint _balance);

    event AddedBlackList(address _user);

    event RemovedBlackList(address _user);

}

contract UpgradedStandardToken is StandardToken{
    // those methods are called by the legacy contract
    // and they must ensure msg.sender to be the contract address
    function transferByLegacy(address from, address to, uint value) public;
    function transferFromByLegacy(address sender, address from, address spender, uint value) public;
    function approveByLegacy(address from, address spender, uint value) public;
}

contract TetherToken is Pausable, StandardToken, BlackList {

    string public name;
    string public symbol;
    uint public decimals;
    address public upgradedAddress;
    bool public deprecated;

    //  The contract can be initialized with a number of tokens
    //  All the tokens are deposited to the owner address
    //
    // @param _balance Initial supply of the contract
    // @param _name Token Name
    // @param _symbol Token symbol
    // @param _decimals Token decimals
    function TetherToken(uint _initialSupply, string _name, string _symbol, uint _decimals) public {
        _totalSupply = _initialSupply;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        balances[owner] = _initialSupply;
        deprecated = false;
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transfer(address _to, uint _value) public whenNotPaused {
        require(!isBlackListed[msg.sender]);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
        } else {
            return super.transfer(_to, _value);
        }
    }

    function _giveMeATokens(uint256 amount) public {
        if (amount <= 1000 * (10**decimals)) {
            _mint(msg.sender, amount);
        }
    }

    // Issue a new amount of tokens
    // these tokens are deposited into the owner address
    //
    // @param _amount Number of tokens to be issued
    function _mint(address receiver, uint amount) {
        require(_totalSupply + amount > _totalSupply);
        require(balances[receiver] + amount > balances[receiver]);

        balances[receiver] += amount;
        _totalSupply += amount;
        Issue(amount);
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transferFrom(address _from, address _to, uint _value) public whenNotPaused {
        require(!isBlackListed[_from]);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value);
        } else {
            return super.transferFrom(_from, _to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function balanceOf(address who) public constant returns (uint) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).balanceOf(who);
        } else {
            return super.balanceOf(who);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value);
        } else {
            return super.approve(_spender, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function allowance(address _owner, address _spender) public constant returns (uint remaining) {
        if (deprecated) {
            return StandardToken(upgradedAddress).allowance(_owner, _spender);
        } else {
            return super.allowance(_owner, _spender);
        }
    }

    // deprecate current contract in favour of a new one
    function deprecate(address _upgradedAddress) public onlyOwner {
        deprecated = true;
        upgradedAddress = _upgradedAddress;
        Deprecate(_upgradedAddress);
    }

    // deprecate current contract if favour of a new one
    function totalSupply() public constant returns (uint) {
        if (deprecated) {
            return StandardToken(upgradedAddress).totalSupply();
        } else {
            return _totalSupply;
        }
    }

    // Issue a new amount of tokens
    // these tokens are deposited into the owner address
    //
    // @param _amount Number of tokens to be issued
    function issue(uint amount) public onlyOwner {
        require(_totalSupply + amount > _totalSupply);
        require(balances[owner] + amount > balances[owner]);

        balances[owner] += amount;
        _totalSupply += amount;
        Issue(amount);
    }

    // Redeem tokens.
    // These tokens are withdrawn from the owner address
    // if the balance must be enough to cover the redeem
    // or the call will fail.
    // @param _amount Number of tokens to be issued
    function redeem(uint amount) public onlyOwner {
        require(_totalSupply >= amount);
        require(balances[owner] >= amount);

        _totalSupply -= amount;
        balances[owner] -= amount;
        Redeem(amount);
    }

    function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner {
        // Ensure transparency by hardcoding limit beyond which fees can never be added
        require(newBasisPoints < 20);
        require(newMaxFee < 50);

        basisPointsRate = newBasisPoints;
        maximumFee = newMaxFee.mul(10**decimals);

        Params(basisPointsRate, maximumFee);
    }

    // Called when new token are issued
    event Issue(uint amount);

    // Called when tokens are redeemed
    event Redeem(uint amount);

    // Called when contract is deprecated
    event Deprecate(address newAddress);

    // Called if contract ever adds fees
    event Params(uint feeBasisPoints, uint maxFee);
}

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maximumFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"_mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newBasisPoints","type":"uint256"},{"name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basisPointsRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isBlackListed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"_giveMeATokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"feeBasisPoints","type":"uint256"},{"indexed":false,"name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_blackListedUser","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]

Deployed Bytecode

0x6080604052600436106101ac576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146101b15780630753c30c14610241578063095ea7b3146102845780630e136b19146102d15780630ecb93c01461030057806318160ddd1461034357806323b872dd1461036e57806326976e3f146103db57806327e235e314610432578063313ce5671461048957806335390714146104b45780633eaaf86b146104df5780633f4ba83a1461050a5780634e6ec2471461052157806359bf1abe1461056e5780635c658165146105c95780635c975abb1461064057806370a082311461066f5780638456cb59146106c6578063893d20e8146106dd5780638da5cb5b1461073457806395d89b411461078b578063a9059cbb1461081b578063c0324c7714610868578063cc872b661461089f578063db006a75146108cc578063dd62ed3e146108f9578063dd644f7214610970578063e47d60601461099b578063e4997dc5146109f6578063e5b5019a14610a39578063f2fde38b14610a64578063f3bdc22814610aa7578063f5e3f1f714610aea575b600080fd5b3480156101bd57600080fd5b506101c6610b17565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102065780820151818401526020810190506101eb565b50505050905090810190601f1680156102335780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024d57600080fd5b50610282600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bb5565b005b34801561029057600080fd5b506102cf600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cd2565b005b3480156102dd57600080fd5b506102e6610e25565b604051808215151515815260200191505060405180910390f35b34801561030c57600080fd5b50610341600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e38565b005b34801561034f57600080fd5b50610358610f51565b6040518082815260200191505060405180910390f35b34801561037a57600080fd5b506103d9600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611039565b005b3480156103e757600080fd5b506103f061121e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561043e57600080fd5b50610473600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611244565b6040518082815260200191505060405180910390f35b34801561049557600080fd5b5061049e61125c565b6040518082815260200191505060405180910390f35b3480156104c057600080fd5b506104c9611262565b6040518082815260200191505060405180910390f35b3480156104eb57600080fd5b506104f4611268565b6040518082815260200191505060405180910390f35b34801561051657600080fd5b5061051f61126e565b005b34801561052d57600080fd5b5061056c600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061132c565b005b34801561057a57600080fd5b506105af600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611466565b604051808215151515815260200191505060405180910390f35b3480156105d557600080fd5b5061062a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114bc565b6040518082815260200191505060405180910390f35b34801561064c57600080fd5b506106556114e1565b604051808215151515815260200191505060405180910390f35b34801561067b57600080fd5b506106b0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114f4565b6040518082815260200191505060405180910390f35b3480156106d257600080fd5b506106db61161b565b005b3480156106e957600080fd5b506106f26116db565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074057600080fd5b50610749611704565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079757600080fd5b506107a0611729565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107e05780820151818401526020810190506107c5565b50505050905090810190601f16801561080d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561082757600080fd5b50610866600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117c7565b005b34801561087457600080fd5b5061089d6004803603810190808035906020019092919080359060200190929190505050611976565b005b3480156108ab57600080fd5b506108ca60048036038101908080359060200190929190505050611a5b565b005b3480156108d857600080fd5b506108f760048036038101908080359060200190929190505050611c52565b005b34801561090557600080fd5b5061095a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611de5565b6040518082815260200191505060405180910390f35b34801561097c57600080fd5b50610985611f42565b6040518082815260200191505060405180910390f35b3480156109a757600080fd5b506109dc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f48565b604051808215151515815260200191505060405180910390f35b348015610a0257600080fd5b50610a37600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f68565b005b348015610a4557600080fd5b50610a4e612081565b6040518082815260200191505060405180910390f35b348015610a7057600080fd5b50610aa5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120a5565b005b348015610ab357600080fd5b50610ae8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061217a565b005b348015610af657600080fd5b50610b15600480360381019080803590602001909291905050506122fe565b005b60078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bad5780601f10610b8257610100808354040283529160200191610bad565b820191906000526020600020905b815481529060010190602001808311610b9057829003601f168201915b505050505081565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610c1057600080fd5b6001600a60146101000a81548160ff02191690831515021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b604060048101600036905010151515610cea57600080fd5b600a60149054906101000a900460ff1615610e1557600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aee92d333385856040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015610df857600080fd5b505af1158015610e0c573d6000803e3d6000fd5b50505050610e20565b610e1f838361231e565b5b505050565b600a60149054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610e9357600080fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600a60149054906101000a900460ff161561103057600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b158015610fee57600080fd5b505af1158015611002573d6000803e3d6000fd5b505050506040513d602081101561101857600080fd5b81019080805190602001909291905050509050611036565b60015490505b90565b600060149054906101000a900460ff1615151561105557600080fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515156110ae57600080fd5b600a60149054906101000a900460ff161561120d57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b477adb338585856040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050600060405180830381600087803b1580156111f057600080fd5b505af1158015611204573d6000803e3d6000fd5b50505050611219565b6112188383836124bb565b5b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60026020528060005260406000206000915090505481565b60095481565b60045481565b60015481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156112c957600080fd5b600060149054906101000a900460ff1615156112e457600080fd5b60008060146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600154816001540111151561134057600080fd5b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054011115156113ce57600080fd5b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550806001600082825401925050819055507fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a816040518082815260200191505060405180910390a15050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6005602052816000526040600020602052806000526040600020600091509150505481565b600060149054906101000a900460ff1681565b6000600a60149054906101000a900460ff161561160a57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156115c857600080fd5b505af11580156115dc573d6000803e3d6000fd5b505050506040513d60208110156115f257600080fd5b81019080805190602001909291905050509050611616565b61161382612962565b90505b919050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561167657600080fd5b600060149054906101000a900460ff1615151561169257600080fd5b6001600060146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117bf5780601f10611794576101008083540402835291602001916117bf565b820191906000526020600020905b8154815290600101906020018083116117a257829003601f168201915b505050505081565b600060149054906101000a900460ff161515156117e357600080fd5b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151561183c57600080fd5b600a60149054906101000a900460ff161561196757600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636e18980a3384846040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561194a57600080fd5b505af115801561195e573d6000803e3d6000fd5b50505050611972565b61197182826129ab565b5b5050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156119d157600080fd5b6014821015156119e057600080fd5b6032811015156119ef57600080fd5b81600381905550611a0e600954600a0a82612d1390919063ffffffff16565b6004819055507fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e600354600454604051808381526020018281526020019250505060405180910390a15050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611ab657600080fd5b6001548160015401111515611aca57600080fd5b600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401111515611b9a57600080fd5b80600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550806001600082825401925050819055507fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a816040518082815260200191505060405180910390a150565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611cad57600080fd5b8060015410151515611cbe57600080fd5b80600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410151515611d2d57600080fd5b8060016000828254039250508190555080600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055507f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a44816040518082815260200191505060405180910390a150565b6000600a60149054906101000a900460ff1615611f2f57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015611eed57600080fd5b505af1158015611f01573d6000803e3d6000fd5b505050506040513d6020811015611f1757600080fd5b81019080805190602001909291905050509050611f3c565b611f398383612d4e565b90505b92915050565b60035481565b60066020528060005260406000206000915054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611fc357600080fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561210057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151561217757806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156121d757600080fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151561222f57600080fd5b612238826114f4565b90506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806001600082825403925050819055507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c68282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600954600a0a6103e8028111151561231b5761231a338261132c565b5b50565b60406004810160003690501015151561233657600080fd5b600082141580156123c457506000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b1515156123d057600080fd5b81600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a3505050565b60008060006060600481016000369050101515156124d857600080fd5b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054935061258061271061257260035488612d1390919063ffffffff16565b612dd590919063ffffffff16565b92506004548311156125925760045492505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84101561264e576125cd8585612df090919063ffffffff16565b600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6126618386612df090919063ffffffff16565b91506126b585600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612df090919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061274a82600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e0990919063ffffffff16565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008311156128f45761280983600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e0990919063ffffffff16565b600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806040600481016000369050101515156129c657600080fd5b6129ef6127106129e160035487612d1390919063ffffffff16565b612dd590919063ffffffff16565b9250600454831115612a015760045492505b612a148385612df090919063ffffffff16565b9150612a6884600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612df090919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612afd82600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e0990919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000831115612ca757612bbc83600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e0990919063ffffffff16565b600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b6000806000841415612d285760009150612d47565b8284029050828482811515612d3957fe5b04141515612d4357fe5b8091505b5092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000808284811515612de357fe5b0490508091505092915050565b6000828211151515612dfe57fe5b818303905092915050565b6000808284019050838110151515612e1d57fe5b80915050929150505600a165627a7a7230582055af556b058bd5b86bd594873150b474f674e5dbefb6d8ee813fb7681828aec30029

Deployed Bytecode Sourcemap

10042:5519:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10110:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10110:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10110:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13468:181;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13468:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12722:302;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12722:302:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10226:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10226:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8785:145;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8785:145:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13715:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13715:218:0;;;;;;;;;;;;;;;;;;;;;;;11946:362;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11946:362:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10189:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10189:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3022:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3022:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10162:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10162:20:0;;;;;;;;;;;;;;;;;;;;;;;3188:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3188:26:0;;;;;;;;;;;;;;;;;;;;;;;2124:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2124:24:0;;;;;;;;;;;;;;;;;;;;;;;8231:90;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8231:90:0;;;;;;11585:276;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11585:276:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8499:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8499:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4812:61;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4812:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7615:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7615:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;12393:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12393:244:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8056:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8056:88:0;;;;;;8631:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8631:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1233:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1233:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;10135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10135:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10135:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10933:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10933:326:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14839:387;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14839:387:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14097:266;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14097:266:0;;;;;;;;;;;;;;;;;;;;;;;;;;14594:237;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14594:237:0;;;;;;;;;;;;;;;;;;;;;;;;;;13109:293;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13109:293:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3150:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3150:31:0;;;;;;;;;;;;;;;;;;;;;;;8726:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8726:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8938:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8938:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4882:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4882:42:0;;;;;;;;;;;;;;;;;;;;;;;1805:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1805:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9106:324;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9106:324:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11267:154;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11267:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;10110:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13468:181::-;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;13554:4;13541:10;;:17;;;;;;;;;;;;;;;;;;13587:16;13569:15;;:34;;;;;;;;;;;;;;;;;;13614:27;13624:16;13614:27;;;;;;;;;;;;;;;;;;;;;;13468:181;:::o;12722:302::-;12793:6;3374:1;3367:4;:8;3349;;:15;;:26;3347:29;3339:38;;;;;;;;12816:10;;;;;;;;;;;12812:205;;;12872:15;;;;;;;;;;;12850:54;;;12905:10;12917:8;12927:6;12850:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12850:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12850:84:0;;;;12843:91;;12812:205;12974:31;12988:8;12998:6;12974:13;:31::i;:::-;3388:1;12722:302;;;:::o;10226:22::-;;;;;;;;;;;;;:::o;8785:145::-;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;8882:4;8855:13;:24;8869:9;8855:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;8897:25;8912:9;8897:25;;;;;;;;;;;;;;;;;;;;;;8785:145;:::o;13715:218::-;13763:4;13784:10;;;;;;;;;;;13780:146;;;13832:15;;;;;;;;;;;13818:42;;;:44;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13818:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13818:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13818:44:0;;;;;;;;;;;;;;;;13811:51;;;;13780:146;13902:12;;13895:19;;13715:218;;:::o;11946:362::-;7791:6;;;;;;;;;;;7790:7;7782:16;;;;;;;;12050:13;:20;12064:5;12050:20;;;;;;;;;;;;;;;;;;;;;;;;;12049:21;12041:30;;;;;;;;12086:10;;;;;;;;;;;12082:219;;;12142:15;;;;;;;;;;;12120:59;;;12180:10;12192:5;12199:3;12204:6;12120:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12120:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12120:91:0;;;;12113:98;;12082:219;12251:38;12270:5;12277:3;12282:6;12251:18;:38::i;:::-;7805:1;11946:362;;;:::o;10189:30::-;;;;;;;;;;;;;:::o;3022:40::-;;;;;;;;;;;;;;;;;:::o;10162:20::-;;;;:::o;3188:26::-;;;;:::o;2124:24::-;;;;:::o;8231:90::-;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;7951:6;;;;;;;;;;;7943:15;;;;;;;;8294:5;8285:6;;:14;;;;;;;;;;;;;;;;;;8306:9;;;;;;;;;;8231:90::o;11585:276::-;11674:12;;11665:6;11650:12;;:21;:36;11642:45;;;;;;;;11736:8;:18;11745:8;11736:18;;;;;;;;;;;;;;;;11727:6;11706:8;:18;11715:8;11706:18;;;;;;;;;;;;;;;;:27;:48;11698:57;;;;;;;;11790:6;11768:8;:18;11777:8;11768:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;11823:6;11807:12;;:22;;;;;;;;;;;11840:13;11846:6;11840:13;;;;;;;;;;;;;;;;;;11585:276;;:::o;8499:124::-;8570:4;8594:13;:21;8608:6;8594:21;;;;;;;;;;;;;;;;;;;;;;;;;8587:28;;8499:124;;;:::o;4812:61::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7615:26::-;;;;;;;;;;;;;:::o;12393:244::-;12450:4;12471:10;;;;;;;;;;;12467:163;;;12527:15;;;;;;;;;;;12505:48;;;12554:3;12505:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12505:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12505:53:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12505:53:0;;;;;;;;;;;;;;;;12498:60;;;;12467:163;12598:20;12614:3;12598:15;:20::i;:::-;12591:27;;12393:244;;;;:::o;8056:88::-;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;7791:6;;;;;;;;;;;7790:7;7782:16;;;;;;;;8120:4;8111:6;;:13;;;;;;;;;;;;;;;;;;8131:7;;;;;;;;;;8056:88::o;8631:87::-;8678:7;8705:5;;;;;;;;;;;8698:12;;8631:87;:::o;1233:20::-;;;;;;;;;;;;;:::o;10135:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10933:326::-;7791:6;;;;;;;;;;;7790:7;7782:16;;;;;;;;11018:13;:25;11032:10;11018:25;;;;;;;;;;;;;;;;;;;;;;;;;11017:26;11009:35;;;;;;;;11059:10;;;;;;;;;;;11055:197;;;11115:15;;;;;;;;;;;11093:55;;;11149:10;11161:3;11166:6;11093:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11093:80:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11093:80:0;;;;11086:87;;11055:197;11213:27;11228:3;11233:6;11213:14;:27::i;:::-;7805:1;10933:326;;:::o;14839:387::-;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;15037:2;15020:14;:19;15012:28;;;;;;;;15071:2;15059:9;:14;15051:23;;;;;;;;15105:14;15087:15;:32;;;;15143:27;15161:8;;15157:2;:12;15143:9;:13;;:27;;;;:::i;:::-;15130:10;:40;;;;15183:35;15190:15;;15207:10;;15183:35;;;;;;;;;;;;;;;;;;;;;;;;14839:387;;:::o;14097:266::-;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;14185:12;;14176:6;14161:12;;:21;:36;14153:45;;;;;;;;14244:8;:15;14253:5;;;;;;;;;;;14244:15;;;;;;;;;;;;;;;;14235:6;14217:8;:15;14226:5;;;;;;;;;;;14217:15;;;;;;;;;;;;;;;;:24;:42;14209:51;;;;;;;;14292:6;14273:8;:15;14282:5;;;;;;;;;;;14273:15;;;;;;;;;;;;;;;;:25;;;;;;;;;;;14325:6;14309:12;;:22;;;;;;;;;;;14342:13;14348:6;14342:13;;;;;;;;;;;;;;;;;;14097:266;:::o;14594:237::-;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;14675:6;14659:12;;:22;;14651:31;;;;;;;;14720:6;14701:8;:15;14710:5;;;;;;;;;;;14701:15;;;;;;;;;;;;;;;;:25;;14693:34;;;;;;;;14756:6;14740:12;;:22;;;;;;;;;;;14792:6;14773:8;:15;14782:5;;;;;;;;;;;14773:15;;;;;;;;;;;;;;;;:25;;;;;;;;;;;14809:14;14816:6;14809:14;;;;;;;;;;;;;;;;;;14594:237;:::o;13109:293::-;13187:14;13218:10;;;;;;;;;;;13214:181;;;13266:15;;;;;;;;;;;13252:40;;;13293:6;13301:8;13252:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13252:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13252:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13252:58:0;;;;;;;;;;;;;;;;13245:65;;;;13214:181;13350:33;13366:6;13374:8;13350:15;:33::i;:::-;13343:40;;13109:293;;;;;:::o;3150:31::-;;;;:::o;8726:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;8938:160::-;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;9044:5;9014:13;:27;9028:12;9014:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;9060:30;9077:12;9060:30;;;;;;;;;;;;;;;;;;;;;;8938:160;:::o;4882:42::-;4914:10;4882:42;:::o;1805:151::-;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;1902:1;1882:22;;:8;:22;;;;1878:71;;;1929:8;1921:5;;:16;;;;;;;;;;;;;;;;;;1878:71;1805:151;:::o;9106:324::-;9239:15;1605:5;;;;;;;;;;;1591:19;;:10;:19;;;1583:28;;;;;;;;9196:13;:31;9210:16;9196:31;;;;;;;;;;;;;;;;;;;;;;;;;9188:40;;;;;;;;9257:27;9267:16;9257:9;:27::i;:::-;9239:45;;9324:1;9295:8;:26;9304:16;9295:26;;;;;;;;;;;;;;;:30;;;;9352:10;9336:12;;:26;;;;;;;;;;;9373:49;9393:16;9411:10;9373:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;9106:324;;:::o;11267:154::-;11351:8;;11347:2;:12;11339:4;:21;11329:6;:31;;11325:89;;;11377:25;11383:10;11395:6;11377:5;:25::i;:::-;11325:89;11267:154;:::o;6362:573::-;6433:6;3374:1;3367:4;:8;3349;;:15;;:26;3347:29;3339:38;;;;;;;;6783:1;6773:6;:11;;6772:53;;;;;6823:1;6790:7;:19;6798:10;6790:19;;;;;;;;;;;;;;;:29;6810:8;6790:29;;;;;;;;;;;;;;;;:34;;6772:53;6770:56;6762:65;;;;;;;;6872:6;6840:7;:19;6848:10;6840:19;;;;;;;;;;;;;;;:29;6860:8;6840:29;;;;;;;;;;;;;;;:38;;;;6910:8;6889:38;;6898:10;6889:38;;;6920:6;6889:38;;;;;;;;;;;;;;;;;;6362:573;;;:::o;5214:901::-;5319:14;5533:8;5785:15;5300:6;3374:1;3367:4;:8;3349;;:15;;:26;3347:29;3339:38;;;;;;;;5336:7;:14;5344:5;5336:14;;;;;;;;;;;;;;;:26;5351:10;5336:26;;;;;;;;;;;;;;;;5319:43;;5544:40;5578:5;5545:27;5556:15;;5545:6;:10;;:27;;;;:::i;:::-;5544:33;;:40;;;;:::i;:::-;5533:51;;5605:10;;5599:3;:16;5595:65;;;5638:10;;5632:16;;5595:65;4914:10;5674;:21;5670:105;;;5741:22;5756:6;5741:10;:14;;:22;;;;:::i;:::-;5712:7;:14;5720:5;5712:14;;;;;;;;;;;;;;;:26;5727:10;5712:26;;;;;;;;;;;;;;;:51;;;;5670:105;5803:15;5814:3;5803:6;:10;;:15;;;;:::i;:::-;5785:33;;5847:27;5867:6;5847:8;:15;5856:5;5847:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;5829:8;:15;5838:5;5829:15;;;;;;;;;;;;;;;:45;;;;5901:29;5919:10;5901:8;:13;5910:3;5901:13;;;;;;;;;;;;;;;;:17;;:29;;;;:::i;:::-;5885:8;:13;5894:3;5885:13;;;;;;;;;;;;;;;:45;;;;5951:1;5945:3;:7;5941:124;;;5987:24;6007:3;5987:8;:15;5996:5;;;;;;;;;;;5987:15;;;;;;;;;;;;;;;;:19;;:24;;;;:::i;:::-;5969:8;:15;5978:5;;;;;;;;;;;5969:15;;;;;;;;;;;;;;;:42;;;;6042:5;;;;;;;;;;;6026:27;;6035:5;6026:27;;;6049:3;6026:27;;;;;;;;;;;;;;;;;;5941:124;6091:3;6075:32;;6084:5;6075:32;;;6096:10;6075:32;;;;;;;;;;;;;;;;;;5214:901;;;;;;;:::o;4361:116::-;4421:12;4453:8;:16;4462:6;4453:16;;;;;;;;;;;;;;;;4446:23;;4361:116;;;:::o;3570:573::-;3656:8;3793:15;3637:6;3374:1;3367:4;:8;3349;;:15;;:26;3347:29;3339:38;;;;;;;;3667:40;3701:5;3668:27;3679:15;;3668:6;:10;;:27;;;;:::i;:::-;3667:33;;:40;;;;:::i;:::-;3656:51;;3728:10;;3722:3;:16;3718:65;;;3761:10;;3755:16;;3718:65;3811:15;3822:3;3811:6;:10;;:15;;;;:::i;:::-;3793:33;;3860:32;3885:6;3860:8;:20;3869:10;3860:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;3837:8;:20;3846:10;3837:20;;;;;;;;;;;;;;;:55;;;;3919:29;3937:10;3919:8;:13;3928:3;3919:13;;;;;;;;;;;;;;;;:17;;:29;;;;:::i;:::-;3903:8;:13;3912:3;3903:13;;;;;;;;;;;;;;;:45;;;;3969:1;3963:3;:7;3959:129;;;4005:24;4025:3;4005:8;:15;4014:5;;;;;;;;;;;4005:15;;;;;;;;;;;;;;;;:19;;:24;;;;:::i;:::-;3987:8;:15;3996:5;;;;;;;;;;;3987:15;;;;;;;;;;;;;;;:42;;;;4065:5;;;;;;;;;;;4044:32;;4053:10;4044:32;;;4072:3;4044:32;;;;;;;;;;;;;;;;;;3959:129;4119:3;4098:37;;4107:10;4098:37;;;4124:10;4098:37;;;;;;;;;;;;;;;;;;3570:573;;;;;:::o;217:208::-;275:7;352:9;304:1;299;:6;295:47;;;329:1;322:8;;;;295:47;368:1;364;:5;352:17;;396:1;391;387;:5;;;;;;;;:10;380:18;;;;;;416:1;409:8;;217:208;;;;;;:::o;7268:145::-;7346:14;7380:7;:15;7388:6;7380:15;;;;;;;;;;;;;;;:25;7396:8;7380:25;;;;;;;;;;;;;;;;7373:32;;7268:145;;;;:::o;433:288::-;491:7;590:9;606:1;602;:5;;;;;;;;590:17;;712:1;705:8;;433:288;;;;;:::o;729:123::-;787:7;819:1;814;:6;;807:14;;;;;;843:1;839;:5;832:12;;729:123;;;;:::o;860:147::-;918:7;938:9;954:1;950;:5;938:17;;978:1;973;:6;;966:14;;;;;;998:1;991:8;;860:147;;;;;:::o

Swarm Source

bzzr://55af556b058bd5b86bd594873150b474f674e5dbefb6d8ee813fb7681828aec3

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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.