Token

Vested NAVI (vNAVI)

Overview

Max Total Supply

10.892256378896525353 vNAVI

Holders

7

Total Transfers

-

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Vester

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 14 runs

Other Settings:
istanbul EvmVersion, MIT license
File 1 of 10 : Vester.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

import "../libraries/math/SafeMath.sol";
import "../libraries/token/IERC20.sol";
import "../libraries/token/SafeERC20.sol";
import "../libraries/utils/ReentrancyGuard.sol";

import "./interfaces/IRewardTracker.sol";
import "./interfaces/IVester.sol";
import "../tokens/interfaces/IMintable.sol";
import "../access/Governable.sol";

contract Vester is IVester, IERC20, ReentrancyGuard, Governable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    string public name;
    string public symbol;
    uint8 public decimals = 18;

    uint256 public vestingDuration;

    address public esToken;
    address public pairToken;
    address public claimableToken;

    address public override rewardTracker;

    uint256 public override totalSupply;
    uint256 public pairSupply;

    bool public hasMaxVestableAmount;

    mapping (address => uint256) public balances;
    mapping (address => uint256) public override pairAmounts;
    mapping (address => uint256) public override cumulativeClaimAmounts;
    mapping (address => uint256) public override claimedAmounts;
    mapping (address => uint256) public lastVestingTimes;

    mapping (address => uint256) public override transferredAverageStakedAmounts;
    mapping (address => uint256) public override transferredCumulativeRewards;
    mapping (address => uint256) public override cumulativeRewardDeductions;
    mapping (address => uint256) public override bonusRewards;

    mapping (address => bool) public isHandler;

    event Claim(address receiver, uint256 amount);
    event Deposit(address account, uint256 amount);
    event Withdraw(address account, uint256 claimedAmount, uint256 balance);
    event PairTransfer(address indexed from, address indexed to, uint256 value);

    constructor (
        string memory _name,
        string memory _symbol,
        uint256 _vestingDuration,
        address _esToken,
        address _pairToken,
        address _claimableToken,
        address _rewardTracker
    ) public {
        name = _name;
        symbol = _symbol;

        vestingDuration = _vestingDuration;

        esToken = _esToken;
        pairToken = _pairToken;
        claimableToken = _claimableToken;

        rewardTracker = _rewardTracker;

        if (rewardTracker != address(0)) {
            hasMaxVestableAmount = true;
        }
    }

    function setHandler(address _handler, bool _isActive) external onlyGov {
        isHandler[_handler] = _isActive;
    }

    function setHasMaxVestableAmount(bool _hasMaxVestableAmount) external onlyGov {
        hasMaxVestableAmount = _hasMaxVestableAmount;
    }

    function deposit(uint256 _amount) external nonReentrant {
        _deposit(msg.sender, _amount);
    }

    function depositForAccount(address _account, uint256 _amount) override external nonReentrant {
        _validateHandler();
        _deposit(_account, _amount);
    }

    function claim() external nonReentrant returns (uint256) {
        return _claim(msg.sender, msg.sender);
    }

    function claimForAccount(address _account, address _receiver) external override nonReentrant returns (uint256) {
        _validateHandler();
        return _claim(_account, _receiver);
    }

    // to help users who accidentally send their tokens to this contract
    function withdrawToken(address _token, address _account, uint256 _amount) external onlyGov {
        IERC20(_token).safeTransfer(_account, _amount);
    }

    function withdraw() external nonReentrant {
        address account = msg.sender;
        address _receiver = account;
        _claim(account, _receiver);

        uint256 claimedAmount = cumulativeClaimAmounts[account];
        uint256 balance = balances[account];
        uint256 totalVested = balance.add(claimedAmount);
        require(totalVested > 0, "Vester: vested amount is zero");

        if (hasPairToken()) {
            uint256 pairAmount = pairAmounts[account];
            _burnPair(account, pairAmount);
            IERC20(pairToken).safeTransfer(_receiver, pairAmount);
        }

        IERC20(esToken).safeTransfer(_receiver, balance);
        _burn(account, balance);

        delete cumulativeClaimAmounts[account];
        delete claimedAmounts[account];
        delete lastVestingTimes[account];

        emit Withdraw(account, claimedAmount, balance);
    }

    function transferStakeValues(address _sender, address _receiver) external override nonReentrant {
        _validateHandler();

        transferredAverageStakedAmounts[_receiver] = getCombinedAverageStakedAmount(_sender);
        transferredAverageStakedAmounts[_sender] = 0;

        uint256 transferredCumulativeReward = transferredCumulativeRewards[_sender];
        uint256 cumulativeReward = IRewardTracker(rewardTracker).cumulativeRewards(_sender);

        transferredCumulativeRewards[_receiver] = transferredCumulativeReward.add(cumulativeReward);
        cumulativeRewardDeductions[_sender] = cumulativeReward;
        transferredCumulativeRewards[_sender] = 0;

        bonusRewards[_receiver] = bonusRewards[_sender];
        bonusRewards[_sender] = 0;
    }

    function setTransferredAverageStakedAmounts(address _account, uint256 _amount) external override nonReentrant {
        _validateHandler();
        transferredAverageStakedAmounts[_account] = _amount;
    }

    function setTransferredCumulativeRewards(address _account, uint256 _amount) external override nonReentrant {
        _validateHandler();
        transferredCumulativeRewards[_account] = _amount;
    }

    function setCumulativeRewardDeductions(address _account, uint256 _amount) external override nonReentrant {
        _validateHandler();
        cumulativeRewardDeductions[_account] = _amount;
    }

    function setBonusRewards(address _account, uint256 _amount) external override nonReentrant {
        _validateHandler();
        bonusRewards[_account] = _amount;
    }

    function claimable(address _account) public override view returns (uint256) {
        uint256 amount = cumulativeClaimAmounts[_account].sub(claimedAmounts[_account]);
        uint256 nextClaimable = _getNextClaimableAmount(_account);
        return amount.add(nextClaimable);
    }

    function getMaxVestableAmount(address _account) public override view returns (uint256) {
        if (!hasRewardTracker()) { return 0; }

        uint256 transferredCumulativeReward = transferredCumulativeRewards[_account];
        uint256 bonusReward = bonusRewards[_account];
        uint256 cumulativeReward = IRewardTracker(rewardTracker).cumulativeRewards(_account);
        uint256 maxVestableAmount = cumulativeReward.add(transferredCumulativeReward).add(bonusReward);

        uint256 cumulativeRewardDeduction = cumulativeRewardDeductions[_account];

        if (maxVestableAmount < cumulativeRewardDeduction) {
            return 0;
        }

        return maxVestableAmount.sub(cumulativeRewardDeduction);
    }

    function getCombinedAverageStakedAmount(address _account) public override view returns (uint256) {
        uint256 cumulativeReward = IRewardTracker(rewardTracker).cumulativeRewards(_account);
        uint256 transferredCumulativeReward = transferredCumulativeRewards[_account];
        uint256 totalCumulativeReward = cumulativeReward.add(transferredCumulativeReward);
        if (totalCumulativeReward == 0) { return 0; }

        uint256 averageStakedAmount = IRewardTracker(rewardTracker).averageStakedAmounts(_account);
        uint256 transferredAverageStakedAmount = transferredAverageStakedAmounts[_account];

        return averageStakedAmount
            .mul(cumulativeReward)
            .div(totalCumulativeReward)
            .add(
                transferredAverageStakedAmount.mul(transferredCumulativeReward).div(totalCumulativeReward)
            );
    }

    function getPairAmount(address _account, uint256 _esAmount) public view returns (uint256) {
        if (!hasRewardTracker()) { return 0; }

        uint256 combinedAverageStakedAmount = getCombinedAverageStakedAmount(_account);
        if (combinedAverageStakedAmount == 0) {
            return 0;
        }

        uint256 maxVestableAmount = getMaxVestableAmount(_account);
        if (maxVestableAmount == 0) {
            return 0;
        }

        return _esAmount.mul(combinedAverageStakedAmount).div(maxVestableAmount);
    }

    function hasRewardTracker() public view returns (bool) {
        return rewardTracker != address(0);
    }

    function hasPairToken() public view returns (bool) {
        return pairToken != address(0);
    }

    function getTotalVested(address _account) public view returns (uint256) {
        return balances[_account].add(cumulativeClaimAmounts[_account]);
    }

    function balanceOf(address _account) public view override returns (uint256) {
        return balances[_account];
    }

    // empty implementation, tokens are non-transferrable
    function transfer(address /* recipient */, uint256 /* amount */) public override returns (bool) {
        revert("Vester: non-transferrable");
    }

    // empty implementation, tokens are non-transferrable
    function allowance(address /* owner */, address /* spender */) public view virtual override returns (uint256) {
        return 0;
    }

    // empty implementation, tokens are non-transferrable
    function approve(address /* spender */, uint256 /* amount */) public virtual override returns (bool) {
        revert("Vester: non-transferrable");
    }

    // empty implementation, tokens are non-transferrable
    function transferFrom(address /* sender */, address /* recipient */, uint256 /* amount */) public virtual override returns (bool) {
        revert("Vester: non-transferrable");
    }

    function getVestedAmount(address _account) public override view returns (uint256) {
        uint256 balance = balances[_account];
        uint256 cumulativeClaimAmount = cumulativeClaimAmounts[_account];
        return balance.add(cumulativeClaimAmount);
    }

    function _mint(address _account, uint256 _amount) private {
        require(_account != address(0), "Vester: mint to the zero address");

        totalSupply = totalSupply.add(_amount);
        balances[_account] = balances[_account].add(_amount);

        emit Transfer(address(0), _account, _amount);
    }

    function _mintPair(address _account, uint256 _amount) private {
        require(_account != address(0), "Vester: mint to the zero address");

        pairSupply = pairSupply.add(_amount);
        pairAmounts[_account] = pairAmounts[_account].add(_amount);

        emit PairTransfer(address(0), _account, _amount);
    }

    function _burn(address _account, uint256 _amount) private {
        require(_account != address(0), "Vester: burn from the zero address");

        balances[_account] = balances[_account].sub(_amount, "Vester: burn amount exceeds balance");
        totalSupply = totalSupply.sub(_amount);

        emit Transfer(_account, address(0), _amount);
    }

    function _burnPair(address _account, uint256 _amount) private {
        require(_account != address(0), "Vester: burn from the zero address");

        pairAmounts[_account] = pairAmounts[_account].sub(_amount, "Vester: burn amount exceeds balance");
        pairSupply = pairSupply.sub(_amount);

        emit PairTransfer(_account, address(0), _amount);
    }

    function _deposit(address _account, uint256 _amount) private {
        require(_amount > 0, "Vester: invalid _amount");

        _updateVesting(_account);

        IERC20(esToken).safeTransferFrom(_account, address(this), _amount);

        _mint(_account, _amount);

        if (hasPairToken()) {
            uint256 pairAmount = pairAmounts[_account];
            uint256 nextPairAmount = getPairAmount(_account, balances[_account]);
            if (nextPairAmount > pairAmount) {
                uint256 pairAmountDiff = nextPairAmount.sub(pairAmount);
                IERC20(pairToken).safeTransferFrom(_account, address(this), pairAmountDiff);
                _mintPair(_account, pairAmountDiff);
            }
        }

        if (hasMaxVestableAmount) {
            uint256 maxAmount = getMaxVestableAmount(_account);
            require(getTotalVested(_account) <= maxAmount, "Vester: max vestable amount exceeded");
        }

        emit Deposit(_account, _amount);
    }

    function _updateVesting(address _account) private {
        uint256 amount = _getNextClaimableAmount(_account);
        lastVestingTimes[_account] = block.timestamp;

        if (amount == 0) {
            return;
        }

        // transfer claimableAmount from balances to cumulativeClaimAmounts
        _burn(_account, amount);
        cumulativeClaimAmounts[_account] = cumulativeClaimAmounts[_account].add(amount);

        IMintable(esToken).burn(address(this), amount);
    }

    function _getNextClaimableAmount(address _account) private view returns (uint256) {
        uint256 timeDiff = block.timestamp.sub(lastVestingTimes[_account]);

        uint256 balance = balances[_account];
        if (balance == 0) { return 0; }

        uint256 vestedAmount = getVestedAmount(_account);
        uint256 claimableAmount = vestedAmount.mul(timeDiff).div(vestingDuration);

        if (claimableAmount < balance) {
            return claimableAmount;
        }

        return balance;
    }

    function _claim(address _account, address _receiver) private returns (uint256) {
        _updateVesting(_account);
        uint256 amount = claimable(_account);
        claimedAmounts[_account] = claimedAmounts[_account].add(amount);
        IERC20(claimableToken).safeTransfer(_receiver, amount);
        emit Claim(_account, amount);
        return amount;
    }

    function _validateHandler() private view {
        require(isHandler[msg.sender], "Vester: forbidden");
    }
}

File 2 of 10 : Governable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.12;

contract Governable {
    address public gov;

    constructor() public {
        gov = msg.sender;
    }

    modifier onlyGov() {
        require(msg.sender == gov, "Governable: forbidden");
        _;
    }

    function setGov(address _gov) external onlyGov {
        gov = _gov;
    }
}

File 3 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.12;

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

File 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

/**
 * @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 5 of 10 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

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

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

File 6 of 10 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        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 7 of 10 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

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

File 8 of 10 : IRewardTracker.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.12;

interface IRewardTracker {
    function depositBalances(address _account, address _depositToken) external view returns (uint256);
    function stakedAmounts(address _account) external view returns (uint256);
    function updateRewards() external;
    function stake(address _depositToken, uint256 _amount) external;
    function stakeForAccount(address _fundingAccount, address _account, address _depositToken, uint256 _amount) external;
    function unstake(address _depositToken, uint256 _amount) external;
    function unstakeForAccount(address _account, address _depositToken, uint256 _amount, address _receiver) external;
    function tokensPerInterval() external view returns (uint256);
    function claim(address _receiver) external returns (uint256);
    function claimForAccount(address _account, address _receiver) external returns (uint256);
    function claimable(address _account) external view returns (uint256);
    function averageStakedAmounts(address _account) external view returns (uint256);
    function cumulativeRewards(address _account) external view returns (uint256);
}

File 9 of 10 : IVester.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.12;

interface IVester {
    function rewardTracker() external view returns (address);

    function claimForAccount(address _account, address _receiver) external returns (uint256);

    function claimable(address _account) external view returns (uint256);
    function cumulativeClaimAmounts(address _account) external view returns (uint256);
    function claimedAmounts(address _account) external view returns (uint256);
    function pairAmounts(address _account) external view returns (uint256);
    function getVestedAmount(address _account) external view returns (uint256);
    function transferredAverageStakedAmounts(address _account) external view returns (uint256);
    function transferredCumulativeRewards(address _account) external view returns (uint256);
    function cumulativeRewardDeductions(address _account) external view returns (uint256);
    function bonusRewards(address _account) external view returns (uint256);

    function transferStakeValues(address _sender, address _receiver) external;
    function setTransferredAverageStakedAmounts(address _account, uint256 _amount) external;
    function setTransferredCumulativeRewards(address _account, uint256 _amount) external;
    function setCumulativeRewardDeductions(address _account, uint256 _amount) external;
    function setBonusRewards(address _account, uint256 _amount) external;

    function getMaxVestableAmount(address _account) external view returns (uint256);
    function getCombinedAverageStakedAmount(address _account) external view returns (uint256);

    function depositForAccount(address _account, uint256 _amount) external;
}

File 10 of 10 : IMintable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.12;

interface IMintable {
    function isMinter(address _account) external returns (bool);
    function setMinter(address _minter, bool _isActive) external;
    function mint(address _account, uint256 _amount) external;
    function burn(address _account, uint256 _amount) external;
}

Settings
{
  "evmVersion": "istanbul",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 14
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_vestingDuration","type":"uint256"},{"internalType":"address","name":"_esToken","type":"address"},{"internalType":"address","name":"_pairToken","type":"address"},{"internalType":"address","name":"_claimableToken","type":"address"},{"internalType":"address","name":"_rewardTracker","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"PairTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"claimedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bonusRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimForAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"claimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimableToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cumulativeClaimAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cumulativeRewardDeductions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositForAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"esToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getCombinedAverageStakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getMaxVestableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_esAmount","type":"uint256"}],"name":"getPairAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getTotalVested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getVestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasMaxVestableAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPairToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasRewardTracker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isHandler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastVestingTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pairAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTracker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setBonusRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setCumulativeRewardDeductions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gov","type":"address"}],"name":"setGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_handler","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasMaxVestableAmount","type":"bool"}],"name":"setHasMaxVestableAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTransferredAverageStakedAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTransferredCumulativeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"transferStakeValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"transferredAverageStakedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"transferredCumulativeRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526004805460ff191660121790553480156200001e57600080fd5b506040516200287638038062002876833981810160405260e08110156200004457600080fd5b81019080805160405193929190846401000000008211156200006557600080fd5b9083019060208201858111156200007b57600080fd5b82516401000000008111828201881017156200009657600080fd5b82525081516020918201929091019080838360005b83811015620000c5578181015183820152602001620000ab565b50505050905090810190601f168015620000f35780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011757600080fd5b9083019060208201858111156200012d57600080fd5b82516401000000008111828201881017156200014857600080fd5b82525081516020918201929091019080838360005b83811015620001775781810151838201526020016200015d565b50505050905090810190601f168015620001a55780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060840151608085015160a0909501516001600081905580546001600160a01b03191633179055895194975091955093929091620001f9916002918a019062000280565b5085516200020f90600390602089019062000280565b506005859055600680546001600160a01b03199081166001600160a01b038781169190911790925560078054821686841617905560088054821685841617905560098054909116838316179081905516156200027357600c805460ff191660011790555b505050505050506200031c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002c357805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f3578251825591602001919060010190620002d6565b506200030192915062000305565b5090565b5b8082111562000301576000815560010162000306565b61254a806200032c6000396000f3fe608060405234801561001057600080fd5b506004361061024b5760003560e01c806369de9b931161014257806369de9b93146105bd5780636bcb411a146105dc57806370a08231146105e457806371417b321461060a5780637337035c146106305780637cf8f3b214610656578063930354731461068257806395d89b41146106a85780639cb7de4b146106b0578063a2545fa5146106de578063a9059cbb1461033d578063acf077a514610704578063b5ff136d1461070c578063b6b55f2514610732578063b71bce2a1461074f578063cfad57a214610775578063d0b038b71461079b578063d5a73fdd146107c7578063d75abb57146107ed578063d89b7007146107f5578063dd62ed3e14610821578063e3ecc4b21461084f578063f421f62a1461087b578063f6d6d5aa14610883578063f713c2301461088b5761024b565b806301e336671461025057806306fdde031461028857806308f26c7614610305578063095ea7b31461033d5780630db9ea4a1461037d57806312d43a51146103a357806313e82e7a146103c75780631514617e146103f557806315e90a41146103fd57806316ca05c51461040557806318160ddd1461040d57806323b872dd1461041557806327e235e31461044b578063313ce56714610471578063342fcda91461048f578063387a785d146104bb5780633ccfd60b146104e15780633de35b79146104e9578063402914f5146104f157806341f227241461051757806345f01ee61461054357806346ea87af146105695780634e71d92d1461058f5780635d50e72914610597575b600080fd5b6102866004803603606081101561026657600080fd5b506001600160a01b038135811691602081013590911690604001356108b9565b005b61029061091f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ca5781810151838201526020016102b2565b50505050905090810190601f1680156102f75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61032b6004803603602081101561031b57600080fd5b50356001600160a01b03166109aa565b60408051918252519081900360200190f35b6103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610ab3565b604080519115158252519081900360200190f35b61032b6004803603602081101561039357600080fd5b50356001600160a01b0316610afe565b6103ab610b10565b604080516001600160a01b039092168252519081900360200190f35b61032b600480360360408110156103dd57600080fd5b506001600160a01b0381358116916020013516610b1f565b61032b610b8a565b61032b610b90565b6103ab610b96565b61032b610ba5565b6103696004803603606081101561042b57600080fd5b506001600160a01b03813581169160208101359091169060400135610ab3565b61032b6004803603602081101561046157600080fd5b50356001600160a01b0316610bab565b610479610bbd565b6040805160ff9092168252519081900360200190f35b610286600480360360408110156104a557600080fd5b506001600160a01b038135169060200135610bc6565b61032b600480360360208110156104d157600080fd5b50356001600160a01b0316610c2c565b610286610c3e565b6103ab610e01565b61032b6004803603602081101561050757600080fd5b50356001600160a01b0316610e10565b6102866004803603604081101561052d57600080fd5b506001600160a01b038135169060200135610e61565b61032b6004803603602081101561055957600080fd5b50356001600160a01b0316610ed7565b6103696004803603602081101561057f57600080fd5b50356001600160a01b0316611049565b61032b61105e565b61032b600480360360208110156105ad57600080fd5b50356001600160a01b03166110bf565b610286600480360360208110156105d357600080fd5b503515156110d1565b6103ab611131565b61032b600480360360208110156105fa57600080fd5b50356001600160a01b0316611140565b61032b6004803603602081101561062057600080fd5b50356001600160a01b031661115b565b61032b6004803603602081101561064657600080fd5b50356001600160a01b031661116d565b61032b6004803603604081101561066c57600080fd5b506001600160a01b03813516906020013561117f565b61032b6004803603602081101561069857600080fd5b50356001600160a01b03166111e7565b610290611214565b610286600480360360408110156106c657600080fd5b506001600160a01b038135169060200135151561126f565b61032b600480360360208110156106f457600080fd5b50356001600160a01b03166112e7565b6103696112f9565b61032b6004803603602081101561072257600080fd5b50356001600160a01b0316611302565b6102866004803603602081101561074857600080fd5b5035611314565b61032b6004803603602081101561076557600080fd5b50356001600160a01b0316611371565b6102866004803603602081101561078b57600080fd5b50356001600160a01b0316611383565b610286600480360360408110156107b157600080fd5b506001600160a01b0381351690602001356113f2565b61032b600480360360208110156107dd57600080fd5b50356001600160a01b0316611468565b610369611496565b6102866004803603604081101561080b57600080fd5b506001600160a01b0381351690602001356114a7565b61032b6004803603604081101561083757600080fd5b506001600160a01b038135811691602001351661151d565b6102866004803603604081101561086557600080fd5b506001600160a01b038135169060200135611525565b61036961159b565b6103ab6115ac565b610286600480360360408110156108a157600080fd5b506001600160a01b03813581169160200135166115bb565b6001546001600160a01b03163314610906576040805162461bcd60e51b81526020600482015260156024820152600080516020612441833981519152604482015290519081900360640190fd5b61091a6001600160a01b0384168383611724565b505050565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b505050505081565b60006109b461159b565b6109c057506000610aae565b6001600160a01b0380831660008181526013602090815260408083205460158352818420546009548351633792def360e01b81526004810197909752925191969095921692633792def39260248082019391829003018186803b158015610a2657600080fd5b505afa158015610a3a573d6000803e3d6000fd5b505050506040513d6020811015610a5057600080fd5b505190506000610a6a83610a648487611776565b90611776565b6001600160a01b03871660009081526014602052604090205490915080821015610a9c57600095505050505050610aae565b610aa682826117d5565b955050505050505b919050565b6040805162461bcd60e51b81526020600482015260196024820152785665737465723a206e6f6e2d7472616e736665727261626c6560381b6044820152905160009181900360640190fd5b60116020526000908152604090205481565b6001546001600160a01b031681565b600060026000541415610b67576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055610b74611817565b610b7e8383611871565b60016000559392505050565b60055481565b600b5481565b6006546001600160a01b031681565b600a5481565b600d6020526000908152604090205481565b60045460ff1681565b60026000541415610c0c576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055610c19611817565b610c238282611924565b50506001600055565b60146020526000908152604090205481565b60026000541415610c84576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b60026000553380610c958180611871565b506001600160a01b0382166000908152600f6020908152604080832054600d9092528220549091610cc68284611776565b905060008111610d1d576040805162461bcd60e51b815260206004820152601d60248201527f5665737465723a2076657374656420616d6f756e74206973207a65726f000000604482015290519081900360640190fd5b610d25611496565b15610d66576001600160a01b0385166000908152600e6020526040902054610d4d8682611ac6565b600754610d64906001600160a01b03168683611724565b505b600654610d7d906001600160a01b03168584611724565b610d878583611bb6565b6001600160a01b0385166000818152600f6020908152604080832083905560108252808320839055601182528083209290925581519283528201859052818101849052517ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360600190a150506001600055505050565b6007546001600160a01b031681565b6001600160a01b038116600090815260106020908152604080832054600f9092528220548291610e4091906117d5565b90506000610e4d84611ca6565b9050610e598282611776565b949350505050565b60026000541415610ea7576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055610eb4611817565b6001600160a01b0390911660009081526015602052604081209190915560019055565b60095460408051633792def360e01b81526001600160a01b038481166004830152915160009384931691633792def3916024808301926020929190829003018186803b158015610f2657600080fd5b505afa158015610f3a573d6000803e3d6000fd5b505050506040513d6020811015610f5057600080fd5b50516001600160a01b038416600090815260136020526040812054919250610f788383611776565b905080610f8b5760009350505050610aae565b6009546040805163a318021760e01b81526001600160a01b0388811660048301529151600093929092169163a318021791602480820192602092909190829003018186803b158015610fdc57600080fd5b505afa158015610ff0573d6000803e3d6000fd5b505050506040513d602081101561100657600080fd5b50516001600160a01b038716600090815260126020526040902054909150610aa661103b846110358488611d3f565b90611d98565b610a6485611035868a611d3f565b60166020526000908152604090205460ff1681565b6000600260005414156110a6576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b60026000556110b53380611871565b9050600160005590565b600e6020526000908152604090205481565b6001546001600160a01b0316331461111e576040805162461bcd60e51b81526020600482015260156024820152600080516020612441833981519152604482015290519081900360640190fd5b600c805460ff1916911515919091179055565b6009546001600160a01b031681565b6001600160a01b03166000908152600d602052604090205490565b60106020526000908152604090205481565b60126020526000908152604090205481565b600061118961159b565b611195575060006111e1565b60006111a084610ed7565b9050806111b15760009150506111e1565b60006111bc856109aa565b9050806111ce576000925050506111e1565b6111dc816110358685611d3f565b925050505b92915050565b6001600160a01b0381166000908152600f6020908152604080832054600d9092528220546111e191611776565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109a25780601f10610977576101008083540402835291602001916109a2565b6001546001600160a01b031633146112bc576040805162461bcd60e51b81526020600482015260156024820152600080516020612441833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60156020526000908152604090205481565b600c5460ff1681565b600f6020526000908152604090205481565b6002600054141561135a576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b60026000556113693382611924565b506001600055565b60136020526000908152604090205481565b6001546001600160a01b031633146113d0576040805162461bcd60e51b81526020600482015260156024820152600080516020612441833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60026000541415611438576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055611445611817565b6001600160a01b0390911660009081526013602052604081209190915560019055565b6001600160a01b0381166000908152600d6020908152604080832054600f909252822054610e598282611776565b6007546001600160a01b0316151590565b600260005414156114ed576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b60026000556114fa611817565b6001600160a01b0390911660009081526014602052604081209190915560019055565b600092915050565b6002600054141561156b576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055611578611817565b6001600160a01b0390911660009081526012602052604081209190915560019055565b6009546001600160a01b0316151590565b6008546001600160a01b031681565b60026000541415611601576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b600260005561160e611817565b61161782610ed7565b6001600160a01b0380831660009081526012602090815260408083209490945585831680835284832083905560138252848320546009548651633792def360e01b815260048101939093529551909593949390931692633792def392602480840193919291829003018186803b15801561169057600080fd5b505afa1580156116a4573d6000803e3d6000fd5b505050506040513d60208110156116ba57600080fd5b505190506116c88282611776565b6001600160a01b0393841660008181526013602081815260408084209590955597909616808252601488528382209490945594865281852085905560159095528084208054958552908420949094558252509081905560019055565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261091a908490611dd7565b6000828201838110156117ce576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b9392505050565b60006117ce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e88565b3360009081526016602052604090205460ff1661186f576040805162461bcd60e51b81526020600482015260116024820152702b32b9ba32b91d103337b93134b23232b760791b604482015290519081900360640190fd5b565b600061187c83611f1f565b600061188784610e10565b6001600160a01b0385166000908152601060205260409020549091506118ad9082611776565b6001600160a01b038086166000908152601060205260409020919091556008546118d991168483611724565b604080516001600160a01b03861681526020810183905281517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4929181900390910190a19392505050565b60008111611973576040805162461bcd60e51b815260206004820152601760248201527615995cdd195c8e881a5b9d985b1a590817d85b5bdd5b9d604a1b604482015290519081900360640190fd5b61197c82611f1f565b600654611994906001600160a01b0316833084611ffd565b61199e828261205d565b6119a6611496565b15611a1d576001600160a01b0382166000908152600e6020908152604080832054600d9092528220549091906119dd90859061117f565b905081811115611a1a5760006119f382846117d5565b600754909150611a0e906001600160a01b0316863084611ffd565b611a188582612143565b505b50505b600c5460ff1615611a7e576000611a33836109aa565b905080611a3f846111e7565b1115611a7c5760405162461bcd60e51b81526004018080602001828103825260248152602001806124c76024913960400191505060405180910390fd5b505b604080516001600160a01b03841681526020810183905281517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c929181900390910190a15050565b6001600160a01b038216611b0b5760405162461bcd60e51b81526004018080602001828103825260228152602001806124846022913960400191505060405180910390fd5b611b4881604051806060016040528060238152602001612461602391396001600160a01b0385166000908152600e60205260409020549190611e88565b6001600160a01b0383166000908152600e6020526040902055600b54611b6e90826117d5565b600b556040805182815290516000916001600160a01b038516917f659523c479d006050ebc0d0e48fea36d1b2c5d45b2f31402ac6f8671fc84cc049181900360200190a35050565b6001600160a01b038216611bfb5760405162461bcd60e51b81526004018080602001828103825260228152602001806124846022913960400191505060405180910390fd5b611c3881604051806060016040528060238152602001612461602391396001600160a01b0385166000908152600d60205260409020549190611e88565b6001600160a01b0383166000908152600d6020526040902055600a54611c5e90826117d5565b600a556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0381166000908152601160205260408120548190611ccc9042906117d5565b6001600160a01b0384166000908152600d602052604090205490915080611cf857600092505050610aae565b6000611d0385611468565b90506000611d206005546110358685611d3f90919063ffffffff16565b905082811015611d35579350610aae92505050565b5090949350505050565b600082611d4e575060006111e1565b82820282848281611d5b57fe5b04146117ce5760405162461bcd60e51b81526004018080602001828103825260218152602001806124a66021913960400191505060405180910390fd5b60006117ce83836040518060400160405280601a815260200179536166654d6174683a206469766973696f6e206279207a65726f60301b815250612229565b6060611e2c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661228e9092919063ffffffff16565b80519091501561091a57808060200190516020811015611e4b57600080fd5b505161091a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806124eb602a913960400191505060405180910390fd5b60008184841115611f175760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611edc578181015183820152602001611ec4565b50505050905090810190601f168015611f095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000611f2a82611ca6565b6001600160a01b0383166000908152601160205260409020429055905080611f525750611ffa565b611f5c8282611bb6565b6001600160a01b0382166000908152600f6020526040902054611f7f9082611776565b6001600160a01b038084166000908152600f6020526040808220939093556006548351632770a7eb60e21b8152306004820152602481018690529351921692639dc29fac926044808301939282900301818387803b158015611fe057600080fd5b505af1158015611ff4573d6000803e3d6000fd5b50505050505b50565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052612057908590611dd7565b50505050565b6001600160a01b0382166120b8576040805162461bcd60e51b815260206004820181905260248201527f5665737465723a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600a546120c59082611776565b600a556001600160a01b0382166000908152600d60205260409020546120eb9082611776565b6001600160a01b0383166000818152600d602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661219e576040805162461bcd60e51b815260206004820181905260248201527f5665737465723a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600b546121ab9082611776565b600b556001600160a01b0382166000908152600e60205260409020546121d19082611776565b6001600160a01b0383166000818152600e602090815260408083209490945583518581529351929391927f659523c479d006050ebc0d0e48fea36d1b2c5d45b2f31402ac6f8671fc84cc049281900390910190a35050565b600081836122785760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611edc578181015183820152602001611ec4565b50600083858161228457fe5b0495945050505050565b6060610e598484600085856122a2856123b4565b6122f3576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106123325780518252601f199092019160209182019101612313565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612394576040519150601f19603f3d011682016040523d82523d6000602084013e612399565b606091505b50915091506123a98282866123ba565b979650505050505050565b3b151590565b606083156123c95750816117ce565b8251156123d95782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611edc578181015183820152602001611ec456fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00476f7665726e61626c653a20666f7262696464656e00000000000000000000005665737465723a206275726e20616d6f756e7420657863656564732062616c616e63655665737465723a206275726e2066726f6d20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775665737465723a206d6178207665737461626c6520616d6f756e742065786365656465645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220c032d6f0af51ed686116124e0c41f0817dce4ac6cd945380b38cf681ceb2703664736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000001e1338000000000000000000000000063c10405d939e03032436f3fea80d8fcc5e4c68f000000000000000000000000c5be9ed36cbb282a923aa160fa62b9372f035a5b0000000000000000000000006881b80ea7c858e4aeef63893e18a8a36f3682f3000000000000000000000000ef8770e9506a8d1aae3d599327a39cf14b6b3dc4000000000000000000000000000000000000000000000000000000000000000b566573746564204e4156490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005764e415649000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061024b5760003560e01c806369de9b931161014257806369de9b93146105bd5780636bcb411a146105dc57806370a08231146105e457806371417b321461060a5780637337035c146106305780637cf8f3b214610656578063930354731461068257806395d89b41146106a85780639cb7de4b146106b0578063a2545fa5146106de578063a9059cbb1461033d578063acf077a514610704578063b5ff136d1461070c578063b6b55f2514610732578063b71bce2a1461074f578063cfad57a214610775578063d0b038b71461079b578063d5a73fdd146107c7578063d75abb57146107ed578063d89b7007146107f5578063dd62ed3e14610821578063e3ecc4b21461084f578063f421f62a1461087b578063f6d6d5aa14610883578063f713c2301461088b5761024b565b806301e336671461025057806306fdde031461028857806308f26c7614610305578063095ea7b31461033d5780630db9ea4a1461037d57806312d43a51146103a357806313e82e7a146103c75780631514617e146103f557806315e90a41146103fd57806316ca05c51461040557806318160ddd1461040d57806323b872dd1461041557806327e235e31461044b578063313ce56714610471578063342fcda91461048f578063387a785d146104bb5780633ccfd60b146104e15780633de35b79146104e9578063402914f5146104f157806341f227241461051757806345f01ee61461054357806346ea87af146105695780634e71d92d1461058f5780635d50e72914610597575b600080fd5b6102866004803603606081101561026657600080fd5b506001600160a01b038135811691602081013590911690604001356108b9565b005b61029061091f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ca5781810151838201526020016102b2565b50505050905090810190601f1680156102f75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61032b6004803603602081101561031b57600080fd5b50356001600160a01b03166109aa565b60408051918252519081900360200190f35b6103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610ab3565b604080519115158252519081900360200190f35b61032b6004803603602081101561039357600080fd5b50356001600160a01b0316610afe565b6103ab610b10565b604080516001600160a01b039092168252519081900360200190f35b61032b600480360360408110156103dd57600080fd5b506001600160a01b0381358116916020013516610b1f565b61032b610b8a565b61032b610b90565b6103ab610b96565b61032b610ba5565b6103696004803603606081101561042b57600080fd5b506001600160a01b03813581169160208101359091169060400135610ab3565b61032b6004803603602081101561046157600080fd5b50356001600160a01b0316610bab565b610479610bbd565b6040805160ff9092168252519081900360200190f35b610286600480360360408110156104a557600080fd5b506001600160a01b038135169060200135610bc6565b61032b600480360360208110156104d157600080fd5b50356001600160a01b0316610c2c565b610286610c3e565b6103ab610e01565b61032b6004803603602081101561050757600080fd5b50356001600160a01b0316610e10565b6102866004803603604081101561052d57600080fd5b506001600160a01b038135169060200135610e61565b61032b6004803603602081101561055957600080fd5b50356001600160a01b0316610ed7565b6103696004803603602081101561057f57600080fd5b50356001600160a01b0316611049565b61032b61105e565b61032b600480360360208110156105ad57600080fd5b50356001600160a01b03166110bf565b610286600480360360208110156105d357600080fd5b503515156110d1565b6103ab611131565b61032b600480360360208110156105fa57600080fd5b50356001600160a01b0316611140565b61032b6004803603602081101561062057600080fd5b50356001600160a01b031661115b565b61032b6004803603602081101561064657600080fd5b50356001600160a01b031661116d565b61032b6004803603604081101561066c57600080fd5b506001600160a01b03813516906020013561117f565b61032b6004803603602081101561069857600080fd5b50356001600160a01b03166111e7565b610290611214565b610286600480360360408110156106c657600080fd5b506001600160a01b038135169060200135151561126f565b61032b600480360360208110156106f457600080fd5b50356001600160a01b03166112e7565b6103696112f9565b61032b6004803603602081101561072257600080fd5b50356001600160a01b0316611302565b6102866004803603602081101561074857600080fd5b5035611314565b61032b6004803603602081101561076557600080fd5b50356001600160a01b0316611371565b6102866004803603602081101561078b57600080fd5b50356001600160a01b0316611383565b610286600480360360408110156107b157600080fd5b506001600160a01b0381351690602001356113f2565b61032b600480360360208110156107dd57600080fd5b50356001600160a01b0316611468565b610369611496565b6102866004803603604081101561080b57600080fd5b506001600160a01b0381351690602001356114a7565b61032b6004803603604081101561083757600080fd5b506001600160a01b038135811691602001351661151d565b6102866004803603604081101561086557600080fd5b506001600160a01b038135169060200135611525565b61036961159b565b6103ab6115ac565b610286600480360360408110156108a157600080fd5b506001600160a01b03813581169160200135166115bb565b6001546001600160a01b03163314610906576040805162461bcd60e51b81526020600482015260156024820152600080516020612441833981519152604482015290519081900360640190fd5b61091a6001600160a01b0384168383611724565b505050565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b505050505081565b60006109b461159b565b6109c057506000610aae565b6001600160a01b0380831660008181526013602090815260408083205460158352818420546009548351633792def360e01b81526004810197909752925191969095921692633792def39260248082019391829003018186803b158015610a2657600080fd5b505afa158015610a3a573d6000803e3d6000fd5b505050506040513d6020811015610a5057600080fd5b505190506000610a6a83610a648487611776565b90611776565b6001600160a01b03871660009081526014602052604090205490915080821015610a9c57600095505050505050610aae565b610aa682826117d5565b955050505050505b919050565b6040805162461bcd60e51b81526020600482015260196024820152785665737465723a206e6f6e2d7472616e736665727261626c6560381b6044820152905160009181900360640190fd5b60116020526000908152604090205481565b6001546001600160a01b031681565b600060026000541415610b67576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055610b74611817565b610b7e8383611871565b60016000559392505050565b60055481565b600b5481565b6006546001600160a01b031681565b600a5481565b600d6020526000908152604090205481565b60045460ff1681565b60026000541415610c0c576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055610c19611817565b610c238282611924565b50506001600055565b60146020526000908152604090205481565b60026000541415610c84576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b60026000553380610c958180611871565b506001600160a01b0382166000908152600f6020908152604080832054600d9092528220549091610cc68284611776565b905060008111610d1d576040805162461bcd60e51b815260206004820152601d60248201527f5665737465723a2076657374656420616d6f756e74206973207a65726f000000604482015290519081900360640190fd5b610d25611496565b15610d66576001600160a01b0385166000908152600e6020526040902054610d4d8682611ac6565b600754610d64906001600160a01b03168683611724565b505b600654610d7d906001600160a01b03168584611724565b610d878583611bb6565b6001600160a01b0385166000818152600f6020908152604080832083905560108252808320839055601182528083209290925581519283528201859052818101849052517ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360600190a150506001600055505050565b6007546001600160a01b031681565b6001600160a01b038116600090815260106020908152604080832054600f9092528220548291610e4091906117d5565b90506000610e4d84611ca6565b9050610e598282611776565b949350505050565b60026000541415610ea7576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055610eb4611817565b6001600160a01b0390911660009081526015602052604081209190915560019055565b60095460408051633792def360e01b81526001600160a01b038481166004830152915160009384931691633792def3916024808301926020929190829003018186803b158015610f2657600080fd5b505afa158015610f3a573d6000803e3d6000fd5b505050506040513d6020811015610f5057600080fd5b50516001600160a01b038416600090815260136020526040812054919250610f788383611776565b905080610f8b5760009350505050610aae565b6009546040805163a318021760e01b81526001600160a01b0388811660048301529151600093929092169163a318021791602480820192602092909190829003018186803b158015610fdc57600080fd5b505afa158015610ff0573d6000803e3d6000fd5b505050506040513d602081101561100657600080fd5b50516001600160a01b038716600090815260126020526040902054909150610aa661103b846110358488611d3f565b90611d98565b610a6485611035868a611d3f565b60166020526000908152604090205460ff1681565b6000600260005414156110a6576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b60026000556110b53380611871565b9050600160005590565b600e6020526000908152604090205481565b6001546001600160a01b0316331461111e576040805162461bcd60e51b81526020600482015260156024820152600080516020612441833981519152604482015290519081900360640190fd5b600c805460ff1916911515919091179055565b6009546001600160a01b031681565b6001600160a01b03166000908152600d602052604090205490565b60106020526000908152604090205481565b60126020526000908152604090205481565b600061118961159b565b611195575060006111e1565b60006111a084610ed7565b9050806111b15760009150506111e1565b60006111bc856109aa565b9050806111ce576000925050506111e1565b6111dc816110358685611d3f565b925050505b92915050565b6001600160a01b0381166000908152600f6020908152604080832054600d9092528220546111e191611776565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109a25780601f10610977576101008083540402835291602001916109a2565b6001546001600160a01b031633146112bc576040805162461bcd60e51b81526020600482015260156024820152600080516020612441833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60156020526000908152604090205481565b600c5460ff1681565b600f6020526000908152604090205481565b6002600054141561135a576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b60026000556113693382611924565b506001600055565b60136020526000908152604090205481565b6001546001600160a01b031633146113d0576040805162461bcd60e51b81526020600482015260156024820152600080516020612441833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60026000541415611438576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055611445611817565b6001600160a01b0390911660009081526013602052604081209190915560019055565b6001600160a01b0381166000908152600d6020908152604080832054600f909252822054610e598282611776565b6007546001600160a01b0316151590565b600260005414156114ed576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b60026000556114fa611817565b6001600160a01b0390911660009081526014602052604081209190915560019055565b600092915050565b6002600054141561156b576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b6002600055611578611817565b6001600160a01b0390911660009081526012602052604081209190915560019055565b6009546001600160a01b0316151590565b6008546001600160a01b031681565b60026000541415611601576040805162461bcd60e51b815260206004820152601f6024820152600080516020612421833981519152604482015290519081900360640190fd5b600260005561160e611817565b61161782610ed7565b6001600160a01b0380831660009081526012602090815260408083209490945585831680835284832083905560138252848320546009548651633792def360e01b815260048101939093529551909593949390931692633792def392602480840193919291829003018186803b15801561169057600080fd5b505afa1580156116a4573d6000803e3d6000fd5b505050506040513d60208110156116ba57600080fd5b505190506116c88282611776565b6001600160a01b0393841660008181526013602081815260408084209590955597909616808252601488528382209490945594865281852085905560159095528084208054958552908420949094558252509081905560019055565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261091a908490611dd7565b6000828201838110156117ce576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b9392505050565b60006117ce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e88565b3360009081526016602052604090205460ff1661186f576040805162461bcd60e51b81526020600482015260116024820152702b32b9ba32b91d103337b93134b23232b760791b604482015290519081900360640190fd5b565b600061187c83611f1f565b600061188784610e10565b6001600160a01b0385166000908152601060205260409020549091506118ad9082611776565b6001600160a01b038086166000908152601060205260409020919091556008546118d991168483611724565b604080516001600160a01b03861681526020810183905281517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4929181900390910190a19392505050565b60008111611973576040805162461bcd60e51b815260206004820152601760248201527615995cdd195c8e881a5b9d985b1a590817d85b5bdd5b9d604a1b604482015290519081900360640190fd5b61197c82611f1f565b600654611994906001600160a01b0316833084611ffd565b61199e828261205d565b6119a6611496565b15611a1d576001600160a01b0382166000908152600e6020908152604080832054600d9092528220549091906119dd90859061117f565b905081811115611a1a5760006119f382846117d5565b600754909150611a0e906001600160a01b0316863084611ffd565b611a188582612143565b505b50505b600c5460ff1615611a7e576000611a33836109aa565b905080611a3f846111e7565b1115611a7c5760405162461bcd60e51b81526004018080602001828103825260248152602001806124c76024913960400191505060405180910390fd5b505b604080516001600160a01b03841681526020810183905281517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c929181900390910190a15050565b6001600160a01b038216611b0b5760405162461bcd60e51b81526004018080602001828103825260228152602001806124846022913960400191505060405180910390fd5b611b4881604051806060016040528060238152602001612461602391396001600160a01b0385166000908152600e60205260409020549190611e88565b6001600160a01b0383166000908152600e6020526040902055600b54611b6e90826117d5565b600b556040805182815290516000916001600160a01b038516917f659523c479d006050ebc0d0e48fea36d1b2c5d45b2f31402ac6f8671fc84cc049181900360200190a35050565b6001600160a01b038216611bfb5760405162461bcd60e51b81526004018080602001828103825260228152602001806124846022913960400191505060405180910390fd5b611c3881604051806060016040528060238152602001612461602391396001600160a01b0385166000908152600d60205260409020549190611e88565b6001600160a01b0383166000908152600d6020526040902055600a54611c5e90826117d5565b600a556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0381166000908152601160205260408120548190611ccc9042906117d5565b6001600160a01b0384166000908152600d602052604090205490915080611cf857600092505050610aae565b6000611d0385611468565b90506000611d206005546110358685611d3f90919063ffffffff16565b905082811015611d35579350610aae92505050565b5090949350505050565b600082611d4e575060006111e1565b82820282848281611d5b57fe5b04146117ce5760405162461bcd60e51b81526004018080602001828103825260218152602001806124a66021913960400191505060405180910390fd5b60006117ce83836040518060400160405280601a815260200179536166654d6174683a206469766973696f6e206279207a65726f60301b815250612229565b6060611e2c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661228e9092919063ffffffff16565b80519091501561091a57808060200190516020811015611e4b57600080fd5b505161091a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806124eb602a913960400191505060405180910390fd5b60008184841115611f175760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611edc578181015183820152602001611ec4565b50505050905090810190601f168015611f095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000611f2a82611ca6565b6001600160a01b0383166000908152601160205260409020429055905080611f525750611ffa565b611f5c8282611bb6565b6001600160a01b0382166000908152600f6020526040902054611f7f9082611776565b6001600160a01b038084166000908152600f6020526040808220939093556006548351632770a7eb60e21b8152306004820152602481018690529351921692639dc29fac926044808301939282900301818387803b158015611fe057600080fd5b505af1158015611ff4573d6000803e3d6000fd5b50505050505b50565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052612057908590611dd7565b50505050565b6001600160a01b0382166120b8576040805162461bcd60e51b815260206004820181905260248201527f5665737465723a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600a546120c59082611776565b600a556001600160a01b0382166000908152600d60205260409020546120eb9082611776565b6001600160a01b0383166000818152600d602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661219e576040805162461bcd60e51b815260206004820181905260248201527f5665737465723a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600b546121ab9082611776565b600b556001600160a01b0382166000908152600e60205260409020546121d19082611776565b6001600160a01b0383166000818152600e602090815260408083209490945583518581529351929391927f659523c479d006050ebc0d0e48fea36d1b2c5d45b2f31402ac6f8671fc84cc049281900390910190a35050565b600081836122785760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611edc578181015183820152602001611ec4565b50600083858161228457fe5b0495945050505050565b6060610e598484600085856122a2856123b4565b6122f3576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106123325780518252601f199092019160209182019101612313565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612394576040519150601f19603f3d011682016040523d82523d6000602084013e612399565b606091505b50915091506123a98282866123ba565b979650505050505050565b3b151590565b606083156123c95750816117ce565b8251156123d95782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611edc578181015183820152602001611ec456fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00476f7665726e61626c653a20666f7262696464656e00000000000000000000005665737465723a206275726e20616d6f756e7420657863656564732062616c616e63655665737465723a206275726e2066726f6d20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775665737465723a206d6178207665737461626c6520616d6f756e742065786365656465645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220c032d6f0af51ed686116124e0c41f0817dce4ac6cd945380b38cf681ceb2703664736f6c634300060c0033

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000001e1338000000000000000000000000063c10405d939e03032436f3fea80d8fcc5e4c68f000000000000000000000000c5be9ed36cbb282a923aa160fa62b9372f035a5b0000000000000000000000006881b80ea7c858e4aeef63893e18a8a36f3682f3000000000000000000000000ef8770e9506a8d1aae3d599327a39cf14b6b3dc4000000000000000000000000000000000000000000000000000000000000000b566573746564204e4156490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005764e415649000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Vested NAVI
Arg [1] : _symbol (string): vNAVI
Arg [2] : _vestingDuration (uint256): 31536000
Arg [3] : _esToken (address): 0x63c10405d939E03032436f3fea80d8fcc5E4c68f
Arg [4] : _pairToken (address): 0xc5BE9eD36Cbb282a923Aa160fa62b9372f035A5b
Arg [5] : _claimableToken (address): 0x6881B80ea7C858E4aEEf63893e18a8A36f3682f3
Arg [6] : _rewardTracker (address): 0xEF8770E9506a8D1aAE3D599327a39Cf14B6B3dc4

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000001e13380
Arg [3] : 00000000000000000000000063c10405d939e03032436f3fea80d8fcc5e4c68f
Arg [4] : 000000000000000000000000c5be9ed36cbb282a923aa160fa62b9372f035a5b
Arg [5] : 0000000000000000000000006881b80ea7c858e4aeef63893e18a8a36f3682f3
Arg [6] : 000000000000000000000000ef8770e9506a8d1aae3d599327a39cf14b6b3dc4
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 566573746564204e415649000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 764e415649000000000000000000000000000000000000000000000000000000


[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.