ETH Price: $2,601.71 (-2.21%)
Gas: 1 Gwei

Contract

0x613f654C7BBB948219f3952173518DEBCD963718
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw159563352022-11-12 20:30:11636 days ago1668285011IN
0x613f654C...BCD963718
0 ETH0.0012027413.05730672
Get Reward159563322022-11-12 20:29:35636 days ago1668284975IN
0x613f654C...BCD963718
0 ETH0.0011565313.0167278
Get Reward159241662022-11-08 8:38:11640 days ago1667896691IN
0x613f654C...BCD963718
0 ETH0.0012340113.88872821
Get Reward159046762022-11-05 15:21:47643 days ago1667661707IN
0x613f654C...BCD963718
0 ETH0.001122713
Get Reward158359972022-10-27 1:02:23653 days ago1666832543IN
0x613f654C...BCD963718
0 ETH0.0010953212.32784482
Get Reward156972062022-10-07 15:47:35672 days ago1665157655IN
0x613f654C...BCD963718
0 ETH0.0014608316.44163146
Get Reward156938882022-10-07 4:38:47672 days ago1665117527IN
0x613f654C...BCD963718
0 ETH0.000305223.43533809
Get Reward155813382022-09-21 11:04:47688 days ago1663758287IN
0x613f654C...BCD963718
0 ETH0.000286013.21910647
Get Reward155255962022-09-13 7:06:09696 days ago1663052769IN
0x613f654C...BCD963718
0 ETH0.000503495.66676228
Get Reward155194122022-09-12 6:28:00697 days ago1662964080IN
0x613f654C...BCD963718
0 ETH0.000478145.38146537
Get Reward154999672022-09-09 1:32:21701 days ago1662687141IN
0x613f654C...BCD963718
0 ETH0.001275614.35678663
Get Reward154664962022-09-03 16:43:22706 days ago1662223402IN
0x613f654C...BCD963718
0 ETH0.000558846.28979954
Get Reward154565032022-09-02 2:22:05708 days ago1662085325IN
0x613f654C...BCD963718
0 ETH0.0010426111.73453708
Get Reward154430962022-08-30 22:58:35710 days ago1661900315IN
0x613f654C...BCD963718
0 ETH0.001969622.16777086
Get Reward154394522022-08-30 8:54:56710 days ago1661849696IN
0x613f654C...BCD963718
0 ETH0.000746739.93401216
Get Reward154252852022-08-28 2:41:05713 days ago1661654465IN
0x613f654C...BCD963718
0 ETH0.000486835.47925269
Get Reward154065602022-08-25 2:33:32716 days ago1661394812IN
0x613f654C...BCD963718
0 ETH0.000611936.88733361
Get Reward153768132022-08-20 9:25:13720 days ago1660987513IN
0x613f654C...BCD963718
0 ETH0.000405564.31086185
Withdraw153550572022-08-16 22:37:59724 days ago1660689479IN
0x613f654C...BCD963718
0 ETH0.00127510.58193645
Get Reward153550512022-08-16 22:36:34724 days ago1660689394IN
0x613f654C...BCD963718
0 ETH0.0009556610.16121261
Get Reward153414592022-08-14 18:55:16726 days ago1660503316IN
0x613f654C...BCD963718
0 ETH0.0017409618.51109531
Get Reward153340612022-08-13 14:53:44727 days ago1660402424IN
0x613f654C...BCD963718
0 ETH0.000754738.02483991
Get Reward153300902022-08-13 0:01:11728 days ago1660348871IN
0x613f654C...BCD963718
0 ETH0.000791888.41986427
Get Reward153146602022-08-10 13:40:37730 days ago1660138837IN
0x613f654C...BCD963718
0 ETH0.0024893126.46802342
Get Reward153141032022-08-10 11:35:28730 days ago1660131328IN
0x613f654C...BCD963718
0 ETH0.001314613.97774549
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:
YvsLiquidityPool

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity 0.6.12;



/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
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;
    }
}


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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 () internal {
        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;
    }
}


// Inheritance
// https://docs.synthetix.io/contracts/Pausable
abstract contract Pausable is Ownable {
    uint256 public lastPauseTime;
    bool public paused;

    constructor() internal {
        // This contract is abstract, and thus cannot be instantiated directly
        require(owner() != address(0), "Owner must be set");
        // Paused will be false, and lastPauseTime will be 0 upon initialisation
    }

    /**
     * @notice Change the paused state of the contract
     * @dev Only the contract owner may call this.
     */
    function setPaused(bool _paused) external onlyOwner {
        // Ensure we're actually changing the state before we do anything
        if (_paused == paused) {
            return;
        }

        // Set our paused state.
        paused = _paused;

        // If applicable, set the last pause time.
        if (paused) {
            lastPauseTime = now;
        }

        // Let everyone know that our pause state has changed.
        emit PauseChanged(paused);
    }

    event PauseChanged(bool isPaused);

    modifier notPaused {
        require(
            !paused,
            "This action cannot be performed while the contract is paused"
        );
        _;
    }
}


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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    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;
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: contracts/utils/Address.sol
/**
 * @dev Collection of functions related to the address type
 */
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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
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 YvsLiquidityPool is ReentrancyGuard, Pausable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    // STATE VARIABLES

    address public controller;

    IERC20 public rewardsToken;
    IERC20 public stakingToken;
    uint256 public periodFinish = 0;
    uint256 public rewardRate = 0;
    uint256 public rewardsDuration = 52600000;
    uint256 public lastUpdateTime;
    uint256 public rewardPerTokenStored;

    mapping(address => uint256) public userRewardPerTokenPaid;
    mapping(address => uint256) public rewards;

    uint256 private _totalSupply;
    uint256 private _totalLocked;

    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _locked;

    // CONSTRUCTOR

    constructor(
        address _rewardsToken,
        address _stakingToken
    ) public {
        rewardsToken = IERC20(_rewardsToken);
        if (_stakingToken != address(0)) {
            stakingToken = IERC20(_stakingToken);
        }
    }

    // VIEWS

    function totalSupply() external view returns (uint256) {
        return _totalSupply;
    }

    function totalLocked() external view returns (uint256) {
        return _totalLocked;
    }

    function balanceOf(address account) external view returns (uint256) {
        return _balances[account];
    }

    function withdrawable(address account) external view returns (uint256) {
        return _balances[account].sub(_locked[account]);
    }

    function lastTimeRewardApplicable() public view returns (uint256) {
        return min(block.timestamp, periodFinish);
    }

    function rewardPerToken() public view returns (uint256) {
        if (_totalSupply == 0) {
            return rewardPerTokenStored;
        }
        return
            rewardPerTokenStored.add(
                lastTimeRewardApplicable()
                    .sub(lastUpdateTime)
                    .mul(rewardRate)
                    .mul(1e18)
                    .div(_totalSupply)
            );
    }

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

    function getRewardForDuration() external view returns (uint256) {
        return rewardRate.mul(rewardsDuration);
    }

    function min(uint256 a, uint256 b) public pure returns (uint256) {
        return a < b ? a : b;
    }

    // PUBLIC FUNCTIONS

    function stake(uint256 amount)
        external
        nonReentrant
        notPaused
        updateReward(msg.sender)
    {
        require(amount > 0, "stake: cannot stake 0");

        uint256 balBefore = stakingToken.balanceOf(address(this));
        stakingToken.safeTransferFrom(msg.sender, address(this), amount);
        uint256 balAfter = stakingToken.balanceOf(address(this));
        uint256 actualReceived = balAfter.sub(balBefore);

        // 50 % od deposited liquidity is locked forever
        uint256 lockedAmount = actualReceived.div(2);
        _totalSupply = _totalSupply.add(actualReceived);
        _balances[msg.sender] = _balances[msg.sender].add(actualReceived);
        _locked[msg.sender] = _locked[msg.sender].add(lockedAmount);
        _totalLocked = _totalLocked.add(lockedAmount);
        
        emit Staked(msg.sender, amount);
    }

    function withdraw(uint256 amount)
        public
        nonReentrant
        updateReward(msg.sender)
    {
        require(amount > 0, "withdraw: cannot withdraw 0");
        require(_balances[msg.sender].sub(amount) >= _locked[msg.sender], "withdraw: 50 % of tokens stay locked forever");

        // user can only withdraw what is not locked
        _totalSupply = _totalSupply.sub(amount);
        _balances[msg.sender] = _balances[msg.sender].sub(amount);
        stakingToken.safeTransfer(msg.sender, amount);

        emit Withdrawn(msg.sender, amount);
    }

    function getReward() public nonReentrant updateReward(msg.sender) {
        uint256 reward = rewards[msg.sender];
        if (reward > 0) {
            rewards[msg.sender] = 0;
            rewardsToken.safeTransfer(msg.sender, reward);
            emit RewardPaid(msg.sender, reward);
        }
    }

    function exit() external {
        withdraw(_balances[msg.sender].sub(_locked[msg.sender]));
        getReward();
    }

    // RESTRICTED FUNCTIONS

    function setStakingToken(address _stakingToken)
        external
        restricted
    {
        require(address(stakingToken) == address(0), "!stakingToken");
        stakingToken = IERC20(_stakingToken);
    }

    function setController(address _controller)
        external
        restricted
    {
        require(controller == address(0), "!controller");
        controller = _controller;
    }

    function notifyRewardAmount(uint256 reward)
        external
        restricted
        updateReward(address(0))
    {
        if (block.timestamp >= periodFinish) {
            rewardRate = reward.div(rewardsDuration);
        } else {
            uint256 remaining = periodFinish.sub(block.timestamp);
            uint256 leftover = remaining.mul(rewardRate);
            rewardRate = reward.add(leftover).div(rewardsDuration);
        }

        // Ensure the provided reward amount is not more than the balance in the contract.
        // This keeps the reward rate in the right range, preventing overflows due to
        // very high values of rewardRate in the earned and rewardsPerToken functions;
        // Reward + leftover must be less than 2^256 / 10^18 to avoid overflow.
        uint256 balance = rewardsToken.balanceOf(address(this));
        require(
            rewardRate <= balance.div(rewardsDuration),
            "Provided reward too high"
        );

        lastUpdateTime = block.timestamp;
        periodFinish = block.timestamp.add(rewardsDuration);
        emit RewardAdded(reward);
    }

    // Added to support recovering LP Rewards from other systems such as BAL to be distributed to holders
    function recoverERC20(address tokenAddress, uint256 tokenAmount)
        external
        onlyOwner
    {
        // Cannot recover the staking token or the rewards token
        require(
            tokenAddress != address(stakingToken) &&
                tokenAddress != address(rewardsToken),
            "Cannot withdraw the staking or rewards tokens"
        );
        IERC20(tokenAddress).safeTransfer(owner(), tokenAmount);
        emit Recovered(tokenAddress, tokenAmount);
    }

    function setRewardsDuration(uint256 _rewardsDuration) external restricted {
        require(
            block.timestamp > periodFinish,
            "Previous rewards period must be complete before changing the duration for the new period"
        );
        rewardsDuration = _rewardsDuration;
        emit RewardsDurationUpdated(rewardsDuration);
    }

    // *** MODIFIERS ***

    modifier updateReward(address account) {
        rewardPerTokenStored = rewardPerToken();
        lastUpdateTime = lastTimeRewardApplicable();
        if (account != address(0)) {
            rewards[account] = earned(account);
            userRewardPerTokenPaid[account] = rewardPerTokenStored;
        }

        _;
    }

    modifier restricted {
        require(
            msg.sender == controller ||
            msg.sender == owner(),
            '!restricted'
        );

        _;
    }

    // EVENTS

    event RewardAdded(uint256 reward);
    event Staked(address indexed user, uint256 amount);
    event Withdrawn(address indexed user, uint256 amount);
    event RewardPaid(address indexed user, uint256 reward);
    event RewardsDurationUpdated(uint256 newDuration);
    event Recovered(address token, uint256 amount);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_stakingToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PauseChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Recovered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"RewardsDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastPauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","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":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsDuration","type":"uint256"}],"name":"setRewardsDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingToken","type":"address"}],"name":"setStakingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600060065560006007556303229cc06008553480156200002357600080fd5b506040516200370838038062003708833981810160405260408110156200004957600080fd5b810190808051906020019092919080519060200190929190505050600160008190555060006200007e6200029060201b60201c565b905080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600073ffffffffffffffffffffffffffffffffffffffff16620001456200029860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161415620001d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4f776e6572206d7573742062652073657400000000000000000000000000000081525060200191505060405180910390fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620002885780600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050620002c2565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61343680620002d26000396000f3fe608060405234801561001057600080fd5b50600436106102055760003560e01c806380faa57d1161011a578063cc1a378f116100ad578063df136d651161007c578063df136d65146107aa578063e9fad8ee146107c8578063ebe2b12b146107d2578063f2fde38b146107f0578063f77c47911461083457610205565b8063cc1a378f146106d2578063cd3daf9d14610700578063ce513b6f1461071e578063d1af0c7d1461077657610205565b806391b4ded9116100e957806391b4ded91461062457806392eefe9b14610642578063a694fc3a14610686578063c8f33c91146106b457610205565b806380faa57d1461052c5780638980f11f1461054a5780638b876347146105985780638da5cb5b146105f057610205565b80633c6b16ab1161019d57806370a082311161016c57806370a082311461042c578063715018a61461048457806372f702f31461048e5780637ae2b5c7146104c25780637b0a47ee1461050e57610205565b80633c6b16ab146103b65780633d18b912146103e457806356891412146103ee5780635c975abb1461040c57610205565b80631c1f78eb116101d95780631c1f78eb146103085780631e9b12ef146103265780632e1a7d4d1461036a578063386a95251461039857610205565b80628cc2621461020a5780630700037d1461026257806316c38b3c146102ba57806318160ddd146102ea575b600080fd5b61024c6004803603602081101561022057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610868565b6040518082815260200191505060405180910390f35b6102a46004803603602081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610986565b6040518082815260200191505060405180910390f35b6102e8600480360360208110156102d057600080fd5b8101908080351515906020019092919050505061099e565b005b6102f2610b0b565b6040518082815260200191505060405180910390f35b610310610b15565b6040518082815260200191505060405180910390f35b6103686004803603602081101561033c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b33565b005b6103966004803603602081101561038057600080fd5b8101908080359060200190929190505050610d3b565b005b6103a0611156565b6040518082815260200191505060405180910390f35b6103e2600480360360208110156103cc57600080fd5b810190808035906020019092919050505061115c565b005b6103ec61157e565b005b6103f661181d565b6040518082815260200191505060405180910390f35b610414611827565b60405180821515815260200191505060405180910390f35b61046e6004803603602081101561044257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061183a565b6040518082815260200191505060405180910390f35b61048c611883565b005b610496611a0e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104f8600480360360408110156104d857600080fd5b810190808035906020019092919080359060200190929190505050611a34565b6040518082815260200191505060405180910390f35b610516611a4d565b6040518082815260200191505060405180910390f35b610534611a53565b6040518082815260200191505060405180910390f35b6105966004803603604081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a66565b005b6105da600480360360208110156105ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cbc565b6040518082815260200191505060405180910390f35b6105f8611cd4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61062c611cfe565b6040518082815260200191505060405180910390f35b6106846004803603602081101561065857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d04565b005b6106b26004803603602081101561069c57600080fd5b8101908080359060200190929190505050611f0c565b005b6106bc612519565b6040518082815260200191505060405180910390f35b6106fe600480360360208110156106e857600080fd5b810190808035906020019092919050505061251f565b005b6107086126bc565b6040518082815260200191505060405180910390f35b6107606004803603602081101561073457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061274a565b6040518082815260200191505060405180910390f35b61077e6127e4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107b261280a565b6040518082815260200191505060405180910390f35b6107d0612810565b005b6107da6128b3565b6040518082815260200191505060405180910390f35b6108326004803603602081101561080657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128b9565b005b61083c612ac9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600061097f600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610971670de0b6b3a7640000610963610915600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109076126bc565b612aef90919063ffffffff16565b600f60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b3990919063ffffffff16565b612bbf90919063ffffffff16565b612c0990919063ffffffff16565b9050919050565b600c6020528060005260406000206000915090505481565b6109a6612c91565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1615158115151415610a8857610b08565b80600360006101000a81548160ff021916908315150217905550600360009054906101000a900460ff1615610abf57426002819055505b7f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec5600360009054906101000a900460ff1660405180821515815260200191505060405180910390a15b50565b6000600d54905090565b6000610b2e600854600754612b3990919063ffffffff16565b905090565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610bc15750610b92611cd4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f217265737472696374656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f217374616b696e67546f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60026000541415610db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555033610dc56126bc565b600a81905550610dd3611a53565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ea057610e1681610868565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211610f16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f77697468647261773a2063616e6e6f742077697468647261772030000000000081525060200191505060405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fa883600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aef90919063ffffffff16565b1015610fff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613342602c913960400191505060405180910390fd5b61101482600d54612aef90919063ffffffff16565b600d8190555061106c82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aef90919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110fc3383600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612c999092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a250600160008190555050565b60085481565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806111ea57506111bb611cd4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f217265737472696374656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b60006112666126bc565b600a81905550611274611a53565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611341576112b781610868565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600654421061136a5761135f60085483612bbf90919063ffffffff16565b6007819055506113cc565b600061138142600654612aef90919063ffffffff16565b9050600061139a60075483612b3990919063ffffffff16565b90506113c36008546113b58387612c0990919063ffffffff16565b612bbf90919063ffffffff16565b60078190555050505b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561145757600080fd5b505afa15801561146b573d6000803e3d6000fd5b505050506040513d602081101561148157600080fd5b810190808051906020019092919050505090506114a960085482612bbf90919063ffffffff16565b6007541115611520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50726f76696465642072657761726420746f6f2068696768000000000000000081525060200191505060405180910390fd5b4260098190555061153c60085442612c0990919063ffffffff16565b6006819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d836040518082815260200191505060405180910390a1505050565b600260005414156115f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550336116086126bc565b600a81905550611616611a53565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116e35761165981610868565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611811576000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117c23382600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612c999092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b50506001600081905550565b6000600e54905090565b600360009054906101000a900460ff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61188b612c91565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461194d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000818310611a435781611a45565b825b905092915050565b60075481565b6000611a6142600654611a34565b905090565b611a6e612c91565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611bdc5750600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b611c31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806133aa602d913960400191505060405180910390fd5b611c63611c3c611cd4565b828473ffffffffffffffffffffffffffffffffffffffff16612c999092919063ffffffff16565b7f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa288282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600b6020528060005260406000206000915090505481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60025481565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d925750611d63611cd4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611e04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f217265737472696374656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21636f6e74726f6c6c657200000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60026000541415611f85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550600360009054906101000a900460ff1615611ff3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c81526020018061336e603c913960400191505060405180910390fd5b33611ffc6126bc565b600a8190555061200a611a53565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120d75761204d81610868565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000821161214d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f7374616b653a2063616e6e6f74207374616b652030000000000000000000000081525060200191505060405180910390fd5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121d857600080fd5b505afa1580156121ec573d6000803e3d6000fd5b505050506040513d602081101561220257600080fd5b81019080805190602001909291905050509050612264333085600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d3b909392919063ffffffff16565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156122ef57600080fd5b505afa158015612303573d6000803e3d6000fd5b505050506040513d602081101561231957600080fd5b8101908080519060200190929190505050905060006123418383612aef90919063ffffffff16565b90506000612359600283612bbf90919063ffffffff16565b905061237082600d54612c0990919063ffffffff16565b600d819055506123c882600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0990919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061245d81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0990919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124b581600e54612c0990919063ffffffff16565b600e819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d876040518082815260200191505060405180910390a25050505050600160008190555050565b60095481565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806125ad575061257e611cd4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f217265737472696374656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6006544211612679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260588152602001806132a36058913960600191505060405180910390fd5b806008819055507ffb46ca5a5e06d4540d6387b930a7c978bce0db5f449ec6b3f5d07c6e1d44f2d36008546040518082815260200191505060405180910390a150565b600080600d5414156126d257600a549050612747565b612744612733600d54612725670de0b6b3a76400006127176007546127096009546126fb611a53565b612aef90919063ffffffff16565b612b3990919063ffffffff16565b612b3990919063ffffffff16565b612bbf90919063ffffffff16565b600a54612c0990919063ffffffff16565b90505b90565b60006127dd601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aef90919063ffffffff16565b9050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6128a96128a4601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aef90919063ffffffff16565b610d3b565b6128b161157e565b565b60065481565b6128c1612c91565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612983576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806132fb6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000612b3183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612dfc565b905092915050565b600080831415612b4c5760009050612bb9565b6000828402905082848281612b5d57fe5b0414612bb4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133216021913960400191505060405180910390fd5b809150505b92915050565b6000612c0183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ebc565b905092915050565b600080828401905083811015612c87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b612d368363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612f82565b505050565b612df6846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612f82565b50505050565b6000838311158290612ea9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e6e578082015181840152602081019050612e53565b50505050905090810190601f168015612e9b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612f68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f2d578082015181840152602081019050612f12565b50505050905090810190601f168015612f5a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f7457fe5b049050809150509392505050565b6060612fe4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166130719092919063ffffffff16565b905060008151111561306c5780806020019051602081101561300557600080fd5b810190808051906020019092919050505061306b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806133d7602a913960400191505060405180910390fd5b5b505050565b60606130808484600085613089565b90509392505050565b60606130948561328f565b613106576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106131565780518252602082019150602081019050602083039250613133565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146131b8576040519150601f19603f3d011682016040523d82523d6000602084013e6131bd565b606091505b509150915081156131d2578092505050613287565b6000815111156131e55780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561324c578082015181840152602081019050613231565b50505050905090810190601f1680156132795780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe50726576696f7573207265776172647320706572696f64206d75737420626520636f6d706c657465206265666f7265206368616e67696e6720746865206475726174696f6e20666f7220746865206e657720706572696f644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7777697468647261773a2035302025206f6620746f6b656e732073746179206c6f636b656420666f72657665725468697320616374696f6e2063616e6e6f7420626520706572666f726d6564207768696c652074686520636f6e74726163742069732070617573656443616e6e6f7420776974686472617720746865207374616b696e67206f72207265776172647320746f6b656e735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220d82ede75f53fc4996f8fff18dd0e921ffacaf6680e2938e2ba08b00e455280f064736f6c634300060c0033000000000000000000000000ec681f28f4561c2a9534799aa38e0d36a83cf4780000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102055760003560e01c806380faa57d1161011a578063cc1a378f116100ad578063df136d651161007c578063df136d65146107aa578063e9fad8ee146107c8578063ebe2b12b146107d2578063f2fde38b146107f0578063f77c47911461083457610205565b8063cc1a378f146106d2578063cd3daf9d14610700578063ce513b6f1461071e578063d1af0c7d1461077657610205565b806391b4ded9116100e957806391b4ded91461062457806392eefe9b14610642578063a694fc3a14610686578063c8f33c91146106b457610205565b806380faa57d1461052c5780638980f11f1461054a5780638b876347146105985780638da5cb5b146105f057610205565b80633c6b16ab1161019d57806370a082311161016c57806370a082311461042c578063715018a61461048457806372f702f31461048e5780637ae2b5c7146104c25780637b0a47ee1461050e57610205565b80633c6b16ab146103b65780633d18b912146103e457806356891412146103ee5780635c975abb1461040c57610205565b80631c1f78eb116101d95780631c1f78eb146103085780631e9b12ef146103265780632e1a7d4d1461036a578063386a95251461039857610205565b80628cc2621461020a5780630700037d1461026257806316c38b3c146102ba57806318160ddd146102ea575b600080fd5b61024c6004803603602081101561022057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610868565b6040518082815260200191505060405180910390f35b6102a46004803603602081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610986565b6040518082815260200191505060405180910390f35b6102e8600480360360208110156102d057600080fd5b8101908080351515906020019092919050505061099e565b005b6102f2610b0b565b6040518082815260200191505060405180910390f35b610310610b15565b6040518082815260200191505060405180910390f35b6103686004803603602081101561033c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b33565b005b6103966004803603602081101561038057600080fd5b8101908080359060200190929190505050610d3b565b005b6103a0611156565b6040518082815260200191505060405180910390f35b6103e2600480360360208110156103cc57600080fd5b810190808035906020019092919050505061115c565b005b6103ec61157e565b005b6103f661181d565b6040518082815260200191505060405180910390f35b610414611827565b60405180821515815260200191505060405180910390f35b61046e6004803603602081101561044257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061183a565b6040518082815260200191505060405180910390f35b61048c611883565b005b610496611a0e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104f8600480360360408110156104d857600080fd5b810190808035906020019092919080359060200190929190505050611a34565b6040518082815260200191505060405180910390f35b610516611a4d565b6040518082815260200191505060405180910390f35b610534611a53565b6040518082815260200191505060405180910390f35b6105966004803603604081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a66565b005b6105da600480360360208110156105ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cbc565b6040518082815260200191505060405180910390f35b6105f8611cd4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61062c611cfe565b6040518082815260200191505060405180910390f35b6106846004803603602081101561065857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d04565b005b6106b26004803603602081101561069c57600080fd5b8101908080359060200190929190505050611f0c565b005b6106bc612519565b6040518082815260200191505060405180910390f35b6106fe600480360360208110156106e857600080fd5b810190808035906020019092919050505061251f565b005b6107086126bc565b6040518082815260200191505060405180910390f35b6107606004803603602081101561073457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061274a565b6040518082815260200191505060405180910390f35b61077e6127e4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107b261280a565b6040518082815260200191505060405180910390f35b6107d0612810565b005b6107da6128b3565b6040518082815260200191505060405180910390f35b6108326004803603602081101561080657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128b9565b005b61083c612ac9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600061097f600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610971670de0b6b3a7640000610963610915600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109076126bc565b612aef90919063ffffffff16565b600f60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b3990919063ffffffff16565b612bbf90919063ffffffff16565b612c0990919063ffffffff16565b9050919050565b600c6020528060005260406000206000915090505481565b6109a6612c91565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1615158115151415610a8857610b08565b80600360006101000a81548160ff021916908315150217905550600360009054906101000a900460ff1615610abf57426002819055505b7f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec5600360009054906101000a900460ff1660405180821515815260200191505060405180910390a15b50565b6000600d54905090565b6000610b2e600854600754612b3990919063ffffffff16565b905090565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610bc15750610b92611cd4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f217265737472696374656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f217374616b696e67546f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60026000541415610db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555033610dc56126bc565b600a81905550610dd3611a53565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ea057610e1681610868565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211610f16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f77697468647261773a2063616e6e6f742077697468647261772030000000000081525060200191505060405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fa883600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aef90919063ffffffff16565b1015610fff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613342602c913960400191505060405180910390fd5b61101482600d54612aef90919063ffffffff16565b600d8190555061106c82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aef90919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110fc3383600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612c999092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a250600160008190555050565b60085481565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806111ea57506111bb611cd4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f217265737472696374656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b60006112666126bc565b600a81905550611274611a53565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611341576112b781610868565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600654421061136a5761135f60085483612bbf90919063ffffffff16565b6007819055506113cc565b600061138142600654612aef90919063ffffffff16565b9050600061139a60075483612b3990919063ffffffff16565b90506113c36008546113b58387612c0990919063ffffffff16565b612bbf90919063ffffffff16565b60078190555050505b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561145757600080fd5b505afa15801561146b573d6000803e3d6000fd5b505050506040513d602081101561148157600080fd5b810190808051906020019092919050505090506114a960085482612bbf90919063ffffffff16565b6007541115611520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50726f76696465642072657761726420746f6f2068696768000000000000000081525060200191505060405180910390fd5b4260098190555061153c60085442612c0990919063ffffffff16565b6006819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d836040518082815260200191505060405180910390a1505050565b600260005414156115f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550336116086126bc565b600a81905550611616611a53565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116e35761165981610868565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611811576000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117c23382600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612c999092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b50506001600081905550565b6000600e54905090565b600360009054906101000a900460ff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61188b612c91565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461194d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000818310611a435781611a45565b825b905092915050565b60075481565b6000611a6142600654611a34565b905090565b611a6e612c91565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611bdc5750600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b611c31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806133aa602d913960400191505060405180910390fd5b611c63611c3c611cd4565b828473ffffffffffffffffffffffffffffffffffffffff16612c999092919063ffffffff16565b7f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa288282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600b6020528060005260406000206000915090505481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60025481565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d925750611d63611cd4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611e04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f217265737472696374656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21636f6e74726f6c6c657200000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60026000541415611f85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550600360009054906101000a900460ff1615611ff3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c81526020018061336e603c913960400191505060405180910390fd5b33611ffc6126bc565b600a8190555061200a611a53565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120d75761204d81610868565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000821161214d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f7374616b653a2063616e6e6f74207374616b652030000000000000000000000081525060200191505060405180910390fd5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121d857600080fd5b505afa1580156121ec573d6000803e3d6000fd5b505050506040513d602081101561220257600080fd5b81019080805190602001909291905050509050612264333085600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d3b909392919063ffffffff16565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156122ef57600080fd5b505afa158015612303573d6000803e3d6000fd5b505050506040513d602081101561231957600080fd5b8101908080519060200190929190505050905060006123418383612aef90919063ffffffff16565b90506000612359600283612bbf90919063ffffffff16565b905061237082600d54612c0990919063ffffffff16565b600d819055506123c882600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0990919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061245d81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0990919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124b581600e54612c0990919063ffffffff16565b600e819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d876040518082815260200191505060405180910390a25050505050600160008190555050565b60095481565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806125ad575061257e611cd4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f217265737472696374656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6006544211612679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260588152602001806132a36058913960600191505060405180910390fd5b806008819055507ffb46ca5a5e06d4540d6387b930a7c978bce0db5f449ec6b3f5d07c6e1d44f2d36008546040518082815260200191505060405180910390a150565b600080600d5414156126d257600a549050612747565b612744612733600d54612725670de0b6b3a76400006127176007546127096009546126fb611a53565b612aef90919063ffffffff16565b612b3990919063ffffffff16565b612b3990919063ffffffff16565b612bbf90919063ffffffff16565b600a54612c0990919063ffffffff16565b90505b90565b60006127dd601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aef90919063ffffffff16565b9050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6128a96128a4601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aef90919063ffffffff16565b610d3b565b6128b161157e565b565b60065481565b6128c1612c91565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612983576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806132fb6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000612b3183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612dfc565b905092915050565b600080831415612b4c5760009050612bb9565b6000828402905082848281612b5d57fe5b0414612bb4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133216021913960400191505060405180910390fd5b809150505b92915050565b6000612c0183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ebc565b905092915050565b600080828401905083811015612c87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b612d368363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612f82565b505050565b612df6846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612f82565b50505050565b6000838311158290612ea9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e6e578082015181840152602081019050612e53565b50505050905090810190601f168015612e9b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612f68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f2d578082015181840152602081019050612f12565b50505050905090810190601f168015612f5a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f7457fe5b049050809150509392505050565b6060612fe4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166130719092919063ffffffff16565b905060008151111561306c5780806020019051602081101561300557600080fd5b810190808051906020019092919050505061306b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806133d7602a913960400191505060405180910390fd5b5b505050565b60606130808484600085613089565b90509392505050565b60606130948561328f565b613106576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106131565780518252602082019150602081019050602083039250613133565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146131b8576040519150601f19603f3d011682016040523d82523d6000602084013e6131bd565b606091505b509150915081156131d2578092505050613287565b6000815111156131e55780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561324c578082015181840152602081019050613231565b50505050905090810190601f1680156132795780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe50726576696f7573207265776172647320706572696f64206d75737420626520636f6d706c657465206265666f7265206368616e67696e6720746865206475726174696f6e20666f7220746865206e657720706572696f644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7777697468647261773a2035302025206f6620746f6b656e732073746179206c6f636b656420666f72657665725468697320616374696f6e2063616e6e6f7420626520706572666f726d6564207768696c652074686520636f6e74726163742069732070617573656443616e6e6f7420776974686472617720746865207374616b696e67206f72207265776172647320746f6b656e735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220d82ede75f53fc4996f8fff18dd0e921ffacaf6680e2938e2ba08b00e455280f064736f6c634300060c0033

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

000000000000000000000000ec681f28f4561c2a9534799aa38e0d36a83cf4780000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _rewardsToken (address): 0xEC681F28f4561c2a9534799AA38E0d36A83Cf478
Arg [1] : _stakingToken (address): 0x0000000000000000000000000000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ec681f28f4561c2a9534799aa38e0d36a83cf478
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35609:8027:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37682:265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36131:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6296:488;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36655:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37955:121;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40186:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39121:581;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35939:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40609:1142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39710:307;;;:::i;:::-;;36756:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5880:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36857:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5179:148;;;:::i;:::-;;35832:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38084:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35903:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37122:126;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41866:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36067:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4537:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5845:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40412:189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38223:890;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35987:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42374:361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37256:418;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36977:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35799:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36023:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40025:122;;;:::i;:::-;;35865:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5482:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35765:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37682:265;37736:7;37776:163;37922:7;:16;37930:7;37922:16;;;;;;;;;;;;;;;;37776:123;37894:4;37776:95;37817:53;37838:22;:31;37861:7;37838:31;;;;;;;;;;;;;;;;37817:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;37776:9;:18;37786:7;37776:18;;;;;;;;;;;;;;;;:40;;:95;;;;:::i;:::-;:117;;:123;;;;:::i;:::-;:145;;:163;;;;:::i;:::-;37756:183;;37682:265;;;:::o;36131:42::-;;;;;;;;;;;;;;;;;:::o;6296:488::-;4759:12;:10;:12::i;:::-;4749:22;;:6;;;;;;;;;;;:22;;;4741:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6449:6:::1;;;;;;;;;;;6438:17;;:7;:17;;;6434:56;;;6472:7;;6434:56;6545:7;6536:6;;:16;;;;;;;;;;;;;;;;;;6621:6;;;;;;;;;;;6617:58;;;6660:3;6644:13;:19;;;;6617:58;6756:20;6769:6;;;;;;;;;;;6756:20;;;;;;;;;;;;;;;;;;;;4819:1;6296:488:::0;:::o;36655:93::-;36701:7;36728:12;;36721:19;;36655:93;:::o;37955:121::-;38010:7;38037:31;38052:15;;38037:10;;:14;;:31;;;;:::i;:::-;38030:38;;37955:121;:::o;40186:218::-;43178:10;;;;;;;;;;;43164:24;;:10;:24;;;:62;;;;43219:7;:5;:7::i;:::-;43205:21;;:10;:21;;;43164:62;43142:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40329:1:::1;40296:35;;40304:12;;;;;;;;;;;40296:35;;;40288:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40382:13;40360:12;;:36;;;;;;;;;;;;;;;;;;40186:218:::0;:::o;39121:581::-;1673:1;2279:7;;:19;;2271:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673:1;2412:7;:18;;;;39215:10:::1;42844:16;:14;:16::i;:::-;42821:20;:39;;;;42888:26;:24;:26::i;:::-;42871:14;:43;;;;42948:1;42929:21;;:7;:21;;;42925:157;;42986:15;42993:7;42986:6;:15::i;:::-;42967:7;:16;42975:7;42967:16;;;;;;;;;;;;;;;:34;;;;43050:20;;43016:22;:31;43039:7;43016:31;;;;;;;;;;;;;;;:54;;;;42925:157;39260:1:::2;39251:6;:10;39243:50;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;39349:7;:19;39357:10;39349:19;;;;;;;;;;;;;;;;39312:33;39338:6;39312:9;:21;39322:10;39312:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;:56;;39304:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39499:24;39516:6;39499:12;;:16;;:24;;;;:::i;:::-;39484:12;:39;;;;39558:33;39584:6;39558:9;:21;39568:10;39558:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;39534:9;:21;39544:10;39534:21;;;;;;;;;;;;;;;:57;;;;39602:45;39628:10;39640:6;39602:12;;;;;;;;;;;:25;;;;:45;;;;;:::i;:::-;39675:10;39665:29;;;39687:6;39665:29;;;;;;;;;;;;;;;;;;2443:1:::1;1629::::0;2591:7;:22;;;;39121:581;:::o;35939:41::-;;;;:::o;40609:1142::-;43178:10;;;;;;;;;;;43164:24;;:10;:24;;;:62;;;;43219:7;:5;:7::i;:::-;43205:21;;:10;:21;;;43164:62;43142:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40721:1:::1;42844:16;:14;:16::i;:::-;42821:20;:39;;;;42888:26;:24;:26::i;:::-;42871:14;:43;;;;42948:1;42929:21;;:7;:21;;;42925:157;;42986:15;42993:7;42986:6;:15::i;:::-;42967:7;:16;42975:7;42967:16;;;;;;;;;;;;;;;:34;;;;43050:20;;43016:22;:31;43039:7;43016:31;;;;;;;;;;;;;;;:54;;;;42925:157;40764:12:::2;;40745:15;:31;40741:318;;40806:27;40817:15;;40806:6;:10;;:27;;;;:::i;:::-;40793:10;:40;;;;40741:318;;;40866:17;40886:33;40903:15;40886:12;;:16;;:33;;;;:::i;:::-;40866:53;;40934:16;40953:25;40967:10;;40953:9;:13;;:25;;;;:::i;:::-;40934:44;;41006:41;41031:15;;41006:20;41017:8;41006:6;:10;;:20;;;;:::i;:::-;:24;;:41;;;;:::i;:::-;40993:10;:54;;;;40741:318;;;41419:15;41437:12;;;;;;;;;;;:22;;;41468:4;41437:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;41419:55;;41521:28;41533:15;;41521:7;:11;;:28;;;;:::i;:::-;41507:10;;:42;;41485:116;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41631:15;41614:14;:32;;;;41672:36;41692:15;;41672;:19;;:36;;;;:::i;:::-;41657:12;:51;;;;41724:19;41736:6;41724:19;;;;;;;;;;;;;;;;;;43094:1;43278::::1;40609:1142:::0;:::o;39710:307::-;1673:1;2279:7;;:19;;2271:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673:1;2412:7;:18;;;;39764:10:::1;42844:16;:14;:16::i;:::-;42821:20;:39;;;;42888:26;:24;:26::i;:::-;42871:14;:43;;;;42948:1;42929:21;;:7;:21;;;42925:157;;42986:15;42993:7;42986:6;:15::i;:::-;42967:7;:16;42975:7;42967:16;;;;;;;;;;;;;;;:34;;;;43050:20;;43016:22;:31;43039:7;43016:31;;;;;;;;;;;;;;;:54;;;;42925:157;39787:14:::2;39804:7;:19;39812:10;39804:19;;;;;;;;;;;;;;;;39787:36;;39847:1;39838:6;:10;39834:176;;;39887:1;39865:7;:19;39873:10;39865:19;;;;;;;;;;;;;;;:23;;;;39903:45;39929:10;39941:6;39903:12;;;;;;;;;;;:25;;;;:45;;;;;:::i;:::-;39979:10;39968:30;;;39991:6;39968:30;;;;;;;;;;;;;;;;;;39834:176;43094:1;2443::::1;1629::::0;2591:7;:22;;;;39710:307::o;36756:93::-;36802:7;36829:12;;36822:19;;36756:93;:::o;5880:18::-;;;;;;;;;;;;;:::o;36857:112::-;36916:7;36943:9;:18;36953:7;36943:18;;;;;;;;;;;;;;;;36936:25;;36857:112;;;:::o;5179:148::-;4759:12;:10;:12::i;:::-;4749:22;;:6;;;;;;;;;;;:22;;;4741:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5286:1:::1;5249:40;;5270:6;;;;;;;;;;;5249:40;;;;;;;;;;;;5317:1;5300:6;;:19;;;;;;;;;;;;;;;;;;5179:148::o:0;35832:26::-;;;;;;;;;;;;;:::o;38084:104::-;38140:7;38171:1;38167;:5;:13;;38179:1;38167:13;;;38175:1;38167:13;38160:20;;38084:104;;;;:::o;35903:29::-;;;;:::o;37122:126::-;37179:7;37206:34;37210:15;37227:12;;37206:3;:34::i;:::-;37199:41;;37122:126;:::o;41866:500::-;4759:12;:10;:12::i;:::-;4749:22;;:6;;;;;;;;;;;:22;;;4741:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42096:12:::1;;;;;;;;;;;42072:37;;:12;:37;;;;:95;;;;;42154:12;;;;;;;;;;;42130:37;;:12;:37;;;;42072:95;42050:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42251:55;42285:7;:5;:7::i;:::-;42294:11;42258:12;42251:33;;;;:55;;;;;:::i;:::-;42322:36;42332:12;42346:11;42322:36;;;;;;;;;;;;;;;;;;;;;;;;;;41866:500:::0;;:::o;36067:57::-;;;;;;;;;;;;;;;;;:::o;4537:79::-;4575:7;4602:6;;;;;;;;;;;4595:13;;4537:79;:::o;5845:28::-;;;;:::o;40412:189::-;43178:10;;;;;;;;;;;43164:24;;:10;:24;;;:62;;;;43219:7;:5;:7::i;:::-;43205:21;;:10;:21;;;43164:62;43142:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40540:1:::1;40518:24;;:10;;;;;;;;;;;:24;;;40510:48;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40582:11;40569:10;;:24;;;;;;;;;;;;;;;;;;40412:189:::0;:::o;38223:890::-;1673:1;2279:7;;:19;;2271:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673:1;2412:7;:18;;;;6887:6:::1;;;;;;;;;;;6886:7;6864:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38335:10:::2;42844:16;:14;:16::i;:::-;42821:20;:39;;;;42888:26;:24;:26::i;:::-;42871:14;:43;;;;42948:1;42929:21;;:7;:21;;;42925:157;;42986:15;42993:7;42986:6;:15::i;:::-;42967:7;:16;42975:7;42967:16;;;;;;;;;;;;;;;:34;;;;43050:20;;43016:22;:31;43039:7;43016:31;;;;;;;;;;;;;;;:54;;;;42925:157;38380:1:::3;38371:6;:10;38363:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;38420:17;38440:12;;;;;;;;;;;:22;;;38471:4;38440:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;38420:57;;38488:64;38518:10;38538:4;38545:6;38488:12;;;;;;;;;;;:29;;;;:64;;;;;;:::i;:::-;38563:16;38582:12;;;;;;;;;;;:22;;;38613:4;38582:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;38563:56;;38630:22;38655:23;38668:9;38655:8;:12;;:23;;;;:::i;:::-;38630:48;;38749:20;38772:21;38791:1;38772:14;:18;;:21;;;;:::i;:::-;38749:44;;38819:32;38836:14;38819:12;;:16;;:32;;;;:::i;:::-;38804:12;:47;;;;38886:41;38912:14;38886:9;:21;38896:10;38886:21;;;;;;;;;;;;;;;;:25;;:41;;;;:::i;:::-;38862:9;:21;38872:10;38862:21;;;;;;;;;;;;;;;:65;;;;38960:37;38984:12;38960:7;:19;38968:10;38960:19;;;;;;;;;;;;;;;;:23;;:37;;;;:::i;:::-;38938:7;:19;38946:10;38938:19;;;;;;;;;;;;;;;:59;;;;39023:30;39040:12;39023;;:16;;:30;;;;:::i;:::-;39008:12;:45;;;;39086:10;39079:26;;;39098:6;39079:26;;;;;;;;;;;;;;;;;;43094:1;;;;6992::::2;1629::::0;2591:7;:22;;;;38223:890;:::o;35987:29::-;;;;:::o;42374:361::-;43178:10;;;;;;;;;;;43164:24;;:10;:24;;;:62;;;;43219:7;:5;:7::i;:::-;43205:21;;:10;:21;;;43164:62;43142:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42499:12:::1;;42481:15;:30;42459:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42656:16;42638:15;:34;;;;42688:39;42711:15;;42688:39;;;;;;;;;;;;;;;;;;42374:361:::0;:::o;37256:418::-;37303:7;37343:1;37327:12;;:17;37323:77;;;37368:20;;37361:27;;;;37323:77;37430:236;37473:178;37638:12;;37473:138;37606:4;37473:106;37568:10;;37473:68;37526:14;;37473:26;:24;:26::i;:::-;:52;;:68;;;;:::i;:::-;:94;;:106;;;;:::i;:::-;:132;;:138;;;;:::i;:::-;:164;;:178;;;;:::i;:::-;37430:20;;:24;;:236;;;;:::i;:::-;37410:256;;37256:418;;:::o;36977:137::-;37039:7;37066:40;37089:7;:16;37097:7;37089:16;;;;;;;;;;;;;;;;37066:9;:18;37076:7;37066:18;;;;;;;;;;;;;;;;:22;;:40;;;;:::i;:::-;37059:47;;36977:137;;;:::o;35799:26::-;;;;;;;;;;;;;:::o;36023:35::-;;;;:::o;40025:122::-;40061:56;40070:46;40096:7;:19;40104:10;40096:19;;;;;;;;;;;;;;;;40070:9;:21;40080:10;40070:21;;;;;;;;;;;;;;;;:25;;:46;;;;:::i;:::-;40061:8;:56::i;:::-;40128:11;:9;:11::i;:::-;40025:122::o;35865:31::-;;;;:::o;5482:244::-;4759:12;:10;:12::i;:::-;4749:22;;:6;;;;;;;;;;;:22;;;4741:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5591:1:::1;5571:22;;:8;:22;;;;5563:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5681:8;5652:38;;5673:6;;;;;;;;;;;5652:38;;;;;;;;;;;;5710:8;5701:6;;:17;;;;;;;;;;;;;;;;;;5482:244:::0;:::o;35765:25::-;;;;;;;;;;;;;:::o;8314:136::-;8372:7;8399:43;8403:1;8406;8399:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;8392:50;;8314:136;;;;:::o;9204:471::-;9262:7;9512:1;9507;:6;9503:47;;;9537:1;9530:8;;;;9503:47;9562:9;9578:1;9574;:5;9562:17;;9607:1;9602;9598;:5;;;;;;:10;9590:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9666:1;9659:8;;;9204:471;;;;;:::o;10151:132::-;10209:7;10236:39;10240:1;10243;10236:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;10229:46;;10151:132;;;;:::o;7850:181::-;7908:7;7928:9;7944:1;7940;:5;7928:17;;7969:1;7964;:6;;7956:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8022:1;8015:8;;;7850:181;;;;:::o;3173:106::-;3226:15;3261:10;3254:17;;3173:106;:::o;32534:177::-;32617:86;32637:5;32667:23;;;32692:2;32696:5;32644:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32617:19;:86::i;:::-;32534:177;;;:::o;32719:205::-;32820:96;32840:5;32870:27;;;32899:4;32905:2;32909:5;32847:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32820:19;:96::i;:::-;32719:205;;;;:::o;8753:192::-;8839:7;8872:1;8867;:6;;8875:12;8859:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8899:9;8915:1;8911;:5;8899:17;;8936:1;8929:8;;;8753:192;;;;;:::o;10779:278::-;10865:7;10897:1;10893;:5;10900:12;10885:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10924:9;10940:1;10936;:5;;;;;;10924:17;;11048:1;11041:8;;;10779:278;;;;;:::o;34839:761::-;35263:23;35289:69;35317:4;35289:69;;;;;;;;;;;;;;;;;35297:5;35289:27;;;;:69;;;;;:::i;:::-;35263:95;;35393:1;35373:10;:17;:21;35369:224;;;35515:10;35504:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35496:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35369:224;34839:761;;;:::o;18662:196::-;18765:12;18797:53;18820:6;18828:4;18834:1;18837:12;18797:22;:53::i;:::-;18790:60;;18662:196;;;;;:::o;20039:979::-;20169:12;20202:18;20213:6;20202:10;:18::i;:::-;20194:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20328:12;20342:23;20369:6;:11;;20389:8;20400:4;20369:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20327:78;;;;20420:7;20416:595;;;20451:10;20444:17;;;;;;20416:595;20585:1;20565:10;:17;:21;20561:439;;;20828:10;20822:17;20889:15;20876:10;20872:2;20868:19;20861:44;20776:148;20971:12;20964:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20039:979;;;;;;;:::o;15744:422::-;15804:4;16012:12;16123:7;16111:20;16103:28;;16157:1;16150:4;:8;16143:15;;;15744:422;;;:::o

Swarm Source

ipfs://d82ede75f53fc4996f8fff18dd0e921ffacaf6680e2938e2ba08b00e455280f0

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.