ETH Price: $3,288.86 (+1.45%)
Gas: 1 Gwei

Token

Hegic ETH LP Token (writeETH)
 

Overview

Max Total Supply

21,342.470826493313002787 writeETH

Holders

131

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
forthememe.eth
Balance
25.18344615038535463 writeETH

Value
$0.00
0x3993996B09949BBA655d98C02c87EA6ABf553630
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HegicETHPool

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-06-01
*/

// SPDX-License-Identifier: GPL-3.0-or-later
// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.6.0;

/**
 * @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: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.6.0;

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

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

// File: @openzeppelin/contracts/utils/Address.sol

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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.6.0;





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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

// File: @chainlink/contracts/src/v0.6/dev/AggregatorInterface.sol

pragma solidity ^0.6.0;

interface AggregatorInterface {
  function latestAnswer() external view returns (int256);
  function latestTimestamp() external view returns (uint256);
  function latestRound() external view returns (uint256);
  function getAnswer(uint256 roundId) external view returns (int256);
  function getTimestamp(uint256 roundId) external view returns (uint256);

  event AnswerUpdated(int256 indexed current, uint256 indexed roundId, uint256 timestamp);
  event NewRound(uint256 indexed roundId, address indexed startedBy, uint256 startedAt);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: contracts/Interfaces.sol

/**
 * Hegic
 * Copyright (C) 2020 Hegic Protocol
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

pragma solidity 0.6.8;






interface ILiquidityPool {
    event Withdraw(
        address indexed account,
        uint256 amount,
        uint256 writeAmount
    );

    event Provide(address indexed account, uint256 amount, uint256 writeAmount);
    function lock(uint256 amount) external;
    function unlock(uint256 amount) external;
    function unlockPremium(uint256 amount) external;
    function send(address payable account, uint256 amount) external;
    function setLockupPeriod(uint value) external;
    function totalBalance() external view returns (uint256 amount);
}


interface IERCLiquidityPool is ILiquidityPool {
    function sendPremium(uint256 amount) external;
    function token() external view returns (IERC20);
}


interface IETHLiquidityPool is ILiquidityPool {
    function sendPremium() external payable;
}


// for the future
// interface ERC20Incorrect {
//     event Transfer(address indexed from, address indexed to, uint256 value);
//
//     event Approval(address indexed owner, address indexed spender, uint256 value);
//
//     function transfer(address to, uint256 value) external;
//
//     function transferFrom(
//         address from,
//         address to,
//         uint256 value
//     ) external;
//
//     function approve(address spender, uint256 value) external;
//     function balanceOf(address who) external view returns (uint256);
//     function allowance(address owner, address spender) external view returns (uint256);
//
// }

// File: contracts/HegicERCPool.sol

/**
 * Hegic
 * Copyright (C) 2020 Hegic Protocol
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

pragma solidity 0.6.8;



/**
 * @author 0mllwntrmt3
 * @title Hegic DAI Liquidity Pool
 * @notice Accumulates liquidity in DAI from LPs and distributes P&L in DAI
 */
contract HegicERCPool is
    IERCLiquidityPool,
    Ownable,
    ERC20("Hegic DAI LP Token", "writeDAI")
{
    using SafeMath for uint256;
    uint256 public lockupPeriod = 2 weeks;
    uint256 public lockedAmount;
    uint256 public lockedPremium;
    mapping(address => uint256) private lastProvideTimestamp;
    IERC20 public override token;

    /*
     * @return _token DAI Address
     */
    constructor(IERC20 _token) public {
        token = _token;
    }

    /**
     * @notice Used for changing the lockup period
     * @param value New period value
     */
    function setLockupPeriod(uint256 value) external override onlyOwner {
        require(value <= 60 days, "Lockup period is too large");
        lockupPeriod = value;
    }

    /*
     * @nonce calls by HegicPutOptions to lock funds
     * @param amount Amount of funds that should be locked in an option
     */
    function lock(uint256 amount) external override onlyOwner {
        require(
            lockedAmount.add(amount).mul(10).div(totalBalance()) < 8,
            "Pool Error: Not enough funds on the pool contract. Please lower the amount."
        );
        lockedAmount = lockedAmount.add(amount);
    }

    /*
     * @nonce Calls by HegicPutOptions to unlock funds
     * @param amount Amount of funds that should be unlocked in an expired option
     */
    function unlock(uint256 amount) external override onlyOwner {
        require(lockedAmount >= amount, "Pool Error: You are trying to unlock more funds than have been locked for your contract. Please lower the amount.");
        lockedAmount = lockedAmount.sub(amount);
    }

    /*
     * @nonce Calls by HegicPutOptions to send and lock the premiums
     * @param amount Funds that should be locked
     */
    function sendPremium(uint256 amount) external override onlyOwner {
        lockedPremium = lockedPremium.add(amount);
        require(
            token.transferFrom(msg.sender, address(this), amount),
            "Token transfer error: Please lower the amount of premiums that you want to send."
        );
    }

    /*
     * @nonce Calls by HegicPutOptions to unlock premium after an option expiraton
     * @param amount Amount of premiums that should be locked
     */
    function unlockPremium(uint256 amount) external override onlyOwner {
        require(lockedPremium >= amount, "Pool Error: You are trying to unlock more premiums than have been locked for the contract. Please lower the amount.");
        lockedPremium = lockedPremium.sub(amount);
    }

    /*
     * @nonce calls by HegicPutOptions to unlock the premiums after an option's expiraton
     * @param to Provider
     * @param amount Amount of premiums that should be unlocked
     */
    function send(address payable to, uint256 amount)
        external
        override
        onlyOwner
    {
        require(to != address(0));
        require(lockedAmount >= amount, "Pool Error: You are trying to unlock more premiums than have been locked for the contract. Please lower the amount.");
        require(token.transfer(to, amount), "Token transfer error: Please lower the amount of premiums that you want to send.");
    }

    /*
     * @nonce A provider supplies DAI to the pool and receives writeDAI tokens
     * @param amount Provided tokens
     * @param minMint Minimum amount of tokens that should be received by a provider.
                      Calling the provide function will require the minimum amount of tokens to be minted.
                      The actual amount that will be minted could vary but can only be higher (not lower) than the minimum value.
     * @return mint Amount of tokens to be received
     */
    function provide(uint256 amount, uint256 minMint) external returns (uint256 mint) {
        lastProvideTimestamp[msg.sender] = now;
        uint supply = totalSupply();
        uint balance = totalBalance();
        if (supply > 0 && balance > 0)
            mint = amount.mul(supply).div(balance);
        else
            mint = amount.mul(1000);

        require(mint >= minMint, "Pool: Mint limit is too large");
        require(mint > 0, "Pool: Amount is too small");
        _mint(msg.sender, mint);
        emit Provide(msg.sender, amount, mint);

        require(
            token.transferFrom(msg.sender, address(this), amount),
            "Token transfer error: Please lower the amount of premiums that you want to send."
        );
    }

    /*
     * @nonce Provider burns writeDAI and receives DAI from the pool
     * @param amount Amount of DAI to receive
     * @param maxBurn Maximum amount of tokens that can be burned
     * @return mint Amount of tokens to be burnt
     */
    function withdraw(uint256 amount, uint256 maxBurn) external returns (uint256 burn) {
        require(
            lastProvideTimestamp[msg.sender].add(lockupPeriod) <= now,
            "Pool: Withdrawal is locked up"
        );
        require(
            amount <= availableBalance(),
            "Pool Error: You are trying to unlock more funds than have been locked for your contract. Please lower the amount."
        );
        burn = amount.mul(totalSupply()).div(totalBalance());

        require(burn <= maxBurn, "Pool: Burn limit is too small");
        require(burn <= balanceOf(msg.sender), "Pool: Amount is too large");
        require(burn > 0, "Pool: Amount is too small");

        _burn(msg.sender, burn);
        emit Withdraw(msg.sender, amount, burn);
        require(token.transfer(msg.sender, amount), "Insufficient funds");
    }

    /*
     * @nonce Returns provider's share in DAI
     * @param account Provider's address
     * @return Provider's share in DAI
     */
    function shareOf(address user) external view returns (uint256 share) {
        uint supply = totalSupply();
        if (supply > 0)
            share = totalBalance().mul(balanceOf(user)).div(supply);
        else
            share = 0;
    }

    /*
     * @nonce Returns the amount of DAI available for withdrawals
     * @return balance Unlocked amount
     */
    function availableBalance() public view returns (uint256 balance) {
        return totalBalance().sub(lockedAmount);
    }

    /*
     * @nonce Returns the DAI total balance provided to the pool
     * @return balance Pool balance
     */
    function totalBalance() public override view returns (uint256 balance) {
        return token.balanceOf(address(this)).sub(lockedPremium);
    }

    function _beforeTokenTransfer(address from, address, uint256) internal override {
        require(
            lastProvideTimestamp[from].add(lockupPeriod) <= now,
            "Pool: Withdrawal is locked up"
        );
    }
}

// File: contracts/HegicETHPool.sol

/**
 * Hegic
 * Copyright (C) 2020 Hegic Protocol
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

pragma solidity 0.6.8;



/**
 * @author 0mllwntrmt3
 * @title Hegic ETH Liquidity Pool
 * @notice Accumulates liquidity in ETH from LPs and distributes P&L in ETH
 */
contract HegicETHPool is
    IETHLiquidityPool,
    Ownable,
    ERC20("Hegic ETH LP Token", "writeETH")
{
    using SafeMath for uint256;
    uint256 public lockupPeriod = 2 weeks;
    uint256 public lockedAmount;
    uint256 public lockedPremium;
    mapping(address => uint256) private lastProvideTimestamp;

    /*
     * @nonce Sends premiums to the liquidity pool
     **/
    receive() external payable {}

    /**
     * @notice Used for changing the lockup period
     * @param value New period value
     */
    function setLockupPeriod(uint256 value) external override onlyOwner {
        require(value <= 60 days, "Lockup period is too large");
        lockupPeriod = value;
    }

    /*
     * @nonce A provider supplies ETH to the pool and receives writeETH tokens
     * @param minMint Minimum amount of tokens that should be received by a provider.
                      Calling the provide function will require the minimum amount of tokens to be minted.
                      The actual amount that will be minted could vary but can only be higher (not lower) than the minimum value.
     * @return mint Amount of tokens to be received
     */
    function provide(uint256 minMint) external payable returns (uint256 mint) {
        lastProvideTimestamp[msg.sender] = now;
        uint supply = totalSupply();
        uint balance = totalBalance();
        if (supply > 0 && balance > 0)
            mint = msg.value.mul(supply).div(balance.sub(msg.value));
        else
            mint = msg.value.mul(1000);

        require(mint >= minMint, "Pool: Mint limit is too large");
        require(mint > 0, "Pool: Amount is too small");

        _mint(msg.sender, mint);
        emit Provide(msg.sender, msg.value, mint);
    }

    /*
     * @nonce Provider burns writeETH and receives ETH from the pool
     * @param amount Amount of ETH to receive
     * @return burn Amount of tokens to be burnt
     */
    function withdraw(uint256 amount, uint256 maxBurn) external returns (uint256 burn) {
        require(
            lastProvideTimestamp[msg.sender].add(lockupPeriod) <= now,
            "Pool: Withdrawal is locked up"
        );
        require(
            amount <= availableBalance(),
            "Pool Error: Not enough funds on the pool contract. Please lower the amount."
        );
        burn = amount.mul(totalSupply()).div(totalBalance());

        require(burn <= maxBurn, "Pool: Burn limit is too small");
        require(burn <= balanceOf(msg.sender), "Pool: Amount is too large");
        require(burn > 0, "Pool: Amount is too small");

        _burn(msg.sender, burn);
        emit Withdraw(msg.sender, amount, burn);
        msg.sender.transfer(amount);
    }

    /*
     * @nonce calls by HegicCallOptions to lock the funds
     * @param amount Amount of funds that should be locked in an option
     */
    function lock(uint256 amount) external override onlyOwner {
        require(
            lockedAmount.add(amount).mul(10).div(totalBalance()) < 8,
            "Pool Error: You are trying to unlock more funds than have been locked for your contract. Please lower the amount."
        );
        lockedAmount = lockedAmount.add(amount);
    }

    /*
     * @nonce calls by HegicCallOptions to unlock the funds
     * @param amount Amount of funds that should be unlocked in an expired option
     */
    function unlock(uint256 amount) external override onlyOwner {
        require(lockedAmount >= amount, "Pool Error: You are trying to unlock more funds than have been locked for your contract. Please lower the amount.");
        lockedAmount = lockedAmount.sub(amount);
    }

    /*
     * @nonce calls by HegicPutOptions to lock the premiums
     * @param amount Amount of premiums that should be locked
     */
    function sendPremium() external override payable onlyOwner {
        lockedPremium = lockedPremium.add(msg.value);
    }

    /*
     * @nonce calls by HegicPutOptions to unlock the premiums after an option's expiraton
     * @param amount Amount of premiums that should be unlocked
     */
    function unlockPremium(uint256 amount) external override onlyOwner {
        require(lockedPremium >= amount, "Pool Error: You are trying to unlock more premiums than have been locked for the contract. Please lower the amount.");
        lockedPremium = lockedPremium.sub(amount);
    }

    /*
     * @nonce calls by HegicCallOptions to send funds to liquidity providers after an option's expiration
     * @param to Provider
     * @param amount Funds that should be sent
     */
    function send(address payable to, uint256 amount)
        external
        override
        onlyOwner
    {
        require(to != address(0));
        require(lockedAmount >= amount, "Pool Error: You are trying to unlock more premiums than have been locked for the contract. Please lower the amount.");
        to.transfer(amount);
    }

    /*
     * @nonce Returns provider's share in ETH
     * @param account Provider's address
     * @return Provider's share in ETH
     */
    function shareOf(address account) external view returns (uint256 share) {
        if (totalSupply() > 0)
            share = totalBalance().mul(balanceOf(account)).div(totalSupply());
        else
            share = 0;
    }

    /*
     * @nonce Returns the amount of ETH available for withdrawals
     * @return balance Unlocked amount
     */
    function availableBalance() public view returns (uint256 balance) {
        return totalBalance().sub(lockedAmount);
    }

    /*
     * @nonce Returns the total balance of ETH provided to the pool
     * @return balance Pool balance
     */
    function totalBalance() public override view returns (uint256 balance) {
        return address(this).balance.sub(lockedPremium);
    }

    function _beforeTokenTransfer(address from, address, uint256) internal override {
        require(
            lastProvideTimestamp[from].add(lockupPeriod) <= now,
            "Pool: Withdrawal is locked up"
        );
    }
}

// File: contracts/HegicOptions.sol

/**
 * Hegic
 * Copyright (C) 2020 Hegic Protocol
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

pragma solidity 0.6.8;




/**
 * @author 0mllwntrmt3
 * @title Hegic: On-chain Options Trading Protocol on Ethereum
 * @notice Hegic Protocol Options Contract
 */
abstract
contract HegicOptions is Ownable {
    using SafeMath for uint256;

    address payable public settlementFeeRecipient;
    Option[] public options;
    uint256 public impliedVolRate;
    uint256 internal constant PRICE_DECIMALS = 1e8;
    uint256 internal contractCreationTimestamp;
    AggregatorInterface public priceProvider;
    OptionType private optionType;

    event Create(
        uint256 indexed id,
        address indexed account,
        uint256 settlementFee,
        uint256 totalFee
    );

    event Exercise(uint256 indexed id, uint256 profit);
    event Expire(uint256 indexed id, uint256 premium);
    enum State {Active, Exercised, Expired}
    enum OptionType {Put, Call}

    struct Option {
        State state;
        address payable holder;
        uint256 strike;
        uint256 amount;
        uint256 premium;
        uint256 expiration;
    }

    /**
     * @param pp The address of ChainLink ETH/USD price feed contract
     * @param _type Put or Call type of an option contract
     */
    constructor(AggregatorInterface pp, OptionType _type) public {
        priceProvider = pp;
        optionType = _type;
        settlementFeeRecipient = payable(owner());
        impliedVolRate = 5500;
        contractCreationTimestamp = now;
    }

    /**
     * @notice Used for adjusting the options prices while balancing asset's implied volatility rate
     * @param value New IVRate value
     */
    function setImpliedVolRate(uint256 value) external onlyOwner {
        require(value >= 1000, "ImpliedVolRate limit is too small");
        impliedVolRate = value;
    }

    /**
     * @notice Used for changing settlementFeeRecipient
     * @param recipient New settlementFee recipient address
     */
    function setSettlementFeeRecipient(address payable recipient) external onlyOwner {
        require(recipient != address(0));
        settlementFeeRecipient = recipient;
    }

    /**
     * @notice Creates a new option
     * @param period Option period in seconds (1 days <= period <= 4 weeks)
     * @param amount Option amount
     * @param strike Strike price of the option
     * @return optionID Created option's ID
     */
    function create(
        uint256 period,
        uint256 amount,
        uint256 strike
    ) external payable returns (uint256 optionID) {
        (uint256 total, uint256 settlementFee, , ) = fees(
            period,
            amount,
            strike
        );
        uint256 strikeAmount = strike.mul(amount) / PRICE_DECIMALS;

        require(strikeAmount > 0, "Amount is too small");
        require(settlementFee < total, "Premium is too small");
        require(period >= 1 days, "Period is too short");
        require(period <= 4 weeks, "Period is too long");
        require(msg.value == total, "Wrong value");

        uint256 premium = sendPremium(total.sub(settlementFee));
        optionID = options.length;
        options.push(
            Option(
                State.Active,
                msg.sender,
                strike,
                amount,
                premium,
                now + period
            )
        );

        emit Create(optionID, msg.sender, settlementFee, total);
        lockFunds(options[optionID]);
        settlementFeeRecipient.transfer(settlementFee);
    }

    /**
     * @notice Exercises an active option
     * @param optionID ID of your option
     */
    function exercise(uint256 optionID) external {
        Option storage option = options[optionID];

        require(option.expiration >= now, "Option has expired");
        require(option.holder == msg.sender, "Wrong msg.sender");
        require(option.state == State.Active, "Wrong state");

        option.state = State.Exercised;
        uint256 profit = payProfit(option);

        emit Exercise(optionID, profit);
    }

    /**
     * @notice Unlocks an array of options
     * @param optionIDs array of options
     */
    function unlockAll(uint256[] calldata optionIDs) external {
        uint arrayLength = optionIDs.length;
        for (uint256 i = 0; i < arrayLength; i++) {
            unlock(optionIDs[i]);
        }
    }

    /**
     * @notice Used for getting the actual options prices
     * @param period Option period in seconds (1 days <= period <= 4 weeks)
     * @param amount Option amount
     * @param strike Strike price of the option
     * @return total Total price to be paid
     * @return settlementFee Amount to be distributed to the HEGIC token holders
     * @return strikeFee Amount that covers the price difference in the ITM options
     * @return periodFee Option period fee amount
     */
    function fees(
        uint256 period,
        uint256 amount,
        uint256 strike
    )
        public
        view
        returns (
            uint256 total,
            uint256 settlementFee,
            uint256 strikeFee,
            uint256 periodFee
        )
    {
        uint256 currentPrice = uint256(priceProvider.latestAnswer());
        settlementFee = getSettlementFee(amount);
        periodFee = getPeriodFee(amount, period, strike, currentPrice);
        strikeFee = getStrikeFee(amount, strike, currentPrice);
        total = periodFee.add(strikeFee);
    }

    /**
     * @notice Unlock funds locked in the expired options
     * @param optionID ID of the option
     */
    function unlock(uint256 optionID) public {
        Option storage option = options[optionID];
        require(option.expiration < now, "Option has not expired yet");
        require(option.state == State.Active, "Option is not active");
        option.state = State.Expired;
        unlockFunds(option);
        emit Expire(optionID, option.premium);
    }

    /**
     * @notice Calculates settlementFee
     * @param amount Option amount
     * @return fee Settlement fee amount
     */
    function getSettlementFee(uint256 amount)
        internal
        pure
        returns (uint256 fee)
    {
        return amount / 100;
    }

    /**
     * @notice Calculates periodFee
     * @param amount Option amount
     * @param period Option period in seconds (1 days <= period <= 4 weeks)
     * @param strike Strike price of the option
     * @param currentPrice Current price of ETH
     * @return fee Period fee amount
     *
     * amount < 1e30        |
     * impliedVolRate < 1e10| => amount * impliedVolRate * strike < 1e60 < 2^uint256
     * strike < 1e20 ($1T)  |
     *
     * in case amount * impliedVolRate * strike >= 2^256
     * transaction will be reverted by the SafeMath
     */
    function getPeriodFee(
        uint256 amount,
        uint256 period,
        uint256 strike,
        uint256 currentPrice
    ) internal view returns (uint256 fee) {
        if (optionType == OptionType.Put)
            return amount
                .mul(sqrt(period))
                .mul(impliedVolRate)
                .mul(strike)
                .div(currentPrice)
                .div(PRICE_DECIMALS);
        else
            return amount
                .mul(sqrt(period))
                .mul(impliedVolRate)
                .mul(currentPrice)
                .div(strike)
                .div(PRICE_DECIMALS);
    }

    /**
     * @notice Calculates strikeFee
     * @param amount Option amount
     * @param strike Strike price of the option
     * @param currentPrice Current price of ETH
     * @return fee Strike fee amount
     */
    function getStrikeFee(
        uint256 amount,
        uint256 strike,
        uint256 currentPrice
    ) internal view returns (uint256 fee) {
        if (strike > currentPrice && optionType == OptionType.Put)
            return strike.sub(currentPrice).mul(amount).div(currentPrice);
        if (strike < currentPrice && optionType == OptionType.Call)
            return currentPrice.sub(strike).mul(amount).div(currentPrice);
        return 0;
    }

    function sendPremium(uint256 amount)
        internal
        virtual
        returns (uint256 locked);

    function payProfit(Option memory option)
        internal
        virtual
        returns (uint256 amount);

    function lockFunds(Option memory option) internal virtual;
    function unlockFunds(Option memory option) internal virtual;

    /**
     * @return result Square root of the number
     */
    function sqrt(uint256 x) private pure returns (uint256 result) {
        result = x;
        uint256 k = x.add(1).div(2);
        while (k < result) (result, k) = (k, x.div(k).add(k).div(2));
    }
}

// File: contracts/HegicCallOptions.sol

/**
 * Hegic
 * Copyright (C) 2020 Hegic Protocol
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

pragma solidity 0.6.8;



/**
 * @author 0mllwntrmt3
 * @title Hegic ETH Call Options
 * @notice ETH Call Options Contract
 */
contract HegicCallOptions is HegicOptions {
    HegicETHPool public pool;

    /**
     * @param _priceProvider The address of ChainLink ETH/USD price feed contract
     */
    constructor(AggregatorInterface _priceProvider)
        public
        HegicOptions(_priceProvider, HegicOptions.OptionType.Call)
    {
        pool = new HegicETHPool();
    }

    /**
     * @notice Can be used to update the contract in critical situations in the first 90 days after deployment
     */
    function transferPoolOwnership() external onlyOwner {
        require(now < contractCreationTimestamp + 90 days);
        pool.transferOwnership(owner());
    }

    /**
     * @notice Used for changing the lockup period
     * @param value New period value
     */
    function setLockupPeriod(uint256 value) external onlyOwner {
        require(value <= 60 days, "Lockup period is too large");
        pool.setLockupPeriod(value);
    }

    /**
     * @notice Sends premiums to the ETH liquidity pool contract
     * @param amount The amount of premiums that will be sent to the pool
     */
    function sendPremium(uint amount) internal override returns (uint locked) {
        pool.sendPremium {value: amount}();
        locked = amount;
    }

    /**
     * @notice Locks the amount required for an option
     * @param option A specific option contract
     */
    function lockFunds(Option memory option) internal override {
        pool.lock(option.amount);
    }

    /**
     * @notice Sends profits in ETH from the ETH pool to a call option holder's address
     * @param option A specific option contract
     */
    function payProfit(Option memory option)
        internal
        override
        returns (uint profit)
    {
        uint currentPrice = uint(priceProvider.latestAnswer());
        require(option.strike <= currentPrice, "Current price is too low");
        profit = currentPrice.sub(option.strike).mul(option.amount).div(currentPrice);
        pool.send(option.holder, profit);
        unlockFunds(option);
    }

    /**
     * @notice Unlocks the amount that was locked in a call option contract
     * @param option A specific option contract
     */
    function unlockFunds(Option memory option) internal override {
        pool.unlockPremium(option.premium);
        pool.unlock(option.amount);
    }
}

// File: contracts/HegicPutOptions.sol

/**
 * Hegic
 * Copyright (C) 2020 Hegic Protocol
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

pragma solidity 0.6.8;



/**
 * @author 0mllwntrmt3
 * @title Hegic ETH Put Options
 * @notice ETH Put Options Contract
 */
contract HegicPutOptions is HegicOptions {
    IUniswapV2Router01 public uniswapRouter;
    HegicERCPool public pool;
    uint256 public maxSpread = 95;
    IERC20 internal token;

    /**
     * @param _token The address of stable ERC20 token contract
     * @param _priceProvider The address of ChainLink ETH/USD price feed contract
     * @param _uniswapRouter The address of Uniswap Router contract
     */
    constructor(
        IERC20 _token,
        AggregatorInterface _priceProvider,
        IUniswapV2Router01 _uniswapRouter
    )
        public
        HegicOptions(_priceProvider, HegicOptions.OptionType.Put)
    {
        token = _token;
        uniswapRouter = _uniswapRouter;
        pool = new HegicERCPool(token);
        approve();
    }

    /**
     * @notice Can be used to update the contract in critical situations
     *         in the first 90 days after deployment
     */
    function transferPoolOwnership() external onlyOwner {
        require(now < contractCreationTimestamp + 90 days);
        pool.transferOwnership(owner());
    }

    /**
     * @notice Used for adjusting the spread limit
     * @param value New maxSpread value
     */
    function setMaxSpread(uint256 value) external onlyOwner {
        require(value <= 95, "Spread limit is too small");
        maxSpread = value;
    }

    /**
     * @notice Used for changing the lockup period
     * @param value New period value
     */
    function setLockupPeriod(uint256 value) external onlyOwner {
        require(value <= 60 days, "Lockup period is too large");
        pool.setLockupPeriod(value);
    }

    /**
     * @notice Allows the ERC pool contract to receive and send tokens
     */
    function approve() public {
        require(
            token.approve(address(pool), uint256(-1)),
            "token approve failed"
        );
    }

    /**
     * @notice Sends premiums to the ERC liquidity pool contract
     */
    function sendPremium(uint256 amount) internal override returns (uint premium) {
        uint currentPrice = uint(priceProvider.latestAnswer());
        address[] memory path = new address[](2);
        path[0] = uniswapRouter.WETH();
        path[1] = address(token);
        uint[] memory amounts = uniswapRouter.swapExactETHForTokens {
            value: amount
        }(
            amount.mul(currentPrice).mul(maxSpread).div(1e10),
            path,
            address(this),
            now
        );
        premium = amounts[amounts.length - 1];
        pool.sendPremium(premium);
    }

    /**
     * @notice Locks the amount required for an option
     * @param option A specific option contract
     */
    function lockFunds(Option memory option) internal override {
        pool.lock(option.amount.mul(option.strike).div(PRICE_DECIMALS));
    }

    /**
     * @notice Sends profits in DAI from the ERC pool to a put option holder's address
     * @param option A specific option contract
     */
    function payProfit(Option memory option) internal override returns (uint profit) {
        uint currentPrice = uint(priceProvider.latestAnswer());
        require(option.strike >= currentPrice, "Current price is too high");
        profit = option.strike.sub(currentPrice).mul(option.amount).div(PRICE_DECIMALS);
        pool.send(option.holder, profit);
        unlockFunds(option);
    }

    /**
     * @notice Unlocks the amount that was locked in a put option contract
     * @param option A specific option contract
     */
    function unlockFunds(Option memory option) internal override {
        pool.unlockPremium(option.premium);
        pool.unlock(option.amount.mul(option.strike).div(PRICE_DECIMALS));
    }
}

// File: test/Import.flat

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"writeAmount","type":"uint256"}],"name":"Provide","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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"writeAmount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockedPremium","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockupPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minMint","type":"uint256"}],"name":"provide","outputs":[{"internalType":"uint256","name":"mint","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"send","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendPremium","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setLockupPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shareOf","outputs":[{"internalType":"uint256","name":"share","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unlockPremium","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxBurn","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"burn","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052621275006007553480156200001857600080fd5b50604051806040016040528060128152602001712432b3b4b19022aa24102628102a37b5b2b760711b815250604051806040016040528060088152602001670eee4d2e8ca8aa8960c31b8152506000620000776200010260201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000d690600490602085019062000107565b508051620000ec90600590602084019062000107565b50506006805460ff1916601217905550620001a9565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014a57805160ff19168380011785556200017a565b828001600101855582156200017a579182015b828111156200017a5782518255916020019190600101906200015d565b50620001889291506200018c565b5090565b6200010491905b8082111562000188576000815560010162000193565b611dfb80620001b96000396000f3fe6080604052600436106101bb5760003560e01c80638052882a116100ec578063ad7a672f1161008a578063dd46706411610064578063dd46706414610601578063dd62ed3e1461062b578063ee947a7c14610666578063f2fde38b1461067b576101c2565b8063ad7a672f14610589578063c771c3901461059e578063d0679d34146105c8576101c2565b80639ac1f394116100c65780639ac1f394146104fa578063a457c2d714610502578063a9059cbb1461053b578063ab2f0e5114610574576101c2565b80638052882a1461048a5780638da5cb5b146104b457806395d89b41146104e5576101c2565b806339509351116101595780636ab28bc8116101335780636ab28bc81461041857806370a082311461042d578063715018a614610460578063797be55e14610475576101c2565b80633950935114610383578063441a3e70146103bc5780636198e339146103ec576101c2565b806321e5e2c41161019557806321e5e2c4146102c557806323b872dd146102f85780632e2ebe061461033b578063313ce56714610358576101c2565b806306fdde03146101c7578063095ea7b31461025157806318160ddd1461029e576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106ae565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025d57600080fd5b5061028a6004803603604081101561027457600080fd5b506001600160a01b038135169060200135610744565b604080519115158252519081900360200190f35b3480156102aa57600080fd5b506102b3610762565b60408051918252519081900360200190f35b3480156102d157600080fd5b506102b3600480360360208110156102e857600080fd5b50356001600160a01b0316610768565b34801561030457600080fd5b5061028a6004803603606081101561031b57600080fd5b506001600160a01b038135811691602081013590911690604001356107c0565b6102b36004803603602081101561035157600080fd5b503561084d565b34801561036457600080fd5b5061036d6109bb565b6040805160ff9092168252519081900360200190f35b34801561038f57600080fd5b5061028a600480360360408110156103a657600080fd5b506001600160a01b0381351690602001356109c4565b3480156103c857600080fd5b506102b3600480360360408110156103df57600080fd5b5080359060200135610a18565b3480156103f857600080fd5b506104166004803603602081101561040f57600080fd5b5035610c77565b005b34801561042457600080fd5b506102b3610d29565b34801561043957600080fd5b506102b36004803603602081101561045057600080fd5b50356001600160a01b0316610d2f565b34801561046c57600080fd5b50610416610d4a565b34801561048157600080fd5b506102b3610dec565b34801561049657600080fd5b50610416600480360360208110156104ad57600080fd5b5035610df2565b3480156104c057600080fd5b506104c9610ea4565b604080516001600160a01b039092168252519081900360200190f35b3480156104f157600080fd5b506101dc610eb3565b610416610f14565b34801561050e57600080fd5b5061028a6004803603604081101561052557600080fd5b506001600160a01b038135169060200135610f84565b34801561054757600080fd5b5061028a6004803603604081101561055e57600080fd5b506001600160a01b038135169060200135610ff2565b34801561058057600080fd5b506102b3611006565b34801561059557600080fd5b506102b3611027565b3480156105aa57600080fd5b50610416600480360360208110156105c157600080fd5b503561103e565b3480156105d457600080fd5b50610416600480360360408110156105eb57600080fd5b506001600160a01b0381351690602001356110f3565b34801561060d57600080fd5b506104166004803603602081101561062457600080fd5b50356111da565b34801561063757600080fd5b506102b36004803603604081101561064e57600080fd5b506001600160a01b03813581169160200135166112a8565b34801561067257600080fd5b506102b36112d3565b34801561068757600080fd5b506104166004803603602081101561069e57600080fd5b50356001600160a01b03166112d9565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561073a5780601f1061070f5761010080835404028352916020019161073a565b820191906000526020600020905b81548152906001019060200180831161071d57829003601f168201915b5050505050905090565b60006107586107516113d1565b84846113d5565b5060015b92915050565b60035490565b600080610773610762565b11156107b7576107b0610784610762565b6107a461079085610d2f565b610798611027565b9063ffffffff6114c116565b9063ffffffff61152116565b90506107bb565b5060005b919050565b60006107cd848484611563565b610843846107d96113d1565b61083e85604051806060016040528060288152602001611cef602891396001600160a01b038a166000908152600260205260408120906108176113d1565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6116cc16565b6113d5565b5060019392505050565b336000908152600a6020526040812042905580610868610762565b90506000610874611027565b90506000821180156108865750600081115b156108b5576108ae61089e823463ffffffff61176316565b6107a4348563ffffffff6114c116565b92506108ca565b6108c7346103e863ffffffff6114c116565b92505b8383101561091f576040805162461bcd60e51b815260206004820152601d60248201527f506f6f6c3a204d696e74206c696d697420697320746f6f206c61726765000000604482015290519081900360640190fd5b60008311610970576040805162461bcd60e51b8152602060048201526019602482015278141bdbdb0e88105b5bdd5b9d081a5cc81d1bdbc81cdb585b1b603a1b604482015290519081900360640190fd5b61097a33846117a5565b6040805134815260208101859052815133927f4089141ea5e4c16575f5ebf65f1786497ea07c175846fc7745ef8d8986a4ff65928290030190a25050919050565b60065460ff1690565b60006107586109d16113d1565b8461083e85600260006109e26113d1565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6118a316565b600754336000908152600a602052604081205490914291610a3e9163ffffffff6118a316565b1115610a91576040805162461bcd60e51b815260206004820152601d60248201527f506f6f6c3a205769746864726177616c206973206c6f636b6564207570000000604482015290519081900360640190fd5b610a99611006565b831115610ad75760405162461bcd60e51b815260040180806020018281038252604b815260200180611b0f604b913960600191505060405180910390fd5b610afa610ae2611027565b6107a4610aed610762565b869063ffffffff6114c116565b905081811115610b51576040805162461bcd60e51b815260206004820152601d60248201527f506f6f6c3a204275726e206c696d697420697320746f6f20736d616c6c000000604482015290519081900360640190fd5b610b5a33610d2f565b811115610bae576040805162461bcd60e51b815260206004820152601960248201527f506f6f6c3a20416d6f756e7420697320746f6f206c6172676500000000000000604482015290519081900360640190fd5b60008111610bff576040805162461bcd60e51b8152602060048201526019602482015278141bdbdb0e88105b5bdd5b9d081a5cc81d1bdbc81cdb585b1b603a1b604482015290519081900360640190fd5b610c0933826118fd565b6040805184815260208101839052815133927ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568928290030190a2604051339084156108fc029085906000818181858888f19350505050158015610c70573d6000803e3d6000fd5b5092915050565b610c7f6113d1565b6000546001600160a01b03908116911614610ccf576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b806008541015610d105760405162461bcd60e51b8152600401808060200182810382526071815260200180611c7e6071913960800191505060405180910390fd5b600854610d23908263ffffffff61176316565b60085550565b60085481565b6001600160a01b031660009081526001602052604090205490565b610d526113d1565b6000546001600160a01b03908116911614610da2576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60095481565b610dfa6113d1565b6000546001600160a01b03908116911614610e4a576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b806009541015610e8b5760405162461bcd60e51b8152600401808060200182810382526073815260200180611bc46073913960800191505060405180910390fd5b600954610e9e908263ffffffff61176316565b60095550565b6000546001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561073a5780601f1061070f5761010080835404028352916020019161073a565b610f1c6113d1565b6000546001600160a01b03908116911614610f6c576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600954610f7f903463ffffffff6118a316565b600955565b6000610758610f916113d1565b8461083e85604051806060016040528060258152602001611da16025913960026000610fbb6113d1565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6116cc16565b6000610758610fff6113d1565b8484611563565b6000611022600854611016611027565b9063ffffffff61176316565b905090565b60006110226009544761176390919063ffffffff16565b6110466113d1565b6000546001600160a01b03908116911614611096576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b624f1a008111156110ee576040805162461bcd60e51b815260206004820152601a60248201527f4c6f636b757020706572696f6420697320746f6f206c61726765000000000000604482015290519081900360640190fd5b600755565b6110fb6113d1565b6000546001600160a01b0390811691161461114b576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b6001600160a01b03821661115e57600080fd5b80600854101561119f5760405162461bcd60e51b8152600401808060200182810382526073815260200180611bc46073913960800191505060405180910390fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156111d5573d6000803e3d6000fd5b505050565b6111e26113d1565b6000546001600160a01b03908116911614611232576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600861125961123f611027565b6107a4600a610798866008546118a390919063ffffffff16565b106112955760405162461bcd60e51b8152600401808060200182810382526071815260200180611c7e6071913960800191505060405180910390fd5b600854610d23908263ffffffff6118a316565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60075481565b6112e16113d1565b6000546001600160a01b03908116911614611331576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b6001600160a01b0381166113765760405162461bcd60e51b8152600401808060200182810382526026815260200180611b7c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661141a5760405162461bcd60e51b8152600401808060200182810382526024815260200180611d7d6024913960400191505060405180910390fd5b6001600160a01b03821661145f5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ba26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000826114d05750600061075c565b828202828482816114dd57fe5b041461151a5760405162461bcd60e51b8152600401808060200182810382526021815260200180611c5d6021913960400191505060405180910390fd5b9392505050565b600061151a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a05565b6001600160a01b0383166115a85760405162461bcd60e51b8152600401808060200182810382526025815260200180611d586025913960400191505060405180910390fd5b6001600160a01b0382166115ed5760405162461bcd60e51b8152600401808060200182810382526023815260200180611aec6023913960400191505060405180910390fd5b6115f8838383611a6a565b61163b81604051806060016040528060268152602001611c37602691396001600160a01b038616600090815260016020526040902054919063ffffffff6116cc16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611670908263ffffffff6118a316565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561175b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611720578181015183820152602001611708565b50505050905090810190601f16801561174d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061151a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116cc565b6001600160a01b038216611800576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61180c60008383611a6a565b60035461181f908263ffffffff6118a316565b6003556001600160a01b03821660009081526001602052604090205461184b908263ffffffff6118a316565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101561151a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166119425760405162461bcd60e51b8152600401808060200182810382526021815260200180611d376021913960400191505060405180910390fd5b61194e82600083611a6a565b61199181604051806060016040528060228152602001611b5a602291396001600160a01b038516600090815260016020526040902054919063ffffffff6116cc16565b6001600160a01b0383166000908152600160205260409020556003546119bd908263ffffffff61176316565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008183611a545760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611720578181015183820152602001611708565b506000838581611a6057fe5b0495945050505050565b6007546001600160a01b0384166000908152600a60205260409020544291611a98919063ffffffff6118a316565b11156111d5576040805162461bcd60e51b815260206004820152601d60248201527f506f6f6c3a205769746864726177616c206973206c6f636b6564207570000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506f6f6c204572726f723a204e6f7420656e6f7567682066756e6473206f6e2074686520706f6f6c20636f6e74726163742e20506c65617365206c6f7765722074686520616d6f756e742e45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373506f6f6c204572726f723a20596f752061726520747279696e6720746f20756e6c6f636b206d6f7265207072656d69756d73207468616e2068617665206265656e206c6f636b656420666f722074686520636f6e74726163742e20506c65617365206c6f7765722074686520616d6f756e742e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77506f6f6c204572726f723a20596f752061726520747279696e6720746f20756e6c6f636b206d6f72652066756e6473207468616e2068617665206265656e206c6f636b656420666f7220796f757220636f6e74726163742e20506c65617365206c6f7765722074686520616d6f756e742e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206f1787b070b5d5f514559c85bcfccb92e3c99798aaeec874003779f2cf8c9bdf64736f6c63430006080033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c80638052882a116100ec578063ad7a672f1161008a578063dd46706411610064578063dd46706414610601578063dd62ed3e1461062b578063ee947a7c14610666578063f2fde38b1461067b576101c2565b8063ad7a672f14610589578063c771c3901461059e578063d0679d34146105c8576101c2565b80639ac1f394116100c65780639ac1f394146104fa578063a457c2d714610502578063a9059cbb1461053b578063ab2f0e5114610574576101c2565b80638052882a1461048a5780638da5cb5b146104b457806395d89b41146104e5576101c2565b806339509351116101595780636ab28bc8116101335780636ab28bc81461041857806370a082311461042d578063715018a614610460578063797be55e14610475576101c2565b80633950935114610383578063441a3e70146103bc5780636198e339146103ec576101c2565b806321e5e2c41161019557806321e5e2c4146102c557806323b872dd146102f85780632e2ebe061461033b578063313ce56714610358576101c2565b806306fdde03146101c7578063095ea7b31461025157806318160ddd1461029e576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106ae565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025d57600080fd5b5061028a6004803603604081101561027457600080fd5b506001600160a01b038135169060200135610744565b604080519115158252519081900360200190f35b3480156102aa57600080fd5b506102b3610762565b60408051918252519081900360200190f35b3480156102d157600080fd5b506102b3600480360360208110156102e857600080fd5b50356001600160a01b0316610768565b34801561030457600080fd5b5061028a6004803603606081101561031b57600080fd5b506001600160a01b038135811691602081013590911690604001356107c0565b6102b36004803603602081101561035157600080fd5b503561084d565b34801561036457600080fd5b5061036d6109bb565b6040805160ff9092168252519081900360200190f35b34801561038f57600080fd5b5061028a600480360360408110156103a657600080fd5b506001600160a01b0381351690602001356109c4565b3480156103c857600080fd5b506102b3600480360360408110156103df57600080fd5b5080359060200135610a18565b3480156103f857600080fd5b506104166004803603602081101561040f57600080fd5b5035610c77565b005b34801561042457600080fd5b506102b3610d29565b34801561043957600080fd5b506102b36004803603602081101561045057600080fd5b50356001600160a01b0316610d2f565b34801561046c57600080fd5b50610416610d4a565b34801561048157600080fd5b506102b3610dec565b34801561049657600080fd5b50610416600480360360208110156104ad57600080fd5b5035610df2565b3480156104c057600080fd5b506104c9610ea4565b604080516001600160a01b039092168252519081900360200190f35b3480156104f157600080fd5b506101dc610eb3565b610416610f14565b34801561050e57600080fd5b5061028a6004803603604081101561052557600080fd5b506001600160a01b038135169060200135610f84565b34801561054757600080fd5b5061028a6004803603604081101561055e57600080fd5b506001600160a01b038135169060200135610ff2565b34801561058057600080fd5b506102b3611006565b34801561059557600080fd5b506102b3611027565b3480156105aa57600080fd5b50610416600480360360208110156105c157600080fd5b503561103e565b3480156105d457600080fd5b50610416600480360360408110156105eb57600080fd5b506001600160a01b0381351690602001356110f3565b34801561060d57600080fd5b506104166004803603602081101561062457600080fd5b50356111da565b34801561063757600080fd5b506102b36004803603604081101561064e57600080fd5b506001600160a01b03813581169160200135166112a8565b34801561067257600080fd5b506102b36112d3565b34801561068757600080fd5b506104166004803603602081101561069e57600080fd5b50356001600160a01b03166112d9565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561073a5780601f1061070f5761010080835404028352916020019161073a565b820191906000526020600020905b81548152906001019060200180831161071d57829003601f168201915b5050505050905090565b60006107586107516113d1565b84846113d5565b5060015b92915050565b60035490565b600080610773610762565b11156107b7576107b0610784610762565b6107a461079085610d2f565b610798611027565b9063ffffffff6114c116565b9063ffffffff61152116565b90506107bb565b5060005b919050565b60006107cd848484611563565b610843846107d96113d1565b61083e85604051806060016040528060288152602001611cef602891396001600160a01b038a166000908152600260205260408120906108176113d1565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6116cc16565b6113d5565b5060019392505050565b336000908152600a6020526040812042905580610868610762565b90506000610874611027565b90506000821180156108865750600081115b156108b5576108ae61089e823463ffffffff61176316565b6107a4348563ffffffff6114c116565b92506108ca565b6108c7346103e863ffffffff6114c116565b92505b8383101561091f576040805162461bcd60e51b815260206004820152601d60248201527f506f6f6c3a204d696e74206c696d697420697320746f6f206c61726765000000604482015290519081900360640190fd5b60008311610970576040805162461bcd60e51b8152602060048201526019602482015278141bdbdb0e88105b5bdd5b9d081a5cc81d1bdbc81cdb585b1b603a1b604482015290519081900360640190fd5b61097a33846117a5565b6040805134815260208101859052815133927f4089141ea5e4c16575f5ebf65f1786497ea07c175846fc7745ef8d8986a4ff65928290030190a25050919050565b60065460ff1690565b60006107586109d16113d1565b8461083e85600260006109e26113d1565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6118a316565b600754336000908152600a602052604081205490914291610a3e9163ffffffff6118a316565b1115610a91576040805162461bcd60e51b815260206004820152601d60248201527f506f6f6c3a205769746864726177616c206973206c6f636b6564207570000000604482015290519081900360640190fd5b610a99611006565b831115610ad75760405162461bcd60e51b815260040180806020018281038252604b815260200180611b0f604b913960600191505060405180910390fd5b610afa610ae2611027565b6107a4610aed610762565b869063ffffffff6114c116565b905081811115610b51576040805162461bcd60e51b815260206004820152601d60248201527f506f6f6c3a204275726e206c696d697420697320746f6f20736d616c6c000000604482015290519081900360640190fd5b610b5a33610d2f565b811115610bae576040805162461bcd60e51b815260206004820152601960248201527f506f6f6c3a20416d6f756e7420697320746f6f206c6172676500000000000000604482015290519081900360640190fd5b60008111610bff576040805162461bcd60e51b8152602060048201526019602482015278141bdbdb0e88105b5bdd5b9d081a5cc81d1bdbc81cdb585b1b603a1b604482015290519081900360640190fd5b610c0933826118fd565b6040805184815260208101839052815133927ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568928290030190a2604051339084156108fc029085906000818181858888f19350505050158015610c70573d6000803e3d6000fd5b5092915050565b610c7f6113d1565b6000546001600160a01b03908116911614610ccf576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b806008541015610d105760405162461bcd60e51b8152600401808060200182810382526071815260200180611c7e6071913960800191505060405180910390fd5b600854610d23908263ffffffff61176316565b60085550565b60085481565b6001600160a01b031660009081526001602052604090205490565b610d526113d1565b6000546001600160a01b03908116911614610da2576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60095481565b610dfa6113d1565b6000546001600160a01b03908116911614610e4a576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b806009541015610e8b5760405162461bcd60e51b8152600401808060200182810382526073815260200180611bc46073913960800191505060405180910390fd5b600954610e9e908263ffffffff61176316565b60095550565b6000546001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561073a5780601f1061070f5761010080835404028352916020019161073a565b610f1c6113d1565b6000546001600160a01b03908116911614610f6c576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600954610f7f903463ffffffff6118a316565b600955565b6000610758610f916113d1565b8461083e85604051806060016040528060258152602001611da16025913960026000610fbb6113d1565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6116cc16565b6000610758610fff6113d1565b8484611563565b6000611022600854611016611027565b9063ffffffff61176316565b905090565b60006110226009544761176390919063ffffffff16565b6110466113d1565b6000546001600160a01b03908116911614611096576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b624f1a008111156110ee576040805162461bcd60e51b815260206004820152601a60248201527f4c6f636b757020706572696f6420697320746f6f206c61726765000000000000604482015290519081900360640190fd5b600755565b6110fb6113d1565b6000546001600160a01b0390811691161461114b576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b6001600160a01b03821661115e57600080fd5b80600854101561119f5760405162461bcd60e51b8152600401808060200182810382526073815260200180611bc46073913960800191505060405180910390fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156111d5573d6000803e3d6000fd5b505050565b6111e26113d1565b6000546001600160a01b03908116911614611232576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b600861125961123f611027565b6107a4600a610798866008546118a390919063ffffffff16565b106112955760405162461bcd60e51b8152600401808060200182810382526071815260200180611c7e6071913960800191505060405180910390fd5b600854610d23908263ffffffff6118a316565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60075481565b6112e16113d1565b6000546001600160a01b03908116911614611331576040805162461bcd60e51b81526020600482018190526024820152600080516020611d17833981519152604482015290519081900360640190fd5b6001600160a01b0381166113765760405162461bcd60e51b8152600401808060200182810382526026815260200180611b7c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661141a5760405162461bcd60e51b8152600401808060200182810382526024815260200180611d7d6024913960400191505060405180910390fd5b6001600160a01b03821661145f5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ba26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000826114d05750600061075c565b828202828482816114dd57fe5b041461151a5760405162461bcd60e51b8152600401808060200182810382526021815260200180611c5d6021913960400191505060405180910390fd5b9392505050565b600061151a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a05565b6001600160a01b0383166115a85760405162461bcd60e51b8152600401808060200182810382526025815260200180611d586025913960400191505060405180910390fd5b6001600160a01b0382166115ed5760405162461bcd60e51b8152600401808060200182810382526023815260200180611aec6023913960400191505060405180910390fd5b6115f8838383611a6a565b61163b81604051806060016040528060268152602001611c37602691396001600160a01b038616600090815260016020526040902054919063ffffffff6116cc16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611670908263ffffffff6118a316565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561175b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611720578181015183820152602001611708565b50505050905090810190601f16801561174d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061151a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116cc565b6001600160a01b038216611800576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61180c60008383611a6a565b60035461181f908263ffffffff6118a316565b6003556001600160a01b03821660009081526001602052604090205461184b908263ffffffff6118a316565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101561151a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166119425760405162461bcd60e51b8152600401808060200182810382526021815260200180611d376021913960400191505060405180910390fd5b61194e82600083611a6a565b61199181604051806060016040528060228152602001611b5a602291396001600160a01b038516600090815260016020526040902054919063ffffffff6116cc16565b6001600160a01b0383166000908152600160205260409020556003546119bd908263ffffffff61176316565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008183611a545760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611720578181015183820152602001611708565b506000838581611a6057fe5b0495945050505050565b6007546001600160a01b0384166000908152600a60205260409020544291611a98919063ffffffff6118a316565b11156111d5576040805162461bcd60e51b815260206004820152601d60248201527f506f6f6c3a205769746864726177616c206973206c6f636b6564207570000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506f6f6c204572726f723a204e6f7420656e6f7567682066756e6473206f6e2074686520706f6f6c20636f6e74726163742e20506c65617365206c6f7765722074686520616d6f756e742e45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373506f6f6c204572726f723a20596f752061726520747279696e6720746f20756e6c6f636b206d6f7265207072656d69756d73207468616e2068617665206265656e206c6f636b656420666f722074686520636f6e74726163742e20506c65617365206c6f7765722074686520616d6f756e742e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77506f6f6c204572726f723a20596f752061726520747279696e6720746f20756e6c6f636b206d6f72652066756e6473207468616e2068617665206265656e206c6f636b656420666f7220796f757220636f6e74726163742e20506c65617365206c6f7765722074686520616d6f756e742e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206f1787b070b5d5f514559c85bcfccb92e3c99798aaeec874003779f2cf8c9bdf64736f6c63430006080033

Deployed Bytecode Sourcemap

40757:6165:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;14287:83:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;14287:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14287:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16393:169;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16393:169:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16393:169:0;;-1:-1:-1;;;;;16393:169:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15362:100;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15362:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;45928:230;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45928:230:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45928:230:0;-1:-1:-1;;;;;45928:230:0;;:::i;17036:321::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17036:321:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17036:321:0;;;;;;;;;;;;;;;;;:::i;41956:590::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41956:590:0;;:::i;15214:83::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15214:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17766:218;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17766:218:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17766:218:0;;-1:-1:-1;;;;;17766:218:0;;;;;;:::i;42738:794::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42738:794:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;42738:794:0;;;;;;;:::i;44204:277::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44204:277:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;44204:277:0;;:::i;:::-;;40950:27;;5:9:-1;2:2;;;27:1;24;17:12;2:2;40950:27:0;;;:::i;15525:119::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15525:119:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15525:119:0;-1:-1:-1;;;;;15525:119:0;;:::i;24836:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24836:148:0;;;:::i;40984:28::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;40984:28:0;;;:::i;44933:289::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44933:289:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;44933:289:0;;:::i;24194:79::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24194:79:0;;;:::i;:::-;;;;-1:-1:-1;;;;;24194:79:0;;;;;;;;;;;;;;14489:87;;5:9:-1;2:2;;;27:1;24;17:12;2:2;14489:87:0;;;:::i;44630:122::-;;;:::i;18487:269::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18487:269:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18487:269:0;;-1:-1:-1;;;;;18487:269:0;;;;;;:::i;15857:175::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15857:175:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15857:175:0;;-1:-1:-1;;;;;15857:175:0;;;;;;:::i;46290:124::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46290:124:0;;;:::i;46545:137::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46545:137:0;;;:::i;41299:173::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41299:173:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41299:173:0;;:::i;45429:345::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45429:345:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45429:345:0;;-1:-1:-1;;;;;45429:345:0;;;;;;:::i;43689:346::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;43689:346:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;43689:346:0;;:::i;16095:151::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16095:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16095:151:0;;;;;;;;;;:::i;40906:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;40906:37:0;;;:::i;25139:244::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;25139:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25139:244:0;-1:-1:-1;;;;;25139:244:0;;:::i;14287:83::-;14357:5;14350:12;;;;;;;;;;;;;-1:-1:-1;;14350:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;14324:13;;14350:12;;14357:5;;14350:12;;;14357:5;14350:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14287:83;:::o;16393:169::-;16476:4;16493:39;16502:12;:10;:12::i;:::-;16516:7;16525:6;16493:8;:39::i;:::-;-1:-1:-1;16550:4:0;16393:169;;;;;:::o;15362:100::-;15442:12;;15362:100;:::o;45928:230::-;45985:13;46031:1;46015:13;:11;:13::i;:::-;:17;46011:139;;;46055:57;46098:13;:11;:13::i;:::-;46055:38;46074:18;46084:7;46074:9;:18::i;:::-;46055:14;:12;:14::i;:::-;:18;:38;:18;:38;:::i;:::-;:42;:57;:42;:57;:::i;:::-;46047:65;;46011:139;;;-1:-1:-1;46149:1:0;46011:139;45928:230;;;:::o;17036:321::-;17142:4;17159:36;17169:6;17177:9;17188:6;17159:9;:36::i;:::-;17206:121;17215:6;17223:12;:10;:12::i;:::-;17237:89;17275:6;17237:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17237:19:0;;;;;;:11;:19;;;;;;17257:12;:10;:12::i;:::-;-1:-1:-1;;;;;17237:33:0;;;;;;;;;;;;-1:-1:-1;17237:33:0;;;;:37;:89::i;:::-;17206:8;:121::i;:::-;-1:-1:-1;17345:4:0;17036:321;;;;;:::o;41956:590::-;42062:10;42016:12;42041:32;;;:20;:32;;;;;42076:3;42041:38;;42016:12;42104:13;:11;:13::i;:::-;42090:27;;42128:12;42143:14;:12;:14::i;:::-;42128:29;;42181:1;42172:6;:10;:25;;;;;42196:1;42186:7;:11;42172:25;42168:155;;;42219:49;42245:22;:7;42257:9;42245:22;:11;:22;:::i;:::-;42219:21;:9;42233:6;42219:21;:13;:21;:::i;:49::-;42212:56;;42168:155;;;42304:19;:9;42318:4;42304:19;:13;:19;:::i;:::-;42297:26;;42168:155;42352:7;42344:4;:15;;42336:57;;;;;-1:-1:-1;;;42336:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42419:1;42412:4;:8;42404:46;;;;;-1:-1:-1;;;42404:46:0;;;;;;;;;;;;-1:-1:-1;;;42404:46:0;;;;;;;;;;;;;;;42463:23;42469:10;42481:4;42463:5;:23::i;:::-;42502:36;;;42522:9;42502:36;;;;;;;;;;42510:10;;42502:36;;;;;;;;41956:590;;;;;:::o;15214:83::-;15280:9;;;;15214:83;:::o;17766:218::-;17854:4;17871:83;17880:12;:10;:12::i;:::-;17894:7;17903:50;17942:10;17903:11;:25;17915:12;:10;:12::i;:::-;-1:-1:-1;;;;;17903:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17903:25:0;;;:34;;;;;;;;;;;:38;:50::i;42738:794::-;42891:12;;42875:10;42807:12;42854:32;;;:20;:32;;;;;;42807:12;;42908:3;;42854:50;;;:36;:50;:::i;:::-;:57;;42832:136;;;;;-1:-1:-1;;;42832:136:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43011:18;:16;:18::i;:::-;43001:6;:28;;42979:153;;;;-1:-1:-1;;;42979:153:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43150:45;43180:14;:12;:14::i;:::-;43150:25;43161:13;:11;:13::i;:::-;43150:6;;:25;:10;:25;:::i;:45::-;43143:52;;43224:7;43216:4;:15;;43208:57;;;;;-1:-1:-1;;;43208:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43292:21;43302:10;43292:9;:21::i;:::-;43284:4;:29;;43276:67;;;;;-1:-1:-1;;;43276:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43369:1;43362:4;:8;43354:46;;;;;-1:-1:-1;;;43354:46:0;;;;;;;;;;;;-1:-1:-1;;;43354:46:0;;;;;;;;;;;;;;;43413:23;43419:10;43431:4;43413:5;:23::i;:::-;43452:34;;;;;;;;;;;;;;43461:10;;43452:34;;;;;;;;43497:27;;:10;;:27;;;;;43517:6;;43497:27;;;;43517:6;43497:10;:27;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43497:27:0;42738:794;;;;:::o;44204:277::-;24416:12;:10;:12::i;:::-;24406:6;;-1:-1:-1;;;;;24406:22:0;;;:6;;:22;24398:67;;;;;-1:-1:-1;;;24398:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24398:67:0;;;;;;;;;;;;;;;44299:6:::1;44283:12;;:22;;44275:148;;;;-1:-1:-1::0;;;44275:148:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44449:12;::::0;:24:::1;::::0;44466:6;44449:24:::1;:16;:24;:::i;:::-;44434:12;:39:::0;-1:-1:-1;44204:277:0:o;40950:27::-;;;;:::o;15525:119::-;-1:-1:-1;;;;;15618:18:0;15591:7;15618:18;;;-1:-1:-1;15618:18:0;;;;;;;15525:119::o;24836:148::-;24416:12;:10;:12::i;:::-;24406:6;;-1:-1:-1;;;;;24406:22:0;;;:6;;:22;24398:67;;;;;-1:-1:-1;;;24398:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24398:67:0;;;;;;;;;;;;;;;24943:1:::1;24927:6:::0;;24906:40:::1;::::0;-1:-1:-1;;;;;24927:6:0;;::::1;::::0;24906:40:::1;::::0;24943:1;;24906:40:::1;24974:1;24957:19:::0;;-1:-1:-1;;;;;;24957:19:0::1;::::0;;24836:148::o;40984:28::-;;;;:::o;44933:289::-;24416:12;:10;:12::i;:::-;24406:6;;-1:-1:-1;;;;;24406:22:0;;;:6;;:22;24398:67;;;;;-1:-1:-1;;;24398:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24398:67:0;;;;;;;;;;;;;;;45036:6:::1;45019:13;;:23;;45011:151;;;;-1:-1:-1::0;;;45011:151:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45189:13;::::0;:25:::1;::::0;45207:6;45189:25:::1;:17;:25;:::i;:::-;45173:13;:41:::0;-1:-1:-1;44933:289:0:o;24194:79::-;24232:7;24259:6;-1:-1:-1;;;;;24259:6:0;;24194:79::o;14489:87::-;14561:7;14554:14;;;;;;;;;;;;;-1:-1:-1;;14554:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;14528:13;;14554:14;;14561:7;;14554:14;;;14561:7;14554:14;;;;;;;;;;;;;;;;;;;;;;;;44630:122;24416:12;:10;:12::i;:::-;24406:6;;-1:-1:-1;;;;;24406:22:0;;;:6;;:22;24398:67;;;;;-1:-1:-1;;;24398:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24398:67:0;;;;;;;;;;;;;;;44716:13:::1;::::0;:28:::1;::::0;44734:9:::1;44716:28;:17;:28;:::i;:::-;44700:13;:44:::0;44630:122::o;18487:269::-;18580:4;18597:129;18606:12;:10;:12::i;:::-;18620:7;18629:96;18668:15;18629:96;;;;;;;;;;;;;;;;;:11;:25;18641:12;:10;:12::i;:::-;-1:-1:-1;;;;;18629:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18629:25:0;;;:34;;;;;;;;;;;;:38;:96::i;15857:175::-;15943:4;15960:42;15970:12;:10;:12::i;:::-;15984:9;15995:6;15960:9;:42::i;46290:124::-;46339:15;46374:32;46393:12;;46374:14;:12;:14::i;:::-;:18;:32;:18;:32;:::i;:::-;46367:39;;46290:124;:::o;46545:137::-;46599:15;46634:40;46660:13;;46634:21;:25;;:40;;;;:::i;41299:173::-;24416:12;:10;:12::i;:::-;24406:6;;-1:-1:-1;;;;;24406:22:0;;;:6;;:22;24398:67;;;;;-1:-1:-1;;;24398:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24398:67:0;;;;;;;;;;;;;;;41395:7:::1;41386:5;:16;;41378:55;;;::::0;;-1:-1:-1;;;41378:55:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41444:12;:20:::0;41299:173::o;45429:345::-;24416:12;:10;:12::i;:::-;24406:6;;-1:-1:-1;;;;;24406:22:0;;;:6;;:22;24398:67;;;;;-1:-1:-1;;;24398:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24398:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45558:16:0;::::1;45550:25;;12:1:-1;9::::0;2:12:::1;45550:25:0;45610:6;45594:12;;:22;;45586:150;;;;-1:-1:-1::0;;;45586:150:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45747:19;::::0;-1:-1:-1;;;;;45747:11:0;::::1;::::0;:19:::1;::::0;::::1;;::::0;;;::::1;::::0;;;;:11;:19;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;45747:19:0;45429:345:::0;;:::o;43689:346::-;24416:12;:10;:12::i;:::-;24406:6;;-1:-1:-1;;;;;24406:22:0;;;:6;;:22;24398:67;;;;;-1:-1:-1;;;24398:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24398:67:0;;;;;;;;;;;;;;;43835:1:::1;43780:52;43817:14;:12;:14::i;:::-;43780:32;43809:2;43780:24;43797:6;43780:12;;:16;;:24;;;;:::i;:52::-;:56;43758:219;;;;-1:-1:-1::0;;;43758:219:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44003:12;::::0;:24:::1;::::0;44020:6;44003:24:::1;:16;:24;:::i;16095:151::-:0;-1:-1:-1;;;;;16211:18:0;;;16184:7;16211:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16095:151::o;40906:37::-;;;;:::o;25139:244::-;24416:12;:10;:12::i;:::-;24406:6;;-1:-1:-1;;;;;24406:22:0;;;:6;;:22;24398:67;;;;;-1:-1:-1;;;24398:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24398:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25228:22:0;::::1;25220:73;;;;-1:-1:-1::0;;;25220:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25330:6;::::0;;25309:38:::1;::::0;-1:-1:-1;;;;;25309:38:0;;::::1;::::0;25330:6;::::1;::::0;25309:38:::1;::::0;::::1;25358:6;:17:::0;;-1:-1:-1;;;;;;25358:17:0::1;-1:-1:-1::0;;;;;25358:17:0;;;::::1;::::0;;;::::1;::::0;;25139:244::o;850:106::-;938:10;850:106;:::o;21634:346::-;-1:-1:-1;;;;;21736:19:0;;21728:68;;;;-1:-1:-1;;;21728:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21815:21:0;;21807:68;;;;-1:-1:-1;;;21807:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21888:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21940:32;;;;;;;;;;;;;;;;;21634:346;;;:::o;6246:471::-;6304:7;6549:6;6545:47;;-1:-1:-1;6579:1:0;6572:8;;6545:47;6616:5;;;6620:1;6616;:5;:1;6640:5;;;;;:10;6632:56;;;;-1:-1:-1;;;6632:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6708:1;6246:471;-1:-1:-1;;;6246:471:0:o;7185:132::-;7243:7;7270:39;7274:1;7277;7270:39;;;;;;;;;;;;;;;;;:3;:39::i;19246:539::-;-1:-1:-1;;;;;19352:20:0;;19344:70;;;;-1:-1:-1;;;19344:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19433:23:0;;19425:71;;;;-1:-1:-1;;;19425:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19509:47;19530:6;19538:9;19549:6;19509:20;:47::i;:::-;19589:71;19611:6;19589:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19589:17:0;;;;;;-1:-1:-1;19589:17:0;;;;;;;;:21;:71::i;:::-;-1:-1:-1;;;;;19569:17:0;;;;;;;-1:-1:-1;19569:17:0;;;;;;:91;;;;19694:20;;;;;;;:32;;19719:6;19694:24;:32::i;:::-;-1:-1:-1;;;;;19671:20:0;;;;;;;-1:-1:-1;19671:20:0;;;;;;;;;:55;;;;19742:35;;;;;;;19671:20;;19742:35;;;;;;;;;;;;;19246:539;;;:::o;5803:192::-;5889:7;5925:12;5917:6;;;;5909:29;;;;-1:-1:-1;;;5909:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5909:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5961:5:0;;;5803:192::o;5372:136::-;5430:7;5457:43;5461:1;5464;5457:43;;;;;;;;;;;;;;;;;:3;:43::i;20066:378::-;-1:-1:-1;;;;;20150:21:0;;20142:65;;;;;-1:-1:-1;;;20142:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20220:49;20249:1;20253:7;20262:6;20220:20;:49::i;:::-;20297:12;;:24;;20314:6;20297:24;:16;:24;:::i;:::-;20282:12;:39;-1:-1:-1;;;;;20353:18:0;;;;;;-1:-1:-1;20353:18:0;;;;;;:30;;20376:6;20353:22;:30::i;:::-;-1:-1:-1;;;;;20332:18:0;;;;;;-1:-1:-1;20332:18:0;;;;;;;;:51;;;;20399:37;;;;;;;20332:18;;;;20399:37;;;;;;;;;;20066:378;;:::o;4916:181::-;4974:7;5006:5;;;5030:6;;;;5022:46;;;;;-1:-1:-1;;;5022:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;20776:418;-1:-1:-1;;;;;20860:21:0;;20852:67;;;;-1:-1:-1;;;20852:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20932:49;20953:7;20970:1;20974:6;20932:20;:49::i;:::-;21015:68;21038:6;21015:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21015:18:0;;;;;;-1:-1:-1;21015:18:0;;;;;;;;:22;:68::i;:::-;-1:-1:-1;;;;;20994:18:0;;;;;;-1:-1:-1;20994:18:0;;;;;:89;21109:12;;:24;;21126:6;21109:16;:24::i;:::-;21094:12;:39;21149:37;;;;;;;;21175:1;;-1:-1:-1;;;;;21149:37:0;;;;;;;;;;;;20776:418;;:::o;7805:345::-;7891:7;7993:12;7986:5;7978:28;;;;-1:-1:-1;;;7978:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27:10;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;7978:28:0;;8017:9;8033:1;8029;:5;;;;;;;7805:345;-1:-1:-1;;;;;7805:345:0:o;46690:229::-;46834:12;;-1:-1:-1;;;;;46803:26:0;;;;;;:20;:26;;;;;;46851:3;;46803:44;;:26;:30;:44::i;:::-;:51;;46781:130;;;;;-1:-1:-1;;;46781:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://6f1787b070b5d5f514559c85bcfccb92e3c99798aaeec874003779f2cf8c9bdf
Loading...
Loading
Loading...
Loading
[ 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.