ETH Price: $3,059.67 (+2.66%)
Gas: 1 Gwei

Contract

0xdf4F609134a84aae1D18dCe8d863b099c6455598
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Stake201452862024-06-22 5:54:1114 days ago1719035651IN
0xdf4F6091...9c6455598
0 ETH0.000343012
Withdraw197363922024-04-26 1:54:5972 days ago1714096499IN
0xdf4F6091...9c6455598
0 ETH0.00078275.46254862
Claim197363892024-04-26 1:54:2372 days ago1714096463IN
0xdf4F6091...9c6455598
0 ETH0.000784915.60322371
Claim195763032024-04-03 16:01:3594 days ago1712160095IN
0xdf4F6091...9c6455598
0 ETH0.0084471662.49015082
Withdraw195762992024-04-03 16:00:4794 days ago1712160047IN
0xdf4F6091...9c6455598
0 ETH0.0092867964.81300974
Withdraw191544282024-02-04 10:43:11153 days ago1707043391IN
0xdf4F6091...9c6455598
0 ETH0.0023755116.57885616
Claim191544212024-02-04 10:41:47153 days ago1707043307IN
0xdf4F6091...9c6455598
0 ETH0.0018133612.9439104
Withdraw186247982023-11-22 4:07:23227 days ago1700626043IN
0xdf4F6091...9c6455598
0 ETH0.0045397431.68313214
Claim186247072023-11-22 3:49:11227 days ago1700624951IN
0xdf4F6091...9c6455598
0 ETH0.0041522229.64394511
Claim181987372023-09-23 13:11:35287 days ago1695474695IN
0xdf4F6091...9c6455598
0 ETH0.000946147
Withdraw181986902023-09-23 13:02:11287 days ago1695474131IN
0xdf4F6091...9c6455598
0 ETH0.00112277
Withdraw181979692023-09-23 10:37:11287 days ago1695465431IN
0xdf4F6091...9c6455598
0 ETH0.001256927.61025029
Withdraw181744042023-09-20 3:24:23290 days ago1695180263IN
0xdf4F6091...9c6455598
0 ETH0.001309928.8471525
Withdraw181740752023-09-20 2:18:11291 days ago1695176291IN
0xdf4F6091...9c6455598
0 ETH0.001323728.94035386
Claim181740752023-09-20 2:18:11291 days ago1695176291IN
0xdf4F6091...9c6455598
0 ETH0.001405368.94035386
Claim178251562023-08-02 5:14:47339 days ago1690953287IN
0xdf4F6091...9c6455598
0 ETH0.0022143114.0865245
Claim176242142023-07-05 0:48:11368 days ago1688518091IN
0xdf4F6091...9c6455598
0 ETH0.0063509140.40179194
Claim175687212023-06-27 5:45:23375 days ago1687844723IN
0xdf4F6091...9c6455598
0 ETH0.0022005414
Claim174691892023-06-13 6:07:11389 days ago1686636431IN
0xdf4F6091...9c6455598
0 ETH0.0021433215.857185
Withdraw174691872023-06-13 6:06:47389 days ago1686636407IN
0xdf4F6091...9c6455598
0 ETH0.0027687317.26297726
Claim174626872023-06-12 8:06:59390 days ago1686557219IN
0xdf4F6091...9c6455598
0 ETH0.0026582919.66544288
Withdraw174626792023-06-12 8:05:23390 days ago1686557123IN
0xdf4F6091...9c6455598
0 ETH0.002935718.30401928
Claim173432302023-05-26 12:20:23407 days ago1685103623IN
0xdf4F6091...9c6455598
0 ETH0.0032246423.8551591
Withdraw173432262023-05-26 12:19:11407 days ago1685103551IN
0xdf4F6091...9c6455598
0 ETH0.0038388923.93532818
Withdraw166636252023-02-19 15:47:59503 days ago1676821679IN
0xdf4F6091...9c6455598
0 ETH0.004017728.01667481
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Pool3

Compiler Version
v0.7.4+commit.3f05b770

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.7.0;

library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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


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.
     */
    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.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @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. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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;
    }

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _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 virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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


contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract AzukiToken is ERC20("DokiDokiAzuki", "AZUKI"), Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping(string => uint) public operationLockTime;
    mapping(string => bool) public operationTimelockEnabled;
    string private MINT = "mint";
    string private TRANSFER = "transfer";
    string private ADDMINTER = "add_minter";
    string private BURNRATE = "burn_rate";
    uint public unlockDuration = 2 days;

    // mint for Owner
    address public mintTo = address(0);
    uint public mintAmount = 0;
    // add mint for Owner
    address public newMinter = address(0);
    uint public newBurnRate = 0;

    mapping(address => bool) public minters;

    // transfer burn
    uint public burnRate = 5;
    mapping(address => bool) public transferBlacklist;
    mapping(address => bool) public transferFromBlacklist;

    event GonnaMint(address to, uint amount, uint releaseTime);
    event GonnaAddMinter(address newMinter, uint releaseTime);
    event GonnaLockTransfer(uint releaseTime);
    event GonnaChangeBurnRate(uint burnRate);

    modifier onlyMinter() {
        require(minters[msg.sender], "Restricted to minters.");
        _;
    }

    function mint(address to, uint amount) public onlyMinter {
        if (operationTimelockEnabled[MINT]) {
            require(msg.sender != owner(), "Sorry, this function has been locked for Owner.");
        }
        _mint(to, amount);
    }

    function burn(uint amount) public {
        require(amount > 0);
        require(balanceOf(msg.sender) >= amount);
        _burn(msg.sender, amount);
    }

    function addMinter(address account) public onlyOwner {
        require(!operationTimelockEnabled[ADDMINTER], "Sorry, this function has been locked for Owner.");
        minters[account] = true;
    }

    function removeMinter(address account) public onlyOwner {
        minters[account] = false;
    }

    function gonnaMint(address to, uint amount) public onlyOwner {
        mintTo = to;
        mintAmount = amount;
        operationLockTime[MINT] = block.timestamp + unlockDuration;

        emit GonnaMint(to, amount, operationLockTime[MINT]);
    }

    function releaseMint() public onlyOwner {
        require(mintAmount != 0, "mint amount can not be 0.");
        require(block.timestamp >= operationLockTime[MINT], "Mint operation is pending.");
        _mint(mintTo, mintAmount);
        mintTo = address(0);
        mintAmount = 0;
    }

    function gonnaAddMinter(address account) public onlyOwner {
        newMinter = account;
        operationLockTime[ADDMINTER] = block.timestamp + unlockDuration;

        emit GonnaAddMinter(account, operationLockTime[ADDMINTER]);
    }

    function releaseNewMinter() public onlyOwner {
        require(newMinter != address(0), "New minter can not be 0x000.");
        require(block.timestamp >= operationLockTime[ADDMINTER], "Add minter operation is pending.");
        minters[newMinter] = true;
        newMinter = address(0);
    }

    function gonnaLockTransfer() public onlyOwner {
        operationLockTime[TRANSFER] = block.timestamp + unlockDuration;

        emit GonnaLockTransfer(operationLockTime[TRANSFER]);
    }

    function releaseTransferLock() public onlyOwner {
        require(!operationTimelockEnabled[TRANSFER], "Transfer is being locked.");
        require(block.timestamp >= operationLockTime[TRANSFER], "Transfer lock operation is pending.");
        operationTimelockEnabled[TRANSFER] = true;
    }

    function unlockTransfer() public onlyOwner {
        operationTimelockEnabled[TRANSFER] = false;
    }

    function gonnaChangeBurnRate(uint newRate) public onlyOwner {
        newBurnRate = newRate;
        operationLockTime[BURNRATE] = block.timestamp + unlockDuration;
        emit GonnaChangeBurnRate(newRate);
    }

    function releaseNewBurnRate() public onlyOwner {
        require(block.timestamp >= operationLockTime[BURNRATE], "Changing to new burning rate is pending.");
        burnRate = newBurnRate;
    }

    function changeTimelockDuration(uint duration) public onlyOwner {
        require(duration >= 1 days, "Duration must be greater than 1 day.");
        unlockDuration = duration;
    }

    function lockMint() public onlyOwner {
        operationTimelockEnabled[MINT] = true;
    }

    function lockAddMinter() public onlyOwner {
        operationTimelockEnabled[ADDMINTER] = true;
    }

    function addToTransferBlacklist(address account) public onlyOwner {
        transferBlacklist[account] = true;
    }

    function removeFromTransferBlacklist(address account) public onlyOwner {
        transferBlacklist[account] = false;
    }

    function addToTransferFromBlacklist(address account) public onlyOwner {
        transferFromBlacklist[account] = true;
    }

    function removeFromTransferFromBlacklist(address account) public onlyOwner {
        transferFromBlacklist[account] = false;
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(msg.sender == owner() || !operationTimelockEnabled[TRANSFER], "Transfer is being locked.");
        uint256 burnAmount = 0;
        if (transferBlacklist[msg.sender]) {
            burnAmount = amount.mul(burnRate).div(100);
        }
        uint256 transferAmount = amount.sub(burnAmount);
        require(balanceOf(msg.sender) >= amount, "insufficient balance.");
        super.transfer(recipient, transferAmount);
        if (burnAmount != 0) {
            _burn(msg.sender, burnAmount);
        }
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(sender == owner() || !operationTimelockEnabled[TRANSFER], "TransferFrom is being locked.");
        uint256 burnAmount = 0;
        if (transferFromBlacklist[recipient]) {
            burnAmount = amount.mul(burnRate).div(100);
        }
        uint256 transferAmount = amount.sub(burnAmount);
        require(balanceOf(sender) >= amount, "insufficient balance.");
        super.transferFrom(sender, recipient, transferAmount);
        if (burnAmount != 0) {
            _burn(sender, burnAmount);
        }
        return true;
    }
}


library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

contract Pool3 is Ownable {
    using SafeMath for uint256;
    using SafeERC20 for AzukiToken;
    using SafeERC20 for IERC20;
    using Address for address;

    AzukiToken private azuki;
    IERC20 private lpToken;

    //LP token balances
    mapping(address => uint256) private _lpBalances;
    uint private _lpTotalSupply;

    // decreasing period time
    uint256 public constant DURATION = 2 weeks;
    // initial amount of AZUKI
    uint256 public initReward = 240000 * 1e18;
    bool public haveStarted = false;
    // next time of decreasing
    uint256 public halvingTime = 0;
    uint256 public lastUpdateTime = 0;
    // distribution of per second
    uint256 public rewardRate = 0;
    uint256 public rewardPerLPToken = 0;
    mapping(address => uint256) private rewards;
    mapping(address => uint256) private userRewardPerTokenPaid;


    // Something about dev.
    address public devAddr;
    uint256 public devDistributeRate = 0;
    uint256 public lastDistributeTime = 0;
    uint256 public devFinishTime = 0;
    uint256 public devFundAmount = 236000 * 1e18;
    uint256 public devDistributeDuration = 365 days;

    event Stake(address indexed from, uint amount);
    event Withdraw(address indexed to, uint amount);
    event Claim(address indexed to, uint amount);
    event Decreasing(uint amount);
    event Start(uint amount);

    constructor(address _azuki, address _lpToken) {
        azuki = AzukiToken(_azuki);
        lpToken = IERC20(_lpToken);
        devAddr = owner();
    }

    function totalSupply() public view returns(uint256) {
        return _lpTotalSupply;
    }

    function balanceOf(address account) public view returns(uint256) {
        return _lpBalances[account];
    }

    function stake(uint amount) public shouldStarted {
        updateRewards(msg.sender);
        checkDecreasing();
        require(!address(msg.sender).isContract(), "Please use your individual account.");
        _lpTotalSupply = _lpTotalSupply.add(amount);
        _lpBalances[msg.sender] = _lpBalances[msg.sender].add(amount);
        lpToken.safeTransferFrom(msg.sender, address(this), amount);
        distributeDevFund();
        emit Stake(msg.sender, amount);
    }

    function withdraw(uint amount) public shouldStarted {
        updateRewards(msg.sender);
        checkDecreasing();
        require(amount <= _lpBalances[msg.sender] && _lpBalances[msg.sender] > 0, "Bad withdraw.");
        _lpTotalSupply = _lpTotalSupply.sub(amount);
        _lpBalances[msg.sender] = _lpBalances[msg.sender].sub(amount);
        lpToken.safeTransfer(msg.sender, amount);
        distributeDevFund();
        emit Withdraw(msg.sender, amount);
    }

    function claim(uint amount) public shouldStarted {
        updateRewards(msg.sender);
        checkDecreasing();
        require(amount <= rewards[msg.sender] && rewards[msg.sender] > 0, "Bad claim.");
        rewards[msg.sender] = rewards[msg.sender].sub(amount);
        azuki.safeTransfer(msg.sender, amount);
        distributeDevFund();
        emit Claim(msg.sender, amount);
    }

    function checkDecreasing() internal {
        if (block.timestamp >= halvingTime) {
            initReward = initReward.mul(94).div(100);
            azuki.mint(address(this), initReward);

            rewardRate = initReward.div(DURATION);
            halvingTime = halvingTime.add(DURATION);

            updateRewards(msg.sender);
            emit Decreasing(initReward);
        }
    }

    modifier shouldStarted() {
        require(haveStarted == true, "Have not started.");
        _;
    }

    function getRewardsAmount(address account) public view returns(uint256) {
        return balanceOf(account).mul(rewardPerToken().sub(userRewardPerTokenPaid[account]))
                .div(1e18)
                .add(rewards[account]);
    }

    function rewardPerToken() public view returns (uint256) {
        if (_lpTotalSupply == 0) {
            return rewardPerLPToken;
        }
        return rewardPerLPToken
            .add(Math.min(block.timestamp, halvingTime)
                    .sub(lastUpdateTime)
                    .mul(rewardRate)
                    .mul(1e18)
                    .div(_lpTotalSupply)
            );
    }

    function updateRewards(address account) internal {
        rewardPerLPToken = rewardPerToken();
        lastUpdateTime = lastRewardTime();
        if (account != address(0)) {
            rewards[account] = getRewardsAmount(account);
            userRewardPerTokenPaid[account] = rewardPerLPToken;
        }
    }

    function lastRewardTime() public view returns (uint256) {
        return Math.min(block.timestamp, halvingTime);
    }

    function startFarming() external onlyOwner {
        updateRewards(address(0));
        rewardRate = initReward.div(DURATION);

        uint256 mintAmount = initReward.add(devFundAmount);
        azuki.mint(address(this), mintAmount);
        devDistributeRate = devFundAmount.div(devDistributeDuration);
        devFinishTime = block.timestamp.add(devDistributeDuration);

        lastUpdateTime = block.timestamp;
        lastDistributeTime = block.timestamp;
        halvingTime = block.timestamp.add(DURATION);

        haveStarted = true;
        emit Start(mintAmount);
    }

    function transferDevAddr(address newAddr) public onlyDev {
        require(newAddr != address(0), "zero addr");
        devAddr = newAddr;
    }

    function distributeDevFund() internal {
        uint256 nowTime = Math.min(block.timestamp, devFinishTime);
        uint256 fundAmount = nowTime.sub(lastDistributeTime).mul(devDistributeRate);
        azuki.safeTransfer(devAddr, fundAmount);
        lastDistributeTime = nowTime;
    }

    modifier onlyDev() {
        require(msg.sender == devAddr, "This is only for dev.");
        _;
    }

    function lpTokenAddress() view public returns(address) {
        return address(lpToken);
    }

    function azukiAddress() view public returns(address) {
        return address(azuki);
    }

    function testMint() public onlyOwner {
        azuki.mint(address(this), 1);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_azuki","type":"address"},{"internalType":"address","name":"_lpToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Decreasing","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Start","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"azukiAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devDistributeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devDistributeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFinishTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getRewardsAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"halvingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"haveStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastDistributeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerLPToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startFarming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"testMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddr","type":"address"}],"name":"transferDevAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526932d26d12e980b60000006005556000600660006101000a81548160ff0219169083151502179055506000600755600060085560006009556000600a556000600e556000600f5560006010556931f995ec32693b8000006011556301e133806012553480156200007357600080fd5b50604051620028ba380380620028ba833981810160405260408110156200009957600080fd5b8101908080519060200190929190805190602001909291905050506000620000c66200023e60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f66200024660201b60201c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200026f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61263b806200027f6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638366a20511610104578063c6570d85116100a2578063dbe9345111610071578063dbe934511461055a578063f2fde38b146105b2578063f5ae497a146105f6578063fb0e487a1461062a576101cf565b8063c6570d85146104cc578063c8f33c91146104ea578063cd3daf9d14610508578063da09c72c14610526576101cf565b80639642ddaf116100de5780639642ddaf1461046c5780639bfffad714610476578063a694fc3a14610494578063afbcfea1146104c2576101cf565b80638366a205146103fc5780638da5cb5b1461041a5780639231cf741461044e576101cf565b80633ef0cc7b1161017157806370a082311161014b57806370a082311461035e578063715018a6146103b65780637b0a47ee146103c05780637d8033f5146103de576101cf565b80633ef0cc7b146102c85780634b438c341461030c57806353b0f08a1461032a576101cf565b80632e1a7d4d116101ad5780632e1a7d4d1461022e57806335f50ade1461025c578063379607f51461027c5780633cf6bcfe146102aa576101cf565b806318160ddd146101d45780631be05289146101f257806322eb936314610210575b600080fd5b6101dc610648565b6040518082815260200191505060405180910390f35b6101fa610652565b6040518082815260200191505060405180910390f35b610218610659565b6040518082815260200191505060405180910390f35b61025a6004803603602081101561024457600080fd5b810190808035906020019092919050505061065f565b005b61026461094f565b60405180821515815260200191505060405180910390f35b6102a86004803603602081101561029257600080fd5b8101908080359060200190929190505050610962565b005b6102b2610c37565b6040518082815260200191505060405180910390f35b61030a600480360360208110156102de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c3d565b005b610314610de7565b6040518082815260200191505060405180910390f35b610332610ded565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103a06004803603602081101561037457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e17565b6040518082815260200191505060405180910390f35b6103be610e60565b005b6103c8610fe6565b6040518082815260200191505060405180910390f35b6103e6610fec565b6040518082815260200191505060405180910390f35b610404610ff2565b6040518082815260200191505060405180910390f35b610422610ff8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610456611021565b6040518082815260200191505060405180910390f35b610474611034565b005b61047e6111aa565b6040518082815260200191505060405180910390f35b6104c0600480360360208110156104aa57600080fd5b81019080803590602001909291905050506111b0565b005b6104ca611417565b005b6104d4611684565b6040518082815260200191505060405180910390f35b6104f261168a565b6040518082815260200191505060405180910390f35b610510611690565b6040518082815260200191505060405180910390f35b61052e611722565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61059c6004803603602081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611748565b6040518082815260200191505060405180910390f35b6105f4600480360360208110156105c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061182f565b005b6105fe611a3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610632611a64565b6040518082815260200191505060405180910390f35b6000600454905090565b6212750081565b60075481565b60011515600660009054906101000a900460ff161515146106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b6106f133611a6a565b6106f9611b50565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115801561078757506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b6107f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4261642077697468647261772e0000000000000000000000000000000000000081525060200191505060405180910390fd5b61080e81600454611cb690919063ffffffff16565b60048190555061086681600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb690919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506108f63382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b6108fe611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a250565b600660009054906101000a900460ff1681565b60011515600660009054906101000a900460ff161515146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b6109f433611a6a565b6109fc611b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111158015610a8a57506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610afc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f42616420636c61696d2e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610b4e81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb690919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bde3382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b610be6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a250565b600f5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f54686973206973206f6e6c7920666f72206465762e000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f7a65726f2061646472000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e68611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600e5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061102f42600754611e61565b905090565b61103c611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193060016040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561119057600080fd5b505af11580156111a4573d6000803e3d6000fd5b50505050565b60055481565b60011515600660009054906101000a900460ff16151514611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61124233611a6a565b61124a611b50565b6112693373ffffffffffffffffffffffffffffffffffffffff16611e7a565b156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125986023913960400191505060405180910390fd5b6112d481600454611ec590919063ffffffff16565b60048190555061132c81600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ec590919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113be333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f4d909392919063ffffffff16565b6113c6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a826040518082815260200191505060405180910390a250565b61141f611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e96000611a6a565b6115016212750060055461200e90919063ffffffff16565b6009819055506000611520601154600554611ec590919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156115b557600080fd5b505af11580156115c9573d6000803e3d6000fd5b505050506115e460125460115461200e90919063ffffffff16565b600e819055506115ff60125442611ec590919063ffffffff16565b6010819055504260088190555042600f819055506116296212750042611ec590919063ffffffff16565b6007819055506001600660006101000a81548160ff0219169083151502179055507ff06a29c94c6f4edc1085072972d9441f7603e81c8535a308f214285d0653c850816040518082815260200191505060405180910390a150565b600a5481565b60085481565b60008060045414156116a657600a54905061171f565b61171c61170b6004546116fd670de0b6b3a76400006116ef6009546116e16008546116d342600754611e61565b611cb690919063ffffffff16565b61205890919063ffffffff16565b61205890919063ffffffff16565b61200e90919063ffffffff16565b600a54611ec590919063ffffffff16565b90505b90565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611828600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181a670de0b6b3a764000061180c6117f5600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e7611690565b611cb690919063ffffffff16565b6117fe88610e17565b61205890919063ffffffff16565b61200e90919063ffffffff16565b611ec590919063ffffffff16565b9050919050565b611837611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125726026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b611a72611690565b600a81905550611a80611021565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b4d57611ac381611748565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6007544210611cb457611b826064611b74605e60055461205890919063ffffffff16565b61200e90919063ffffffff16565b600581905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19306005546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c1d57600080fd5b505af1158015611c31573d6000803e3d6000fd5b50505050611c4d6212750060055461200e90919063ffffffff16565b600981905550611c6b62127500600754611ec590919063ffffffff16565b600781905550611c7a33611a6a565b7f8f71da3838c672da927ff8d7eab7e3fb263e285972f7f9970d840b84c17801fe6005546040518082815260200191505060405180910390a15b565b6000611cf883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120de565b905092915050565b611d9d8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061219e565b505050565b6000611db042601054611e61565b90506000611ddd600e54611dcf600f5485611cb690919063ffffffff16565b61205890919063ffffffff16565b9050611e4e600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b81600f819055505050565b600033905090565b6000818310611e705781611e72565b825b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015611ebc57506000801b8214155b92505050919050565b600080828401905083811015611f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612008846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061219e565b50505050565b600061205083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061228d565b905092915050565b60008083141561206b57600090506120d8565b600082840290508284828161207c57fe5b04146120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125bb6021913960400191505060405180910390fd5b809150505b92915050565b600083831115829061218b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612150578082015181840152602081019050612135565b50505050905090810190601f16801561217d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060612200826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166123539092919063ffffffff16565b90506000815111156122885780806020019051602081101561222157600080fd5b8101908080519060200190929190505050612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806125dc602a913960400191505060405180910390fd5b5b505050565b60008083118290612339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122fe5780820151818401526020810190506122e3565b50505050905090810190601f16801561232b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161234557fe5b049050809150509392505050565b6060612362848460008561236b565b90509392505050565b606061237685611e7a565b6123e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124385780518252602082019150602081019050602083039250612415565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461249a576040519150601f19603f3d011682016040523d82523d6000602084013e61249f565b606091505b509150915081156124b4578092505050612569565b6000815111156124c75780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561252e578082015181840152602081019050612513565b50505050905090810190601f16801561255b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373506c656173652075736520796f757220696e646976696475616c206163636f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220e3805acff17106938de92a2199e9379eafb5d411f19e2e8cb6e1b33faf40d0da64736f6c63430007040033000000000000000000000000910524678c0b1b23ffb9285a81f99c29c11cbaed000000000000000000000000910524678c0b1b23ffb9285a81f99c29c11cbaed

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638366a20511610104578063c6570d85116100a2578063dbe9345111610071578063dbe934511461055a578063f2fde38b146105b2578063f5ae497a146105f6578063fb0e487a1461062a576101cf565b8063c6570d85146104cc578063c8f33c91146104ea578063cd3daf9d14610508578063da09c72c14610526576101cf565b80639642ddaf116100de5780639642ddaf1461046c5780639bfffad714610476578063a694fc3a14610494578063afbcfea1146104c2576101cf565b80638366a205146103fc5780638da5cb5b1461041a5780639231cf741461044e576101cf565b80633ef0cc7b1161017157806370a082311161014b57806370a082311461035e578063715018a6146103b65780637b0a47ee146103c05780637d8033f5146103de576101cf565b80633ef0cc7b146102c85780634b438c341461030c57806353b0f08a1461032a576101cf565b80632e1a7d4d116101ad5780632e1a7d4d1461022e57806335f50ade1461025c578063379607f51461027c5780633cf6bcfe146102aa576101cf565b806318160ddd146101d45780631be05289146101f257806322eb936314610210575b600080fd5b6101dc610648565b6040518082815260200191505060405180910390f35b6101fa610652565b6040518082815260200191505060405180910390f35b610218610659565b6040518082815260200191505060405180910390f35b61025a6004803603602081101561024457600080fd5b810190808035906020019092919050505061065f565b005b61026461094f565b60405180821515815260200191505060405180910390f35b6102a86004803603602081101561029257600080fd5b8101908080359060200190929190505050610962565b005b6102b2610c37565b6040518082815260200191505060405180910390f35b61030a600480360360208110156102de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c3d565b005b610314610de7565b6040518082815260200191505060405180910390f35b610332610ded565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103a06004803603602081101561037457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e17565b6040518082815260200191505060405180910390f35b6103be610e60565b005b6103c8610fe6565b6040518082815260200191505060405180910390f35b6103e6610fec565b6040518082815260200191505060405180910390f35b610404610ff2565b6040518082815260200191505060405180910390f35b610422610ff8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610456611021565b6040518082815260200191505060405180910390f35b610474611034565b005b61047e6111aa565b6040518082815260200191505060405180910390f35b6104c0600480360360208110156104aa57600080fd5b81019080803590602001909291905050506111b0565b005b6104ca611417565b005b6104d4611684565b6040518082815260200191505060405180910390f35b6104f261168a565b6040518082815260200191505060405180910390f35b610510611690565b6040518082815260200191505060405180910390f35b61052e611722565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61059c6004803603602081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611748565b6040518082815260200191505060405180910390f35b6105f4600480360360208110156105c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061182f565b005b6105fe611a3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610632611a64565b6040518082815260200191505060405180910390f35b6000600454905090565b6212750081565b60075481565b60011515600660009054906101000a900460ff161515146106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b6106f133611a6a565b6106f9611b50565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115801561078757506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b6107f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4261642077697468647261772e0000000000000000000000000000000000000081525060200191505060405180910390fd5b61080e81600454611cb690919063ffffffff16565b60048190555061086681600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb690919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506108f63382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b6108fe611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a250565b600660009054906101000a900460ff1681565b60011515600660009054906101000a900460ff161515146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b6109f433611a6a565b6109fc611b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111158015610a8a57506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610afc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f42616420636c61696d2e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610b4e81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb690919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bde3382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b610be6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a250565b600f5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f54686973206973206f6e6c7920666f72206465762e000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f7a65726f2061646472000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e68611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600e5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061102f42600754611e61565b905090565b61103c611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193060016040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561119057600080fd5b505af11580156111a4573d6000803e3d6000fd5b50505050565b60055481565b60011515600660009054906101000a900460ff16151514611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61124233611a6a565b61124a611b50565b6112693373ffffffffffffffffffffffffffffffffffffffff16611e7a565b156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125986023913960400191505060405180910390fd5b6112d481600454611ec590919063ffffffff16565b60048190555061132c81600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ec590919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113be333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f4d909392919063ffffffff16565b6113c6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a826040518082815260200191505060405180910390a250565b61141f611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e96000611a6a565b6115016212750060055461200e90919063ffffffff16565b6009819055506000611520601154600554611ec590919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156115b557600080fd5b505af11580156115c9573d6000803e3d6000fd5b505050506115e460125460115461200e90919063ffffffff16565b600e819055506115ff60125442611ec590919063ffffffff16565b6010819055504260088190555042600f819055506116296212750042611ec590919063ffffffff16565b6007819055506001600660006101000a81548160ff0219169083151502179055507ff06a29c94c6f4edc1085072972d9441f7603e81c8535a308f214285d0653c850816040518082815260200191505060405180910390a150565b600a5481565b60085481565b60008060045414156116a657600a54905061171f565b61171c61170b6004546116fd670de0b6b3a76400006116ef6009546116e16008546116d342600754611e61565b611cb690919063ffffffff16565b61205890919063ffffffff16565b61205890919063ffffffff16565b61200e90919063ffffffff16565b600a54611ec590919063ffffffff16565b90505b90565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611828600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181a670de0b6b3a764000061180c6117f5600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e7611690565b611cb690919063ffffffff16565b6117fe88610e17565b61205890919063ffffffff16565b61200e90919063ffffffff16565b611ec590919063ffffffff16565b9050919050565b611837611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125726026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b611a72611690565b600a81905550611a80611021565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b4d57611ac381611748565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6007544210611cb457611b826064611b74605e60055461205890919063ffffffff16565b61200e90919063ffffffff16565b600581905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19306005546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c1d57600080fd5b505af1158015611c31573d6000803e3d6000fd5b50505050611c4d6212750060055461200e90919063ffffffff16565b600981905550611c6b62127500600754611ec590919063ffffffff16565b600781905550611c7a33611a6a565b7f8f71da3838c672da927ff8d7eab7e3fb263e285972f7f9970d840b84c17801fe6005546040518082815260200191505060405180910390a15b565b6000611cf883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120de565b905092915050565b611d9d8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061219e565b505050565b6000611db042601054611e61565b90506000611ddd600e54611dcf600f5485611cb690919063ffffffff16565b61205890919063ffffffff16565b9050611e4e600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b81600f819055505050565b600033905090565b6000818310611e705781611e72565b825b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015611ebc57506000801b8214155b92505050919050565b600080828401905083811015611f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612008846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061219e565b50505050565b600061205083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061228d565b905092915050565b60008083141561206b57600090506120d8565b600082840290508284828161207c57fe5b04146120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125bb6021913960400191505060405180910390fd5b809150505b92915050565b600083831115829061218b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612150578082015181840152602081019050612135565b50505050905090810190601f16801561217d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060612200826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166123539092919063ffffffff16565b90506000815111156122885780806020019051602081101561222157600080fd5b8101908080519060200190929190505050612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806125dc602a913960400191505060405180910390fd5b5b505050565b60008083118290612339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122fe5780820151818401526020810190506122e3565b50505050905090810190601f16801561232b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161234557fe5b049050809150509392505050565b6060612362848460008561236b565b90509392505050565b606061237685611e7a565b6123e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124385780518252602082019150602081019050602083039250612415565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461249a576040519150601f19603f3d011682016040523d82523d6000602084013e61249f565b606091505b509150915081156124b4578092505050612569565b6000815111156124c75780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561252e578082015181840152602081019050612513565b50505050905090810190601f16801561255b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373506c656173652075736520796f757220696e646976696475616c206163636f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220e3805acff17106938de92a2199e9379eafb5d411f19e2e8cb6e1b33faf40d0da64736f6c63430007040033

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

000000000000000000000000910524678c0b1b23ffb9285a81f99c29c11cbaed000000000000000000000000910524678c0b1b23ffb9285a81f99c29c11cbaed

-----Decoded View---------------
Arg [0] : _azuki (address): 0x910524678C0B1B23FFB9285a81f99C29C11CBaEd
Arg [1] : _lpToken (address): 0x910524678C0B1B23FFB9285a81f99C29C11CBaEd

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000910524678c0b1b23ffb9285a81f99c29c11cbaed
Arg [1] : 000000000000000000000000910524678c0b1b23ffb9285a81f99c29c11cbaed


Deployed Bytecode Sourcemap

35541:6271:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37109:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35919:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36118:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37816:476;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36048:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38300:395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36528:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40953:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36611:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41624:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37209:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25415:148;;;:::i;:::-;;36230:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36485:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36572:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24773:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40221:120;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41725:84;;;:::i;:::-;;36000:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37328:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40349:596;;;:::i;:::-;;36266:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36155:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39476:409;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36456:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39225:243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25718:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41519:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36662:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37109:92;37152:7;37179:14;;37172:21;;37109:92;:::o;35919:42::-;35954:7;35919:42;:::o;36118:30::-;;;;:::o;37816:476::-;39171:4;39156:19;;:11;;;;;;;;;;;:19;;;39148:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37879:25:::1;37893:10;37879:13;:25::i;:::-;37915:17;:15;:17::i;:::-;37961:11;:23;37973:10;37961:23;;;;;;;;;;;;;;;;37951:6;:33;;:64;;;;;38014:1;37988:11;:23;38000:10;37988:23;;;;;;;;;;;;;;;;:27;37951:64;37943:90;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38061:26;38080:6;38061:14;;:18;;:26;;;;:::i;:::-;38044:14;:43;;;;38124:35;38152:6;38124:11;:23;38136:10;38124:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;38098:11;:23;38110:10;38098:23;;;;;;;;;;;;;;;:61;;;;38170:40;38191:10;38203:6;38170:7;;;;;;;;;;;:20;;;;:40;;;;;:::i;:::-;38221:19;:17;:19::i;:::-;38265:10;38256:28;;;38277:6;38256:28;;;;;;;;;;;;;;;;;;37816:476:::0;:::o;36048:31::-;;;;;;;;;;;;;:::o;38300:395::-;39171:4;39156:19;;:11;;;;;;;;;;;:19;;;39148:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38360:25:::1;38374:10;38360:13;:25::i;:::-;38396:17;:15;:17::i;:::-;38442:7;:19;38450:10;38442:19;;;;;;;;;;;;;;;;38432:6;:29;;:56;;;;;38487:1;38465:7;:19;38473:10;38465:19;;;;;;;;;;;;;;;;:23;38432:56;38424:79;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38536:31;38560:6;38536:7;:19;38544:10;38536:19;;;;;;;;;;;;;;;;:23;;:31;;;;:::i;:::-;38514:7;:19;38522:10;38514:19;;;;;;;;;;;;;;;:53;;;;38578:38;38597:10;38609:6;38578:5;;;;;;;;;;;:18;;;;:38;;;;;:::i;:::-;38627:19;:17;:19::i;:::-;38668:10;38662:25;;;38680:6;38662:25;;;;;;;;;;;;;;;;;;38300:395:::0;:::o;36528:37::-;;;;:::o;40953:147::-;41458:7;;;;;;;;;;;41444:21;;:10;:21;;;41436:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41048:1:::1;41029:21;;:7;:21;;;;41021:43;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;41085:7;41075;;:17;;;;;;;;;;;;;;;;;;40953:147:::0;:::o;36611:44::-;;;;:::o;41624:93::-;41668:7;41703:5;;;;;;;;;;;41688:21;;41624:93;:::o;37209:111::-;37265:7;37292:11;:20;37304:7;37292:20;;;;;;;;;;;;;;;;37285:27;;37209:111;;;:::o;25415:148::-;24995:12;:10;:12::i;:::-;24985:22;;:6;;;;;;;;;;:22;;;24977:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25522:1:::1;25485:40;;25506:6;::::0;::::1;;;;;;;;25485:40;;;;;;;;;;;;25553:1;25536:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;25415:148::o:0;36230:29::-;;;;:::o;36485:36::-;;;;:::o;36572:32::-;;;;:::o;24773:79::-;24811:7;24838:6;;;;;;;;;;;24831:13;;24773:79;:::o;40221:120::-;40268:7;40295:38;40304:15;40321:11;;40295:8;:38::i;:::-;40288:45;;40221:120;:::o;41725:84::-;24995:12;:10;:12::i;:::-;24985:22;;:6;;;;;;;;;;:22;;;24977:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41773:5:::1;;;;;;;;;;;:10;;;41792:4;41799:1;41773:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;41725:84::o:0;36000:41::-;;;;:::o;37328:480::-;39171:4;39156:19;;:11;;;;;;;;;;;:19;;;39148:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37388:25:::1;37402:10;37388:13;:25::i;:::-;37424:17;:15;:17::i;:::-;37461:32;37469:10;37461:30;;;:32::i;:::-;37460:33;37452:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37561:26;37580:6;37561:14;;:18;;:26;;;;:::i;:::-;37544:14;:43;;;;37624:35;37652:6;37624:11;:23;37636:10;37624:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;37598:11;:23;37610:10;37598:23;;;;;;;;;;;;;;;:61;;;;37670:59;37695:10;37715:4;37722:6;37670:7;;;;;;;;;;;:24;;;;:59;;;;;;:::i;:::-;37740:19;:17;:19::i;:::-;37781:10;37775:25;;;37793:6;37775:25;;;;;;;;;;;;;;;;;;37328:480:::0;:::o;40349:596::-;24995:12;:10;:12::i;:::-;24985:22;;:6;;;;;;;;;;:22;;;24977:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40403:25:::1;40425:1;40403:13;:25::i;:::-;40452:24;35954:7;40452:10;;:14;;:24;;;;:::i;:::-;40439:10;:37;;;;40489:18;40510:29;40525:13;;40510:10;;:14;;:29;;;;:::i;:::-;40489:50;;40550:5;;;;;;;;;;;:10;;;40569:4;40576:10;40550:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40618:40;40636:21;;40618:13;;:17;;:40;;;;:::i;:::-;40598:17;:60;;;;40685:42;40705:21;;40685:15;:19;;:42;;;;:::i;:::-;40669:13;:58;;;;40757:15;40740:14;:32;;;;40804:15;40783:18;:36;;;;40844:29;35954:7;40844:15;:19;;:29;;;;:::i;:::-;40830:11;:43;;;;40900:4;40886:11;;:18;;;;;;;;;;;;;;;;;;40920:17;40926:10;40920:17;;;;;;;;;;;;;;;;;;25055:1;40349:596::o:0;36266:35::-;;;;:::o;36155:33::-;;;;:::o;39476:409::-;39523:7;39565:1;39547:14;;:19;39543:75;;;39590:16;;39583:23;;;;39543:75;39635:242;39670:192;39847:14;;39670:150;39815:4;39670:118;39777:10;;39670:80;39735:14;;39670:38;39679:15;39696:11;;39670:8;:38::i;:::-;:64;;:80;;;;:::i;:::-;:106;;:118;;;;:::i;:::-;:144;;:150;;;;:::i;:::-;:176;;:192;;;;:::i;:::-;39635:16;;:34;;:242;;;;:::i;:::-;39628:249;;39476:409;;:::o;36456:22::-;;;;;;;;;;;;;:::o;39225:243::-;39288:7;39315:145;39443:7;:16;39451:7;39443:16;;;;;;;;;;;;;;;;39315:105;39415:4;39315:77;39338:53;39359:22;:31;39382:7;39359:31;;;;;;;;;;;;;;;;39338:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;39315:18;39325:7;39315:9;:18::i;:::-;:22;;:77;;;;:::i;:::-;:99;;:105;;;;:::i;:::-;:127;;:145;;;;:::i;:::-;39308:152;;39225:243;;;:::o;25718:244::-;24995:12;:10;:12::i;:::-;24985:22;;:6;;;;;;;;;;:22;;;24977:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25827:1:::1;25807:22;;:8;:22;;;;25799:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25917:8;25888:38;;25909:6;::::0;::::1;;;;;;;;25888:38;;;;;;;;;;;;25946:8;25937:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;25718:244:::0;:::o;41519:97::-;41565:7;41600;;;;;;;;;;;41585:23;;41519:97;:::o;36662:47::-;;;;:::o;39893:320::-;39972:16;:14;:16::i;:::-;39953;:35;;;;40016:16;:14;:16::i;:::-;39999:14;:33;;;;40066:1;40047:21;;:7;:21;;;40043:163;;40104:25;40121:7;40104:16;:25::i;:::-;40085:7;:16;40093:7;40085:16;;;;;;;;;;;;;;;:44;;;;40178:16;;40144:22;:31;40167:7;40144:31;;;;;;;;;;;;;;;:50;;;;40043:163;39893:320;:::o;38703:401::-;38773:11;;38754:15;:30;38750:347;;38814:27;38837:3;38814:18;38829:2;38814:10;;:14;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;38801:10;:40;;;;38856:5;;;;;;;;;;;:10;;;38875:4;38882:10;;38856:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38923:24;35954:7;38923:10;;:14;;:24;;;;:::i;:::-;38910:10;:37;;;;38976:25;35954:7;38976:11;;:15;;:25;;;;:::i;:::-;38962:11;:39;;;;39018:25;39032:10;39018:13;:25::i;:::-;39063:22;39074:10;;39063:22;;;;;;;;;;;;;;;;;;38750:347;38703:401::o;4477:136::-;4535:7;4562:43;4566:1;4569;4562:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4555:50;;4477:136;;;;:::o;32468:177::-;32551:86;32571:5;32601:23;;;32626:2;32630:5;32578:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32551:19;:86::i;:::-;32468:177;;;:::o;41108:290::-;41157:15;41175:40;41184:15;41201:13;;41175:8;:40::i;:::-;41157:58;;41226:18;41247:54;41283:17;;41247:31;41259:18;;41247:7;:11;;:31;;;;:::i;:::-;:35;;:54;;;;:::i;:::-;41226:75;;41312:39;41331:7;;;;;;;;;;;41340:10;41312:5;;;;;;;;;;;:18;;;;:39;;;;;:::i;:::-;41383:7;41362:18;:28;;;;41108:290;;:::o;755:106::-;808:15;843:10;836:17;;755:106;:::o;297:::-;355:7;386:1;382;:5;:13;;394:1;382:13;;;390:1;382:13;375:20;;297:106;;;;:::o;9083:619::-;9143:4;9405:16;9432:19;9454:66;9432:88;;;;9623:7;9611:20;9599:32;;9663:11;9651:8;:23;;:42;;;;;9690:3;9678:15;;:8;:15;;9651:42;9643:51;;;;9083:619;;;:::o;4013:181::-;4071:7;4091:9;4107:1;4103;:5;4091:17;;4132:1;4127;:6;;4119:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4185:1;4178:8;;;4013:181;;;;:::o;32653:205::-;32754:96;32774:5;32804:27;;;32833:4;32839:2;32843:5;32781:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32754:19;:96::i;:::-;32653:205;;;;:::o;6314:132::-;6372:7;6399:39;6403:1;6406;6399:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6392:46;;6314:132;;;;:::o;5367:471::-;5425:7;5675:1;5670;:6;5666:47;;;5700:1;5693:8;;;;5666:47;5725:9;5741:1;5737;:5;5725:17;;5770:1;5765;5761;:5;;;;;;:10;5753:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5829:1;5822:8;;;5367:471;;;;;:::o;4916:192::-;5002:7;5035:1;5030;:6;;5038:12;5022:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5062:9;5078:1;5074;:5;5062:17;;5099:1;5092:8;;;4916:192;;;;;:::o;34773:761::-;35197:23;35223:69;35251:4;35223:69;;;;;;;;;;;;;;;;;35231:5;35223:27;;;;:69;;;;;:::i;:::-;35197:95;;35327:1;35307:10;:17;:21;35303:224;;;35449:10;35438:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35430:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35303:224;34773:761;;;:::o;6942:278::-;7028:7;7060:1;7056;:5;7063:12;7048:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7087:9;7103:1;7099;:5;;;;;;7087:17;;7211:1;7204:8;;;6942:278;;;;;:::o;12200:196::-;12303:12;12335:53;12358:6;12366:4;12372:1;12375:12;12335:22;:53::i;:::-;12328:60;;12200:196;;;;;:::o;13577:979::-;13707:12;13740:18;13751:6;13740:10;:18::i;:::-;13732:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13866:12;13880:23;13907:6;:11;;13927:8;13938:4;13907:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13865:78;;;;13958:7;13954:595;;;13989:10;13982:17;;;;;;13954:595;14123:1;14103:10;:17;:21;14099:439;;;14366:10;14360:17;14427:15;14414:10;14410:2;14406:19;14399:44;14314:148;14509:12;14502:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13577:979;;;;;;;:::o

Swarm Source

ipfs://e3805acff17106938de92a2199e9379eafb5d411f19e2e8cb6e1b33faf40d0da

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.