ETH Price: $2,439.76 (+0.46%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040113298752020-11-25 21:07:341440 days ago1606338454IN
 Create: UTech
0 ETH0.0391104429

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UTech

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-26
*/

// File: @openzeppelin\upgrades\contracts\Initializable.sol

pragma solidity >=0.4.24 <0.7.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.
    address self = address(this);
    uint256 cs;
    assembly { cs := extcodesize(self) }
    return cs == 0;
  }

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

// File: contracts\interfaces\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.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

// File: contracts\token\ERC20\ERC20Detailed.sol

pragma solidity ^0.5.0;




/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is Initializable, IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    function initialize(string memory name, string memory symbol, uint8 decimals) public initializer {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

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

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

    uint256[50] private ______gap;
}

// File: contracts\upgradable\OwnableUpgradable.sol

pragma solidity ^0.5.16;



contract OwnableUpgradable is Initializable {
    address payable public owner;
    address payable internal newOwnerCandidate;


    modifier onlyOwner {
        require(msg.sender == owner, "Permission denied");
        _;
    }


    // ** INITIALIZERS – Constructors for Upgradable contracts **

    function initialize() public initializer {
        owner = msg.sender;
    }

    function initialize(address payable newOwner) public initializer {
        owner = newOwner;
    }


    function changeOwner(address payable newOwner) public onlyOwner {
        newOwnerCandidate = newOwner;
    }

    function acceptOwner() public {
        require(msg.sender == newOwnerCandidate, "Permission denied");
        owner = newOwnerCandidate;
    }


    uint256[50] private ______gap;
}

// File: contracts\utils\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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        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-contracts/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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: contracts\token\ERC20\ERC233.sol

pragma solidity ^0.5.0;




contract IERC223Recipient {
    /**
     * @dev Standard ERC223 function that will handle incoming token transfers.
     *
     * @param _from  Token sender address.
     * @param _value Amount of tokens.
     */
    function tokenFallback(address _from, uint _value) public;
}

/**
 * @dev Implementation of the {IERC20} interface.
 */
contract ERC233 is Initializable, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;

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

    uint256 internal _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 amount) public returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

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

    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @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, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);

        if(isContract(recipient)) {
            IERC223Recipient receiver = IERC223Recipient(recipient);
            (bool success, bytes memory returndata) = address(receiver).call(abi.encodeWithSelector(receiver.tokenFallback.selector, msg.sender, 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 Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @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 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Destroys `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, "ERC20: burn amount exceeds allowance"));
    }

    uint256[50] private ______gap;
}

// File: contracts\deposits_v3\SimpleToken.sol

pragma solidity ^0.5.16;






contract UTech is
    Initializable,
    ERC20Detailed,
    ERC233,
    OwnableUpgradable
{

    // ** INITIALIZER **

    function initialize() public initializer {
        // Initialize Parents Contracts
        ERC20Detailed.initialize("UTech", "UTI", 18);
        address payable _owner = 0xBF165e10878628768939f0415d7df2A9d52f0aB0;
        OwnableUpgradable.initialize(_owner);
        _mint(_owner, 100000000 * 10**18);
    }


    // ** PUBLIC functions **

    // Transfer to array of addresses
    function transfer(address[] memory recipients, uint256[] memory amounts) public returns(bool) {
        require(recipients.length == amounts.length, "Arrays lengths not equal");

        // transfer to all addresses
        for (uint i = 0; i < recipients.length; i++) {
            _transfer(msg.sender, recipients[i], amounts[i]);
        }

        return true;
    }

}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[],"name":"acceptOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50611779806100206000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c80638da5cb5b116100b2578063a9059cbb11610081578063dd62ed3e11610066578063dd62ed3e14610539578063ebbc496514610574578063ffc3a7691461057c57610136565b8063a9059cbb146104cd578063c4d66de81461050657610136565b80638da5cb5b1461042857806395d89b4114610459578063a457c2d714610461578063a6f9dae11461049a57610136565b806323b872dd1161010957806339509351116100ee57806339509351146103b457806370a08231146103ed5780638129fc1c1461042057610136565b806323b872dd14610353578063313ce5671461039657610136565b806306fdde031461013b578063095ea7b3146101b85780631624f6c61461020557806318160ddd14610339575b600080fd5b6101436106a3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017d578181015183820152602001610165565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f1600480360360408110156101ce57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610758565b604080519115158252519081900360200190f35b6103376004803603606081101561021b57600080fd5b81019060208101813564010000000081111561023657600080fd5b82018360208201111561024857600080fd5b8035906020019184600183028401116401000000008311171561026a57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156102bd57600080fd5b8201836020820111156102cf57600080fd5b803590602001918460018302840111640100000000831117156102f157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061076e9050565b005b610341610886565b60408051918252519081900360200190f35b6101f16004803603606081101561036957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561088c565b61039e610908565b6040805160ff9092168252519081900360200190f35b6101f1600480360360408110156103ca57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610911565b6103416004803603602081101561040357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661095a565b610337610982565b610430610aec565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610143610b08565b6101f16004803603604081101561047757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610b87565b610337600480360360208110156104b057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610be9565b6101f1600480360360408110156104e357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610c9c565b6103376004803603602081101561051c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610ca9565b6103416004803603604081101561054f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610daa565b610337610de2565b6101f16004803603604081101561059257600080fd5b8101906020810181356401000000008111156105ad57600080fd5b8201836020820111156105bf57600080fd5b803590602001918460208302840111640100000000831117156105e157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561063157600080fd5b82018360208201111561064357600080fd5b8035906020019184602083028401116401000000008311171561066557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610e97945050505050565b60338054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561074d5780601f106107225761010080835404028352916020019161074d565b820191906000526020600020905b81548152906001019060200180831161073057829003601f168201915b505050505090505b90565b6000610765338484610f34565b50600192915050565b600054610100900460ff16806107875750610787611047565b80610795575060005460ff16155b6107d05760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a9602e913960400191505060405180910390fd5b600054610100900460ff1615801561081957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0061ff0019909116610100171660011790555b835161082c90603390602087019061157d565b50825161084090603490602086019061157d565b50603580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff84161790558015610880576000805461ff00191690555b50505050565b606a5490565b600061089984848461104d565b6108fe84336108f9856040518060600160405280602881526020016116816028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152606960209081526040808320338452909152902054919063ffffffff61136616565b610f34565b5060019392505050565b60355460ff1690565b33600081815260696020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916107659185906108f9908663ffffffff6113fd16565b73ffffffffffffffffffffffffffffffffffffffff1660009081526068602052604090205490565b600054610100900460ff168061099b575061099b611047565b806109a9575060005460ff16155b6109e45760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a9602e913960400191505060405180910390fd5b600054610100900460ff16158015610a2d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0061ff0019909116610100171660011790555b610aa36040518060400160405280600581526020017f55546563680000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5554490000000000000000000000000000000000000000000000000000000000815250601261076e565b73bf165e10878628768939f0415d7df2a9d52f0ab0610ac181610ca9565b610ad6816a52b7d2dcc80cd2e400000061145e565b508015610ae9576000805461ff00191690555b50565b609d5473ffffffffffffffffffffffffffffffffffffffff1681565b60348054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561074d5780601f106107225761010080835404028352916020019161074d565b600061076533846108f9856040518060600160405280602581526020016117206025913933600090815260696020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919063ffffffff61136616565b609d5473ffffffffffffffffffffffffffffffffffffffff163314610c55576040805162461bcd60e51b815260206004820152601160248201527f5065726d697373696f6e2064656e696564000000000000000000000000000000604482015290519081900360640190fd5b609e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600061076533848461104d565b600054610100900460ff1680610cc25750610cc2611047565b80610cd0575060005460ff16155b610d0b5760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a9602e913960400191505060405180910390fd5b600054610100900460ff16158015610d5457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0061ff0019909116610100171660011790555b609d80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84161790558015610da6576000805461ff00191690555b5050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260696020908152604080832093909416825291909152205490565b609e5473ffffffffffffffffffffffffffffffffffffffff163314610e4e576040805162461bcd60e51b815260206004820152601160248201527f5065726d697373696f6e2064656e696564000000000000000000000000000000604482015290519081900360640190fd5b609e54609d80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60008151835114610eef576040805162461bcd60e51b815260206004820152601860248201527f417272617973206c656e67746873206e6f7420657175616c0000000000000000604482015290519081900360640190fd5b60005b83518110156108fe57610f2c33858381518110610f0b57fe5b6020026020010151858481518110610f1f57fe5b602002602001015161104d565b600101610ef2565b73ffffffffffffffffffffffffffffffffffffffff8316610f865760405162461bcd60e51b81526004018080602001828103825260248152602001806116fc6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610fd85760405162461bcd60e51b81526004018080602001828103825260228152602001806116396022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260696020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b303b1590565b73ffffffffffffffffffffffffffffffffffffffff831661109f5760405162461bcd60e51b81526004018080602001828103825260258152602001806116d76025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166110f15760405162461bcd60e51b81526004018080602001828103825260238152602001806116166023913960400191505060405180910390fd5b6111418160405180606001604052806026815260200161165b6026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260686020526040902054919063ffffffff61136616565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152606860205260408082209390935590841681522054611183908263ffffffff6113fd16565b73ffffffffffffffffffffffffffffffffffffffff83166000908152606860205260409020556111b282611577565b156112fc5760408051336024820152604480820184905282518083039091018152606490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f3b66d02b0000000000000000000000000000000000000000000000000000000017815291518151859360009360609373ffffffffffffffffffffffffffffffffffffffff871693919290918291908083835b6020831061128e57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611251565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146112f0576040519150601f19603f3d011682016040523d82523d6000602084013e6112f5565b606091505b5050505050505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600081848411156113f55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113ba5781810151838201526020016113a2565b50505050905090810190601f1680156113e75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611457576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff82166114c6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b606a546114d9908263ffffffff6113fd16565b606a5573ffffffffffffffffffffffffffffffffffffffff8216600090815260686020526040902054611512908263ffffffff6113fd16565b73ffffffffffffffffffffffffffffffffffffffff831660008181526068602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115be57805160ff19168380011785556115eb565b828001600101855582156115eb579182015b828111156115eb5782518255916020019190600101906115d0565b506115f79291506115fb565b5090565b61075591905b808211156115f7576000815560010161160156fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158200ea0cdf73bcbcb829f877656e798b90aaa242030b136597a7a2cd2874c20a27b64736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101365760003560e01c80638da5cb5b116100b2578063a9059cbb11610081578063dd62ed3e11610066578063dd62ed3e14610539578063ebbc496514610574578063ffc3a7691461057c57610136565b8063a9059cbb146104cd578063c4d66de81461050657610136565b80638da5cb5b1461042857806395d89b4114610459578063a457c2d714610461578063a6f9dae11461049a57610136565b806323b872dd1161010957806339509351116100ee57806339509351146103b457806370a08231146103ed5780638129fc1c1461042057610136565b806323b872dd14610353578063313ce5671461039657610136565b806306fdde031461013b578063095ea7b3146101b85780631624f6c61461020557806318160ddd14610339575b600080fd5b6101436106a3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017d578181015183820152602001610165565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f1600480360360408110156101ce57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610758565b604080519115158252519081900360200190f35b6103376004803603606081101561021b57600080fd5b81019060208101813564010000000081111561023657600080fd5b82018360208201111561024857600080fd5b8035906020019184600183028401116401000000008311171561026a57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156102bd57600080fd5b8201836020820111156102cf57600080fd5b803590602001918460018302840111640100000000831117156102f157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061076e9050565b005b610341610886565b60408051918252519081900360200190f35b6101f16004803603606081101561036957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561088c565b61039e610908565b6040805160ff9092168252519081900360200190f35b6101f1600480360360408110156103ca57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610911565b6103416004803603602081101561040357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661095a565b610337610982565b610430610aec565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610143610b08565b6101f16004803603604081101561047757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610b87565b610337600480360360208110156104b057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610be9565b6101f1600480360360408110156104e357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610c9c565b6103376004803603602081101561051c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610ca9565b6103416004803603604081101561054f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610daa565b610337610de2565b6101f16004803603604081101561059257600080fd5b8101906020810181356401000000008111156105ad57600080fd5b8201836020820111156105bf57600080fd5b803590602001918460208302840111640100000000831117156105e157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561063157600080fd5b82018360208201111561064357600080fd5b8035906020019184602083028401116401000000008311171561066557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610e97945050505050565b60338054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561074d5780601f106107225761010080835404028352916020019161074d565b820191906000526020600020905b81548152906001019060200180831161073057829003601f168201915b505050505090505b90565b6000610765338484610f34565b50600192915050565b600054610100900460ff16806107875750610787611047565b80610795575060005460ff16155b6107d05760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a9602e913960400191505060405180910390fd5b600054610100900460ff1615801561081957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0061ff0019909116610100171660011790555b835161082c90603390602087019061157d565b50825161084090603490602086019061157d565b50603580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff84161790558015610880576000805461ff00191690555b50505050565b606a5490565b600061089984848461104d565b6108fe84336108f9856040518060600160405280602881526020016116816028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152606960209081526040808320338452909152902054919063ffffffff61136616565b610f34565b5060019392505050565b60355460ff1690565b33600081815260696020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916107659185906108f9908663ffffffff6113fd16565b73ffffffffffffffffffffffffffffffffffffffff1660009081526068602052604090205490565b600054610100900460ff168061099b575061099b611047565b806109a9575060005460ff16155b6109e45760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a9602e913960400191505060405180910390fd5b600054610100900460ff16158015610a2d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0061ff0019909116610100171660011790555b610aa36040518060400160405280600581526020017f55546563680000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5554490000000000000000000000000000000000000000000000000000000000815250601261076e565b73bf165e10878628768939f0415d7df2a9d52f0ab0610ac181610ca9565b610ad6816a52b7d2dcc80cd2e400000061145e565b508015610ae9576000805461ff00191690555b50565b609d5473ffffffffffffffffffffffffffffffffffffffff1681565b60348054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561074d5780601f106107225761010080835404028352916020019161074d565b600061076533846108f9856040518060600160405280602581526020016117206025913933600090815260696020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919063ffffffff61136616565b609d5473ffffffffffffffffffffffffffffffffffffffff163314610c55576040805162461bcd60e51b815260206004820152601160248201527f5065726d697373696f6e2064656e696564000000000000000000000000000000604482015290519081900360640190fd5b609e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600061076533848461104d565b600054610100900460ff1680610cc25750610cc2611047565b80610cd0575060005460ff16155b610d0b5760405162461bcd60e51b815260040180806020018281038252602e8152602001806116a9602e913960400191505060405180910390fd5b600054610100900460ff16158015610d5457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0061ff0019909116610100171660011790555b609d80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84161790558015610da6576000805461ff00191690555b5050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260696020908152604080832093909416825291909152205490565b609e5473ffffffffffffffffffffffffffffffffffffffff163314610e4e576040805162461bcd60e51b815260206004820152601160248201527f5065726d697373696f6e2064656e696564000000000000000000000000000000604482015290519081900360640190fd5b609e54609d80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60008151835114610eef576040805162461bcd60e51b815260206004820152601860248201527f417272617973206c656e67746873206e6f7420657175616c0000000000000000604482015290519081900360640190fd5b60005b83518110156108fe57610f2c33858381518110610f0b57fe5b6020026020010151858481518110610f1f57fe5b602002602001015161104d565b600101610ef2565b73ffffffffffffffffffffffffffffffffffffffff8316610f865760405162461bcd60e51b81526004018080602001828103825260248152602001806116fc6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610fd85760405162461bcd60e51b81526004018080602001828103825260228152602001806116396022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260696020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b303b1590565b73ffffffffffffffffffffffffffffffffffffffff831661109f5760405162461bcd60e51b81526004018080602001828103825260258152602001806116d76025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166110f15760405162461bcd60e51b81526004018080602001828103825260238152602001806116166023913960400191505060405180910390fd5b6111418160405180606001604052806026815260200161165b6026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260686020526040902054919063ffffffff61136616565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152606860205260408082209390935590841681522054611183908263ffffffff6113fd16565b73ffffffffffffffffffffffffffffffffffffffff83166000908152606860205260409020556111b282611577565b156112fc5760408051336024820152604480820184905282518083039091018152606490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f3b66d02b0000000000000000000000000000000000000000000000000000000017815291518151859360009360609373ffffffffffffffffffffffffffffffffffffffff871693919290918291908083835b6020831061128e57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611251565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146112f0576040519150601f19603f3d011682016040523d82523d6000602084013e6112f5565b606091505b5050505050505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600081848411156113f55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113ba5781810151838201526020016113a2565b50505050905090810190601f1680156113e75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611457576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff82166114c6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b606a546114d9908263ffffffff6113fd16565b606a5573ffffffffffffffffffffffffffffffffffffffff8216600090815260686020526040902054611512908263ffffffff6113fd16565b73ffffffffffffffffffffffffffffffffffffffff831660008181526068602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115be57805160ff19168380011785556115eb565b828001600101855582156115eb579182015b828111156115eb5782518255916020019190600101906115d0565b506115f79291506115fb565b5090565b61075591905b808211156115f7576000815560010161160156fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158200ea0cdf73bcbcb829f877656e798b90aaa242030b136597a7a2cd2874c20a27b64736f6c63430005110032

Deployed Bytecode Sourcemap

21412:912:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21412:912:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5743:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5743:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14852:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14852:150:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5487:186;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5487:186:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;5487:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;5487:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;5487:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;5487:186:0;;;;;;;;-1:-1:-1;5487:186:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;5487:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;5487:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;5487:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;5487:186:0;;-1:-1:-1;;;5487:186:0;;;;;-1:-1:-1;5487:186:0;;-1:-1:-1;5487:186:0:i;:::-;;13875:91;;;:::i;:::-;;;;;;;;;;;;;;;;15474:300;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15474:300:0;;;;;;;;;;;;;;;;;;:::i;6595:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16183:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16183:206:0;;;;;;;;;:::i;14029:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14029:110:0;;;;:::i;21544:314::-;;;:::i;6861:28::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5945:87;;;:::i;16892:257::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16892:257:0;;;;;;;;;:::i;7325:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7325:111:0;;;;:::i;14352:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14352:156:0;;;;;;;;;:::i;7215:100::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7215:100:0;;;;:::i;14571:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14571:134:0;;;;;;;;;;;:::i;7444:146::-;;;:::i;21940:379::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21940:379:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;21940:379:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21940:379:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;21940:379:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;21940:379:0;;;;;;;;-1:-1:-1;21940:379:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;21940:379:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21940:379:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;21940:379:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;21940:379:0;;-1:-1:-1;21940:379:0;;-1:-1:-1;;;;;21940:379:0:i;5743:83::-;5813:5;5806:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5780:13;;5806:12;;5813:5;;5806:12;;5813:5;5806:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5743:83;;:::o;14852:150::-;14918:4;14935:37;14944:10;14956:7;14965:6;14935:8;:37::i;:::-;-1:-1:-1;14990:4:0;14852:150;;;;:::o;5487:186::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;1324:18;-1:-1:-1;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;5595:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;5618:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;5645:9:0;:20;;;;;;;;;;1368:57;;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;1368:57;5487:186;;;;:::o;13875:91::-;13946:12;;13875:91;:::o;15474:300::-;15563:4;15580:36;15590:6;15598:9;15609:6;15580:9;:36::i;:::-;15627:117;15636:6;15644:10;15656:87;15692:6;15656:87;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;;;15676:10;15656:31;;;;;;;;;:87;;:35;:87;:::i;:::-;15627:8;:117::i;:::-;-1:-1:-1;15762:4:0;15474:300;;;;;:::o;6595:83::-;6661:9;;;;6595:83;:::o;16183:206::-;16289:10;16263:4;16310:23;;;:11;:23;;;;;;;;;:32;;;;;;;;;;16263:4;;16280:79;;16301:7;;16310:48;;16347:10;16310:48;:36;:48;:::i;14029:110::-;14113:18;;14086:7;14113:18;;;:9;:18;;;;;;;14029:110::o;21544:314::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;1324:18;-1:-1:-1;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;21637:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21678:2;21637:24;:44::i;:::-;21717:42;21770:36;21717:42;21770:28;:36::i;:::-;21817:33;21823:6;21831:18;21817:5;:33::i;:::-;1358:1;1372:14;1368:57;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;1368:57;21544:314;:::o;6861:28::-;;;;;;:::o;5945:87::-;6017:7;6010:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5984:13;;6010:14;;6017:7;;6010:14;;6017:7;6010:14;;;;;;;;;;;;;;;;;;;;;;;;16892:257;16977:4;16994:125;17003:10;17015:7;17024:94;17061:15;17024:94;;;;;;;;;;;;;;;;;17036:10;17024:23;;;;:11;:23;;;;;;;;;:32;;;;;;;;;;;:94;;:36;:94;:::i;7325:111::-;7001:5;;;;6987:10;:19;6979:49;;;;;-1:-1:-1;;;6979:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7400:17;:28;;;;;;;;;;;;;;;7325:111::o;14352:156::-;14421:4;14438:40;14448:10;14460:9;14471:6;14438:9;:40::i;7215:100::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;1324:18;-1:-1:-1;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;7291:5;:16;;;;;;;;;;1368:57;;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;1368:57;7215:100;;:::o;14571:134::-;14670:18;;;;14643:7;14670:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14571:134::o;7444:146::-;7507:17;;;;7493:10;:31;7485:61;;;;;-1:-1:-1;;;7485:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7565:17;;7557:5;:25;;;;7565:17;;;;7557:25;;;;;;7444:146::o;21940:379::-;22028:4;22074:7;:14;22053:10;:17;:35;22045:72;;;;;-1:-1:-1;;;22045:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22173:6;22168:120;22189:10;:17;22185:1;:21;22168:120;;;22228:48;22238:10;22250;22261:1;22250:13;;;;;;;;;;;;;;22265:7;22273:1;22265:10;;;;;;;;;;;;;;22228:9;:48::i;:::-;22208:3;;22168:120;;20527:338;20621:19;;;20613:68;;;;-1:-1:-1;;;20613:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20700:21;;;20692:68;;;;-1:-1:-1;;;20692:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20773:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20825:32;;;;;;;;;;;;;;;;;20527:338;;;:::o;1519:508::-;1936:4;1982:17;2014:7;1519:508;:::o;18069:749::-;18167:20;;;18159:70;;;;-1:-1:-1;;;18159:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18248:23;;;18240:71;;;;-1:-1:-1;;;18240:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18344;18366:6;18344:71;;;;;;;;;;;;;;;;;:17;;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;18324:17;;;;;;;;:9;:17;;;;;;:91;;;;18449:20;;;;;;;:32;;18474:6;18449:32;:24;:32;:::i;:::-;18426:20;;;;;;;:9;:20;;;;;:55;18497:21;18436:9;18497:10;:21::i;:::-;18494:264;;;18670:75;;;18726:10;18670:75;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18670:75:0;;;;;;;25:18:-1;;61:17;;18670:75:0;182:15:-1;18693:31:0;179:29:-1;160:49;;18647:99:0;;;;18580:9;;18535:25;;18620:23;;18647:22;;;;18670:75;;18647:99;;;;25:18:-1;18647:99:0;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;139:12;;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;18647:99:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;;;;;;18494:264:0;18792:9;18775:35;;18784:6;18775:35;;;18803:6;18775:35;;;;;;;;;;;;;;;;;;18069:749;;;:::o;9466:192::-;9552:7;9588:12;9580:6;;;;9572:29;;;;-1:-1:-1;;;9572:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9572:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9624:5:0;;;9466:192::o;8537:181::-;8595:7;8627:5;;;8651:6;;;;8643:46;;;;;-1:-1:-1;;;8643:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8709:1;8537:181;-1:-1:-1;;;8537:181:0:o;19099:308::-;19175:21;;;19167:65;;;;;-1:-1:-1;;;19167:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19260:12;;:24;;19277:6;19260:24;:16;:24;:::i;:::-;19245:12;:39;19316:18;;;;;;;:9;:18;;;;;;:30;;19339:6;19316:30;:22;:30;:::i;:::-;19295:18;;;;;;;:9;:18;;;;;;;;:51;;;;19362:37;;;;;;;19295:18;;;;19362:37;;;;;;;;;;19099:308;;:::o;17157:422::-;17524:20;17563:8;;;17157:422::o;21412:912::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21412:912:0;;;-1:-1:-1;21412:912:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://0ea0cdf73bcbcb829f877656e798b90aaa242030b136597a7a2cd2874c20a27b

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.