ETH Price: $1,950.08 (-1.55%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve242682442026-01-19 10:33:1141 days ago1768818791IN
Fake_Phishing217547
0 ETH0.000003110.06155883
Transfer219945852025-03-07 11:04:35359 days ago1741345475IN
Fake_Phishing217547
0 ETH0.000106551.8265831
Approve219888792025-03-06 15:55:35360 days ago1741276535IN
Fake_Phishing217547
0 ETH0.000189533.74951154
Approve128839742021-07-23 17:34:171682 days ago1627061657IN
Fake_Phishing217547
0 ETH0.0013664427
Approve128834072021-07-23 15:31:261682 days ago1627054286IN
Fake_Phishing217547
0 ETH0.0015688731
Approve128829792021-07-23 13:46:521682 days ago1627048012IN
Fake_Phishing217547
0 ETH0.0007591315.00000145

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TetherToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-04-16
*/

/**
 *Submitted for verification at Etherscan.io on 2020-12-19
*/

/**
 *Submitted for verification at Etherscan.io on 2018-01-01
*/

pragma solidity ^0.4.18;

// Deployed will@ethfinex.com 31/12/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 ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public constant returns (uint);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

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

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

  mapping(address => uint256) balances;

  /**
  * @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, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 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 on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @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 uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * 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
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that 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 uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }

  /**
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}


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

/**
 * @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;


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


  /**
   * @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 {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

contract StandardTokenWithFees is StandardToken, Ownable {

  // Additional variables for use if transaction fees ever became necessary
  uint256 public basisPointsRate = 0;
  uint256 public maximumFee = 0;
  uint256 constant MAX_SETTABLE_BASIS_POINTS = 20;
  uint256 constant MAX_SETTABLE_FEE = 50;

  string public site;
  string public name;
  string public symbol;
  uint8 public decimals;
  uint public _totalSupply;

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

  function calcFee(uint _value) constant returns (uint) {
    uint fee = (_value.mul(basisPointsRate)).div(10000);
    if (fee > maximumFee) {
        fee = maximumFee;
    }
    return fee;
  }

  function transfer(address _to, uint _value) public returns (bool) {
    uint fee = calcFee(_value);
    uint sendAmount = _value.sub(fee);

    super.transfer(_to, sendAmount);
    if (fee > 0) {
      super.transfer(owner, fee);
    }
  }

  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    uint fee = calcFee(_value);
    uint sendAmount = _value.sub(fee);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(sendAmount);
    if (allowed[_from][msg.sender] < MAX_UINT) {
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    }
    Transfer(_from, _to, sendAmount);
    if (fee > 0) {
      balances[owner] = balances[owner].add(fee);
      Transfer(_from, owner, fee);
    }
    return true;
  }

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

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

      Params(basisPointsRate, maximumFee);
  }

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

}


/**
 * @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 {

    /////// Getter 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];
    }

    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);
    }

    event AddedBlackList(address indexed _user);

    event RemovedBlackList(address indexed _user);

}

contract TetherToken is Pausable, StandardTokenWithFees, BlackList {

    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 _site,string _name, string _symbol, uint8 _decimals) public {
        _totalSupply = _initialSupply;
        site = _site;
        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 returns (bool) {
        require(!isBlackListed[msg.sender]);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
        } else {
            return super.transfer(_to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transferFrom(address _from, address _to, uint _value) public whenNotPaused returns (bool) {
        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);
        }
    }

    // Allow checks of balance at time of deprecation
    function oldBalanceOf(address who) public constant returns (uint) {
        if (deprecated) {
            return super.balanceOf(who);
        }
    }

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

    function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).increaseApprovalByLegacy(msg.sender, _spender, _addedValue);
        } else {
            return super.increaseApproval(_spender, _addedValue);
        }
    }

    function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).decreaseApprovalByLegacy(msg.sender, _spender, _subtractedValue);
        } else {
            return super.decreaseApproval(_spender, _subtractedValue);
        }
    }

    // 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 {
        require(_upgradedAddress != address(0));
        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 {
        balances[owner] = balances[owner].add(amount);
        _totalSupply = _totalSupply.add(amount);
        Issue(amount);
        Transfer(address(0), owner, 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 {
        _totalSupply = _totalSupply.sub(amount);
        balances[owner] = balances[owner].sub(amount);
        Redeem(amount);
        Transfer(owner, address(0), amount);
    }

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

    event DestroyedBlackFunds(address indexed _blackListedUser, uint _balance);

    // 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);

}

Contract Security Audit

Contract ABI

API
[{"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":[{"name":"","type":"bool"}],"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":[{"name":"","type":"bool"}],"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":"decimals","outputs":[{"name":"","type":"uint8"}],"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":true,"inputs":[{"name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_value","type":"uint256"}],"name":"calcFee","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":"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":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"oldBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"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":"site","outputs":[{"name":"","type":"string"}],"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"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_site","type":"string"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_blackListedUser","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"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":true,"name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"feeBasisPoints","type":"uint256"},{"indexed":false,"name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"}]

60606040526002805460a060020a60ff02191690556000600381905560045534156200002a57600080fd5b6040516200243b3803806200243b833981016040528080519190602001805182019190602001805182019190602001805182019190602001805160028054600160a060020a03191633600160a060020a031617905560098790559150600590508480516200009d92916020019062000115565b506006838051620000b392916020019062000115565b506007828051620000c992916020019062000115565b506008805460ff191660ff929092169190911790555050600254600160a060020a031660009081526020819052604090209190915550600b805460a060020a60ff0219169055620001ba565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b620001b791905b80821115620001965760008155600101620001a1565b90565b61227180620001ca6000396000f3006060604052600436106101ab5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101b05780630753c30c1461023a578063095ea7b3146102685780630e136b19146102ab5780630ecb93c0146102be57806318160ddd146102ea57806323b872dd1461030f57806326976e3f14610344578063313ce5671461038057806335390714146103a95780633eaaf86b146103bc5780633f4ba83a146103cf57806359bf1abe146103e25780635c975abb1461040e578063661884631461042157806370a082311461045057806375dc7d8c1461047c5780638456cb59146104925780638da5cb5b146104a557806395d89b41146104b8578063a9059cbb146104cb578063b7a3446c146104fa578063c0324c7714610526578063cc872b661461053f578063d73dd62314610555578063db006a7514610584578063dd62ed3e1461059a578063dd644f72146105cc578063e0d370ac146105df578063e47d6060146105f2578063e4997dc51461061e578063e5b5019a1461064a578063f2fde38b1461065d578063f3bdc22814610689575b600080fd5b34156101bb57600080fd5b6101c36106b5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ff5780820151838201526020016101e7565b50505050905090810190601f16801561022c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024557600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff60043516610753565b005b341561027357600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516602435610865565b604051901515815260200160405180910390f35b34156102b657600080fd5b610297610987565b34156102c957600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff600435166109a8565b34156102f557600080fd5b6102fd610a4e565b60405190815260200160405180910390f35b341561031a57600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043581169060243516604435610b0c565b341561034f57600080fd5b610357610c6a565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b341561038b57600080fd5b610393610c86565b60405160ff909116815260200160405180910390f35b34156103b457600080fd5b6102fd610c8f565b34156103c757600080fd5b6102fd610c95565b34156103da57600080fd5b610266610c9b565b34156103ed57600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516610d42565b341561041957600080fd5b610297610d71565b341561042c57600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516602435610d92565b341561045b57600080fd5b6102fd73ffffffffffffffffffffffffffffffffffffffff60043516610e89565b341561048757600080fd5b6102fd600435610f6d565b341561049d57600080fd5b610266610fad565b34156104b057600080fd5b61035761106a565b34156104c357600080fd5b6101c3611086565b34156104d657600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff600435166024356110f1565b341561050557600080fd5b6102fd73ffffffffffffffffffffffffffffffffffffffff6004351661121b565b341561053157600080fd5b61026660043560243561124a565b341561054a57600080fd5b6102666004356112f0565b341561056057600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516602435611412565b341561058f57600080fd5b610266600435611509565b34156105a557600080fd5b6102fd73ffffffffffffffffffffffffffffffffffffffff60043581169060243516611631565b34156105d757600080fd5b6102fd6116f5565b34156105ea57600080fd5b6101c36116fb565b34156105fd57600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516611766565b341561062957600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff6004351661177b565b341561065557600080fd5b6102fd61181e565b341561066857600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff60043516611842565b341561069457600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff6004351661191c565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561074b5780601f106107205761010080835404028352916020019161074b565b820191906000526020600020905b81548152906001019060200180831161072e57829003601f168201915b505050505081565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461077b57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8116151561079d57600080fd5b600b8054740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909116177fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e8160405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a150565b60025460009074010000000000000000000000000000000000000000900460ff161561089057600080fd5b600b5474010000000000000000000000000000000000000000900460ff161561097457600b5473ffffffffffffffffffffffffffffffffffffffff1663aee92d333385856000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561095257600080fd5b6102c65a03f1151561096357600080fd5b505050604051805190509050610981565b61097e8383611a11565b90505b92915050565b600b5474010000000000000000000000000000000000000000900460ff1681565b6002543373ffffffffffffffffffffffffffffffffffffffff9081169116146109d057600080fd5b73ffffffffffffffffffffffffffffffffffffffff81166000818152600a60205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc905160405180910390a250565b600b5460009074010000000000000000000000000000000000000000900460ff1615610b0457600b5473ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1515610ae257600080fd5b6102c65a03f11515610af357600080fd5b505050604051805190509050610b09565b506009545b90565b60025460009074010000000000000000000000000000000000000000900460ff1615610b3757600080fd5b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205460ff1615610b6a57600080fd5b600b5474010000000000000000000000000000000000000000900460ff1615610c5557600b5473ffffffffffffffffffffffffffffffffffffffff16638b477adb338686866000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff871602815273ffffffffffffffffffffffffffffffffffffffff94851660048201529284166024840152921660448201526064810191909152608401602060405180830381600087803b1515610c3357600080fd5b6102c65a03f11515610c4457600080fd5b505050604051805190509050610c63565b610c60848484611a8a565b90505b9392505050565b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b60085460ff1681565b60045481565b60095481565b6002543373ffffffffffffffffffffffffffffffffffffffff908116911614610cc357600080fd5b60025474010000000000000000000000000000000000000000900460ff161515610cec57600080fd5b600280547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602052604090205460ff165b919050565b60025474010000000000000000000000000000000000000000900460ff1681565b60025460009074010000000000000000000000000000000000000000900460ff1615610dbd57600080fd5b600b5474010000000000000000000000000000000000000000900460ff1615610e7f57600b5473ffffffffffffffffffffffffffffffffffffffff16636001279f3385856000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561095257600080fd5b61097e8383611db7565b600b5460009074010000000000000000000000000000000000000000900460ff1615610f5d57600b5473ffffffffffffffffffffffffffffffffffffffff166370a08231836000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff841602815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401602060405180830381600087803b1515610f3b57600080fd5b6102c65a03f11515610f4c57600080fd5b505050604051805190509050610d6c565b610f6682611ee7565b9050610d6c565b600080610f97612710610f8b60035486611f0f90919063ffffffff16565b9063ffffffff611f3a16565b9050600454811115610981575060045492915050565b6002543373ffffffffffffffffffffffffffffffffffffffff908116911614610fd557600080fd5b60025474010000000000000000000000000000000000000000900460ff1615610ffd57600080fd5b600280547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561074b5780601f106107205761010080835404028352916020019161074b565b60025460009074010000000000000000000000000000000000000000900460ff161561111c57600080fd5b73ffffffffffffffffffffffffffffffffffffffff33166000908152600a602052604090205460ff161561114f57600080fd5b600b5474010000000000000000000000000000000000000000900460ff161561121157600b5473ffffffffffffffffffffffffffffffffffffffff16636e18980a3385856000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561095257600080fd5b61097e8383611f51565b600b5460009074010000000000000000000000000000000000000000900460ff1615610d6c57610f6682611ee7565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461127257600080fd5b6014821061127f57600080fd5b6032811061128c57600080fd5b60038290556008546112ab90829060ff16600a0a63ffffffff611f0f16565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461131857600080fd5b60025473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902054611350908263ffffffff611fb416565b60025473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205560095461138b908263ffffffff611fb416565b6009557fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a8160405190815260200160405180910390a160025473ffffffffffffffffffffffffffffffffffffffff1660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a350565b60025460009074010000000000000000000000000000000000000000900460ff161561143d57600080fd5b600b5474010000000000000000000000000000000000000000900460ff16156114ff57600b5473ffffffffffffffffffffffffffffffffffffffff1663a95381573385856000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561095257600080fd5b61097e8383611fc3565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461153157600080fd5b600954611544908263ffffffff61208116565b60095560025473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205461157f908263ffffffff61208116565b60025473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090819020919091557f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449082905190815260200160405180910390a160025460009073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a350565b600b5460009074010000000000000000000000000000000000000000900460ff16156116eb57600b5473ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84846000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff851602815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381600087803b151561095257600080fd5b61097e8383612093565b60035481565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561074b5780601f106107205761010080835404028352916020019161074b565b600a6020526000908152604090205460ff1681565b6002543373ffffffffffffffffffffffffffffffffffffffff9081169116146117a357600080fd5b73ffffffffffffffffffffffffffffffffffffffff81166000818152600a60205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c905160405180910390a250565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461186a57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8116151561188c57600080fd5b60025473ffffffffffffffffffffffffffffffffffffffff80831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6002546000903373ffffffffffffffffffffffffffffffffffffffff90811691161461194757600080fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff16151561197b57600080fd5b61198482610e89565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120556009549091506119c0908263ffffffff61208116565b60095573ffffffffffffffffffffffffffffffffffffffff82167f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c68260405190815260200160405180910390a25050565b73ffffffffffffffffffffffffffffffffffffffff338116600081815260016020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000808073ffffffffffffffffffffffffffffffffffffffff85161515611ab057600080fd5b73ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054841115611ae257600080fd5b73ffffffffffffffffffffffffffffffffffffffff80871660009081526001602090815260408083203390941683529290522054841115611b2257600080fd5b611b2b84610f6d565b9150611b3d848363ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff8716600090815260208190526040902054909150611b76908563ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff8088166000908152602081905260408082209390935590871681522054611bb8908263ffffffff611fb416565b73ffffffffffffffffffffffffffffffffffffffff808716600090815260208181526040808320949094558983168252600181528382203390931682529190915220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff901015611c9c5773ffffffffffffffffffffffffffffffffffffffff80871660009081526001602090815260408083203390941683529290522054611c67908563ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff808816600090815260016020908152604080832033909416835292905220555b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a36000821115611dab5760025473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902054611d3e908363ffffffff611fb416565b6002805473ffffffffffffffffffffffffffffffffffffffff90811660009081526020819052604090819020939093559054811691908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b50600195945050505050565b73ffffffffffffffffffffffffffffffffffffffff338116600090815260016020908152604080832093861683529290529081205480831115611e2e5773ffffffffffffffffffffffffffffffffffffffff3381166000908152600160209081526040808320938816835292905290812055611e72565b611e3e818463ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff3381166000908152600160209081526040808320938916835292905220555b73ffffffffffffffffffffffffffffffffffffffff33811660008181526001602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b600080831515611f225760009150611ee0565b50828202828482811515611f3257fe5b0414610c6357fe5b6000808284811515611f4857fe5b04949350505050565b6000806000611f5f84610f6d565b9150611f71848363ffffffff61208116565b9050611f7d85826120cb565b506000821115611fac57600254611faa9073ffffffffffffffffffffffffffffffffffffffff16836120cb565b505b505092915050565b600082820183811015610c6357fe5b73ffffffffffffffffffffffffffffffffffffffff3381166000908152600160209081526040808320938616835292905290812054612008908363ffffffff611fb416565b73ffffffffffffffffffffffffffffffffffffffff33811660008181526001602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60008282111561208d57fe5b50900390565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600073ffffffffffffffffffffffffffffffffffffffff831615156120ef57600080fd5b73ffffffffffffffffffffffffffffffffffffffff331660009081526020819052604090205482111561212157600080fd5b73ffffffffffffffffffffffffffffffffffffffff3316600090815260208190526040902054612157908363ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff3381166000908152602081905260408082209390935590851681522054612199908363ffffffff611fb416565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001929150505600a165627a7a72305820955228aafef76857e3d9a691dbab54399963bbf1731c47474f6f5c8f2dae992f002900000000000000000000000000000000000000000000000000002d79883d200000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000f68747470733a2f2f636e622e6c752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e455552204c7578656d626f75726700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054555524c55000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052600436106101ab5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101b05780630753c30c1461023a578063095ea7b3146102685780630e136b19146102ab5780630ecb93c0146102be57806318160ddd146102ea57806323b872dd1461030f57806326976e3f14610344578063313ce5671461038057806335390714146103a95780633eaaf86b146103bc5780633f4ba83a146103cf57806359bf1abe146103e25780635c975abb1461040e578063661884631461042157806370a082311461045057806375dc7d8c1461047c5780638456cb59146104925780638da5cb5b146104a557806395d89b41146104b8578063a9059cbb146104cb578063b7a3446c146104fa578063c0324c7714610526578063cc872b661461053f578063d73dd62314610555578063db006a7514610584578063dd62ed3e1461059a578063dd644f72146105cc578063e0d370ac146105df578063e47d6060146105f2578063e4997dc51461061e578063e5b5019a1461064a578063f2fde38b1461065d578063f3bdc22814610689575b600080fd5b34156101bb57600080fd5b6101c36106b5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ff5780820151838201526020016101e7565b50505050905090810190601f16801561022c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024557600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff60043516610753565b005b341561027357600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516602435610865565b604051901515815260200160405180910390f35b34156102b657600080fd5b610297610987565b34156102c957600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff600435166109a8565b34156102f557600080fd5b6102fd610a4e565b60405190815260200160405180910390f35b341561031a57600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043581169060243516604435610b0c565b341561034f57600080fd5b610357610c6a565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b341561038b57600080fd5b610393610c86565b60405160ff909116815260200160405180910390f35b34156103b457600080fd5b6102fd610c8f565b34156103c757600080fd5b6102fd610c95565b34156103da57600080fd5b610266610c9b565b34156103ed57600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516610d42565b341561041957600080fd5b610297610d71565b341561042c57600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516602435610d92565b341561045b57600080fd5b6102fd73ffffffffffffffffffffffffffffffffffffffff60043516610e89565b341561048757600080fd5b6102fd600435610f6d565b341561049d57600080fd5b610266610fad565b34156104b057600080fd5b61035761106a565b34156104c357600080fd5b6101c3611086565b34156104d657600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff600435166024356110f1565b341561050557600080fd5b6102fd73ffffffffffffffffffffffffffffffffffffffff6004351661121b565b341561053157600080fd5b61026660043560243561124a565b341561054a57600080fd5b6102666004356112f0565b341561056057600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516602435611412565b341561058f57600080fd5b610266600435611509565b34156105a557600080fd5b6102fd73ffffffffffffffffffffffffffffffffffffffff60043581169060243516611631565b34156105d757600080fd5b6102fd6116f5565b34156105ea57600080fd5b6101c36116fb565b34156105fd57600080fd5b61029773ffffffffffffffffffffffffffffffffffffffff60043516611766565b341561062957600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff6004351661177b565b341561065557600080fd5b6102fd61181e565b341561066857600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff60043516611842565b341561069457600080fd5b61026673ffffffffffffffffffffffffffffffffffffffff6004351661191c565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561074b5780601f106107205761010080835404028352916020019161074b565b820191906000526020600020905b81548152906001019060200180831161072e57829003601f168201915b505050505081565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461077b57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8116151561079d57600080fd5b600b8054740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909116177fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e8160405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a150565b60025460009074010000000000000000000000000000000000000000900460ff161561089057600080fd5b600b5474010000000000000000000000000000000000000000900460ff161561097457600b5473ffffffffffffffffffffffffffffffffffffffff1663aee92d333385856000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561095257600080fd5b6102c65a03f1151561096357600080fd5b505050604051805190509050610981565b61097e8383611a11565b90505b92915050565b600b5474010000000000000000000000000000000000000000900460ff1681565b6002543373ffffffffffffffffffffffffffffffffffffffff9081169116146109d057600080fd5b73ffffffffffffffffffffffffffffffffffffffff81166000818152600a60205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc905160405180910390a250565b600b5460009074010000000000000000000000000000000000000000900460ff1615610b0457600b5473ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1515610ae257600080fd5b6102c65a03f11515610af357600080fd5b505050604051805190509050610b09565b506009545b90565b60025460009074010000000000000000000000000000000000000000900460ff1615610b3757600080fd5b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205460ff1615610b6a57600080fd5b600b5474010000000000000000000000000000000000000000900460ff1615610c5557600b5473ffffffffffffffffffffffffffffffffffffffff16638b477adb338686866000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff871602815273ffffffffffffffffffffffffffffffffffffffff94851660048201529284166024840152921660448201526064810191909152608401602060405180830381600087803b1515610c3357600080fd5b6102c65a03f11515610c4457600080fd5b505050604051805190509050610c63565b610c60848484611a8a565b90505b9392505050565b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b60085460ff1681565b60045481565b60095481565b6002543373ffffffffffffffffffffffffffffffffffffffff908116911614610cc357600080fd5b60025474010000000000000000000000000000000000000000900460ff161515610cec57600080fd5b600280547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602052604090205460ff165b919050565b60025474010000000000000000000000000000000000000000900460ff1681565b60025460009074010000000000000000000000000000000000000000900460ff1615610dbd57600080fd5b600b5474010000000000000000000000000000000000000000900460ff1615610e7f57600b5473ffffffffffffffffffffffffffffffffffffffff16636001279f3385856000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561095257600080fd5b61097e8383611db7565b600b5460009074010000000000000000000000000000000000000000900460ff1615610f5d57600b5473ffffffffffffffffffffffffffffffffffffffff166370a08231836000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff841602815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401602060405180830381600087803b1515610f3b57600080fd5b6102c65a03f11515610f4c57600080fd5b505050604051805190509050610d6c565b610f6682611ee7565b9050610d6c565b600080610f97612710610f8b60035486611f0f90919063ffffffff16565b9063ffffffff611f3a16565b9050600454811115610981575060045492915050565b6002543373ffffffffffffffffffffffffffffffffffffffff908116911614610fd557600080fd5b60025474010000000000000000000000000000000000000000900460ff1615610ffd57600080fd5b600280547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561074b5780601f106107205761010080835404028352916020019161074b565b60025460009074010000000000000000000000000000000000000000900460ff161561111c57600080fd5b73ffffffffffffffffffffffffffffffffffffffff33166000908152600a602052604090205460ff161561114f57600080fd5b600b5474010000000000000000000000000000000000000000900460ff161561121157600b5473ffffffffffffffffffffffffffffffffffffffff16636e18980a3385856000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561095257600080fd5b61097e8383611f51565b600b5460009074010000000000000000000000000000000000000000900460ff1615610d6c57610f6682611ee7565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461127257600080fd5b6014821061127f57600080fd5b6032811061128c57600080fd5b60038290556008546112ab90829060ff16600a0a63ffffffff611f0f16565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461131857600080fd5b60025473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902054611350908263ffffffff611fb416565b60025473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205560095461138b908263ffffffff611fb416565b6009557fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a8160405190815260200160405180910390a160025473ffffffffffffffffffffffffffffffffffffffff1660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a350565b60025460009074010000000000000000000000000000000000000000900460ff161561143d57600080fd5b600b5474010000000000000000000000000000000000000000900460ff16156114ff57600b5473ffffffffffffffffffffffffffffffffffffffff1663a95381573385856000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561095257600080fd5b61097e8383611fc3565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461153157600080fd5b600954611544908263ffffffff61208116565b60095560025473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205461157f908263ffffffff61208116565b60025473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090819020919091557f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449082905190815260200160405180910390a160025460009073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a350565b600b5460009074010000000000000000000000000000000000000000900460ff16156116eb57600b5473ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84846000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff851602815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381600087803b151561095257600080fd5b61097e8383612093565b60035481565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561074b5780601f106107205761010080835404028352916020019161074b565b600a6020526000908152604090205460ff1681565b6002543373ffffffffffffffffffffffffffffffffffffffff9081169116146117a357600080fd5b73ffffffffffffffffffffffffffffffffffffffff81166000818152600a60205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c905160405180910390a250565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6002543373ffffffffffffffffffffffffffffffffffffffff90811691161461186a57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8116151561188c57600080fd5b60025473ffffffffffffffffffffffffffffffffffffffff80831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6002546000903373ffffffffffffffffffffffffffffffffffffffff90811691161461194757600080fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff16151561197b57600080fd5b61198482610e89565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120556009549091506119c0908263ffffffff61208116565b60095573ffffffffffffffffffffffffffffffffffffffff82167f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c68260405190815260200160405180910390a25050565b73ffffffffffffffffffffffffffffffffffffffff338116600081815260016020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000808073ffffffffffffffffffffffffffffffffffffffff85161515611ab057600080fd5b73ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054841115611ae257600080fd5b73ffffffffffffffffffffffffffffffffffffffff80871660009081526001602090815260408083203390941683529290522054841115611b2257600080fd5b611b2b84610f6d565b9150611b3d848363ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff8716600090815260208190526040902054909150611b76908563ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff8088166000908152602081905260408082209390935590871681522054611bb8908263ffffffff611fb416565b73ffffffffffffffffffffffffffffffffffffffff808716600090815260208181526040808320949094558983168252600181528382203390931682529190915220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff901015611c9c5773ffffffffffffffffffffffffffffffffffffffff80871660009081526001602090815260408083203390941683529290522054611c67908563ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff808816600090815260016020908152604080832033909416835292905220555b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a36000821115611dab5760025473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902054611d3e908363ffffffff611fb416565b6002805473ffffffffffffffffffffffffffffffffffffffff90811660009081526020819052604090819020939093559054811691908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b50600195945050505050565b73ffffffffffffffffffffffffffffffffffffffff338116600090815260016020908152604080832093861683529290529081205480831115611e2e5773ffffffffffffffffffffffffffffffffffffffff3381166000908152600160209081526040808320938816835292905290812055611e72565b611e3e818463ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff3381166000908152600160209081526040808320938916835292905220555b73ffffffffffffffffffffffffffffffffffffffff33811660008181526001602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b600080831515611f225760009150611ee0565b50828202828482811515611f3257fe5b0414610c6357fe5b6000808284811515611f4857fe5b04949350505050565b6000806000611f5f84610f6d565b9150611f71848363ffffffff61208116565b9050611f7d85826120cb565b506000821115611fac57600254611faa9073ffffffffffffffffffffffffffffffffffffffff16836120cb565b505b505092915050565b600082820183811015610c6357fe5b73ffffffffffffffffffffffffffffffffffffffff3381166000908152600160209081526040808320938616835292905290812054612008908363ffffffff611fb416565b73ffffffffffffffffffffffffffffffffffffffff33811660008181526001602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60008282111561208d57fe5b50900390565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600073ffffffffffffffffffffffffffffffffffffffff831615156120ef57600080fd5b73ffffffffffffffffffffffffffffffffffffffff331660009081526020819052604090205482111561212157600080fd5b73ffffffffffffffffffffffffffffffffffffffff3316600090815260208190526040902054612157908363ffffffff61208116565b73ffffffffffffffffffffffffffffffffffffffff3381166000908152602081905260408082209390935590851681522054612199908363ffffffff611fb416565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001929150505600a165627a7a72305820955228aafef76857e3d9a691dbab54399963bbf1731c47474f6f5c8f2dae992f0029

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

00000000000000000000000000000000000000000000000000002d79883d200000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000f68747470733a2f2f636e622e6c752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e455552204c7578656d626f75726700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054555524c55000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 50000000000000
Arg [1] : _site (string): https://cnb.lu/
Arg [2] : _name (string): EUR Luxembourg
Arg [3] : _symbol (string): EURLU
Arg [4] : _decimals (uint8): 6

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000002d79883d2000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 68747470733a2f2f636e622e6c752f0000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [8] : 455552204c7578656d626f757267000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 4555524c55000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

11981:5813:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8458:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15752:231:0;;;;;;;;;;;;;;;;;;14272:307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12094:22;;;;;;;;;;;;11553:145;;;;;;;;;;;;;;;;16049:218;;;;;;;;;;;;;;;;;;;;;;;;;;;13264:377;;;;;;;;;;;;;;;;;;;;;;;12057:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8506:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8304:29;;;;;;;;;;;;8532:24;;;;;;;;;;;;11109:90;;;;;;;;;;;;11366:124;;;;;;;;;;;;;;;;10493:26;;;;;;;;;;;;14944:364;;;;;;;;;;;;;;;;;;13726:244;;;;;;;;;;;;;;;;8612:198;;;;;;;;;;;;;;10934:88;;;;;;;;;;;;7318:20;;;;;;;;;;;;8481;;;;;;;;;;;;12838:341;;;;;;;;;;;;;;;;;;14033:154;;;;;;;;;;;;;;;;9782:416;;;;;;;;;;;;;;;;16431:229;;;;;;;;;;;;;;14587:349;;;;;;;;;;;;;;;;;;16891:231;;;;;;;;;;;;;;15393:293;;;;;;;;;;;;;;;;;;;;;8265:34;;;;;;;;;;;;8435:18;;;;;;;;;;;;11498:46;;;;;;;;;;;;;;;;11706:160;;;;;;;;;;;;;;;;8563:42;;;;;;;;;;;;7942:173;;;;;;;;;;;;;;;;17130:341;;;;;;;;;;;;;;;;8458:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15752:231::-;7753:5;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;15833:30;;;;;15825:39;;;;;;15875:10;:17;;;;;;;;15903:34;;;;;;;;15948:27;15903:34;15948:27;;;;;;;;;;;;;;;;;15752:231;:::o;14272:307::-;10669:6;;14350:4;;10669:6;;;;;10668:7;10660:16;;;;;;14371:10;;;;;;;14367:205;;;14427:15;;;;14405:54;14460:10;14472:8;14482:6;14427:15;14405:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14398:91;;;;14367:205;14529:31;14543:8;14553:6;14529:13;:31::i;:::-;14522:38;;14367:205;14272:307;;;;:::o;12094:22::-;;;;;;;;;:::o;11553:145::-;7753:5;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;11623:24;;;;;;;:13;:24;;;;;;;:31;;;;11650:4;11623:31;;;11665:25;;;;;;;;;;11553:145;:::o;16049:218::-;16118:10;;16097:4;;16118:10;;;;;16114:146;;;16166:15;;;;16152:42;16166:15;16152:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16145:51;;;;16114:146;-1:-1:-1;16236:12:0;;16114:146;16049:218;:::o;13264:377::-;10669:6;;13357:4;;10669:6;;;;;10668:7;10660:16;;;;;;13383:20;;;;;;;:13;:20;;;;;;;;13382:21;13374:30;;;;;;13419:10;;;;;;;13415:219;;;13475:15;;;;13453:59;13513:10;13525:5;13532:3;13537:6;13475:15;13453:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13446:98;;;;13415:219;13584:38;13603:5;13610:3;13615:6;13584:18;:38::i;:::-;13577:45;;13415:219;13264:377;;;;;:::o;12057:30::-;;;;;;:::o;8506:21::-;;;;;;:::o;8304:29::-;;;;:::o;8532:24::-;;;;:::o;11109:90::-;7753:5;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;10829:6;;;;;;;10821:15;;;;;;;;11163:6;:14;;;;;;11184:9;;;;;;;;;;11109:90::o;11366:124::-;11461:21;;;11437:4;11461:21;;;:13;:21;;;;;;;;11366:124;;;;:::o;10493:26::-;;;;;;;;;:::o;14944:364::-;10669:6;;15041:4;;10669:6;;;;;10668:7;10660:16;;;;;;15062:10;;;;;;;15058:243;;;15118:15;;;;15096:63;15160:10;15172:8;15182:16;15118:15;15096:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15058:243;15239:50;15262:8;15272:16;15239:22;:50::i;13726:244::-;13804:10;;13783:4;;13804:10;;;;;13800:163;;;13860:15;;;;13838:48;13887:3;13860:15;13838:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13831:60;;;;13800:163;13931:20;13947:3;13931:15;:20::i;:::-;13924:27;;;;8612:198;8660:4;8673:8;8684:40;8718:5;8685:27;8696:15;;8685:6;:10;;:27;;;;:::i;:::-;8684:33;:40;:33;:40;:::i;:::-;8673:51;;8741:10;;8735:3;:16;8731:57;;;-1:-1:-1;8770:10:0;;8801:3;8612:198;-1:-1:-1;;8612:198:0:o;10934:88::-;7753:5;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;10669:6;;;;;;;10668:7;10660:16;;;;;;10989:6;:13;;;;;;;;11009:7;;;;;;;;;;10934:88::o;7318:20::-;;;;;;:::o;8481:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12838:341;10669:6;;12912:4;;10669:6;;;;;10668:7;10660:16;;;;;;12938:25;12952:10;12938:25;;;;;:13;:25;;;;;;;;12937:26;12929:35;;;;;;12979:10;;;;;;;12975:197;;;13035:15;;;;13013:55;13069:10;13081:3;13086:6;13035:15;13013:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12975:197;13133:27;13148:3;13153:6;13133:14;:27::i;14033:154::-;14114:10;;14093:4;;14114:10;;;;;14110:70;;;14148:20;14164:3;14148:15;:20::i;9782:416::-;7753:5;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;8383:2;9959:42;;9951:51;;;;;;8426:2;10019:28;;10011:37;;;;;;10059:15;:32;;;10137:8;;10113:33;;:9;;10137:8;;10132:2;10127:18;10113:33;:13;:33;:::i;:::-;10100:10;:46;;;10164:15;;10157:35;;;;;;;;;;;;;;;;;;;;;;9782:416;;:::o;16431:229::-;7753:5;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;16514:5;;;;16505:8;:15;;;;;;;;;;;:27;;16525:6;16505:27;:19;:27;:::i;:::-;16496:5;;;;16487:8;:15;;;;;;;;;;:45;16558:12;;:24;;16575:6;16558:24;:16;:24;:::i;:::-;16543:12;:39;16593:13;16599:6;16593:13;;;;;;;;;;;;;;16638:5;;;;;16617:35;16645:6;16617:35;;;;;;;;;;;;;;16431:229;:::o;14587:349::-;10669:6;;14679:4;;10669:6;;;;;10668:7;10660:16;;;;;;14700:10;;;;;;;14696:233;;;14756:15;;;;14734:63;14798:10;14810:8;14820:11;14756:15;14734:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14696:233;14872:45;14895:8;14905:11;14872:22;:45::i;16891:231::-;7753:5;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;16963:12;;:24;;16980:6;16963:24;:16;:24;:::i;:::-;16948:12;:39;17025:5;;;;17016:8;:15;;;;;;;;;;;:27;;17036:6;17016:27;:19;:27;:::i;:::-;17007:5;;;;16998:8;:15;;;;;;;;;;;;:45;;;;17054:14;;17061:6;;17054:14;;;;;;;;;;;;;17088:5;;17103:1;;17079:35;17088:5;17079:35;17107:6;17079:35;;;;;;;;;;;;;;16891:231;:::o;15393:293::-;15502:10;;15471:14;;15502:10;;;;;15498:181;;;15550:15;;;;15536:40;15577:6;15585:8;15550:15;15536:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15498:181;15634:33;15650:6;15658:8;15634:15;:33::i;8265:34::-;;;;:::o;8435:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11498:46;;;;;;;;;;;;;;;:::o;11706:160::-;7753:5;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;11782:27;;;11812:5;11782:27;;;:13;:27;;;;;;;:35;;;;;;11828:30;;;;;;;;;;11706:160;:::o;8563:42::-;8595:10;8563:42;:::o;7942:173::-;7753:5;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;8019:22;;;;;8011:31;;;;;;8070:5;;8049:37;;;;;8070:5;8049:37;;;;;;;;;;8093:5;:16;;;;;;;;;;;;;;;7942:173::o;17130:341::-;7753:5;;17263:15;;7739:10;7753:5;7739:19;;;7753:5;;7739:19;7731:28;;;;;;17220:31;;;;;;;:13;:31;;;;;;;;17212:40;;;;;;;;17281:27;17291:16;17281:9;:27::i;:::-;17319:26;;;17348:1;17319:26;;;;;;;;;;:30;17375:12;;17263:45;;-1:-1:-1;17375:28:0;;17263:45;17375:28;:16;:28;:::i;:::-;17360:12;:43;17414:49;;;;17452:10;17414:49;;;;;;;;;;;;;;17130:341;;:::o;4786:187::-;4866:19;4874:10;4866:19;;4853:4;4866:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;4853:4;;4866:29;:19;4911:38;;4898:6;;4911:38;;;;;;;;;;;;;-1:-1:-1;4963:4:0;4786:187;;;;:::o;9069:707::-;9151:4;;;9172:17;;;;;9164:26;;;;;;9215:15;;;:8;:15;;;;;;;;;;;9205:25;;;9197:34;;;;;;9256:14;;;;;;;;:7;:14;;;;;;;;9271:10;9256:26;;;;;;;;;;9246:36;;;9238:45;;;;;;9303:15;9311:6;9303:7;:15::i;:::-;9292:26;-1:-1:-1;9343:15:0;:6;9292:26;9343:15;:10;:15;:::i;:::-;9385;;;:8;:15;;;;;;;;;;;9325:33;;-1:-1:-1;9385:27:0;;9405:6;9385:27;:19;:27;:::i;:::-;9367:15;;;;:8;:15;;;;;;;;;;;:45;;;;9435:13;;;;;;;:29;;9453:10;9435:29;:17;:29;:::i;:::-;9419:13;;;;:8;:13;;;;;;;;;;;:45;;;;9475:14;;;;;:7;:14;;;;;9490:10;9475:26;;;;;;;;;;;8595:10;9475:37;;9471:129;;;9554:14;;;;;;;;:7;:14;;;;;;;;9569:10;9554:26;;;;;;;;;;:38;;9585:6;9554:38;:30;:38;:::i;:::-;9525:14;;;;;;;;:7;:14;;;;;;;;9540:10;9525:26;;;;;;;;;:67;9471:129;9622:3;9606:32;;9615:5;9606:32;;;9627:10;9606:32;;;;;;;;;;;;;;9655:1;9649:3;:7;9645:108;;;9694:5;;;;9685:8;:15;;;;;;;;;;;:24;;9705:3;9685:24;:19;:24;:::i;:::-;9676:5;;;;;;;9667:8;:15;;;;;;;;;;;;:42;;;;9734:5;;;;;9718:27;;;;;;9741:3;;9718:27;;;;;;;;;;;;;9645:108;-1:-1:-1;9766:4:0;;9069:707;-1:-1:-1;;;;;9069:707:0:o;5943:407::-;6055:19;6063:10;6055:19;;6026:4;6055:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;6095:27;;;6091:168;;;6133:19;6141:10;6133:19;;6165:1;6133:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;6091:168;;;6221:30;:8;6234:16;6221:30;:12;:30;:::i;:::-;6189:19;6197:10;6189:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;6091:168;6265:61;6274:10;6265:61;;6296:19;;;;:7;:19;;;;;;;;6265:61;;;6296:29;;;;;;;;;;;;6265:61;;;;;;;;;;;;;;;6340:4;6333:11;;5943:407;;;;;;:::o;2905:109::-;2992:16;;2961:15;2992:16;;;;;;;;;;;;2905:109::o;328:180::-;386:7;;406:6;;402:37;;;430:1;423:8;;;;402:37;-1:-1:-1;457:5:0;;;461:1;457;:5;476;;;;;;;;:10;469:18;;;514:270;572:7;663:9;679:1;675;:5;;;;;;;;;514:270;-1:-1:-1;;;;514:270:0:o;8816:247::-;8876:4;8889:8;8922:15;8900;8908:6;8900:7;:15::i;:::-;8889:26;-1:-1:-1;8940:15:0;:6;8889:26;8940:15;:10;:15;:::i;:::-;8922:33;;8964:31;8979:3;8984:10;8964:14;:31::i;:::-;;9012:1;9006:3;:7;9002:56;;;9039:5;;9024:26;;9039:5;;9046:3;9024:14;:26::i;:::-;;9002:56;8816:247;;;;;;:::o;909:133::-;967:7;995:5;;;1014:6;;;;1007:14;;;5676:261;5799:19;5807:10;5799:19;;5754:4;5799:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;5833:11;5799:46;:33;:46;:::i;:::-;5767:19;5775:10;5767:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:78;;;:29;;:19;;5852:61;;5767:78;5852:61;;;;;;;;;;;;;-1:-1:-1;5927:4:0;5676:261;;;;:::o;790:113::-;848:7;871:6;;;;864:14;;;;-1:-1:-1;892:5:0;;;790:113::o;5300:128::-;5397:15;;;;5374:7;5397:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5300:128::o;2308:388::-;2371:4;2392:17;;;;;2384:26;;;;;;2435:20;2444:10;2435:20;:8;:20;;;;;;;;;;;2425:30;;;2417:39;;;;;;2552:20;2561:10;2552:20;:8;:20;;;;;;;;;;;:32;;2577:6;2552:32;:24;:32;:::i;:::-;2529:20;2538:10;2529:20;;:8;:20;;;;;;;;;;;:55;;;;2607:13;;;;;;;:25;;2625:6;2607:25;:17;:25;:::i;:::-;2591:8;:13;2600:3;2591:13;;;;;;;;;;;;;;;:41;;;;2660:3;2639:33;;2648:10;2639:33;;;2665:6;2639:33;;;;;;;;;;;;;;-1:-1:-1;2686:4:0;2308:388;;;;:::o

Swarm Source

bzzr://955228aafef76857e3d9a691dbab54399963bbf1731c47474f6f5c8f2dae992f

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.