ETH Price: $3,488.50 (+2.04%)
Gas: 12 Gwei

Contract

0xF97eE19c080a496e2eCa8bb20D1A77fBBACE563f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Initialize119443552021-02-28 6:54:451219 days ago1614495285IN
0xF97eE19c...BBACE563f
0 ETH0.0259081100
0x60806040119443532021-02-28 6:54:421219 days ago1614495282IN
 Create: Token_v2
0 ETH0.2641679100

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Token_v2

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
petersburg EvmVersion
File 1 of 15 : Token_v2.sol
pragma solidity 0.5.8;

import "./Token_v1.sol";
import "./Roles/Wiper.sol";

contract Token_v2 is Token_v1, Wiper {

    event Wipe(address indexed addr, uint256 amount);
    event WiperChanged(address indexed oldWiper, address indexed newWiper, address indexed sender);

    // only admin can change wiper
    function changeWiper(address _account) public onlyAdmin whenNotPaused isNotZeroAddress(_account) {
        address old = wiper;
        wiper = _account;
        emit WiperChanged(old, wiper, msg.sender);
    }

    // wipe balance of prohibited address
    function wipe(address _account) public whenNotPaused onlyWiper onlyProhibited(_account) {
        uint256 _balance = balanceOf(_account);
        _burn(_account, _balance);
        emit Wipe(_account, _balance);
    }
}

File 2 of 15 : Admin.sol
pragma solidity 0.5.8;

import "./Capper.sol";
import "./Pauser.sol";
import "./Prohibiter.sol";

contract Admin is Capper, Prohibiter {
    address public admin = address(0);

    event CapperChanged(address indexed oldCapper, address indexed newCapper, address indexed sender);
    event PauserChanged(address indexed oldPauser, address indexed newPauser, address indexed sender);
    event ProhibiterChanged(address indexed oldProhibiter, address indexed newProhibiter, address indexed sender);
    
    modifier onlyAdmin() {
        require(msg.sender == admin, "the sender is not the admin");
        _;
    }

    function changeCapper(address _account) public onlyAdmin whenNotPaused isNotZeroAddress(_account) {
        address old = capper;
        capper = _account;
        emit CapperChanged(old, capper, msg.sender);
    }

    /**
     * Change Pauser
     * @dev "whenNotPaused" modifier should not be used here
     */
    function changePauser(address _account) public onlyAdmin isNotZeroAddress(_account) {
        address old = pauser;
        pauser = _account;
        emit PauserChanged(old, pauser, msg.sender);
    }

    function changeProhibiter(address _account) public onlyAdmin whenNotPaused isNotZeroAddress(_account) {
        address old = prohibiter;
        prohibiter = _account;
        emit ProhibiterChanged(old, prohibiter, msg.sender);
    }
}

File 3 of 15 : Capper.sol
pragma solidity 0.5.8;

import "./Common.sol";

contract Capper is Common {
    uint256 public capacity = 0;
    address public capper = address(0);

    event Cap(uint256 indexed newCapacity, address indexed sender);

    modifier onlyCapper() {
        require(msg.sender == capper, "the sender is not the capper");
        _;
    }

    modifier notMoreThanCapacity(uint256 _amount) {
        require(_amount <= capacity, "this amount is more than capacity");
        _;
    }

    function _cap(uint256 _amount) internal {
        capacity = _amount;
        emit Cap(capacity, msg.sender);
    }
}

File 4 of 15 : Common.sol
pragma solidity 0.5.8;

contract Common {
    modifier isNotZeroAddress(address _account) {
        require(_account != address(0), "this account is the zero address");
        _;
    }

    modifier isNaturalNumber(uint256 _amount) {
        require(0 < _amount, "this amount is not a natural number");
        _;
    }
}

File 5 of 15 : Minter.sol
pragma solidity 0.5.8;

import "./Pauser.sol";

contract Minter is Pauser {
    address public minter = address(0);

    modifier onlyMinter() {
        require(msg.sender == minter, "the sender is not the minter");
        _;
    }
}

File 6 of 15 : MinterAdmin.sol
pragma solidity 0.5.8;

import "./Minter.sol";

contract MinterAdmin is Minter {
    address public minterAdmin = address(0);

    event MinterChanged(address indexed oldMinter, address indexed newMinter, address indexed sender);

    modifier onlyMinterAdmin() {
        require(msg.sender == minterAdmin, "the sender is not the minterAdmin");
        _;
    }

    function changeMinter(address _account) public onlyMinterAdmin whenNotPaused isNotZeroAddress(_account) {
        address old = minter;
        minter = _account;
        emit MinterChanged(old, minter, msg.sender);
    }
}

File 7 of 15 : Owner.sol
pragma solidity 0.5.8;

import "./Admin.sol";
import "./MinterAdmin.sol";

contract Owner is Admin, MinterAdmin {
    address public owner = address(0);

    event OwnerChanged(address indexed oldOwner, address indexed newOwner, address indexed sender);
    event AdminChanged(address indexed oldAdmin, address indexed newAdmin, address indexed sender);
    event MinterAdminChanged(address indexed oldMinterAdmin, address indexed newMinterAdmin, address indexed sender);

    modifier onlyOwner() {
        require(msg.sender == owner, "the sender is not the owner");
        _;
    }

    function changeOwner(address _account) public onlyOwner whenNotPaused isNotZeroAddress(_account) {
        address old = owner;
        owner = _account;
        emit OwnerChanged(old, owner, msg.sender);
    }

    /**
     * Change Admin
     * @dev "whenNotPaused" modifier should not be used here
     */
    function changeAdmin(address _account) public onlyOwner isNotZeroAddress(_account) {
        address old = admin;
        admin = _account;
        emit AdminChanged(old, admin, msg.sender);
    }

    function changeMinterAdmin(address _account) public onlyOwner whenNotPaused isNotZeroAddress(_account) {
        address old = minterAdmin;
        minterAdmin = _account;
        emit MinterAdminChanged(old, minterAdmin, msg.sender);
    }
}

File 8 of 15 : Pauser.sol
pragma solidity 0.5.8;

import "./Common.sol";

contract Pauser is Common {
    address public pauser = address(0);
    bool public paused = false;

    event Pause(bool status, address indexed sender);

    modifier onlyPauser() {
        require(msg.sender == pauser, "the sender is not the pauser");
        _;
    }

    modifier whenNotPaused() {
        require(!paused, "this is a paused contract");
        _;
    }

    modifier whenPaused() {
        require(paused, "this is not a paused contract");
        _;
    }

    function pause() public onlyPauser whenNotPaused {
        paused = true;
        emit Pause(paused, msg.sender);
    }

    function unpause() public onlyPauser whenPaused {
        paused = false;
        emit Pause(paused, msg.sender);
    }
}

File 9 of 15 : Prohibiter.sol
pragma solidity 0.5.8;

import "./Pauser.sol";

contract Prohibiter is Pauser {
    address public prohibiter = address(0);
    mapping(address => bool) public prohibiteds;

    event Prohibition(address indexed prohibited, bool status, address indexed sender);

    modifier onlyProhibiter() {
        require(msg.sender == prohibiter, "the sender is not the prohibiter");
        _;
    }

    modifier onlyNotProhibited(address _account) {
        require(!prohibiteds[_account], "this account is prohibited");
        _;
    }

    modifier onlyProhibited(address _account) {
        require(prohibiteds[_account], "this account is not prohibited");
        _;
    }

    function prohibit(address _account) public onlyProhibiter whenNotPaused isNotZeroAddress(_account) onlyNotProhibited(_account) {
        prohibiteds[_account] = true;
        emit Prohibition(_account, prohibiteds[_account], msg.sender);
    }

    function unprohibit(address _account) public onlyProhibiter whenNotPaused isNotZeroAddress(_account) onlyProhibited(_account) {
        prohibiteds[_account] = false;
        emit Prohibition(_account, prohibiteds[_account], msg.sender);
    }
}

File 10 of 15 : Wiper.sol
pragma solidity 0.5.8;

import "./Common.sol";

contract Wiper is Common  {
    address public wiper = address(0);
    
    modifier onlyWiper() {
        require(msg.sender == wiper, "the sender is not the wiper");
        _;
    }

    function initializeWiper(address _account) public isNotZeroAddress(_account) {
        require(wiper == address(0), "the wiper can only be initiated once");
        wiper = _account;
    }
}

File 11 of 15 : Token_v1.sol
pragma solidity 0.5.8;

import "@openzeppelin/upgrades/contracts/Initializable.sol";
import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "./Roles/Owner.sol";

contract Token_v1 is Initializable, ERC20, Owner {
    string public name;
    string public symbol;
    uint8 public decimals;

    event Mint(address indexed mintee, uint256 amount, address indexed sender);
    event Burn(address indexed burnee, uint256 amount, address indexed sender);

    function initialize(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        address _owner,
        address _admin,
        address _capper,
        address _prohibiter,
        address _pauser,
        address _minterAdmin,
        address _minter
        ) public initializer {
            require(_owner != address(0), "_owner is the zero address");
            require(_admin != address(0), "_admin is the zero address");
            require(_capper != address(0), "_capper is the zero address");
            require(_prohibiter != address(0), "_prohibiter is the zero address");
            require(_pauser != address(0), "_pauser is the zero address");
            require(_minterAdmin != address(0), "_minterAdmin is the zero address");
            require(_minter != address(0), "_minter is the zero address");
            name = _name;
            symbol = _symbol;
            decimals = _decimals;
            owner = _owner;
            admin = _admin;
            capper = _capper;
            prohibiter = _prohibiter;
            pauser = _pauser;
            minterAdmin = _minterAdmin;
            minter = _minter;
    }

    function cap(uint256 _amount) public onlyCapper whenNotPaused isNaturalNumber(_amount) {
        require(totalSupply() <= _amount, "this amount is less than the totalySupply");
        _cap(_amount);
    }

    function mint(address _account, uint256 _amount) public onlyMinter whenNotPaused notMoreThanCapacity(totalSupply().add(_amount)) isNaturalNumber(_amount) {
        _mint(_account, _amount);
        emit Mint(_account, _amount, msg.sender);
    }

    function transfer(address _recipient, uint256 _amount) public whenNotPaused onlyNotProhibited(msg.sender) isNaturalNumber(_amount) returns (bool) {
        _transfer(msg.sender, _recipient, _amount);
        return true;
    }

    function transferFrom(address _sender, address _recipient, uint256 _amount) public whenNotPaused onlyNotProhibited(_sender) isNaturalNumber(_amount) returns (bool) {
        return super.transferFrom(_sender, _recipient, _amount);
    }

    function burn(uint256 _amount) public isNaturalNumber(_amount) {
        _burn(msg.sender, _amount);
        emit Burn(msg.sender, _amount, msg.sender);
    }
}

File 12 of 15 : Initializable.sol
pragma solidity >=0.4.24 <0.6.0;


/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {

  /**
   * @dev Indicates that the contract has been initialized.
   */
  bool private initialized;

  /**
   * @dev Indicates that the contract is in the process of being initialized.
   */
  bool private initializing;

  /**
   * @dev Modifier to use in the initializer function of a contract.
   */
  modifier initializer() {
    require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");

    bool isTopLevelCall = !initializing;
    if (isTopLevelCall) {
      initializing = true;
      initialized = true;
    }

    _;

    if (isTopLevelCall) {
      initializing = false;
    }
  }

  /// @dev Returns true if and only if the function is running in the constructor
  function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
    uint256 cs;
    assembly { cs := extcodesize(address) }
    return cs == 0;
  }

  // Reserved storage space to allow for layout changes in the future.
  uint256[50] private ______gap;
}

File 13 of 15 : SafeMath.sol
pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

File 14 of 15 : ERC20.sol
pragma solidity ^0.5.0;

import "./IERC20.sol";
import "../../math/SafeMath.sol";

/**
 * @dev Implementation of the `IERC20` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 * For a generic mechanism see `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an `Approval` event is emitted on calls to `transferFrom`.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See `IERC20.approve`.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

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

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

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

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

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

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

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

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

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

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

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

File 15 of 15 : IERC20.sol
pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "petersburg",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"changeMinterAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_sender","type":"address"},{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"prohibiteds","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"changeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"changePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"changeWiper","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"capper","outputs":[{"name":"","type":"address"}],"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":"capacity","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"unprohibit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","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":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"initializeWiper","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"wipe","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pauser","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"minterAdmin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"changeCapper","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_owner","type":"address"},{"name":"_admin","type":"address"},{"name":"_capper","type":"address"},{"name":"_prohibiter","type":"address"},{"name":"_pauser","type":"address"},{"name":"_minterAdmin","type":"address"},{"name":"_minter","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"prohibit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"changeProhibiter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wiper","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"prohibiter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"cap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Wipe","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldWiper","type":"address"},{"indexed":true,"name":"newWiper","type":"address"},{"indexed":true,"name":"sender","type":"address"}],"name":"WiperChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"mintee","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":true,"name":"sender","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burnee","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":true,"name":"sender","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"},{"indexed":true,"name":"sender","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldAdmin","type":"address"},{"indexed":true,"name":"newAdmin","type":"address"},{"indexed":true,"name":"sender","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldMinterAdmin","type":"address"},{"indexed":true,"name":"newMinterAdmin","type":"address"},{"indexed":true,"name":"sender","type":"address"}],"name":"MinterAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldMinter","type":"address"},{"indexed":true,"name":"newMinter","type":"address"},{"indexed":true,"name":"sender","type":"address"}],"name":"MinterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldCapper","type":"address"},{"indexed":true,"name":"newCapper","type":"address"},{"indexed":true,"name":"sender","type":"address"}],"name":"CapperChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldPauser","type":"address"},{"indexed":true,"name":"newPauser","type":"address"},{"indexed":true,"name":"sender","type":"address"}],"name":"PauserChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldProhibiter","type":"address"},{"indexed":true,"name":"newProhibiter","type":"address"},{"indexed":true,"name":"sender","type":"address"}],"name":"ProhibiterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"prohibited","type":"address"},{"indexed":false,"name":"status","type":"bool"},{"indexed":true,"name":"sender","type":"address"}],"name":"Prohibition","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"status","type":"bool"},{"indexed":true,"name":"sender","type":"address"}],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"newCapacity","type":"uint256"},{"indexed":true,"name":"sender","type":"address"}],"name":"Cap","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":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040526000603655603780546001600160a01b0319908116909155603880546001600160a81b03191690556039805482169055603b805482169055603c805482169055603d805482169055603e8054909116905560418054610100600160a81b031916905534801561007257600080fd5b50612e8b806100826000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80638456cb591161013b578063a9059cbb116100b8578063dcb413c81161007c578063dcb413c814610836578063dd62ed3e1461083e578063dd75049b1461086c578063f851a44014610874578063ff2ad8e41461087c57610248565b8063a9059cbb14610629578063b0e7176614610655578063b89da6421461067b578063c4e1ccf2146107ea578063cffdd46c1461081057610248565b8063988749d1116100ff578063988749d1146105a15780639fd0506d146105c7578063a457c2d7146105cf578063a6f9dae1146105fb578063a754d48f1461062157610248565b80638456cb591461053d5780638da5cb5b146105455780638f2839701461054d578063949a36521461057357806395d89b411461059957610248565b8063313ce567116101c957806350a6aaf41161018d57806350a6aaf4146104d95780635c975abb146104e15780635cfc1a51146104e9578063664dc724146104f157806370a082311461051757610248565b8063313ce5671461043e578063395093511461045c5780633f4ba83a1461048857806340c10f191461049057806342966c68146104bc57610248565b806323b872dd1161021057806323b872dd146103705780632ad3ed6d146103a65780632c4d4d18146103cc5780632cd271e7146103f25780632fee80d01461041857610248565b80630628922d1461024d57806306fdde031461027557806307546172146102f2578063095ea7b31461031657806318160ddd14610356575b600080fd5b6102736004803603602081101561026357600080fd5b50356001600160a01b0316610899565b005b61027d6109f0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b757818101518382015260200161029f565b50505050905090810190601f1680156102e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fa610a7e565b604080516001600160a01b039092168252519081900360200190f35b6103426004803603604081101561032c57600080fd5b506001600160a01b038135169060200135610a8d565b604080519115158252519081900360200190f35b61035e610aa3565b60408051918252519081900360200190f35b6103426004803603606081101561038657600080fd5b506001600160a01b03813581169160208101359091169060400135610aaa565b610342600480360360208110156103bc57600080fd5b50356001600160a01b0316610bc8565b610273600480360360208110156103e257600080fd5b50356001600160a01b0316610bdd565b6102736004803603602081101561040857600080fd5b50356001600160a01b0316610d1e565b6102736004803603602081101561042e57600080fd5b50356001600160a01b0316610e13565b610446610f66565b6040805160ff9092168252519081900360200190f35b6103426004803603604081101561047257600080fd5b506001600160a01b038135169060200135610f6f565b610273610fb0565b610273600480360360408110156104a657600080fd5b506001600160a01b0381351690602001356110c8565b610273600480360360208110156104d257600080fd5b5035611269565b6102fa6112f1565b610342611300565b61035e611310565b6102736004803603602081101561050757600080fd5b50356001600160a01b0316611316565b61035e6004803603602081101561052d57600080fd5b50356001600160a01b03166114e1565b6102736114fc565b6102fa611608565b6102736004803603602081101561056357600080fd5b50356001600160a01b0316611617565b6102736004803603602081101561058957600080fd5b50356001600160a01b031661171e565b61027d6117e4565b610273600480360360208110156105b757600080fd5b50356001600160a01b031661183d565b6102fa6119c1565b610342600480360360408110156105e557600080fd5b506001600160a01b0381351690602001356119d0565b6102736004803603602081101561061157600080fd5b50356001600160a01b0316611a0c565b6102fa611b63565b6103426004803603604081101561063f57600080fd5b506001600160a01b038135169060200135611b72565b6102736004803603602081101561066b57600080fd5b50356001600160a01b0316611c86565b610273600480360361014081101561069257600080fd5b8101906020810181356401000000008111156106ad57600080fd5b8201836020820111156106bf57600080fd5b803590602001918460018302840111640100000000831117156106e157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561073457600080fd5b82018360208201111561074657600080fd5b8035906020019184600183028401116401000000008311171561076857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff8335169350506001600160a01b0360208301358116926040810135821692506060810135821691608082013581169160a081013582169160c082013581169160e0013516611dcb565b6102736004803603602081101561080057600080fd5b50356001600160a01b03166121b1565b6102736004803603602081101561082657600080fd5b50356001600160a01b031661238b565b6102fa6124d0565b61035e6004803603604081101561085457600080fd5b506001600160a01b03813581169160200135166124e4565b6102fa61250f565b6102fa61251e565b6102736004803603602081101561089257600080fd5b503561252d565b603e546001600160a01b031633146108fb5760408051600160e51b62461bcd02815260206004820152601b60248201527f7468652073656e646572206973206e6f7420746865206f776e65720000000000604482015290519081900360640190fd5b603854600160a01b900460ff161561094b5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b0381166109985760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603d80546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f4a85a5117c27071f301f0a758ea45cef77712d3d8358f0883b21c46ee1693d6790600090a4505050565b603f805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a765780601f10610a4b57610100808354040283529160200191610a76565b820191906000526020600020905b815481529060010190602001808311610a5957829003601f168201915b505050505081565b603c546001600160a01b031681565b6000610a9a338484612678565b50600192915050565b6035545b90565b603854600090600160a01b900460ff1615610afd5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152603a6020526040902054849060ff1615610b705760408051600160e51b62461bcd02815260206004820152601a60248201527f74686973206163636f756e742069732070726f68696269746564000000000000604482015290519081900360640190fd5b8280600010610bb357604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b610bbe86868661276a565b9695505050505050565b603a6020526000908152604090205460ff1681565b603d546001600160a01b03163314610c2957604051600160e51b62461bcd028152600401808060200182810382526021815260200180612d3a6021913960400191505060405180910390fd5b603854600160a01b900460ff1615610c795760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b038116610cc65760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603c80546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f6970e71b2bda096f4eb3290c554af7a888cca0ef8b95da09c55b23c6bb30e38190600090a4505050565b603b546001600160a01b03163314610d6e5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020612c94833981519152604482015290519081900360640190fd5b806001600160a01b038116610dbb5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603880546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f8b1ee37fa817a066fe12c7c9bf109c0c9f8f03ef0a5cfe0c03d5196e8c2e465790600090a4505050565b603b546001600160a01b03163314610e635760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020612c94833981519152604482015290519081900360640190fd5b603854600160a01b900460ff1615610eb35760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b038116610f005760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b604180546001600160a01b03848116610100908102610100600160a81b0319841617938490556040519281900482169333939190049091169083907fd8d09cf07cabd1c0519931ab387ce1b6e580584a26fb2787b8ed7f446c34603f90600090a4505050565b60415460ff1681565b3360008181526034602090815260408083206001600160a01b03871684529091528120549091610a9a918590610fab908663ffffffff6127bc16565b612678565b6038546001600160a01b031633146110125760408051600160e51b62461bcd02815260206004820152601c60248201527f7468652073656e646572206973206e6f74207468652070617573657200000000604482015290519081900360640190fd5b603854600160a01b900460ff166110735760408051600160e51b62461bcd02815260206004820152601d60248201527f74686973206973206e6f7420612070617573656420636f6e7472616374000000604482015290519081900360640190fd5b60388054600160a01b60ff0219169081905560408051600160a01b90920460ff16151582525133917f5a9dfee0981174e5203ccf9368a8cabb254f9dea6ca43f96b4bbd10c69415d8a919081900360200190a2565b603c546001600160a01b0316331461112a5760408051600160e51b62461bcd02815260206004820152601c60248201527f7468652073656e646572206973206e6f7420746865206d696e74657200000000604482015290519081900360640190fd5b603854600160a01b900460ff161561117a5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b61119281611186610aa3565b9063ffffffff6127bc16565b6036548111156111d657604051600160e51b62461bcd028152600401808060200182810382526021815260200180612e3f6021913960400191505060405180910390fd5b818060001061121957604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b6112238484612820565b60408051848152905133916001600160a01b038716917fbcad3d7d3dfccb90d49c6063bf70f828901fefc88937d90af74e58e6e55bc39d9181900360200190a350505050565b80806000106112ac57604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b6112b63383612915565b604080518381529051339182917fdbdf9b8e4b75e75b162d151ec8fc7f0561cabab5fcccfa2600be62223e4300c49181900360200190a35050565b6037546001600160a01b031681565b603854600160a01b900460ff1681565b60365481565b6039546001600160a01b031633146113785760408051600160e51b62461bcd02815260206004820181905260248201527f7468652073656e646572206973206e6f74207468652070726f68696269746572604482015290519081900360640190fd5b603854600160a01b900460ff16156113c85760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b0381166114155760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152603a6020526040902054829060ff166114875760408051600160e51b62461bcd02815260206004820152601e60248201527f74686973206163636f756e74206973206e6f742070726f686962697465640000604482015290519081900360640190fd5b6001600160a01b0383166000818152603a60209081526040808320805460ff191690558051928352513393927fab0ab2fa6ff81b10c5afab4726a665d4379f2d0acaaafbe4c4d737ade05a8e4692908290030190a3505050565b6001600160a01b031660009081526033602052604090205490565b6038546001600160a01b0316331461155e5760408051600160e51b62461bcd02815260206004820152601c60248201527f7468652073656e646572206973206e6f74207468652070617573657200000000604482015290519081900360640190fd5b603854600160a01b900460ff16156115ae5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b60388054600160a01b60ff021916600160a01b90811791829055604080519190920460ff1615158152905133917f5a9dfee0981174e5203ccf9368a8cabb254f9dea6ca43f96b4bbd10c69415d8a919081900360200190a2565b603e546001600160a01b031681565b603e546001600160a01b031633146116795760408051600160e51b62461bcd02815260206004820152601b60248201527f7468652073656e646572206973206e6f7420746865206f776e65720000000000604482015290519081900360640190fd5b806001600160a01b0381166116c65760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603b80546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f4eb572e99196bed0270fbd5b17a948e19c3f50a97838cb0d2a75a823ff8e6c5090600090a4505050565b806001600160a01b03811661176b5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b60415461010090046001600160a01b0316156117bb57604051600160e51b62461bcd028152600401808060200182810382526024815260200180612cf66024913960400191505060405180910390fd5b50604180546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b604080548151602060026001841615610100026000190190931692909204601f81018390048302820183018452808252909291830182828015610a765780601f10610a4b57610100808354040283529160200191610a76565b603854600160a01b900460ff161561188d5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b60415461010090046001600160a01b031633146118f45760408051600160e51b62461bcd02815260206004820152601b60248201527f7468652073656e646572206973206e6f74207468652077697065720000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152603a6020526040902054819060ff166119665760408051600160e51b62461bcd02815260206004820152601e60248201527f74686973206163636f756e74206973206e6f742070726f686962697465640000604482015290519081900360640190fd5b6000611971836114e1565b905061197d8382612915565b6040805182815290516001600160a01b038516917f2d2c7da251295f4d722a8ddaf337627952c957ce21b2757c852e47fe81b3a2af919081900360200190a2505050565b6038546001600160a01b031681565b3360008181526034602090815260408083206001600160a01b03871684529091528120549091610a9a918590610fab908663ffffffff6129f316565b603e546001600160a01b03163314611a6e5760408051600160e51b62461bcd02815260206004820152601b60248201527f7468652073656e646572206973206e6f7420746865206f776e65720000000000604482015290519081900360640190fd5b603854600160a01b900460ff1615611abe5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b038116611b0b5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603e80546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f381c0d11398486654573703c51ee8210ce9461764d133f9f0e53b6a53970533190600090a4505050565b603d546001600160a01b031681565b603854600090600160a01b900460ff1615611bc55760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b336000818152603a602052604090205460ff1615611c2d5760408051600160e51b62461bcd02815260206004820152601a60248201527f74686973206163636f756e742069732070726f68696269746564000000000000604482015290519081900360640190fd5b8280600010611c7057604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b611c7b338686612a53565b506001949350505050565b603b546001600160a01b03163314611cd65760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020612c94833981519152604482015290519081900360640190fd5b603854600160a01b900460ff1615611d265760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b038116611d735760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603780546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907fc4d5c17597bd0c5594a7545f36de213c6a58e2f235b165887331fe368618197090600090a4505050565b600054610100900460ff1680611de45750611de4612b9d565b80611df2575060005460ff16155b611e3057604051600160e51b62461bcd02815260040180806020018281038252602e815260200180612d5b602e913960400191505060405180910390fd5b600054610100900460ff16158015611e5b576000805460ff1961ff0019909116610100171660011790555b6001600160a01b038816611eb95760408051600160e51b62461bcd02815260206004820152601a60248201527f5f6f776e657220697320746865207a65726f2061646472657373000000000000604482015290519081900360640190fd5b6001600160a01b038716611f175760408051600160e51b62461bcd02815260206004820152601a60248201527f5f61646d696e20697320746865207a65726f2061646472657373000000000000604482015290519081900360640190fd5b6001600160a01b038616611f755760408051600160e51b62461bcd02815260206004820152601b60248201527f5f63617070657220697320746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b6001600160a01b038516611fd35760408051600160e51b62461bcd02815260206004820152601f60248201527f5f70726f6869626974657220697320746865207a65726f206164647265737300604482015290519081900360640190fd5b6001600160a01b0384166120315760408051600160e51b62461bcd02815260206004820152601b60248201527f5f70617573657220697320746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b6001600160a01b03831661208f5760408051600160e51b62461bcd02815260206004820181905260248201527f5f6d696e74657241646d696e20697320746865207a65726f2061646472657373604482015290519081900360640190fd5b6001600160a01b0382166120ed5760408051600160e51b62461bcd02815260206004820152601b60248201527f5f6d696e74657220697320746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b8a5161210090603f9060208e0190612bd8565b5089516121149060409060208d0190612bd8565b506041805460ff191660ff8b16179055603e80546001600160a01b03199081166001600160a01b038b811691909117909255603b805482168a8416179055603780548216898416179055603980548216888416179055603880548216878416179055603d80548216868416179055603c805490911691841691909117905580156121a4576000805461ff00191690555b5050505050505050505050565b6039546001600160a01b031633146122135760408051600160e51b62461bcd02815260206004820181905260248201527f7468652073656e646572206973206e6f74207468652070726f68696269746572604482015290519081900360640190fd5b603854600160a01b900460ff16156122635760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b0381166122b05760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152603a6020526040902054829060ff16156123235760408051600160e51b62461bcd02815260206004820152601a60248201527f74686973206163636f756e742069732070726f68696269746564000000000000604482015290519081900360640190fd5b6001600160a01b0383166000818152603a6020908152604091829020805460ff191660011790819055825160ff919091161515815291513393927fab0ab2fa6ff81b10c5afab4726a665d4379f2d0acaaafbe4c4d737ade05a8e4692908290030190a3505050565b603b546001600160a01b031633146123db5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020612c94833981519152604482015290519081900360640190fd5b603854600160a01b900460ff161561242b5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b0381166124785760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603980546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f85ae865187b1d7c0069f5fab638cbfcb8f3f9d23bc090e1084abc0dc42def0d290600090a4505050565b60415461010090046001600160a01b031681565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b6039546001600160a01b031681565b603b546001600160a01b031681565b6037546001600160a01b0316331461258f5760408051600160e51b62461bcd02815260206004820152601c60248201527f7468652073656e646572206973206e6f74207468652063617070657200000000604482015290519081900360640190fd5b603854600160a01b900460ff16156125df5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b808060001061262257604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b8161262b610aa3565b111561266b57604051600160e51b62461bcd028152600401808060200182810382526029815260200180612e166029913960400191505060405180910390fd5b61267482612ba3565b5050565b6001600160a01b0383166126c057604051600160e51b62461bcd028152600401808060200182810382526024815260200180612df26024913960400191505060405180910390fd5b6001600160a01b03821661270857604051600160e51b62461bcd028152600401808060200182810382526022815260200180612cb46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000612777848484612a53565b6001600160a01b0384166000908152603460209081526040808320338085529252909120546127b2918691610fab908663ffffffff6129f316565b5060019392505050565b6000828201838110156128195760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661287e5760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b603554612891908263ffffffff6127bc16565b6035556001600160a01b0382166000908152603360205260409020546128bd908263ffffffff6127bc16565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661295d57604051600160e51b62461bcd028152600401808060200182810382526021815260200180612dac6021913960400191505060405180910390fd5b603554612970908263ffffffff6129f316565b6035556001600160a01b03821660009081526033602052604090205461299c908263ffffffff6129f316565b6001600160a01b0383166000818152603360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600082821115612a4d5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316612a9b57604051600160e51b62461bcd028152600401808060200182810382526025815260200180612dcd6025913960400191505060405180910390fd5b6001600160a01b038216612ae357604051600160e51b62461bcd028152600401808060200182810382526023815260200180612c716023913960400191505060405180910390fd5b6001600160a01b038316600090815260336020526040902054612b0c908263ffffffff6129f316565b6001600160a01b038085166000908152603360205260408082209390935590841681522054612b41908263ffffffff6127bc16565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b303b1590565b6036819055604051339082907f3bb5a3ed42af6c70969e54bbe40e4bba09c07f42c120cbec4ac0ee7eb0057fc990600090a350565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612c1957805160ff1916838001178555612c46565b82800160010185558215612c46579182015b82811115612c46578251825591602001919060010190612c2b565b50612c52929150612c56565b5090565b610aa791905b80821115612c525760008155600101612c5c56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573737468652073656e646572206973206e6f74207468652061646d696e000000000045524332303a20617070726f766520746f20746865207a65726f206164647265737374686973206163636f756e7420697320746865207a65726f20616464726573737468652077697065722063616e206f6e6c7920626520696e69746961746564206f6e63657468697320697320612070617573656420636f6e7472616374000000000000007468652073656e646572206973206e6f7420746865206d696e74657241646d696e436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65647468697320616d6f756e74206973206e6f742061206e61747572616c206e756d62657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737468697320616d6f756e74206973206c657373207468616e2074686520746f74616c79537570706c797468697320616d6f756e74206973206d6f7265207468616e206361706163697479a165627a7a72305820a5942bb83691866924c964d6b50092f10adbcd9a562669b7fb73ef0df01054f30029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c80638456cb591161013b578063a9059cbb116100b8578063dcb413c81161007c578063dcb413c814610836578063dd62ed3e1461083e578063dd75049b1461086c578063f851a44014610874578063ff2ad8e41461087c57610248565b8063a9059cbb14610629578063b0e7176614610655578063b89da6421461067b578063c4e1ccf2146107ea578063cffdd46c1461081057610248565b8063988749d1116100ff578063988749d1146105a15780639fd0506d146105c7578063a457c2d7146105cf578063a6f9dae1146105fb578063a754d48f1461062157610248565b80638456cb591461053d5780638da5cb5b146105455780638f2839701461054d578063949a36521461057357806395d89b411461059957610248565b8063313ce567116101c957806350a6aaf41161018d57806350a6aaf4146104d95780635c975abb146104e15780635cfc1a51146104e9578063664dc724146104f157806370a082311461051757610248565b8063313ce5671461043e578063395093511461045c5780633f4ba83a1461048857806340c10f191461049057806342966c68146104bc57610248565b806323b872dd1161021057806323b872dd146103705780632ad3ed6d146103a65780632c4d4d18146103cc5780632cd271e7146103f25780632fee80d01461041857610248565b80630628922d1461024d57806306fdde031461027557806307546172146102f2578063095ea7b31461031657806318160ddd14610356575b600080fd5b6102736004803603602081101561026357600080fd5b50356001600160a01b0316610899565b005b61027d6109f0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b757818101518382015260200161029f565b50505050905090810190601f1680156102e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fa610a7e565b604080516001600160a01b039092168252519081900360200190f35b6103426004803603604081101561032c57600080fd5b506001600160a01b038135169060200135610a8d565b604080519115158252519081900360200190f35b61035e610aa3565b60408051918252519081900360200190f35b6103426004803603606081101561038657600080fd5b506001600160a01b03813581169160208101359091169060400135610aaa565b610342600480360360208110156103bc57600080fd5b50356001600160a01b0316610bc8565b610273600480360360208110156103e257600080fd5b50356001600160a01b0316610bdd565b6102736004803603602081101561040857600080fd5b50356001600160a01b0316610d1e565b6102736004803603602081101561042e57600080fd5b50356001600160a01b0316610e13565b610446610f66565b6040805160ff9092168252519081900360200190f35b6103426004803603604081101561047257600080fd5b506001600160a01b038135169060200135610f6f565b610273610fb0565b610273600480360360408110156104a657600080fd5b506001600160a01b0381351690602001356110c8565b610273600480360360208110156104d257600080fd5b5035611269565b6102fa6112f1565b610342611300565b61035e611310565b6102736004803603602081101561050757600080fd5b50356001600160a01b0316611316565b61035e6004803603602081101561052d57600080fd5b50356001600160a01b03166114e1565b6102736114fc565b6102fa611608565b6102736004803603602081101561056357600080fd5b50356001600160a01b0316611617565b6102736004803603602081101561058957600080fd5b50356001600160a01b031661171e565b61027d6117e4565b610273600480360360208110156105b757600080fd5b50356001600160a01b031661183d565b6102fa6119c1565b610342600480360360408110156105e557600080fd5b506001600160a01b0381351690602001356119d0565b6102736004803603602081101561061157600080fd5b50356001600160a01b0316611a0c565b6102fa611b63565b6103426004803603604081101561063f57600080fd5b506001600160a01b038135169060200135611b72565b6102736004803603602081101561066b57600080fd5b50356001600160a01b0316611c86565b610273600480360361014081101561069257600080fd5b8101906020810181356401000000008111156106ad57600080fd5b8201836020820111156106bf57600080fd5b803590602001918460018302840111640100000000831117156106e157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561073457600080fd5b82018360208201111561074657600080fd5b8035906020019184600183028401116401000000008311171561076857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff8335169350506001600160a01b0360208301358116926040810135821692506060810135821691608082013581169160a081013582169160c082013581169160e0013516611dcb565b6102736004803603602081101561080057600080fd5b50356001600160a01b03166121b1565b6102736004803603602081101561082657600080fd5b50356001600160a01b031661238b565b6102fa6124d0565b61035e6004803603604081101561085457600080fd5b506001600160a01b03813581169160200135166124e4565b6102fa61250f565b6102fa61251e565b6102736004803603602081101561089257600080fd5b503561252d565b603e546001600160a01b031633146108fb5760408051600160e51b62461bcd02815260206004820152601b60248201527f7468652073656e646572206973206e6f7420746865206f776e65720000000000604482015290519081900360640190fd5b603854600160a01b900460ff161561094b5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b0381166109985760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603d80546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f4a85a5117c27071f301f0a758ea45cef77712d3d8358f0883b21c46ee1693d6790600090a4505050565b603f805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a765780601f10610a4b57610100808354040283529160200191610a76565b820191906000526020600020905b815481529060010190602001808311610a5957829003601f168201915b505050505081565b603c546001600160a01b031681565b6000610a9a338484612678565b50600192915050565b6035545b90565b603854600090600160a01b900460ff1615610afd5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152603a6020526040902054849060ff1615610b705760408051600160e51b62461bcd02815260206004820152601a60248201527f74686973206163636f756e742069732070726f68696269746564000000000000604482015290519081900360640190fd5b8280600010610bb357604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b610bbe86868661276a565b9695505050505050565b603a6020526000908152604090205460ff1681565b603d546001600160a01b03163314610c2957604051600160e51b62461bcd028152600401808060200182810382526021815260200180612d3a6021913960400191505060405180910390fd5b603854600160a01b900460ff1615610c795760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b038116610cc65760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603c80546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f6970e71b2bda096f4eb3290c554af7a888cca0ef8b95da09c55b23c6bb30e38190600090a4505050565b603b546001600160a01b03163314610d6e5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020612c94833981519152604482015290519081900360640190fd5b806001600160a01b038116610dbb5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603880546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f8b1ee37fa817a066fe12c7c9bf109c0c9f8f03ef0a5cfe0c03d5196e8c2e465790600090a4505050565b603b546001600160a01b03163314610e635760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020612c94833981519152604482015290519081900360640190fd5b603854600160a01b900460ff1615610eb35760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b038116610f005760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b604180546001600160a01b03848116610100908102610100600160a81b0319841617938490556040519281900482169333939190049091169083907fd8d09cf07cabd1c0519931ab387ce1b6e580584a26fb2787b8ed7f446c34603f90600090a4505050565b60415460ff1681565b3360008181526034602090815260408083206001600160a01b03871684529091528120549091610a9a918590610fab908663ffffffff6127bc16565b612678565b6038546001600160a01b031633146110125760408051600160e51b62461bcd02815260206004820152601c60248201527f7468652073656e646572206973206e6f74207468652070617573657200000000604482015290519081900360640190fd5b603854600160a01b900460ff166110735760408051600160e51b62461bcd02815260206004820152601d60248201527f74686973206973206e6f7420612070617573656420636f6e7472616374000000604482015290519081900360640190fd5b60388054600160a01b60ff0219169081905560408051600160a01b90920460ff16151582525133917f5a9dfee0981174e5203ccf9368a8cabb254f9dea6ca43f96b4bbd10c69415d8a919081900360200190a2565b603c546001600160a01b0316331461112a5760408051600160e51b62461bcd02815260206004820152601c60248201527f7468652073656e646572206973206e6f7420746865206d696e74657200000000604482015290519081900360640190fd5b603854600160a01b900460ff161561117a5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b61119281611186610aa3565b9063ffffffff6127bc16565b6036548111156111d657604051600160e51b62461bcd028152600401808060200182810382526021815260200180612e3f6021913960400191505060405180910390fd5b818060001061121957604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b6112238484612820565b60408051848152905133916001600160a01b038716917fbcad3d7d3dfccb90d49c6063bf70f828901fefc88937d90af74e58e6e55bc39d9181900360200190a350505050565b80806000106112ac57604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b6112b63383612915565b604080518381529051339182917fdbdf9b8e4b75e75b162d151ec8fc7f0561cabab5fcccfa2600be62223e4300c49181900360200190a35050565b6037546001600160a01b031681565b603854600160a01b900460ff1681565b60365481565b6039546001600160a01b031633146113785760408051600160e51b62461bcd02815260206004820181905260248201527f7468652073656e646572206973206e6f74207468652070726f68696269746572604482015290519081900360640190fd5b603854600160a01b900460ff16156113c85760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b0381166114155760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152603a6020526040902054829060ff166114875760408051600160e51b62461bcd02815260206004820152601e60248201527f74686973206163636f756e74206973206e6f742070726f686962697465640000604482015290519081900360640190fd5b6001600160a01b0383166000818152603a60209081526040808320805460ff191690558051928352513393927fab0ab2fa6ff81b10c5afab4726a665d4379f2d0acaaafbe4c4d737ade05a8e4692908290030190a3505050565b6001600160a01b031660009081526033602052604090205490565b6038546001600160a01b0316331461155e5760408051600160e51b62461bcd02815260206004820152601c60248201527f7468652073656e646572206973206e6f74207468652070617573657200000000604482015290519081900360640190fd5b603854600160a01b900460ff16156115ae5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b60388054600160a01b60ff021916600160a01b90811791829055604080519190920460ff1615158152905133917f5a9dfee0981174e5203ccf9368a8cabb254f9dea6ca43f96b4bbd10c69415d8a919081900360200190a2565b603e546001600160a01b031681565b603e546001600160a01b031633146116795760408051600160e51b62461bcd02815260206004820152601b60248201527f7468652073656e646572206973206e6f7420746865206f776e65720000000000604482015290519081900360640190fd5b806001600160a01b0381166116c65760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603b80546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f4eb572e99196bed0270fbd5b17a948e19c3f50a97838cb0d2a75a823ff8e6c5090600090a4505050565b806001600160a01b03811661176b5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b60415461010090046001600160a01b0316156117bb57604051600160e51b62461bcd028152600401808060200182810382526024815260200180612cf66024913960400191505060405180910390fd5b50604180546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b604080548151602060026001841615610100026000190190931692909204601f81018390048302820183018452808252909291830182828015610a765780601f10610a4b57610100808354040283529160200191610a76565b603854600160a01b900460ff161561188d5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b60415461010090046001600160a01b031633146118f45760408051600160e51b62461bcd02815260206004820152601b60248201527f7468652073656e646572206973206e6f74207468652077697065720000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152603a6020526040902054819060ff166119665760408051600160e51b62461bcd02815260206004820152601e60248201527f74686973206163636f756e74206973206e6f742070726f686962697465640000604482015290519081900360640190fd5b6000611971836114e1565b905061197d8382612915565b6040805182815290516001600160a01b038516917f2d2c7da251295f4d722a8ddaf337627952c957ce21b2757c852e47fe81b3a2af919081900360200190a2505050565b6038546001600160a01b031681565b3360008181526034602090815260408083206001600160a01b03871684529091528120549091610a9a918590610fab908663ffffffff6129f316565b603e546001600160a01b03163314611a6e5760408051600160e51b62461bcd02815260206004820152601b60248201527f7468652073656e646572206973206e6f7420746865206f776e65720000000000604482015290519081900360640190fd5b603854600160a01b900460ff1615611abe5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b038116611b0b5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603e80546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f381c0d11398486654573703c51ee8210ce9461764d133f9f0e53b6a53970533190600090a4505050565b603d546001600160a01b031681565b603854600090600160a01b900460ff1615611bc55760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b336000818152603a602052604090205460ff1615611c2d5760408051600160e51b62461bcd02815260206004820152601a60248201527f74686973206163636f756e742069732070726f68696269746564000000000000604482015290519081900360640190fd5b8280600010611c7057604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b611c7b338686612a53565b506001949350505050565b603b546001600160a01b03163314611cd65760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020612c94833981519152604482015290519081900360640190fd5b603854600160a01b900460ff1615611d265760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b038116611d735760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603780546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907fc4d5c17597bd0c5594a7545f36de213c6a58e2f235b165887331fe368618197090600090a4505050565b600054610100900460ff1680611de45750611de4612b9d565b80611df2575060005460ff16155b611e3057604051600160e51b62461bcd02815260040180806020018281038252602e815260200180612d5b602e913960400191505060405180910390fd5b600054610100900460ff16158015611e5b576000805460ff1961ff0019909116610100171660011790555b6001600160a01b038816611eb95760408051600160e51b62461bcd02815260206004820152601a60248201527f5f6f776e657220697320746865207a65726f2061646472657373000000000000604482015290519081900360640190fd5b6001600160a01b038716611f175760408051600160e51b62461bcd02815260206004820152601a60248201527f5f61646d696e20697320746865207a65726f2061646472657373000000000000604482015290519081900360640190fd5b6001600160a01b038616611f755760408051600160e51b62461bcd02815260206004820152601b60248201527f5f63617070657220697320746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b6001600160a01b038516611fd35760408051600160e51b62461bcd02815260206004820152601f60248201527f5f70726f6869626974657220697320746865207a65726f206164647265737300604482015290519081900360640190fd5b6001600160a01b0384166120315760408051600160e51b62461bcd02815260206004820152601b60248201527f5f70617573657220697320746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b6001600160a01b03831661208f5760408051600160e51b62461bcd02815260206004820181905260248201527f5f6d696e74657241646d696e20697320746865207a65726f2061646472657373604482015290519081900360640190fd5b6001600160a01b0382166120ed5760408051600160e51b62461bcd02815260206004820152601b60248201527f5f6d696e74657220697320746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b8a5161210090603f9060208e0190612bd8565b5089516121149060409060208d0190612bd8565b506041805460ff191660ff8b16179055603e80546001600160a01b03199081166001600160a01b038b811691909117909255603b805482168a8416179055603780548216898416179055603980548216888416179055603880548216878416179055603d80548216868416179055603c805490911691841691909117905580156121a4576000805461ff00191690555b5050505050505050505050565b6039546001600160a01b031633146122135760408051600160e51b62461bcd02815260206004820181905260248201527f7468652073656e646572206973206e6f74207468652070726f68696269746572604482015290519081900360640190fd5b603854600160a01b900460ff16156122635760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b0381166122b05760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152603a6020526040902054829060ff16156123235760408051600160e51b62461bcd02815260206004820152601a60248201527f74686973206163636f756e742069732070726f68696269746564000000000000604482015290519081900360640190fd5b6001600160a01b0383166000818152603a6020908152604091829020805460ff191660011790819055825160ff919091161515815291513393927fab0ab2fa6ff81b10c5afab4726a665d4379f2d0acaaafbe4c4d737ade05a8e4692908290030190a3505050565b603b546001600160a01b031633146123db5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020612c94833981519152604482015290519081900360640190fd5b603854600160a01b900460ff161561242b5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b806001600160a01b0381166124785760408051600160e51b62461bcd0281526020600482018190526024820152600080516020612cd6833981519152604482015290519081900360640190fd5b603980546001600160a01b038481166001600160a01b03198316179283905560405191811692339291169083907f85ae865187b1d7c0069f5fab638cbfcb8f3f9d23bc090e1084abc0dc42def0d290600090a4505050565b60415461010090046001600160a01b031681565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b6039546001600160a01b031681565b603b546001600160a01b031681565b6037546001600160a01b0316331461258f5760408051600160e51b62461bcd02815260206004820152601c60248201527f7468652073656e646572206973206e6f74207468652063617070657200000000604482015290519081900360640190fd5b603854600160a01b900460ff16156125df5760408051600160e51b62461bcd0281526020600482015260196024820152600080516020612d1a833981519152604482015290519081900360640190fd5b808060001061262257604051600160e51b62461bcd028152600401808060200182810382526023815260200180612d896023913960400191505060405180910390fd5b8161262b610aa3565b111561266b57604051600160e51b62461bcd028152600401808060200182810382526029815260200180612e166029913960400191505060405180910390fd5b61267482612ba3565b5050565b6001600160a01b0383166126c057604051600160e51b62461bcd028152600401808060200182810382526024815260200180612df26024913960400191505060405180910390fd5b6001600160a01b03821661270857604051600160e51b62461bcd028152600401808060200182810382526022815260200180612cb46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000612777848484612a53565b6001600160a01b0384166000908152603460209081526040808320338085529252909120546127b2918691610fab908663ffffffff6129f316565b5060019392505050565b6000828201838110156128195760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661287e5760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b603554612891908263ffffffff6127bc16565b6035556001600160a01b0382166000908152603360205260409020546128bd908263ffffffff6127bc16565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661295d57604051600160e51b62461bcd028152600401808060200182810382526021815260200180612dac6021913960400191505060405180910390fd5b603554612970908263ffffffff6129f316565b6035556001600160a01b03821660009081526033602052604090205461299c908263ffffffff6129f316565b6001600160a01b0383166000818152603360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600082821115612a4d5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316612a9b57604051600160e51b62461bcd028152600401808060200182810382526025815260200180612dcd6025913960400191505060405180910390fd5b6001600160a01b038216612ae357604051600160e51b62461bcd028152600401808060200182810382526023815260200180612c716023913960400191505060405180910390fd5b6001600160a01b038316600090815260336020526040902054612b0c908263ffffffff6129f316565b6001600160a01b038085166000908152603360205260408082209390935590841681522054612b41908263ffffffff6127bc16565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b303b1590565b6036819055604051339082907f3bb5a3ed42af6c70969e54bbe40e4bba09c07f42c120cbec4ac0ee7eb0057fc990600090a350565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612c1957805160ff1916838001178555612c46565b82800160010185558215612c46579182015b82811115612c46578251825591602001919060010190612c2b565b50612c52929150612c56565b5090565b610aa791905b80821115612c525760008155600101612c5c56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573737468652073656e646572206973206e6f74207468652061646d696e000000000045524332303a20617070726f766520746f20746865207a65726f206164647265737374686973206163636f756e7420697320746865207a65726f20616464726573737468652077697065722063616e206f6e6c7920626520696e69746961746564206f6e63657468697320697320612070617573656420636f6e7472616374000000000000007468652073656e646572206973206e6f7420746865206d696e74657241646d696e436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65647468697320616d6f756e74206973206e6f742061206e61747572616c206e756d62657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737468697320616d6f756e74206973206c657373207468616e2074686520746f74616c79537570706c797468697320616d6f756e74206973206d6f7265207468616e206361706163697479a165627a7a72305820a5942bb83691866924c964d6b50092f10adbcd9a562669b7fb73ef0df01054f30029

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.