ETH Price: $2,996.43 (+3.94%)
Gas: 3 Gwei

Token

Zen Bull Strategy (ZenBull)
 

Overview

Max Total Supply

205.071599790461620024 ZenBull

Holders

160

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 ZenBull

Value
$0.00
0x76248f46f071e4b8bd11989f4a332259519142e8
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:
ZenBullStrategy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion
File 1 of 46 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/Context.sol";
/**
 * @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.
 */
abstract 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 virtual 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 2 of 46 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

pragma solidity >=0.6.0 <0.8.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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 4 of 46 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

    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 virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 virtual returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _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 5 of 46 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.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 6 of 46 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "../../introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

File 7 of 46 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 46 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 46 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity >=0.6.0 <0.8.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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

File 11 of 46 : IController.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.7.6;

pragma abicoder v2;

import {VaultLib} from "../libs/VaultLib.sol";

interface IController {
    function ethQuoteCurrencyPool() external view returns (address);

    function feeRate() external view returns (uint256);

    function getFee(
        uint256 _vaultId,
        uint256 _wPowerPerpAmount,
        uint256 _collateralAmount
    ) external view returns (uint256);

    function quoteCurrency() external view returns (address);

    function vaults(uint256 _vaultId) external view returns (VaultLib.Vault memory);

    function shortPowerPerp() external view returns (address);

    function wPowerPerp() external view returns (address);

    function wPowerPerpPool() external view returns (address);

    function oracle() external view returns (address);

    function weth() external view returns (address);

    function getExpectedNormalizationFactor() external view returns (uint256);

    function mintPowerPerpAmount(
        uint256 _vaultId,
        uint256 _powerPerpAmount,
        uint256 _uniTokenId
    ) external payable returns (uint256 vaultId, uint256 wPowerPerpAmount);

    function mintWPowerPerpAmount(
        uint256 _vaultId,
        uint256 _wPowerPerpAmount,
        uint256 _uniTokenId
    ) external payable returns (uint256 vaultId);

    /**
     * Deposit collateral into a vault
     */
    function deposit(uint256 _vaultId) external payable;

    /**
     * Withdraw collateral from a vault.
     */
    function withdraw(uint256 _vaultId, uint256 _amount) external payable;

    function burnWPowerPerpAmount(
        uint256 _vaultId,
        uint256 _wPowerPerpAmount,
        uint256 _withdrawAmount
    ) external;

    function burnPowerPerpAmount(
        uint256 _vaultId,
        uint256 _powerPerpAmount,
        uint256 _withdrawAmount
    ) external returns (uint256 wPowerPerpAmount);

    function liquidate(uint256 _vaultId, uint256 _maxDebtAmount) external returns (uint256);

    function updateOperator(uint256 _vaultId, address _operator) external;

    /**
     * External function to update the normalized factor as a way to pay funding.
     */
    function applyFunding() external;

    function redeemShort(uint256 _vaultId) external;

    function reduceDebtShutdown(uint256 _vaultId) external;

    function isShutDown() external returns (bool);

    function depositUniPositionToken(uint256 _vaultId, uint256 _uniTokenId) external;

    function withdrawUniPositionToken(uint256 _vaultId) external;
}

File 12 of 46 : IERC20Detailed.sol
// SPDX-License-Identifier: MIT

// uniswap Library only works under 0.7.6
pragma solidity =0.7.6;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IERC20Detailed is IERC20 {
    function decimals() external view returns (uint8);
}

File 13 of 46 : IWETH9.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IWETH9 is IERC20 {
    function deposit() external payable;

    function withdraw(uint256 wad) external;
}

File 14 of 46 : OracleLibrary.sol
// SPDX-License-Identifier: GPL-2.0-or-later

pragma solidity >=0.5.0 <0.8.0;

//interface
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";

//lib
import "@uniswap/v3-core/contracts/libraries/FullMath.sol";
import "@uniswap/v3-core/contracts/libraries/TickMath.sol";

/// @title oracle library
/// @notice provides functions to integrate with uniswap v3 oracle
/// @author uniswap team other than consultAtHistoricTime(), built by opyn
library OracleLibrary {
    /// @notice fetches time-weighted average tick using uniswap v3 oracle
    /// @dev written by opyn team
    /// @param pool Address of uniswap v3 pool that we want to observe
    /// @param _secondsAgoToStartOfTwap number of seconds to start of TWAP period
    /// @param _secondsAgoToEndOfTwap number of seconds to end of TWAP period
    /// @return timeWeightedAverageTick The time-weighted average tick from (block.timestamp - _secondsAgoToStartOfTwap) to _secondsAgoToEndOfTwap
    function consultAtHistoricTime(
        address pool,
        uint32 _secondsAgoToStartOfTwap,
        uint32 _secondsAgoToEndOfTwap
    ) internal view returns (int24) {
        require(_secondsAgoToStartOfTwap > _secondsAgoToEndOfTwap, "BP");
        int24 timeWeightedAverageTick;
        uint32[] memory secondAgos = new uint32[](2);

        uint32 twapDuration = _secondsAgoToStartOfTwap - _secondsAgoToEndOfTwap;

        // get TWAP from (now - _secondsAgoToStartOfTwap) -> (now - _secondsAgoToEndOfTwap)
        secondAgos[0] = _secondsAgoToStartOfTwap;
        secondAgos[1] = _secondsAgoToEndOfTwap;

        (int56[] memory tickCumulatives, ) = IUniswapV3Pool(pool).observe(secondAgos);
        int56 tickCumulativesDelta = tickCumulatives[1] - tickCumulatives[0];

        timeWeightedAverageTick = int24(tickCumulativesDelta / (twapDuration));

        // Always round to negative infinity
        if (tickCumulativesDelta < 0 && (tickCumulativesDelta % (twapDuration) != 0)) timeWeightedAverageTick--;

        return timeWeightedAverageTick;
    }

    /// @notice given a tick and a token amount, calculates the amount of token received in exchange
    /// @param tick tick value used to calculate the quote
    /// @param baseAmount amount of token to be converted
    /// @param baseToken address of an ERC20 token contract used as the baseAmount denomination
    /// @param quoteToken address of an ERC20 token contract used as the quoteAmount denomination
    /// @return quoteAmount Amount of quoteToken received for baseAmount of baseToken
    function getQuoteAtTick(
        int24 tick,
        uint128 baseAmount,
        address baseToken,
        address quoteToken
    ) internal pure returns (uint256 quoteAmount) {
        uint160 sqrtRatioX96 = TickMath.getSqrtRatioAtTick(tick);

        // Calculate quoteAmount with better precision if it doesn't overflow when multiplied by itself
        if (sqrtRatioX96 <= type(uint128).max) {
            uint256 ratioX192 = uint256(sqrtRatioX96) * sqrtRatioX96;
            quoteAmount = baseToken < quoteToken
                ? FullMath.mulDiv(ratioX192, baseAmount, 1 << 192)
                : FullMath.mulDiv(1 << 192, baseAmount, ratioX192);
        } else {
            uint256 ratioX128 = FullMath.mulDiv(sqrtRatioX96, sqrtRatioX96, 1 << 64);
            quoteAmount = baseToken < quoteToken
                ? FullMath.mulDiv(ratioX128, baseAmount, 1 << 128)
                : FullMath.mulDiv(1 << 128, baseAmount, ratioX128);
        }
    }
}

File 15 of 46 : SqrtPriceMathPartial.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

import "@uniswap/v3-core/contracts/libraries/FullMath.sol";
import "@uniswap/v3-core/contracts/libraries/UnsafeMath.sol";
import "@uniswap/v3-core/contracts/libraries/FixedPoint96.sol";

/// @title Functions based on Q64.96 sqrt price and liquidity
/// @notice Exposes two functions from @uniswap/v3-core SqrtPriceMath
/// that use square root of price as a Q64.96 and liquidity to compute deltas
library SqrtPriceMathPartial {
    /// @notice Gets the amount0 delta between two prices
    /// @dev Calculates liquidity / sqrt(lower) - liquidity / sqrt(upper),
    /// i.e. liquidity * (sqrt(upper) - sqrt(lower)) / (sqrt(upper) * sqrt(lower))
    /// @param sqrtRatioAX96 A sqrt price
    /// @param sqrtRatioBX96 Another sqrt price
    /// @param liquidity The amount of usable liquidity
    /// @param roundUp Whether to round the amount up or down
    /// @return amount0 Amount of token0 required to cover a position of size liquidity between the two passed prices
    function getAmount0Delta(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint128 liquidity,
        bool roundUp
    ) external pure returns (uint256 amount0) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        uint256 numerator1 = uint256(liquidity) << FixedPoint96.RESOLUTION;
        uint256 numerator2 = sqrtRatioBX96 - sqrtRatioAX96;

        require(sqrtRatioAX96 > 0);

        return
            roundUp
                ? UnsafeMath.divRoundingUp(
                    FullMath.mulDivRoundingUp(numerator1, numerator2, sqrtRatioBX96),
                    sqrtRatioAX96
                )
                : FullMath.mulDiv(numerator1, numerator2, sqrtRatioBX96) / sqrtRatioAX96;
    }

    /// @notice Gets the amount1 delta between two prices
    /// @dev Calculates liquidity * (sqrt(upper) - sqrt(lower))
    /// @param sqrtRatioAX96 A sqrt price
    /// @param sqrtRatioBX96 Another sqrt price
    /// @param liquidity The amount of usable liquidity
    /// @param roundUp Whether to round the amount up, or down
    /// @return amount1 Amount of token1 required to cover a position of size liquidity between the two passed prices
    function getAmount1Delta(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint128 liquidity,
        bool roundUp
    ) external pure returns (uint256 amount1) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        return
            roundUp
                ? FullMath.mulDivRoundingUp(liquidity, sqrtRatioBX96 - sqrtRatioAX96, FixedPoint96.Q96)
                : FullMath.mulDiv(liquidity, sqrtRatioBX96 - sqrtRatioAX96, FixedPoint96.Q96);
    }
}

File 16 of 46 : TickMathExternal.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Math library for computing sqrt prices from ticks and vice versa
/// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports
/// prices between 2**-128 and 2**128
library TickMathExternal {
    /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128
    int24 internal constant MIN_TICK = -887272;
    /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128
    int24 internal constant MAX_TICK = -MIN_TICK;

    /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK)
    uint160 internal constant MIN_SQRT_RATIO = 4295128739;
    /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK)
    uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342;

    /// @notice Calculates sqrt(1.0001^tick) * 2^96
    /// @dev Throws if |tick| > max tick
    /// @param tick The input tick for the above formula
    /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0)
    /// at the given tick
    function getSqrtRatioAtTick(int24 tick) public pure returns (uint160 sqrtPriceX96) {
        uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick));
        require(absTick <= uint256(MAX_TICK), "T");

        uint256 ratio = absTick & 0x1 != 0 ? 0xfffcb933bd6fad37aa2d162d1a594001 : 0x100000000000000000000000000000000;
        if (absTick & 0x2 != 0) ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128;
        if (absTick & 0x4 != 0) ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128;
        if (absTick & 0x8 != 0) ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128;
        if (absTick & 0x10 != 0) ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128;
        if (absTick & 0x20 != 0) ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128;
        if (absTick & 0x40 != 0) ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128;
        if (absTick & 0x80 != 0) ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128;
        if (absTick & 0x100 != 0) ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128;
        if (absTick & 0x200 != 0) ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128;
        if (absTick & 0x400 != 0) ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128;
        if (absTick & 0x800 != 0) ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128;
        if (absTick & 0x1000 != 0) ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128;
        if (absTick & 0x2000 != 0) ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128;
        if (absTick & 0x4000 != 0) ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128;
        if (absTick & 0x8000 != 0) ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128;
        if (absTick & 0x10000 != 0) ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128;
        if (absTick & 0x20000 != 0) ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128;
        if (absTick & 0x40000 != 0) ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128;
        if (absTick & 0x80000 != 0) ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128;

        if (tick > 0) ratio = type(uint256).max / ratio;

        // this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96.
        // we then downcast because we know the result always fits within 160 bits due to our tick input constraint
        // we round up in the division so getTickAtSqrtRatio of the output price is always consistent
        sqrtPriceX96 = uint160((ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1));
    }

    /// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio
    /// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may
    /// ever return.
    /// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96
    /// @return tick The greatest tick for which the ratio is less than or equal to the input ratio
    function getTickAtSqrtRatio(uint160 sqrtPriceX96) external pure returns (int24 tick) {
        // second inequality must be < because the price can never reach the price at the max tick
        require(sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO, "R");
        uint256 ratio = uint256(sqrtPriceX96) << 32;

        uint256 r = ratio;
        uint256 msb = 0;

        assembly {
            let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(5, gt(r, 0xFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(4, gt(r, 0xFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(3, gt(r, 0xFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(2, gt(r, 0xF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(1, gt(r, 0x3))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := gt(r, 0x1)
            msb := or(msb, f)
        }

        if (msb >= 128) r = ratio >> (msb - 127);
        else r = ratio << (127 - msb);

        int256 log_2 = (int256(msb) - 128) << 64;

        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(63, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(62, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(61, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(60, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(59, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(58, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(57, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(56, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(55, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(54, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(53, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(52, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(51, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(50, f))
        }

        int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number

        int24 tickLow = int24((log_sqrt10001 - 3402992956809132418596140100660247210) >> 128);
        int24 tickHi = int24((log_sqrt10001 + 291339464771989622907027621153398088495) >> 128);

        tick = tickLow == tickHi ? tickLow : getSqrtRatioAtTick(tickHi) <= sqrtPriceX96 ? tickHi : tickLow;
    }
}

File 17 of 46 : Uint256Casting.sol
//SPDX-License-Identifier: MIT

pragma solidity =0.7.6;

library Uint256Casting {
    /**
     * @notice cast a uint256 to a uint128, revert on overflow
     * @param y the uint256 to be downcasted
     * @return z the downcasted integer, now type uint128
     */
    function toUint128(uint256 y) internal pure returns (uint128 z) {
        require((z = uint128(y)) == y, "OF128");
    }

    /**
     * @notice cast a uint256 to a uint96, revert on overflow
     * @param y the uint256 to be downcasted
     * @return z the downcasted integer, now type uint96
     */
    function toUint96(uint256 y) internal pure returns (uint96 z) {
        require((z = uint96(y)) == y, "OF96");
    }

    /**
     * @notice cast a uint256 to a uint32, revert on overflow
     * @param y the uint256 to be downcasted
     * @return z the downcasted integer, now type uint32
     */
    function toUint32(uint256 y) internal pure returns (uint32 z) {
        require((z = uint32(y)) == y, "OF32");
    }
}

File 18 of 46 : VaultLib.sol
//SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity =0.7.6;

//interface
import {INonfungiblePositionManager} from "@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.sol";

//lib
import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";
import {TickMathExternal} from "./TickMathExternal.sol";
import {SqrtPriceMathPartial} from "./SqrtPriceMathPartial.sol";
import {Uint256Casting} from "./Uint256Casting.sol";

/**
 * Error code:
 * V1: Vault already had nft
 * V2: Vault has no NFT
 */
library VaultLib {
    using SafeMath for uint256;
    using Uint256Casting for uint256;

    uint256 constant ONE_ONE = 1e36;

    // the collateralization ratio (CR) is checked with the numerator and denominator separately
    // a user is safe if - collateral value >= (COLLAT_RATIO_NUMER/COLLAT_RATIO_DENOM)* debt value
    uint256 public constant CR_NUMERATOR = 3;
    uint256 public constant CR_DENOMINATOR = 2;

    struct Vault {
        // the address that can update the vault
        address operator;
        // uniswap position token id deposited into the vault as collateral
        // 2^32 is 4,294,967,296, which means the vault structure will work with up to 4 billion positions
        uint32 NftCollateralId;
        // amount of eth (wei) used in the vault as collateral
        // 2^96 / 1e18 = 79,228,162,514, which means a vault can store up to 79 billion eth
        // when we need to do calculations, we always cast this number to uint256 to avoid overflow
        uint96 collateralAmount;
        // amount of wPowerPerp minted from the vault
        uint128 shortAmount;
    }

    /**
     * @notice add eth collateral to a vault
     * @param _vault in-memory vault
     * @param _amount amount of eth to add
     */
    function addEthCollateral(Vault memory _vault, uint256 _amount) internal pure {
        _vault.collateralAmount = uint256(_vault.collateralAmount).add(_amount).toUint96();
    }

    /**
     * @notice add uniswap position token collateral to a vault
     * @param _vault in-memory vault
     * @param _tokenId uniswap position token id
     */
    function addUniNftCollateral(Vault memory _vault, uint256 _tokenId) internal pure {
        require(_vault.NftCollateralId == 0, "V1");
        require(_tokenId != 0, "C23");
        _vault.NftCollateralId = _tokenId.toUint32();
    }

    /**
     * @notice remove eth collateral from a vault
     * @param _vault in-memory vault
     * @param _amount amount of eth to remove
     */
    function removeEthCollateral(Vault memory _vault, uint256 _amount) internal pure {
        _vault.collateralAmount = uint256(_vault.collateralAmount).sub(_amount).toUint96();
    }

    /**
     * @notice remove uniswap position token collateral from a vault
     * @param _vault in-memory vault
     */
    function removeUniNftCollateral(Vault memory _vault) internal pure {
        require(_vault.NftCollateralId != 0, "V2");
        _vault.NftCollateralId = 0;
    }

    /**
     * @notice add debt to vault
     * @param _vault in-memory vault
     * @param _amount amount of debt to add
     */
    function addShort(Vault memory _vault, uint256 _amount) internal pure {
        _vault.shortAmount = uint256(_vault.shortAmount).add(_amount).toUint128();
    }

    /**
     * @notice remove debt from vault
     * @param _vault in-memory vault
     * @param _amount amount of debt to remove
     */
    function removeShort(Vault memory _vault, uint256 _amount) internal pure {
        _vault.shortAmount = uint256(_vault.shortAmount).sub(_amount).toUint128();
    }

    /**
     * @notice check if a vault is properly collateralized
     * @param _vault the vault we want to check
     * @param _positionManager address of the uniswap position manager
     * @param _normalizationFactor current _normalizationFactor
     * @param _ethQuoteCurrencyPrice current eth price scaled by 1e18
     * @param _minCollateral minimum collateral that needs to be in a vault
     * @param _wsqueethPoolTick current price tick for wsqueeth pool
     * @param _isWethToken0 whether weth is token0 in the wsqueeth pool
     * @return true if the vault is sufficiently collateralized
     * @return true if the vault is considered as a dust vault
     */
    function getVaultStatus(
        Vault memory _vault,
        address _positionManager,
        uint256 _normalizationFactor,
        uint256 _ethQuoteCurrencyPrice,
        uint256 _minCollateral,
        int24 _wsqueethPoolTick,
        bool _isWethToken0
    ) internal view returns (bool, bool) {
        if (_vault.shortAmount == 0) return (true, false);

        uint256 debtValueInETH = uint256(_vault.shortAmount).mul(_normalizationFactor).mul(_ethQuoteCurrencyPrice).div(
            ONE_ONE
        );
        uint256 totalCollateral = _getEffectiveCollateral(
            _vault,
            _positionManager,
            _normalizationFactor,
            _ethQuoteCurrencyPrice,
            _wsqueethPoolTick,
            _isWethToken0
        );

        bool isDust = totalCollateral < _minCollateral;
        bool isAboveWater = totalCollateral.mul(CR_DENOMINATOR) >= debtValueInETH.mul(CR_NUMERATOR);
        return (isAboveWater, isDust);
    }

    /**
     * @notice get the total effective collateral of a vault, which is:
     *         collateral amount + uniswap position token equivelent amount in eth
     * @param _vault the vault we want to check
     * @param _positionManager address of the uniswap position manager
     * @param _normalizationFactor current _normalizationFactor
     * @param _ethQuoteCurrencyPrice current eth price scaled by 1e18
     * @param _wsqueethPoolTick current price tick for wsqueeth pool
     * @param _isWethToken0 whether weth is token0 in the wsqueeth pool
     * @return the total worth of collateral in the vault
     */
    function _getEffectiveCollateral(
        Vault memory _vault,
        address _positionManager,
        uint256 _normalizationFactor,
        uint256 _ethQuoteCurrencyPrice,
        int24 _wsqueethPoolTick,
        bool _isWethToken0
    ) internal view returns (uint256) {
        if (_vault.NftCollateralId == 0) return _vault.collateralAmount;

        // the user has deposited uniswap position token as collateral, see how much eth / wSqueeth the uniswap position token has
        (uint256 nftEthAmount, uint256 nftWsqueethAmount) = _getUniPositionBalances(
            _positionManager,
            _vault.NftCollateralId,
            _wsqueethPoolTick,
            _isWethToken0
        );
        // convert squeeth amount from uniswap position token as equivalent amount of collateral
        uint256 wSqueethIndexValueInEth = nftWsqueethAmount.mul(_normalizationFactor).mul(_ethQuoteCurrencyPrice).div(
            ONE_ONE
        );
        // add eth value from uniswap position token as collateral
        return nftEthAmount.add(wSqueethIndexValueInEth).add(_vault.collateralAmount);
    }

    /**
     * @notice determine how much eth / wPowerPerp the uniswap position contains
     * @param _positionManager address of the uniswap position manager
     * @param _tokenId uniswap position token id
     * @param _wPowerPerpPoolTick current price tick
     * @param _isWethToken0 whether weth is token0 in the pool
     * @return ethAmount the eth amount this LP token contains
     * @return wPowerPerpAmount the wPowerPerp amount this LP token contains
     */
    function _getUniPositionBalances(
        address _positionManager,
        uint256 _tokenId,
        int24 _wPowerPerpPoolTick,
        bool _isWethToken0
    ) internal view returns (uint256 ethAmount, uint256 wPowerPerpAmount) {
        (
            int24 tickLower,
            int24 tickUpper,
            uint128 liquidity,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        ) = _getUniswapPositionInfo(_positionManager, _tokenId);
        (uint256 amount0, uint256 amount1) = _getToken0Token1Balances(
            tickLower,
            tickUpper,
            _wPowerPerpPoolTick,
            liquidity
        );

        return
            _isWethToken0
                ? (amount0 + tokensOwed0, amount1 + tokensOwed1)
                : (amount1 + tokensOwed1, amount0 + tokensOwed0);
    }

    /**
     * @notice get uniswap position token info
     * @param _positionManager address of the uniswap position position manager
     * @param _tokenId uniswap position token id
     * @return tickLower lower tick of the position
     * @return tickUpper upper tick of the position
     * @return liquidity raw liquidity amount of the position
     * @return tokensOwed0 amount of token 0 can be collected as fee
     * @return tokensOwed1 amount of token 1 can be collected as fee
     */
    function _getUniswapPositionInfo(address _positionManager, uint256 _tokenId)
        internal
        view
        returns (
            int24,
            int24,
            uint128,
            uint128,
            uint128
        )
    {
        INonfungiblePositionManager positionManager = INonfungiblePositionManager(_positionManager);
        (
            ,
            ,
            ,
            ,
            ,
            int24 tickLower,
            int24 tickUpper,
            uint128 liquidity,
            ,
            ,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        ) = positionManager.positions(_tokenId);
        return (tickLower, tickUpper, liquidity, tokensOwed0, tokensOwed1);
    }

    /**
     * @notice get balances of token0 / token1 in a uniswap position
     * @dev knowing liquidity, tick range, and current tick gives balances
     * @param _tickLower address of the uniswap position manager
     * @param _tickUpper uniswap position token id
     * @param _tick current price tick used for calculation
     * @return amount0 the amount of token0 in the uniswap position token
     * @return amount1 the amount of token1 in the uniswap position token
     */
    function _getToken0Token1Balances(
        int24 _tickLower,
        int24 _tickUpper,
        int24 _tick,
        uint128 _liquidity
    ) internal pure returns (uint256 amount0, uint256 amount1) {
        // get the current price and tick from wPowerPerp pool
        uint160 sqrtPriceX96 = TickMathExternal.getSqrtRatioAtTick(_tick);

        if (_tick < _tickLower) {
            amount0 = SqrtPriceMathPartial.getAmount0Delta(
                TickMathExternal.getSqrtRatioAtTick(_tickLower),
                TickMathExternal.getSqrtRatioAtTick(_tickUpper),
                _liquidity,
                true
            );
        } else if (_tick < _tickUpper) {
            amount0 = SqrtPriceMathPartial.getAmount0Delta(
                sqrtPriceX96,
                TickMathExternal.getSqrtRatioAtTick(_tickUpper),
                _liquidity,
                true
            );
            amount1 = SqrtPriceMathPartial.getAmount1Delta(
                TickMathExternal.getSqrtRatioAtTick(_tickLower),
                sqrtPriceX96,
                _liquidity,
                true
            );
        } else {
            amount1 = SqrtPriceMathPartial.getAmount1Delta(
                TickMathExternal.getSqrtRatioAtTick(_tickLower),
                TickMathExternal.getSqrtRatioAtTick(_tickUpper),
                _liquidity,
                true
            );
        }
    }
}

File 19 of 46 : StrategyMath.sol
//SPDX-License-Identifier: AGPL-3.0-only

/// math.sol -- mixin for inline numerical wizardry

// 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.4.13;


/**
 * @notice Copied from https://github.com/dapphub/ds-math/blob/e70a364787804c1ded9801ed6c27b440a86ebd32/src/math.sol
 * @dev change contract to library, added div() function
 */
library StrategyMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, "ds-math-add-overflow");
    }
    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, "ds-math-sub-underflow");
    }
    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow");
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    function min(uint x, uint y) internal pure returns (uint z) {
        return x <= y ? x : y;
    }
    function max(uint x, uint y) internal pure returns (uint z) {
        return x >= y ? x : y;
    }
    function imin(int x, int y) internal pure returns (int z) {
        return x <= y ? x : y;
    }
    function imax(int x, int y) internal pure returns (int z) {
        return x >= y ? x : y;
    }

    uint constant WAD = 10 ** 18;
    uint constant RAY = 10 ** 27;

    //rounds to zero if x*y < WAD / 2
    function wmul(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, y), WAD / 2) / WAD;
    }
    //rounds to zero if x*y < WAD / 2
    function rmul(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, y), RAY / 2) / RAY;
    }
    //rounds to zero if x*y < WAD / 2
    function wdiv(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, WAD), y / 2) / y;
    }
    //rounds to zero if x*y < RAY / 2
    function rdiv(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, RAY), y / 2) / y;
    }

    // Ceil A to a multiple m
    function ceil(uint a, uint m) internal pure returns(uint z) {
        z = mul(div(sub(add(a, m), 1), m), m);
    }

    // Floor A to a multiple m
    function floor(uint a, uint m) internal pure returns(uint z) {
        z = mul(div(a, m), m);
    }

    // This famous algorithm is called "exponentiation by squaring"
    // and calculates x^n with x as fixed-point and n as regular unsigned.
    //
    // It's O(log n), instead of O(n) for naive repeated multiplication.
    //
    // These facts are why it works:
    //
    //  If n is even, then x^n = (x^2)^(n/2).
    //  If n is odd,  then x^n = x * x^(n-1),
    //   and applying the equation for even x gives
    //    x^n = x * (x^2)^((n-1) / 2).
    //
    //  Also, EVM division is flooring and
    //    floor[(n-1) / 2] = floor[n / 2].
    //
    function rpow(uint x, uint n) internal pure returns (uint z) {
        z = n % 2 != 0 ? x : RAY;

        for (n /= 2; n != 0; n /= 2) {
            x = rmul(x, x);

            if (n % 2 != 0) {
                z = rmul(z, x);
            }
        }
    }
}

File 20 of 46 : IUniswapV3Pool.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

import './pool/IUniswapV3PoolImmutables.sol';
import './pool/IUniswapV3PoolState.sol';
import './pool/IUniswapV3PoolDerivedState.sol';
import './pool/IUniswapV3PoolActions.sol';
import './pool/IUniswapV3PoolOwnerActions.sol';
import './pool/IUniswapV3PoolEvents.sol';

/// @title The interface for a Uniswap V3 Pool
/// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform
/// to the ERC20 specification
/// @dev The pool interface is broken up into many smaller pieces
interface IUniswapV3Pool is
    IUniswapV3PoolImmutables,
    IUniswapV3PoolState,
    IUniswapV3PoolDerivedState,
    IUniswapV3PoolActions,
    IUniswapV3PoolOwnerActions,
    IUniswapV3PoolEvents
{

}

File 21 of 46 : IUniswapV3PoolActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissionless pool actions
/// @notice Contains pool methods that can be called by anyone
interface IUniswapV3PoolActions {
    /// @notice Sets the initial price for the pool
    /// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value
    /// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96
    function initialize(uint160 sqrtPriceX96) external;

    /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position
    /// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback
    /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends
    /// on tickLower, tickUpper, the amount of liquidity, and the current price.
    /// @param recipient The address for which the liquidity will be created
    /// @param tickLower The lower tick of the position in which to add liquidity
    /// @param tickUpper The upper tick of the position in which to add liquidity
    /// @param amount The amount of liquidity to mint
    /// @param data Any data that should be passed through to the callback
    /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback
    /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback
    function mint(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount,
        bytes calldata data
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Collects tokens owed to a position
    /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.
    /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or
    /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the
    /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.
    /// @param recipient The address which should receive the fees collected
    /// @param tickLower The lower tick of the position for which to collect fees
    /// @param tickUpper The upper tick of the position for which to collect fees
    /// @param amount0Requested How much token0 should be withdrawn from the fees owed
    /// @param amount1Requested How much token1 should be withdrawn from the fees owed
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);

    /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position
    /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0
    /// @dev Fees must be collected separately via a call to #collect
    /// @param tickLower The lower tick of the position for which to burn liquidity
    /// @param tickUpper The upper tick of the position for which to burn liquidity
    /// @param amount How much liquidity to burn
    /// @return amount0 The amount of token0 sent to the recipient
    /// @return amount1 The amount of token1 sent to the recipient
    function burn(
        int24 tickLower,
        int24 tickUpper,
        uint128 amount
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Swap token0 for token1, or token1 for token0
    /// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback
    /// @param recipient The address to receive the output of the swap
    /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
    /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)
    /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
    /// value after the swap. If one for zero, the price cannot be greater than this value after the swap
    /// @param data Any data to be passed through to the callback
    /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive
    /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive
    function swap(
        address recipient,
        bool zeroForOne,
        int256 amountSpecified,
        uint160 sqrtPriceLimitX96,
        bytes calldata data
    ) external returns (int256 amount0, int256 amount1);

    /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback
    /// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback
    /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling
    /// with 0 amount{0,1} and sending the donation amount(s) from the callback
    /// @param recipient The address which will receive the token0 and token1 amounts
    /// @param amount0 The amount of token0 to send
    /// @param amount1 The amount of token1 to send
    /// @param data Any data to be passed through to the callback
    function flash(
        address recipient,
        uint256 amount0,
        uint256 amount1,
        bytes calldata data
    ) external;

    /// @notice Increase the maximum number of price and liquidity observations that this pool will store
    /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to
    /// the input observationCardinalityNext.
    /// @param observationCardinalityNext The desired minimum number of observations for the pool to store
    function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external;
}

File 22 of 46 : IUniswapV3PoolDerivedState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that is not stored
/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the
/// blockchain. The functions here may have variable gas costs.
interface IUniswapV3PoolDerivedState {
    /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp
    /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing
    /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,
    /// you must call it with secondsAgos = [3600, 0].
    /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in
    /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio.
    /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned
    /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp
    /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block
    /// timestamp
    function observe(uint32[] calldata secondsAgos)
        external
        view
        returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);

    /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range
    /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed.
    /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first
    /// snapshot is taken and the second snapshot is taken.
    /// @param tickLower The lower tick of the range
    /// @param tickUpper The upper tick of the range
    /// @return tickCumulativeInside The snapshot of the tick accumulator for the range
    /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range
    /// @return secondsInside The snapshot of seconds per liquidity for the range
    function snapshotCumulativesInside(int24 tickLower, int24 tickUpper)
        external
        view
        returns (
            int56 tickCumulativeInside,
            uint160 secondsPerLiquidityInsideX128,
            uint32 secondsInside
        );
}

File 23 of 46 : IUniswapV3PoolEvents.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Events emitted by a pool
/// @notice Contains all events emitted by the pool
interface IUniswapV3PoolEvents {
    /// @notice Emitted exactly once by a pool when #initialize is first called on the pool
    /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize
    /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96
    /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool
    event Initialize(uint160 sqrtPriceX96, int24 tick);

    /// @notice Emitted when liquidity is minted for a given position
    /// @param sender The address that minted the liquidity
    /// @param owner The owner of the position and recipient of any minted liquidity
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity minted to the position range
    /// @param amount0 How much token0 was required for the minted liquidity
    /// @param amount1 How much token1 was required for the minted liquidity
    event Mint(
        address sender,
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted when fees are collected by the owner of a position
    /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees
    /// @param owner The owner of the position for which fees are collected
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount0 The amount of token0 fees collected
    /// @param amount1 The amount of token1 fees collected
    event Collect(
        address indexed owner,
        address recipient,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount0,
        uint128 amount1
    );

    /// @notice Emitted when a position's liquidity is removed
    /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect
    /// @param owner The owner of the position for which liquidity is removed
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity to remove
    /// @param amount0 The amount of token0 withdrawn
    /// @param amount1 The amount of token1 withdrawn
    event Burn(
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted by the pool for any swaps between token0 and token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the output of the swap
    /// @param amount0 The delta of the token0 balance of the pool
    /// @param amount1 The delta of the token1 balance of the pool
    /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96
    /// @param liquidity The liquidity of the pool after the swap
    /// @param tick The log base 1.0001 of price of the pool after the swap
    event Swap(
        address indexed sender,
        address indexed recipient,
        int256 amount0,
        int256 amount1,
        uint160 sqrtPriceX96,
        uint128 liquidity,
        int24 tick
    );

    /// @notice Emitted by the pool for any flashes of token0/token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the tokens from flash
    /// @param amount0 The amount of token0 that was flashed
    /// @param amount1 The amount of token1 that was flashed
    /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee
    /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee
    event Flash(
        address indexed sender,
        address indexed recipient,
        uint256 amount0,
        uint256 amount1,
        uint256 paid0,
        uint256 paid1
    );

    /// @notice Emitted by the pool for increases to the number of observations that can be stored
    /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index
    /// just before a mint/swap/burn.
    /// @param observationCardinalityNextOld The previous value of the next observation cardinality
    /// @param observationCardinalityNextNew The updated value of the next observation cardinality
    event IncreaseObservationCardinalityNext(
        uint16 observationCardinalityNextOld,
        uint16 observationCardinalityNextNew
    );

    /// @notice Emitted when the protocol fee is changed by the pool
    /// @param feeProtocol0Old The previous value of the token0 protocol fee
    /// @param feeProtocol1Old The previous value of the token1 protocol fee
    /// @param feeProtocol0New The updated value of the token0 protocol fee
    /// @param feeProtocol1New The updated value of the token1 protocol fee
    event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New);

    /// @notice Emitted when the collected protocol fees are withdrawn by the factory owner
    /// @param sender The address that collects the protocol fees
    /// @param recipient The address that receives the collected protocol fees
    /// @param amount0 The amount of token0 protocol fees that is withdrawn
    /// @param amount0 The amount of token1 protocol fees that is withdrawn
    event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1);
}

File 24 of 46 : IUniswapV3PoolImmutables.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that never changes
/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values
interface IUniswapV3PoolImmutables {
    /// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface
    /// @return The contract address
    function factory() external view returns (address);

    /// @notice The first of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token0() external view returns (address);

    /// @notice The second of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token1() external view returns (address);

    /// @notice The pool's fee in hundredths of a bip, i.e. 1e-6
    /// @return The fee
    function fee() external view returns (uint24);

    /// @notice The pool tick spacing
    /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive
    /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ...
    /// This value is an int24 to avoid casting even though it is always positive.
    /// @return The tick spacing
    function tickSpacing() external view returns (int24);

    /// @notice The maximum amount of position liquidity that can use any tick in the range
    /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and
    /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool
    /// @return The max amount of liquidity per tick
    function maxLiquidityPerTick() external view returns (uint128);
}

File 25 of 46 : IUniswapV3PoolOwnerActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissioned pool actions
/// @notice Contains pool methods that may only be called by the factory owner
interface IUniswapV3PoolOwnerActions {
    /// @notice Set the denominator of the protocol's % share of the fees
    /// @param feeProtocol0 new protocol fee for token0 of the pool
    /// @param feeProtocol1 new protocol fee for token1 of the pool
    function setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;

    /// @notice Collect the protocol fee accrued to the pool
    /// @param recipient The address to which collected protocol fees should be sent
    /// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1
    /// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0
    /// @return amount0 The protocol fee collected in token0
    /// @return amount1 The protocol fee collected in token1
    function collectProtocol(
        address recipient,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);
}

File 26 of 46 : IUniswapV3PoolState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that can change
/// @notice These methods compose the pool's state, and can change with any frequency including multiple times
/// per transaction
interface IUniswapV3PoolState {
    /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas
    /// when accessed externally.
    /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value
    /// tick The current tick of the pool, i.e. according to the last tick transition that was run.
    /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick
    /// boundary.
    /// observationIndex The index of the last oracle observation that was written,
    /// observationCardinality The current maximum number of observations stored in the pool,
    /// observationCardinalityNext The next maximum number of observations, to be updated when the observation.
    /// feeProtocol The protocol fee for both tokens of the pool.
    /// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0
    /// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee.
    /// unlocked Whether the pool is currently locked to reentrancy
    function slot0()
        external
        view
        returns (
            uint160 sqrtPriceX96,
            int24 tick,
            uint16 observationIndex,
            uint16 observationCardinality,
            uint16 observationCardinalityNext,
            uint8 feeProtocol,
            bool unlocked
        );

    /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal0X128() external view returns (uint256);

    /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal1X128() external view returns (uint256);

    /// @notice The amounts of token0 and token1 that are owed to the protocol
    /// @dev Protocol fees will never exceed uint128 max in either token
    function protocolFees() external view returns (uint128 token0, uint128 token1);

    /// @notice The currently in range liquidity available to the pool
    /// @dev This value has no relationship to the total liquidity across all ticks
    function liquidity() external view returns (uint128);

    /// @notice Look up information about a specific tick in the pool
    /// @param tick The tick to look up
    /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or
    /// tick upper,
    /// liquidityNet how much liquidity changes when the pool price crosses the tick,
    /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,
    /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,
    /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick
    /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,
    /// secondsOutside the seconds spent on the other side of the tick from the current tick,
    /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.
    /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.
    /// In addition, these values are only relative and must be used only in comparison to previous snapshots for
    /// a specific position.
    function ticks(int24 tick)
        external
        view
        returns (
            uint128 liquidityGross,
            int128 liquidityNet,
            uint256 feeGrowthOutside0X128,
            uint256 feeGrowthOutside1X128,
            int56 tickCumulativeOutside,
            uint160 secondsPerLiquidityOutsideX128,
            uint32 secondsOutside,
            bool initialized
        );

    /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information
    function tickBitmap(int16 wordPosition) external view returns (uint256);

    /// @notice Returns the information about a position by the position's key
    /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper
    /// @return _liquidity The amount of liquidity in the position,
    /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,
    /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,
    /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,
    /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke
    function positions(bytes32 key)
        external
        view
        returns (
            uint128 _liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    /// @notice Returns data about a specific observation index
    /// @param index The element of the observations array to fetch
    /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time
    /// ago, rather than at a specific index in the array.
    /// @return blockTimestamp The timestamp of the observation,
    /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,
    /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,
    /// Returns initialized whether the observation has been initialized and the values are safe to use
    function observations(uint256 index)
        external
        view
        returns (
            uint32 blockTimestamp,
            int56 tickCumulative,
            uint160 secondsPerLiquidityCumulativeX128,
            bool initialized
        );
}

File 27 of 46 : FixedPoint96.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.4.0;

/// @title FixedPoint96
/// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format)
/// @dev Used in SqrtPriceMath.sol
library FixedPoint96 {
    uint8 internal constant RESOLUTION = 96;
    uint256 internal constant Q96 = 0x1000000000000000000000000;
}

File 28 of 46 : FullMath.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.0 <0.8.0;

/// @title Contains 512-bit math functions
/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision
/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits
library FullMath {
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        // 512-bit multiply [prod1 prod0] = a * b
        // Compute the product mod 2**256 and mod 2**256 - 1
        // then use the Chinese Remainder Theorem to reconstruct
        // the 512 bit result. The result is stored in two 256
        // variables such that product = prod1 * 2**256 + prod0
        uint256 prod0; // Least significant 256 bits of the product
        uint256 prod1; // Most significant 256 bits of the product
        assembly {
            let mm := mulmod(a, b, not(0))
            prod0 := mul(a, b)
            prod1 := sub(sub(mm, prod0), lt(mm, prod0))
        }

        // Handle non-overflow cases, 256 by 256 division
        if (prod1 == 0) {
            require(denominator > 0);
            assembly {
                result := div(prod0, denominator)
            }
            return result;
        }

        // Make sure the result is less than 2**256.
        // Also prevents denominator == 0
        require(denominator > prod1);

        ///////////////////////////////////////////////
        // 512 by 256 division.
        ///////////////////////////////////////////////

        // Make division exact by subtracting the remainder from [prod1 prod0]
        // Compute remainder using mulmod
        uint256 remainder;
        assembly {
            remainder := mulmod(a, b, denominator)
        }
        // Subtract 256 bit number from 512 bit number
        assembly {
            prod1 := sub(prod1, gt(remainder, prod0))
            prod0 := sub(prod0, remainder)
        }

        // Factor powers of two out of denominator
        // Compute largest power of two divisor of denominator.
        // Always >= 1.
        uint256 twos = -denominator & denominator;
        // Divide denominator by power of two
        assembly {
            denominator := div(denominator, twos)
        }

        // Divide [prod1 prod0] by the factors of two
        assembly {
            prod0 := div(prod0, twos)
        }
        // Shift in bits from prod1 into prod0. For this we need
        // to flip `twos` such that it is 2**256 / twos.
        // If twos is zero, then it becomes one
        assembly {
            twos := add(div(sub(0, twos), twos), 1)
        }
        prod0 |= prod1 * twos;

        // Invert denominator mod 2**256
        // Now that denominator is an odd number, it has an inverse
        // modulo 2**256 such that denominator * inv = 1 mod 2**256.
        // Compute the inverse by starting with a seed that is correct
        // correct for four bits. That is, denominator * inv = 1 mod 2**4
        uint256 inv = (3 * denominator) ^ 2;
        // Now use Newton-Raphson iteration to improve the precision.
        // Thanks to Hensel's lifting lemma, this also works in modular
        // arithmetic, doubling the correct bits in each step.
        inv *= 2 - denominator * inv; // inverse mod 2**8
        inv *= 2 - denominator * inv; // inverse mod 2**16
        inv *= 2 - denominator * inv; // inverse mod 2**32
        inv *= 2 - denominator * inv; // inverse mod 2**64
        inv *= 2 - denominator * inv; // inverse mod 2**128
        inv *= 2 - denominator * inv; // inverse mod 2**256

        // Because the division is now exact we can divide by multiplying
        // with the modular inverse of denominator. This will give us the
        // correct result modulo 2**256. Since the precoditions guarantee
        // that the outcome is less than 2**256, this is the final result.
        // We don't need to compute the high bits of the result and prod1
        // is no longer required.
        result = prod0 * inv;
        return result;
    }

    /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    function mulDivRoundingUp(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        result = mulDiv(a, b, denominator);
        if (mulmod(a, b, denominator) > 0) {
            require(result < type(uint256).max);
            result++;
        }
    }
}

File 29 of 46 : SafeCast.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Safe casting methods
/// @notice Contains methods for safely casting between types
library SafeCast {
    /// @notice Cast a uint256 to a uint160, revert on overflow
    /// @param y The uint256 to be downcasted
    /// @return z The downcasted integer, now type uint160
    function toUint160(uint256 y) internal pure returns (uint160 z) {
        require((z = uint160(y)) == y);
    }

    /// @notice Cast a int256 to a int128, revert on overflow or underflow
    /// @param y The int256 to be downcasted
    /// @return z The downcasted integer, now type int128
    function toInt128(int256 y) internal pure returns (int128 z) {
        require((z = int128(y)) == y);
    }

    /// @notice Cast a uint256 to a int256, revert on overflow
    /// @param y The uint256 to be casted
    /// @return z The casted integer, now type int256
    function toInt256(uint256 y) internal pure returns (int256 z) {
        require(y < 2**255);
        z = int256(y);
    }
}

File 30 of 46 : TickMath.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0 <0.8.0;

/// @title Math library for computing sqrt prices from ticks and vice versa
/// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports
/// prices between 2**-128 and 2**128
library TickMath {
    /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128
    int24 internal constant MIN_TICK = -887272;
    /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128
    int24 internal constant MAX_TICK = -MIN_TICK;

    /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK)
    uint160 internal constant MIN_SQRT_RATIO = 4295128739;
    /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK)
    uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342;

    /// @notice Calculates sqrt(1.0001^tick) * 2^96
    /// @dev Throws if |tick| > max tick
    /// @param tick The input tick for the above formula
    /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0)
    /// at the given tick
    function getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) {
        uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick));
        require(absTick <= uint256(MAX_TICK), 'T');

        uint256 ratio = absTick & 0x1 != 0 ? 0xfffcb933bd6fad37aa2d162d1a594001 : 0x100000000000000000000000000000000;
        if (absTick & 0x2 != 0) ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128;
        if (absTick & 0x4 != 0) ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128;
        if (absTick & 0x8 != 0) ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128;
        if (absTick & 0x10 != 0) ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128;
        if (absTick & 0x20 != 0) ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128;
        if (absTick & 0x40 != 0) ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128;
        if (absTick & 0x80 != 0) ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128;
        if (absTick & 0x100 != 0) ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128;
        if (absTick & 0x200 != 0) ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128;
        if (absTick & 0x400 != 0) ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128;
        if (absTick & 0x800 != 0) ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128;
        if (absTick & 0x1000 != 0) ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128;
        if (absTick & 0x2000 != 0) ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128;
        if (absTick & 0x4000 != 0) ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128;
        if (absTick & 0x8000 != 0) ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128;
        if (absTick & 0x10000 != 0) ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128;
        if (absTick & 0x20000 != 0) ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128;
        if (absTick & 0x40000 != 0) ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128;
        if (absTick & 0x80000 != 0) ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128;

        if (tick > 0) ratio = type(uint256).max / ratio;

        // this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96.
        // we then downcast because we know the result always fits within 160 bits due to our tick input constraint
        // we round up in the division so getTickAtSqrtRatio of the output price is always consistent
        sqrtPriceX96 = uint160((ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1));
    }

    /// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio
    /// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may
    /// ever return.
    /// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96
    /// @return tick The greatest tick for which the ratio is less than or equal to the input ratio
    function getTickAtSqrtRatio(uint160 sqrtPriceX96) internal pure returns (int24 tick) {
        // second inequality must be < because the price can never reach the price at the max tick
        require(sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO, 'R');
        uint256 ratio = uint256(sqrtPriceX96) << 32;

        uint256 r = ratio;
        uint256 msb = 0;

        assembly {
            let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(5, gt(r, 0xFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(4, gt(r, 0xFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(3, gt(r, 0xFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(2, gt(r, 0xF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(1, gt(r, 0x3))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := gt(r, 0x1)
            msb := or(msb, f)
        }

        if (msb >= 128) r = ratio >> (msb - 127);
        else r = ratio << (127 - msb);

        int256 log_2 = (int256(msb) - 128) << 64;

        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(63, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(62, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(61, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(60, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(59, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(58, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(57, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(56, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(55, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(54, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(53, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(52, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(51, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(50, f))
        }

        int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number

        int24 tickLow = int24((log_sqrt10001 - 3402992956809132418596140100660247210) >> 128);
        int24 tickHi = int24((log_sqrt10001 + 291339464771989622907027621153398088495) >> 128);

        tick = tickLow == tickHi ? tickLow : getSqrtRatioAtTick(tickHi) <= sqrtPriceX96 ? tickHi : tickLow;
    }
}

File 31 of 46 : UnsafeMath.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Math functions that do not check inputs or outputs
/// @notice Contains methods that perform common math functions but do not do any overflow or underflow checks
library UnsafeMath {
    /// @notice Returns ceil(x / y)
    /// @dev division by 0 has unspecified behavior, and must be checked externally
    /// @param x The dividend
    /// @param y The divisor
    /// @return z The quotient, ceil(x / y)
    function divRoundingUp(uint256 x, uint256 y) internal pure returns (uint256 z) {
        assembly {
            z := add(div(x, y), gt(mod(x, y), 0))
        }
    }
}

File 32 of 46 : IERC721Permit.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';

/// @title ERC721 with permit
/// @notice Extension to ERC721 that includes a permit function for signature based approvals
interface IERC721Permit is IERC721 {
    /// @notice The permit typehash used in the permit signature
    /// @return The typehash for the permit
    function PERMIT_TYPEHASH() external pure returns (bytes32);

    /// @notice The domain separator used in the permit signature
    /// @return The domain seperator used in encoding of permit signature
    function DOMAIN_SEPARATOR() external view returns (bytes32);

    /// @notice Approve of a specific token ID for spending by spender via signature
    /// @param spender The account that is being approved
    /// @param tokenId The ID of the token that is being approved for spending
    /// @param deadline The deadline timestamp by which the call must be mined for the approve to work
    /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`
    /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`
    /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`
    function permit(
        address spender,
        uint256 tokenId,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external payable;
}

File 33 of 46 : INonfungiblePositionManager.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;

import '@openzeppelin/contracts/token/ERC721/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol';

import './IPoolInitializer.sol';
import './IERC721Permit.sol';
import './IPeripheryPayments.sol';
import './IPeripheryImmutableState.sol';
import '../libraries/PoolAddress.sol';

/// @title Non-fungible token for positions
/// @notice Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred
/// and authorized.
interface INonfungiblePositionManager is
    IPoolInitializer,
    IPeripheryPayments,
    IPeripheryImmutableState,
    IERC721Metadata,
    IERC721Enumerable,
    IERC721Permit
{
    /// @notice Emitted when liquidity is increased for a position NFT
    /// @dev Also emitted when a token is minted
    /// @param tokenId The ID of the token for which liquidity was increased
    /// @param liquidity The amount by which liquidity for the NFT position was increased
    /// @param amount0 The amount of token0 that was paid for the increase in liquidity
    /// @param amount1 The amount of token1 that was paid for the increase in liquidity
    event IncreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
    /// @notice Emitted when liquidity is decreased for a position NFT
    /// @param tokenId The ID of the token for which liquidity was decreased
    /// @param liquidity The amount by which liquidity for the NFT position was decreased
    /// @param amount0 The amount of token0 that was accounted for the decrease in liquidity
    /// @param amount1 The amount of token1 that was accounted for the decrease in liquidity
    event DecreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
    /// @notice Emitted when tokens are collected for a position NFT
    /// @dev The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior
    /// @param tokenId The ID of the token for which underlying tokens were collected
    /// @param recipient The address of the account that received the collected tokens
    /// @param amount0 The amount of token0 owed to the position that was collected
    /// @param amount1 The amount of token1 owed to the position that was collected
    event Collect(uint256 indexed tokenId, address recipient, uint256 amount0, uint256 amount1);

    /// @notice Returns the position information associated with a given token ID.
    /// @dev Throws if the token ID is not valid.
    /// @param tokenId The ID of the token that represents the position
    /// @return nonce The nonce for permits
    /// @return operator The address that is approved for spending
    /// @return token0 The address of the token0 for a specific pool
    /// @return token1 The address of the token1 for a specific pool
    /// @return fee The fee associated with the pool
    /// @return tickLower The lower end of the tick range for the position
    /// @return tickUpper The higher end of the tick range for the position
    /// @return liquidity The liquidity of the position
    /// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position
    /// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position
    /// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation
    /// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation
    function positions(uint256 tokenId)
        external
        view
        returns (
            uint96 nonce,
            address operator,
            address token0,
            address token1,
            uint24 fee,
            int24 tickLower,
            int24 tickUpper,
            uint128 liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    struct MintParams {
        address token0;
        address token1;
        uint24 fee;
        int24 tickLower;
        int24 tickUpper;
        uint256 amount0Desired;
        uint256 amount1Desired;
        uint256 amount0Min;
        uint256 amount1Min;
        address recipient;
        uint256 deadline;
    }

    /// @notice Creates a new position wrapped in a NFT
    /// @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized
    /// a method does not exist, i.e. the pool is assumed to be initialized.
    /// @param params The params necessary to mint a position, encoded as `MintParams` in calldata
    /// @return tokenId The ID of the token that represents the minted position
    /// @return liquidity The amount of liquidity for this position
    /// @return amount0 The amount of token0
    /// @return amount1 The amount of token1
    function mint(MintParams calldata params)
        external
        payable
        returns (
            uint256 tokenId,
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1
        );

    struct IncreaseLiquidityParams {
        uint256 tokenId;
        uint256 amount0Desired;
        uint256 amount1Desired;
        uint256 amount0Min;
        uint256 amount1Min;
        uint256 deadline;
    }

    /// @notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`
    /// @param params tokenId The ID of the token for which liquidity is being increased,
    /// amount0Desired The desired amount of token0 to be spent,
    /// amount1Desired The desired amount of token1 to be spent,
    /// amount0Min The minimum amount of token0 to spend, which serves as a slippage check,
    /// amount1Min The minimum amount of token1 to spend, which serves as a slippage check,
    /// deadline The time by which the transaction must be included to effect the change
    /// @return liquidity The new liquidity amount as a result of the increase
    /// @return amount0 The amount of token0 to acheive resulting liquidity
    /// @return amount1 The amount of token1 to acheive resulting liquidity
    function increaseLiquidity(IncreaseLiquidityParams calldata params)
        external
        payable
        returns (
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1
        );

    struct DecreaseLiquidityParams {
        uint256 tokenId;
        uint128 liquidity;
        uint256 amount0Min;
        uint256 amount1Min;
        uint256 deadline;
    }

    /// @notice Decreases the amount of liquidity in a position and accounts it to the position
    /// @param params tokenId The ID of the token for which liquidity is being decreased,
    /// amount The amount by which liquidity will be decreased,
    /// amount0Min The minimum amount of token0 that should be accounted for the burned liquidity,
    /// amount1Min The minimum amount of token1 that should be accounted for the burned liquidity,
    /// deadline The time by which the transaction must be included to effect the change
    /// @return amount0 The amount of token0 accounted to the position's tokens owed
    /// @return amount1 The amount of token1 accounted to the position's tokens owed
    function decreaseLiquidity(DecreaseLiquidityParams calldata params)
        external
        payable
        returns (uint256 amount0, uint256 amount1);

    struct CollectParams {
        uint256 tokenId;
        address recipient;
        uint128 amount0Max;
        uint128 amount1Max;
    }

    /// @notice Collects up to a maximum amount of fees owed to a specific position to the recipient
    /// @param params tokenId The ID of the NFT for which tokens are being collected,
    /// recipient The account that should receive the tokens,
    /// amount0Max The maximum amount of token0 to collect,
    /// amount1Max The maximum amount of token1 to collect
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(CollectParams calldata params) external payable returns (uint256 amount0, uint256 amount1);

    /// @notice Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens
    /// must be collected first.
    /// @param tokenId The ID of the token that is being burned
    function burn(uint256 tokenId) external payable;
}

File 34 of 46 : IPeripheryImmutableState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Immutable state
/// @notice Functions that return immutable state of the router
interface IPeripheryImmutableState {
    /// @return Returns the address of the Uniswap V3 factory
    function factory() external view returns (address);

    /// @return Returns the address of WETH9
    function WETH9() external view returns (address);
}

File 35 of 46 : IPeripheryPayments.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;

/// @title Periphery Payments
/// @notice Functions to ease deposits and withdrawals of ETH
interface IPeripheryPayments {
    /// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH.
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.
    /// @param amountMinimum The minimum amount of WETH9 to unwrap
    /// @param recipient The address receiving ETH
    function unwrapWETH9(uint256 amountMinimum, address recipient) external payable;

    /// @notice Refunds any ETH balance held by this contract to the `msg.sender`
    /// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps
    /// that use ether for the input amount
    function refundETH() external payable;

    /// @notice Transfers the full amount of a token held by this contract to recipient
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users
    /// @param token The contract address of the token which will be transferred to `recipient`
    /// @param amountMinimum The minimum amount of token required for a transfer
    /// @param recipient The destination address of the token
    function sweepToken(
        address token,
        uint256 amountMinimum,
        address recipient
    ) external payable;
}

File 36 of 46 : IPoolInitializer.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;

/// @title Creates and initializes V3 Pools
/// @notice Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that
/// require the pool to exist.
interface IPoolInitializer {
    /// @notice Creates a new pool if it does not exist, then initializes if not initialized
    /// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool
    /// @param token0 The contract address of token0 of the pool
    /// @param token1 The contract address of token1 of the pool
    /// @param fee The fee amount of the v3 pool for the specified token pair
    /// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value
    /// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary
    function createAndInitializePoolIfNecessary(
        address token0,
        address token1,
        uint24 fee,
        uint160 sqrtPriceX96
    ) external payable returns (address pool);
}

File 37 of 46 : BytesLib.sol
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * @title Solidity Bytes Arrays Utils
 * @author Gonçalo Sá <[email protected]>
 *
 * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.
 *      The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.
 */
pragma solidity >=0.5.0 <0.8.0;

library BytesLib {
    function slice(
        bytes memory _bytes,
        uint256 _start,
        uint256 _length
    ) internal pure returns (bytes memory) {
        require(_length + 31 >= _length, 'slice_overflow');
        require(_start + _length >= _start, 'slice_overflow');
        require(_bytes.length >= _start + _length, 'slice_outOfBounds');

        bytes memory tempBytes;

        assembly {
            switch iszero(_length)
                case 0 {
                    // Get a location of some free memory and store it in tempBytes as
                    // Solidity does for memory variables.
                    tempBytes := mload(0x40)

                    // The first word of the slice result is potentially a partial
                    // word read from the original array. To read it, we calculate
                    // the length of that partial word and start copying that many
                    // bytes into the array. The first word we copy will start with
                    // data we don't care about, but the last `lengthmod` bytes will
                    // land at the beginning of the contents of the new array. When
                    // we're done copying, we overwrite the full first word with
                    // the actual length of the slice.
                    let lengthmod := and(_length, 31)

                    // The multiplication in the next line is necessary
                    // because when slicing multiples of 32 bytes (lengthmod == 0)
                    // the following copy loop was copying the origin's length
                    // and then ending prematurely not copying everything it should.
                    let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)))
                    let end := add(mc, _length)

                    for {
                        // The multiplication in the next line has the same exact purpose
                        // as the one above.
                        let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start)
                    } lt(mc, end) {
                        mc := add(mc, 0x20)
                        cc := add(cc, 0x20)
                    } {
                        mstore(mc, mload(cc))
                    }

                    mstore(tempBytes, _length)

                    //update free-memory pointer
                    //allocating the array padded to 32 bytes like the compiler does now
                    mstore(0x40, and(add(mc, 31), not(31)))
                }
                //if we want a zero-length slice let's just return a zero-length array
                default {
                    tempBytes := mload(0x40)
                    //zero out the 32 bytes slice we are about to return
                    //we need to do it because Solidity does not garbage collect
                    mstore(tempBytes, 0)

                    mstore(0x40, add(tempBytes, 0x20))
                }
        }

        return tempBytes;
    }

    function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) {
        require(_start + 20 >= _start, 'toAddress_overflow');
        require(_bytes.length >= _start + 20, 'toAddress_outOfBounds');
        address tempAddress;

        assembly {
            tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000)
        }

        return tempAddress;
    }

    function toUint24(bytes memory _bytes, uint256 _start) internal pure returns (uint24) {
        require(_start + 3 >= _start, 'toUint24_overflow');
        require(_bytes.length >= _start + 3, 'toUint24_outOfBounds');
        uint24 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x3), _start))
        }

        return tempUint;
    }
}

File 38 of 46 : Path.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.6.0;

import './BytesLib.sol';

/// @title Functions for manipulating path data for multihop swaps
library Path {
    using BytesLib for bytes;

    /// @dev The length of the bytes encoded address
    uint256 private constant ADDR_SIZE = 20;
    /// @dev The length of the bytes encoded fee
    uint256 private constant FEE_SIZE = 3;

    /// @dev The offset of a single token address and pool fee
    uint256 private constant NEXT_OFFSET = ADDR_SIZE + FEE_SIZE;
    /// @dev The offset of an encoded pool key
    uint256 private constant POP_OFFSET = NEXT_OFFSET + ADDR_SIZE;
    /// @dev The minimum length of an encoding that contains 2 or more pools
    uint256 private constant MULTIPLE_POOLS_MIN_LENGTH = POP_OFFSET + NEXT_OFFSET;

    /// @notice Returns true iff the path contains two or more pools
    /// @param path The encoded swap path
    /// @return True if path contains two or more pools, otherwise false
    function hasMultiplePools(bytes memory path) internal pure returns (bool) {
        return path.length >= MULTIPLE_POOLS_MIN_LENGTH;
    }

    /// @notice Returns the number of pools in the path
    /// @param path The encoded swap path
    /// @return The number of pools in the path
    function numPools(bytes memory path) internal pure returns (uint256) {
        // Ignore the first token address. From then on every fee and token offset indicates a pool.
        return ((path.length - ADDR_SIZE) / NEXT_OFFSET);
    }

    /// @notice Decodes the first pool in path
    /// @param path The bytes encoded swap path
    /// @return tokenA The first token of the given pool
    /// @return tokenB The second token of the given pool
    /// @return fee The fee level of the pool
    function decodeFirstPool(bytes memory path)
        internal
        pure
        returns (
            address tokenA,
            address tokenB,
            uint24 fee
        )
    {
        tokenA = path.toAddress(0);
        fee = path.toUint24(ADDR_SIZE);
        tokenB = path.toAddress(NEXT_OFFSET);
    }

    /// @notice Gets the segment corresponding to the first pool in the path
    /// @param path The bytes encoded swap path
    /// @return The segment containing all data necessary to target the first pool in the path
    function getFirstPool(bytes memory path) internal pure returns (bytes memory) {
        return path.slice(0, POP_OFFSET);
    }

    /// @notice Skips a token + fee element from the buffer and returns the remainder
    /// @param path The swap path
    /// @return The remaining token + fee elements in the path
    function skipToken(bytes memory path) internal pure returns (bytes memory) {
        return path.slice(NEXT_OFFSET, path.length - NEXT_OFFSET);
    }
}

File 39 of 46 : PoolAddress.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Provides functions for deriving a pool address from the factory, tokens, and the fee
library PoolAddress {
    bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54;

    /// @notice The identifying key of the pool
    struct PoolKey {
        address token0;
        address token1;
        uint24 fee;
    }

    /// @notice Returns PoolKey: the ordered tokens with the matched fee levels
    /// @param tokenA The first token of a pool, unsorted
    /// @param tokenB The second token of a pool, unsorted
    /// @param fee The fee level of the pool
    /// @return Poolkey The pool details with ordered token0 and token1 assignments
    function getPoolKey(
        address tokenA,
        address tokenB,
        uint24 fee
    ) internal pure returns (PoolKey memory) {
        if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);
        return PoolKey({token0: tokenA, token1: tokenB, fee: fee});
    }

    /// @notice Deterministically computes the pool address given the factory and PoolKey
    /// @param factory The Uniswap V3 factory contract address
    /// @param key The PoolKey
    /// @return pool The contract address of the V3 pool
    function computeAddress(address factory, PoolKey memory key) internal pure returns (address pool) {
        require(key.token0 < key.token1);
        pool = address(
            uint256(
                keccak256(
                    abi.encodePacked(
                        hex'ff',
                        factory,
                        keccak256(abi.encode(key.token0, key.token1, key.fee)),
                        POOL_INIT_CODE_HASH
                    )
                )
            )
        );
    }
}

File 40 of 46 : LeverageZen.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity =0.7.6;

// interface
import { IController } from "squeeth-monorepo/interfaces/IController.sol";
import { IWETH9 } from "squeeth-monorepo/interfaces/IWETH9.sol";
import { IERC20 } from "openzeppelin/token/ERC20/IERC20.sol";
import { IEulerMarkets } from "./interface/IEulerMarkets.sol";
import { IEulerEToken } from "./interface/IEulerEToken.sol";
import { IEulerDToken } from "./interface/IEulerDToken.sol";
// contract
import { Ownable } from "openzeppelin/access/Ownable.sol";
// lib
import { StrategyMath } from "squeeth-monorepo/strategy/base/StrategyMath.sol";
import { UniOracle } from "./UniOracle.sol";

/**
 * Error codes
 * LB0: ETH sent is not at least ETH to deposit in Euler
 * LB1: caller is not auction address
 * LB2: auction can not be set to 0 address
 */

/**
 * @notice LeverageZen contract
 * @dev contract that interacts with leverage component (borrow and collateral on Euler)
 * @author opyn team
 */
contract LeverageZen is Ownable {
    using StrategyMath for uint256;

    /// @dev TWAP period
    uint32 internal constant TWAP = 420;
    /// @dev 1e18
    uint256 internal constant ONE = 1e18;
    /// @dev WETH decimals - USDC decimals
    uint256 internal constant WETH_DECIMALS_DIFF = 1e12;
    /// @dev target CR for our ETH collateral
    uint256 public constant TARGET_CR = 2e18; // 2 collat ratio

    /// @dev ETH:wPowerPerp Uniswap pool
    address internal immutable ethWPowerPerpPool;
    /// @dev ETH:USDC Uniswap pool
    address internal immutable ethUSDCPool;
    /// @dev wPowerPerp address
    address internal immutable wPowerPerp;
    /// @dev USDC address
    address internal immutable usdc;
    /// @dev WETH address
    address internal immutable weth;
    /// @dev euler markets module
    address internal immutable eulerMarkets;
    /// @dev euler eToken that represent the collateral asset (WETH)
    address internal immutable eToken;
    /// @dev euler dToken that represent the borrowed asset (USDC)
    address internal immutable dToken;
    /// @dev auction contract address
    address public auction;

    event AuctionRepayAndWithdrawFromLeverage(
        address indexed from, uint256 usdcToRepay, uint256 wethToWithdraw
    );
    event SetAuction(address oldAuction, address newAuction);

    event DepositAndRepayFromLeverage(
        address indexed from, uint256 wethDeposited, uint256 usdcRepaid
    );

    /**
     * @dev constructor
     * @param _euler euler address
     * @param _eulerMarkets euler markets module address
     * @param _powerTokenController wPowerPerp controller address
     */
    constructor(address _euler, address _eulerMarkets, address _powerTokenController) Ownable() {
        eulerMarkets = _eulerMarkets;
        eToken = IEulerMarkets(_eulerMarkets).underlyingToEToken(
            IController(_powerTokenController).weth()
        );
        dToken = IEulerMarkets(_eulerMarkets).underlyingToDToken(
            IController(_powerTokenController).quoteCurrency()
        );
        weth = IController(_powerTokenController).weth();
        usdc = IController(_powerTokenController).quoteCurrency();
        wPowerPerp = IController(_powerTokenController).wPowerPerp();
        ethWPowerPerpPool = IController(_powerTokenController).wPowerPerpPool();
        ethUSDCPool = IController(_powerTokenController).ethQuoteCurrencyPool();

        IERC20(IController(_powerTokenController).weth()).approve(_euler, type(uint256).max);
        IERC20(IController(_powerTokenController).quoteCurrency()).approve(
            _euler, type(uint256).max
        );

        IEulerMarkets(_eulerMarkets).enterMarket(0, IController(_powerTokenController).weth());
    }

    /**
     * @notice sets the auction implementation contract that is able to call functions to adjust debt and collateral in an auction
     * @param _auction new auction address
     */
    function setAuction(address _auction) external onlyOwner {
        require(_auction != address(0), "LB2");

        emit SetAuction(auction, _auction);

        auction = _auction;
    }

    /**
     * @notice called by the auction address to repay USDC debt and withdraw weth from Euler
     * @param _usdcToRepay amount of USDC to repay
     * @param _wethToWithdraw amount of WETH to withdraw
     */
    function auctionRepayAndWithdrawFromLeverage(uint256 _usdcToRepay, uint256 _wethToWithdraw)
        external
    {
        require(msg.sender == auction, "LB1");

        if (_usdcToRepay > 0) {
            IERC20(usdc).transferFrom(msg.sender, address(this), _usdcToRepay);
            IEulerDToken(dToken).repay(0, _usdcToRepay);
        }
        if (_wethToWithdraw > 0) {
            IEulerEToken(eToken).withdraw(0, _wethToWithdraw);
            IERC20(weth).transfer(msg.sender, _wethToWithdraw);
        }

        emit AuctionRepayAndWithdrawFromLeverage(msg.sender, _usdcToRepay, _wethToWithdraw);
    }

    /**
     * @notice called by the auction address to depost WETH in Euler or borrow USDC debt
     * @param _wethToDeposit amount of WETH to deposit
     * @param _usdcToBorrow amount of USDC to borrow
     */
    function depositAndBorrowFromLeverage(uint256 _wethToDeposit, uint256 _usdcToBorrow) external {
        require(msg.sender == auction, "LB1");

        if (_wethToDeposit > 0) {
            IERC20(weth).transferFrom(msg.sender, address(this), _wethToDeposit);
            IEulerEToken(eToken).deposit(0, _wethToDeposit);
        }
        if (_usdcToBorrow > 0) {
            IEulerDToken(dToken).borrow(0, _usdcToBorrow);
            IERC20(usdc).transfer(msg.sender, _usdcToBorrow);
        }
    }

    /**
     * @notice called by the auction address to deposit more WETH into Euler or repay USDC debt
     * @param _wethToDeposit WETH amount to deposit
     * @param _usdcToRepay USDC amount to repay
     */
    function auctionDepositAndRepayFromLeverage(uint256 _wethToDeposit, uint256 _usdcToRepay)
        external
    {
        require(msg.sender == auction, "LB1");

        if (_wethToDeposit > 0) {
            IERC20(weth).transferFrom(msg.sender, address(this), _wethToDeposit);
            IEulerEToken(eToken).deposit(0, _wethToDeposit);
        }
        if (_usdcToRepay > 0) {
            IERC20(usdc).transferFrom(msg.sender, address(this), _usdcToRepay);
            IEulerDToken(dToken).repay(0, _usdcToRepay);
        }

        emit DepositAndRepayFromLeverage(msg.sender, _wethToDeposit, _usdcToRepay);
    }

    /**
     * @notice calculate target amounts of weth collateral and usdc debt based on crab and bull state
     * @param _crabAmount amount of crab
     * @param _bullShare share of bull contract scaled to 1e18
     * @param _ethInCrab ETH collateral held through crab's vault
     * @param _wPowerPerpInCrab wPowerPerp debt owed through crab's vault
     * @param _totalCrabSupply total supply of crab token
     * @return weth to lend in Euler, usdc to borrow in Euler
     */
    function calcLeverageEthUsdc(
        uint256 _crabAmount,
        uint256 _bullShare,
        uint256 _ethInCrab,
        uint256 _wPowerPerpInCrab,
        uint256 _totalCrabSupply
    ) external view returns (uint256, uint256) {
        return _calcLeverageWethUsdc(
            _crabAmount, _bullShare, _ethInCrab, _wPowerPerpInCrab, _totalCrabSupply
        );
    }

    /**
     * @notice calculate amount of USDC debt to to repay to Euler based on amount of share of bull token
     * @param _bullShare bull share amount
     * @return USDC to repay
     */
    function calcUsdcToRepay(uint256 _bullShare) external view returns (uint256) {
        return _calcUsdcToRepay(_bullShare);
    }

    /**
     * @notice calculate amount of ETH collateral to withdraw to Euler based on amount of share of bull token
     * @param _bullShare bull share amount
     * @return WETH to withdraw
     */
    function calcWethToWithdraw(uint256 _bullShare) external view returns (uint256) {
        return _calcWethToWithdraw(_bullShare);
    }

    /**
     * @notice deposit ETH into leverage component and borrow USDC
     * @dev this function handles only the leverage component part
     * @param _crabAmount amount of crab token deposited
     * @param _bullShare amount of bull share minted
     * @param _ethInCrab eth in crab strategy
     * @param _wPowerPerpInCrab wPowerPerp debt of crab strategy
     * @param _crabTotalSupply total supply of crab tokens
     * @return ETH deposited as collateral in Euler and borrowed amount of USDC, and total ETH deposited as collateral in Euler
     */
    function _leverageDeposit(
        uint256 _crabAmount,
        uint256 _bullShare,
        uint256 _ethInCrab,
        uint256 _wPowerPerpInCrab,
        uint256 _crabTotalSupply
    ) internal returns (uint256, uint256, uint256) {
        (uint256 wethToLend, uint256 usdcToBorrow) = _calcLeverageWethUsdc(
            _crabAmount, _bullShare, _ethInCrab, _wPowerPerpInCrab, _crabTotalSupply
        );

        require(wethToLend <= msg.value, "LB0");

        _depositWethInEuler(wethToLend);
        _borrowUsdcFromEuler(usdcToBorrow);

        return (wethToLend, usdcToBorrow, IEulerEToken(eToken).balanceOfUnderlying(address(this)));
    }

    /**
     * @notice deposit weth as collateral in Euler market
     * @param _ethToDeposit amount of ETH to deposit
     */
    function _depositWethInEuler(uint256 _ethToDeposit) internal {
        IWETH9(weth).deposit{value: _ethToDeposit}();
        IEulerEToken(eToken).deposit(0, _ethToDeposit);
    }

    /**
     * @notice borrow USDC from Euler against deposited collateral
     * @param _usdcToBorrow amount of USDC to borrow
     */
    function _borrowUsdcFromEuler(uint256 _usdcToBorrow) internal {
        IEulerDToken(dToken).borrow(0, _usdcToBorrow);
    }

    /**
     * @notice repay USDC debt to euler and withdraw collateral based on the bull share amount to burn
     * @param _bullShare amount of bull share to burn
     */
    function _repayAndWithdrawFromLeverage(uint256 _bullShare)
        internal
        returns (uint256, uint256)
    {
        uint256 usdcToRepay = _calcUsdcToRepay(_bullShare);
        uint256 wethToWithdraw = _calcWethToWithdraw(_bullShare);

        IERC20(usdc).transferFrom(msg.sender, address(this), usdcToRepay);
        IEulerDToken(dToken).repay(0, usdcToRepay);
        IEulerEToken(eToken).withdraw(0, wethToWithdraw);

        IWETH9(weth).withdraw(wethToWithdraw);

        return (usdcToRepay, wethToWithdraw);
    }

    /**
     * @notice calculate target amounts of weth collateral and usdc debt based on crab and bull state
     * @param _crabAmount amount of crab
     * @param _bullShare share of bull contract scaled to 1e18
     * @param _ethInCrab ETH collateral held through crab's vault
     * @param _wPowerPerpInCrab wPowerPerp debt owed through crab's vault
     * @param _totalCrabSupply total supply of crab token
     * @return weth to lend in Euler, usdc to borrow in Euler
     */
    function _calcLeverageWethUsdc(
        uint256 _crabAmount,
        uint256 _bullShare,
        uint256 _ethInCrab,
        uint256 _wPowerPerpInCrab,
        uint256 _totalCrabSupply
    ) internal view returns (uint256, uint256) {
        uint256 wethToLend;
        {
            if (_bullShare == ONE) {
                uint256 ethUsdPrice = UniOracle._getTwap(ethUSDCPool, weth, usdc, TWAP, false);
                uint256 wPowerPerpEthPrice =
                    UniOracle._getTwap(ethWPowerPerpPool, wPowerPerp, weth, TWAP, false);
                uint256 crabUsdPrice = (
                    _ethInCrab.wmul(ethUsdPrice).sub(
                        _wPowerPerpInCrab.wmul(wPowerPerpEthPrice).wmul(ethUsdPrice)
                    )
                ).wdiv(_totalCrabSupply);
                wethToLend = TARGET_CR.wmul(_crabAmount).wmul(crabUsdPrice).wdiv(ethUsdPrice);
                uint256 usdcToBorrow =
                    wethToLend.wmul(ethUsdPrice).wdiv(TARGET_CR).div(WETH_DECIMALS_DIFF);
                return (wethToLend, usdcToBorrow);
            }
        }
        wethToLend = IEulerEToken(eToken).balanceOfUnderlying(address(this)).wmul(_bullShare).wdiv(
            ONE.sub(_bullShare)
        );
        uint256 usdcToBorrow =
            IEulerDToken(dToken).balanceOf(address(this)).wmul(_bullShare).wdiv(ONE.sub(_bullShare));
        return (wethToLend, usdcToBorrow);
    }

    /**
     * @notice calculate amount of WETH to withdraw from Euler based on share of bull token
     * @param _bullShare bull share amount
     * @return WETH to withdraw
     */
    function _calcWethToWithdraw(uint256 _bullShare) internal view returns (uint256) {
        return _bullShare.wmul(IEulerEToken(eToken).balanceOfUnderlying(address(this)));
    }

    /**
     * @notice calculate amount of USDC debt to to repay to Euler based on share of bull token
     * @param _bullShare bull share amount
     * @return USDC to repay
     */
    function _calcUsdcToRepay(uint256 _bullShare) internal view returns (uint256) {
        return _bullShare.wmul(IEulerDToken(dToken).balanceOf(address(this)));
    }
}

File 41 of 46 : UniOracle.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity =0.7.6;
pragma abicoder v2;

// interface
import "v3-core/interfaces/IUniswapV3Pool.sol";
import { IERC20Detailed } from "squeeth-monorepo/interfaces/IERC20Detailed.sol";
// lib
import "v3-periphery/libraries/Path.sol";
import "v3-periphery/libraries/PoolAddress.sol";
import "v3-core/libraries/SafeCast.sol";
import { OracleLibrary } from "squeeth-monorepo/libs/OracleLibrary.sol";
import { SafeMath } from "openzeppelin/math/SafeMath.sol";

/**
 * @notice UniOracle contract
 * @dev contract that interact with Uniswap pool
 * @author opyn team
 */
library UniOracle {
    using Path for bytes;
    using SafeCast for uint256;
    using SafeMath for uint256;

    /**
     * @notice get twap converted with base & quote token decimals
     * @dev if period is longer than the current timestamp - first timestamp stored in the pool and !_checkPeriod, this will revert with "OLD"
     * @param _pool uniswap pool address
     * @param _base base currency. to get eth/usd price, eth is base token
     * @param _quote quote currency. to get eth/usd price, usd is the quote currency
     * @param _period number of seconds in the past to start calculating time-weighted average
     * @param _checkPeriod if true, checks the maximum period and overrides it if less than period provided
     * @return price of 1 base currency in quote currency. scaled by 1e18
     */
    function _getTwap(
        address _pool,
        address _base,
        address _quote,
        uint32 _period,
        bool _checkPeriod
    ) internal view returns (uint256) {
        // if the period is already checked, request TWAP directly. Will revert if period is too long.
        if (!_checkPeriod) return _fetchTwap(_pool, _base, _quote, _period);

        // make sure the requested period < maxPeriod the pool recorded.
        uint32 maxPeriod = _getMaxPeriod(_pool);
        uint32 requestPeriod = _period > maxPeriod ? maxPeriod : _period;
        return _fetchTwap(_pool, _base, _quote, requestPeriod);
    }

    /**
     * @notice get twap converted with base & quote token decimals
     * @dev if period is longer than the current timestamp - first timestamp stored in the pool, this will revert with "OLD"
     * @param _pool uniswap pool address
     * @param _base base currency. to get eth/usd price, eth is base token
     * @param _quote quote currency. to get eth/usd price, usd is the quote currency
     * @param _period number of seconds in the past to start calculating time-weighted average
     * @return twap price which is scaled
     */
    function _fetchTwap(address _pool, address _base, address _quote, uint32 _period)
        private
        view
        returns (uint256)
    {
        int24 twapTick = OracleLibrary.consultAtHistoricTime(_pool, _period, 0);
        uint256 quoteAmountOut =
            OracleLibrary.getQuoteAtTick(twapTick, uint128(1e18), _base, _quote);

        uint8 baseDecimals = IERC20Detailed(_base).decimals();
        uint8 quoteDecimals = IERC20Detailed(_quote).decimals();
        if (baseDecimals == quoteDecimals) return quoteAmountOut;

        // if quote token has less decimals, the returned quoteAmountOut will be lower, need to scale up by decimal difference
        if (baseDecimals > quoteDecimals) {
            return quoteAmountOut.mul(10 ** (baseDecimals - quoteDecimals));
        }

        // if quote token has more decimals, the returned quoteAmountOut will be higher, need to scale down by decimal difference
        return quoteAmountOut.div(10 ** (quoteDecimals - baseDecimals));
    }

    /**
     * @notice get the max period that can be used to request twap
     * @param _pool uniswap pool address
     * @return max period can be used to request twap
     */
    function _getMaxPeriod(address _pool) private view returns (uint32) {
        IUniswapV3Pool pool = IUniswapV3Pool(_pool);
        // observationIndex: the index of the last oracle observation that was written
        // cardinality: the current maximum number of observations stored in the pool
        (,, uint16 observationIndex, uint16 cardinality,,,) = pool.slot0();

        // first observation index
        // it's safe to use % without checking cardinality = 0 because cardinality is always >= 1
        uint16 oldestObservationIndex = (observationIndex + 1) % cardinality;

        (uint32 oldestObservationTimestamp,,, bool initialized) =
            pool.observations(oldestObservationIndex);

        if (initialized) return uint32(block.timestamp) - oldestObservationTimestamp;

        // (index + 1) % cardinality is not the oldest index,
        // probably because cardinality is increased after last observation.
        // in this case, observation at index 0 should be the oldest.
        (oldestObservationTimestamp,,,) = pool.observations(0);

        return uint32(block.timestamp) - oldestObservationTimestamp;
    }
}

File 42 of 46 : ZenBullStrategy.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity =0.7.6;
pragma abicoder v2;

// interface
import { IController } from "squeeth-monorepo/interfaces/IController.sol";
import { ICrabStrategyV2 } from "./interface/ICrabStrategyV2.sol";
import { IERC20 } from "openzeppelin/token/ERC20/IERC20.sol";
import { IWETH9 } from "squeeth-monorepo/interfaces/IWETH9.sol";
// contract
import { ERC20 } from "openzeppelin/token/ERC20/ERC20.sol";
import { LeverageZen } from "./LeverageZen.sol";
// lib
import { Address } from "openzeppelin/utils/Address.sol";
import { StrategyMath } from "squeeth-monorepo/strategy/base/StrategyMath.sol";
import { VaultLib } from "squeeth-monorepo/libs/VaultLib.sol";

/**
 * Error codes
 * BS1: Can't receive ETH from this sender
 * BS2: Strategy cap reached max
 * BS3: RedeemShortShutdown must be called first
 * BS4: Emergency shutdown contract needs to initiate the shutdownRepayAndWithdraw call
 * BS5: Can't farm token
 * BS6: Invalid shutdownContract address set
 * BS7: wPowerPerp contract has been shutdown
 * BS8: Caller is not auction address
 * BS9: deposited amount less than minimum
 * BS10: Remaining amount of bull token should be more than minimum or zero
 * BS11: Invalid receiver address
 * BS12: Strategy is shutdown
 */

/**
 * @notice ZenBullStrategy contract
 * @author opyn team
 */
contract ZenBullStrategy is ERC20, LeverageZen {
    using StrategyMath for uint256;
    using Address for address payable;

    /// @dev amount of crab token owned by bull strategy
    uint256 private _crabBalance;
    /// @dev crab contract address
    address public immutable crab;
    /// @dev powerToken controller
    address public immutable powerTokenController;
    /// @dev public emergency shutdown contract
    address public shutdownContract;
    /// @dev the cap in ETH for the strategy, above which deposits will be rejected
    uint256 public strategyCap;
    /// @dev set to true when redeemShortShutdown has been called
    bool public hasRedeemedInShutdown;

    event Withdraw(
        address indexed to,
        uint256 bullAmount,
        uint256 crabToRedeem,
        uint256 wPowerPerpToRedeem,
        uint256 usdcToRepay,
        uint256 wethToWithdraw
    );
    event Deposit(address indexed from, uint256 crabAmount, uint256 wethLent, uint256 usdcBorrowed);
    event SetCap(uint256 oldCap, uint256 newCap);
    event RedeemCrabAndWithdrawEth(
        uint256 indexed crabToRedeem, uint256 wPowerPerpRedeemed, uint256 wethBalanceReturned
    );
    event SetShutdownContract(address oldShutdownContract, address newShutdownContract);
    event ShutdownRepayAndWithdraw(
        uint256 wethToUniswap, uint256 shareToUnwind, uint256 crabToRedeem
    );
    event Farm(address indexed asset, address indexed receiver);
    event DepositEthIntoCrab(uint256 ethToDeposit);
    event WithdrawShutdown(address indexed withdrawer, uint256 bullAmount, uint256 ethToReceive);

    /**
     * @notice constructor for BullStrategy
     * @param _crab crab address
     * @param _powerTokenController wPowerPerp Controller address
     * @param _euler euler address
     * @param _eulerMarketsModule euler markets module address
     */

    constructor(
        address _crab,
        address _powerTokenController,
        address _euler,
        address _eulerMarketsModule
    )
        ERC20("Zen Bull Strategy", "ZenBull")
        LeverageZen(_euler, _eulerMarketsModule, _powerTokenController)
    {
        crab = _crab;
        powerTokenController = _powerTokenController;
        IERC20(IController(_powerTokenController).wPowerPerp()).approve(_crab, type(uint256).max);
    }

    /**
     * @notice receive function to allow ETH transfer to this contract
     */
    receive() external payable {
        require(msg.sender == weth || msg.sender == address(crab), "BS1");
    }

    /**
     * @notice withdraw assets transfered directly to this contract
     * @dev can only be called by owner
     * @param _asset asset address
     * @param _receiver receiver address
     */
    function farm(address _asset, address _receiver) external onlyOwner {
        require(!IController(powerTokenController).isShutDown(), "BS7");
        require(!hasRedeemedInShutdown, "BS12");
        require((_asset != crab) && (_asset != eToken) && (_asset != dToken), "BS5");
        require(_receiver != address(0), "BS11");

        if (_asset == address(0)) {
            payable(_receiver).sendValue(address(this).balance);
        } else {
            IERC20(_asset).transfer(_receiver, IERC20(_asset).balanceOf(address(this)));
        }

        emit Farm(_asset, _receiver);
    }

    /**
     * @notice set strategy cap which is checked on deposits and compared against the collateral in Euler
     * @param _cap strategy cap
     */
    function setCap(uint256 _cap) external onlyOwner {
        emit SetCap(strategyCap, _cap);

        strategyCap = _cap;
    }

    /**
     * @notice set shutdown contract that can be used to unwind the strategy if WPowerPerp controller contract is shut down
     * @param _shutdownContract shutdown contract address
     */
    function setShutdownContract(address _shutdownContract) external onlyOwner {
        require(_shutdownContract != address(0), "BS6");

        emit SetShutdownContract(shutdownContract, _shutdownContract);

        shutdownContract = _shutdownContract;
    }

    /**
     * @notice deposit to crab: deposits crab and ETH, receives USDC, wPowerPerp and Bull token
     * @param _crabAmount amount of crab token to deposit
     */
    function deposit(uint256 _crabAmount) external payable {
        require(!IController(powerTokenController).isShutDown(), "BS7");

        IERC20(crab).transferFrom(msg.sender, address(this), _crabAmount);
        uint256 crabBalance = _increaseCrabBalance(_crabAmount);

        uint256 share = ONE;

        if (totalSupply() == 0) {
            _mint(msg.sender, _crabAmount);
        } else {
            share = _crabAmount.wdiv(crabBalance);
            uint256 bullToMint = share.wmul(totalSupply()).wdiv(ONE.sub(share));
            _mint(msg.sender, bullToMint);
        }

        require(totalSupply() > 1e14, "BS9");

        (uint256 ethInCrab, uint256 wPowerPerpInCrab) = _getCrabVaultDetails();
        // deposit eth into leverage component and borrow USDC
        (uint256 wethLent, uint256 usdcBorrowed, uint256 _totalWethInEuler) = _leverageDeposit(
            _crabAmount, share, ethInCrab, wPowerPerpInCrab, IERC20(crab).totalSupply()
        );

        require(_totalWethInEuler <= strategyCap, "BS2");

        // transfer borrowed USDC to depositor
        IERC20(usdc).transfer(msg.sender, usdcBorrowed);

        // refund unused ETH
        payable(msg.sender).sendValue(address(this).balance);

        emit Deposit(msg.sender, _crabAmount, wethLent, usdcBorrowed);
    }

    /**
     * @notice withdraw from crab: repay wPowerPerp, USDC and Bull token and receive ETH
     * @param _bullAmount amount of Bull token to redeem
     */
    function withdraw(uint256 _bullAmount) external {
        uint256 share = _bullAmount.wdiv(totalSupply());
        uint256 crabToRedeem = share.wmul(_crabBalance);
        uint256 crabTotalSupply = IERC20(crab).totalSupply();
        (, uint256 wPowerPerpInCrab) = _getCrabVaultDetails();
        uint256 wPowerPerpToRedeem = crabToRedeem.wmul(wPowerPerpInCrab).wdiv(crabTotalSupply);

        IERC20(wPowerPerp).transferFrom(msg.sender, address(this), wPowerPerpToRedeem);

        _burn(msg.sender, _bullAmount);

        require(totalSupply() == 0 || totalSupply() > 1e14, "BS10");

        _decreaseCrabBalance(crabToRedeem);
        ICrabStrategyV2(crab).withdraw(crabToRedeem);

        (uint256 usdcToRepay,) = _repayAndWithdrawFromLeverage(share);

        emit Withdraw(
            msg.sender,
            _bullAmount,
            crabToRedeem,
            wPowerPerpToRedeem,
            usdcToRepay,
            address(this).balance
            );

        payable(msg.sender).sendValue(address(this).balance);
    }

    /**
     * @notice auction contract redeems some crab to withdraw eth
     * @param _crabToRedeem amount of crab token redeemed by auction
     * @param _wPowerPerpToRedeem amount of wPowerPerp sent back for crab redeem
     */
    function redeemCrabAndWithdrawWEth(uint256 _crabToRedeem, uint256 _wPowerPerpToRedeem)
        external
        returns (uint256)
    {
        require(msg.sender == auction, "BS8");

        IERC20(wPowerPerp).transferFrom(msg.sender, address(this), _wPowerPerpToRedeem);

        uint256 crabBalancebefore = IERC20(crab).balanceOf(address(this));

        ICrabStrategyV2(crab).withdraw(_crabToRedeem);

        _decreaseCrabBalance(crabBalancebefore.sub(IERC20(crab).balanceOf(address(this))));

        uint256 wethBalanceToReturn = address(this).balance;
        IWETH9(weth).deposit{value: wethBalanceToReturn}();
        IWETH9(weth).transfer(msg.sender, wethBalanceToReturn);

        emit RedeemCrabAndWithdrawEth(_crabToRedeem, _wPowerPerpToRedeem, wethBalanceToReturn);

        return wethBalanceToReturn;
    }

    /**
     * @notice auction contract deposits into crab and receives some wPowerPerp
     * @param _ethToDeposit amount of eth to deposit
     */
    function depositEthIntoCrab(uint256 _ethToDeposit) external {
        require(msg.sender == auction, "BS8");

        IWETH9(weth).transferFrom(msg.sender, address(this), _ethToDeposit);
        IWETH9(weth).withdraw(_ethToDeposit);

        uint256 crabBalancebefore = IERC20(crab).balanceOf(address(this));

        ICrabStrategyV2(crab).deposit{value: _ethToDeposit}();

        _increaseCrabBalance(IERC20(crab).balanceOf(address(this)).sub(crabBalancebefore));

        IERC20(wPowerPerp).transfer(msg.sender, IERC20(wPowerPerp).balanceOf(address(this)));

        emit DepositEthIntoCrab(_ethToDeposit);
    }

    /**
     * @notice close out Euler leverage position if contracts have been shut down
     * @param wethToUniswap weth to repay to uniswap via auction contract
     * @param shareToUnwind share of crab to redeem scaled by 1e18
     */
    function shutdownRepayAndWithdraw(uint256 wethToUniswap, uint256 shareToUnwind) external {
        require(msg.sender == shutdownContract, "BS4");
        if (shareToUnwind == ONE) {
            hasRedeemedInShutdown = true;
        }

        uint256 crabToRedeem = shareToUnwind.wmul(ICrabStrategyV2(crab).balanceOf(address(this)));
        _decreaseCrabBalance(crabToRedeem);
        ICrabStrategyV2(crab).withdrawShutdown(crabToRedeem);

        _repayAndWithdrawFromLeverage(shareToUnwind);
        IWETH9(weth).deposit{value: wethToUniswap}();
        IWETH9(weth).transfer(shutdownContract, wethToUniswap);

        emit ShutdownRepayAndWithdraw(wethToUniswap, shareToUnwind, crabToRedeem);
    }

    /**
     * @notice allows a user to withdraw their share of ETH if WPowerPerp controller contracts have been shut down
     * @dev redeemShortShutdown must have been called first
     * @param _bullAmount bull amount to withdraw
     */
    function withdrawShutdown(uint256 _bullAmount) external {
        require(hasRedeemedInShutdown, "BS3");

        uint256 share = _bullAmount.wdiv(totalSupply());
        uint256 ethToReceive = share.wmul(address(this).balance);

        _burn(msg.sender, _bullAmount);

        payable(msg.sender).sendValue(ethToReceive);

        emit WithdrawShutdown(msg.sender, _bullAmount, ethToReceive);
    }

    /**
     * @notice return the internal accounting of the bull strategy's crab balance
     * @return crab token amount hold by the bull strategy
     */
    function getCrabBalance() external view returns (uint256) {
        return _crabBalance;
    }

    /**
     * @notice get crab vault debt and collateral details
     * @return vault eth collateral, vault wPowerPerp debt
     */
    function getCrabVaultDetails() external view returns (uint256, uint256) {
        return _getCrabVaultDetails();
    }

    /**
     * @notice increase internal accounting of bull stragtegy's crab balance
     * @param _crabAmount crab amount
     */
    function _increaseCrabBalance(uint256 _crabAmount) private returns (uint256) {
        _crabBalance = _crabBalance.add(_crabAmount);
        return _crabBalance;
    }

    /**
     * @notice decrease internal accounting of bull strategy's crab balance
     * @param _crabAmount crab amount
     */
    function _decreaseCrabBalance(uint256 _crabAmount) private returns (uint256) {
        _crabBalance = _crabBalance.sub(_crabAmount);
        return _crabBalance;
    }

    /**
     * @notice get crab vault debt and collateral details
     * @return vault eth collateral, vault wPowerPerp debt
     */
    function _getCrabVaultDetails() internal view returns (uint256, uint256) {
        VaultLib.Vault memory strategyVault =
            IController(powerTokenController).vaults(ICrabStrategyV2(crab).vaultId());

        return (strategyVault.collateralAmount, strategyVault.shortAmount);
    }
}

File 43 of 46 : ICrabStrategyV2.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.7.6;

import { IERC20 } from "openzeppelin/token/ERC20/IERC20.sol";

interface ICrabStrategyV2 is IERC20 {
    function deposit() external payable;
    function weth() external view returns (address);
    function wPowerPerp() external view returns (address);
    function vaultId() external view returns (uint256);
    function withdraw(uint256 _crabAmount) external;
    function withdrawShutdown(uint256 _crabAmount) external;
}

File 44 of 46 : IEulerDToken.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.7.6;

interface IEulerDToken {
    function balanceOf(address account) external view returns (uint256);
    function borrow(uint256 subAccountId, uint256 amount) external;
    function repay(uint256 subAccountId, uint256 amount) external;
}

File 45 of 46 : IEulerEToken.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.7.6;

interface IEulerEToken {
    function balanceOf(address account) external view returns (uint256);
    function balanceOfUnderlying(address account) external view returns (uint256);
    function deposit(uint256 subAccountId, uint256 amount) external;
    function withdraw(uint256 subAccountId, uint256 amount) external;
}

File 46 of 46 : IEulerMarkets.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.7.6;

interface IEulerMarkets {
    function underlyingToEToken(address underlying) external view returns (address);
    function underlyingToDToken(address underlying) external view returns (address);
    function enterMarket(uint256 subAccountId, address newMarket) external;
}

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "@uniswap/v3-core/=lib/v3-core/",
    "@uniswap/v3-periphery/=lib/v3-periphery/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "solenv/=lib/solenv/src/",
    "solidity-stringutils/=lib/solenv/lib/solidity-stringutils/src/",
    "squeeth-monorepo/=lib/squeeth-monorepo/packages/hardhat/contracts/",
    "v3-core/=lib/v3-core/contracts/",
    "v3-periphery/=lib/v3-periphery/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 1500
  },
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "istanbul",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_crab","type":"address"},{"internalType":"address","name":"_powerTokenController","type":"address"},{"internalType":"address","name":"_euler","type":"address"},{"internalType":"address","name":"_eulerMarketsModule","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"usdcToRepay","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wethToWithdraw","type":"uint256"}],"name":"AuctionRepayAndWithdrawFromLeverage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"crabAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wethLent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"usdcBorrowed","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"wethDeposited","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"usdcRepaid","type":"uint256"}],"name":"DepositAndRepayFromLeverage","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"ethToDeposit","type":"uint256"}],"name":"DepositEthIntoCrab","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"}],"name":"Farm","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":"uint256","name":"crabToRedeem","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wPowerPerpRedeemed","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wethBalanceReturned","type":"uint256"}],"name":"RedeemCrabAndWithdrawEth","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAuction","type":"address"},{"indexed":false,"internalType":"address","name":"newAuction","type":"address"}],"name":"SetAuction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldCap","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCap","type":"uint256"}],"name":"SetCap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldShutdownContract","type":"address"},{"indexed":false,"internalType":"address","name":"newShutdownContract","type":"address"}],"name":"SetShutdownContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"wethToUniswap","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shareToUnwind","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"crabToRedeem","type":"uint256"}],"name":"ShutdownRepayAndWithdraw","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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"bullAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"crabToRedeem","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wPowerPerpToRedeem","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"usdcToRepay","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wethToWithdraw","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"withdrawer","type":"address"},{"indexed":false,"internalType":"uint256","name":"bullAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToReceive","type":"uint256"}],"name":"WithdrawShutdown","type":"event"},{"inputs":[],"name":"TARGET_CR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"auction","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wethToDeposit","type":"uint256"},{"internalType":"uint256","name":"_usdcToRepay","type":"uint256"}],"name":"auctionDepositAndRepayFromLeverage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_usdcToRepay","type":"uint256"},{"internalType":"uint256","name":"_wethToWithdraw","type":"uint256"}],"name":"auctionRepayAndWithdrawFromLeverage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_crabAmount","type":"uint256"},{"internalType":"uint256","name":"_bullShare","type":"uint256"},{"internalType":"uint256","name":"_ethInCrab","type":"uint256"},{"internalType":"uint256","name":"_wPowerPerpInCrab","type":"uint256"},{"internalType":"uint256","name":"_totalCrabSupply","type":"uint256"}],"name":"calcLeverageEthUsdc","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bullShare","type":"uint256"}],"name":"calcUsdcToRepay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bullShare","type":"uint256"}],"name":"calcWethToWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crab","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"_crabAmount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wethToDeposit","type":"uint256"},{"internalType":"uint256","name":"_usdcToBorrow","type":"uint256"}],"name":"depositAndBorrowFromLeverage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ethToDeposit","type":"uint256"}],"name":"depositEthIntoCrab","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"farm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCrabBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCrabVaultDetails","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasRedeemedInShutdown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"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":[],"name":"powerTokenController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_crabToRedeem","type":"uint256"},{"internalType":"uint256","name":"_wPowerPerpToRedeem","type":"uint256"}],"name":"redeemCrabAndWithdrawWEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_auction","type":"address"}],"name":"setAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_shutdownContract","type":"address"}],"name":"setShutdownContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shutdownContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"wethToUniswap","type":"uint256"},{"internalType":"uint256","name":"shareToUnwind","type":"uint256"}],"name":"shutdownRepayAndWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategyCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_bullAmount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bullAmount","type":"uint256"}],"name":"withdrawShutdown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101c06040523480156200001257600080fd5b506040516200646838038062006468833981016040819052620000359162000a96565b60408051808201825260118152705a656e2042756c6c20537472617465677960781b60208083019182528351808501909452600784526616995b909d5b1b60ca1b90840152815185938593889390926200009291600391620009a9565b508051620000a8906004906020840190620009a9565b50506005805460ff19166012179055506000620000c4620009a5565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350816001600160a01b0316610120816001600160a01b031660601b81525050816001600160a01b03166389488749826001600160a01b0316633fc8cef36040518163ffffffff1660e01b815260040160206040518083038186803b1580156200018157600080fd5b505afa15801562000196573d6000803e3d6000fd5b505050506040513d6020811015620001ad57600080fd5b5051604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152516024808301926020929190829003018186803b158015620001f557600080fd5b505afa1580156200020a573d6000803e3d6000fd5b505050506040513d60208110156200022157600080fd5b505160601b6001600160601b031916610140526040805163412b25e560e11b815290516001600160a01b0384811692631b30058292918516916382564bca91600480820192602092909190829003018186803b1580156200028157600080fd5b505afa15801562000296573d6000803e3d6000fd5b505050506040513d6020811015620002ad57600080fd5b5051604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152516024808301926020929190829003018186803b158015620002f557600080fd5b505afa1580156200030a573d6000803e3d6000fd5b505050506040513d60208110156200032157600080fd5b505160601b6001600160601b0319166101605260408051633fc8cef360e01b815290516001600160a01b03831691633fc8cef3916004808301926020929190829003018186803b1580156200037557600080fd5b505afa1580156200038a573d6000803e3d6000fd5b505050506040513d6020811015620003a157600080fd5b505160601b6001600160601b031916610100526040805163412b25e560e11b815290516001600160a01b038316916382564bca916004808301926020929190829003018186803b158015620003f557600080fd5b505afa1580156200040a573d6000803e3d6000fd5b505050506040513d60208110156200042157600080fd5b505160601b6001600160601b03191660e052604080516307f07b1360e41b815290516001600160a01b03831691637f07b130916004808301926020929190829003018186803b1580156200047457600080fd5b505afa15801562000489573d6000803e3d6000fd5b505050506040513d6020811015620004a057600080fd5b505160601b6001600160601b03191660c0526040805163b707ab9960e01b815290516001600160a01b0383169163b707ab99916004808301926020929190829003018186803b158015620004f357600080fd5b505afa15801562000508573d6000803e3d6000fd5b505050506040513d60208110156200051f57600080fd5b505160601b6001600160601b03191660805260408051632234601160e11b815290516001600160a01b03831691634468c022916004808301926020929190829003018186803b1580156200057257600080fd5b505afa15801562000587573d6000803e3d6000fd5b505050506040513d60208110156200059e57600080fd5b505160601b6001600160601b03191660a05260408051633fc8cef360e01b815290516001600160a01b03831691633fc8cef3916004808301926020929190829003018186803b158015620005f157600080fd5b505afa15801562000606573d6000803e3d6000fd5b505050506040513d60208110156200061d57600080fd5b50516040805163095ea7b360e01b81526001600160a01b03868116600483015260001960248301529151919092169163095ea7b39160448083019260209291908290030181600087803b1580156200067457600080fd5b505af115801562000689573d6000803e3d6000fd5b505050506040513d6020811015620006a057600080fd5b50506040805163412b25e560e11b815290516001600160a01b038316916382564bca916004808301926020929190829003018186803b158015620006e357600080fd5b505afa158015620006f8573d6000803e3d6000fd5b505050506040513d60208110156200070f57600080fd5b50516040805163095ea7b360e01b81526001600160a01b03868116600483015260001960248301529151919092169163095ea7b39160448083019260209291908290030181600087803b1580156200076657600080fd5b505af11580156200077b573d6000803e3d6000fd5b505050506040513d60208110156200079257600080fd5b505060408051633fc8cef360e01b815290516001600160a01b03808516926373f0b43792600092861691633fc8cef3916004808301926020929190829003018186803b158015620007e257600080fd5b505afa158015620007f7573d6000803e3d6000fd5b505050506040513d60208110156200080e57600080fd5b5051604080516001600160e01b031960e086901b16815260048101939093526001600160a01b03909116602483015251604480830192600092919082900301818387803b1580156200085f57600080fd5b505af115801562000874573d6000803e3d6000fd5b5050506001600160601b0319606089811b82166101805288901b166101a0525050604080516307f07b1360e41b815290516001600160a01b0387169350637f07b13092506004808301926020929190829003018186803b158015620008d857600080fd5b505afa158015620008ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000913919062000a72565b6001600160a01b031663095ea7b3856000196040518363ffffffff1660e01b81526004016200094492919062000b14565b602060405180830381600087803b1580156200095f57600080fd5b505af115801562000974573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200099a919062000af2565b505050505062000b2d565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620009e1576000855562000a2c565b82601f10620009fc57805160ff191683800117855562000a2c565b8280016001018555821562000a2c579182015b8281111562000a2c57825182559160200191906001019062000a0f565b5062000a3a92915062000a3e565b5090565b5b8082111562000a3a576000815560010162000a3f565b80516001600160a01b038116811462000a6d57600080fd5b919050565b60006020828403121562000a84578081fd5b62000a8f8262000a55565b9392505050565b6000806000806080858703121562000aac578283fd5b62000ab78562000a55565b935062000ac76020860162000a55565b925062000ad76040860162000a55565b915062000ae76060860162000a55565b905092959194509250565b60006020828403121562000b04578081fd5b8151801515811462000a8f578182fd5b6001600160a01b03929092168252602082015260400190565b60805160601c60a05160601c60c05160601c60e05160601c6101005160601c6101205160601c6101405160601c6101605160601c6101805160601c6101a05160601c6157a262000cc6600039806108f9528061107452806120aa52806133285250806102e652806109cc5280610cda5280610e9c528061109852806116aa528061173452806117af5280611a795280611b56528061216f52806122b852806126b8528061275752806127c65280613357525080610a47528061128f52806120025280612ba9528061368952806138535280613c2452806141c5525080610a09528061131b5280611ed55280612b1d528061370c52806138f85280613b685280613e135280614113525050806102b4528061139b5280611587528061162a5280611bca5280611c535280611e37528061287452806128fa5280612a7f528061376b5280613a085280613a9d528061409f5250806111f15280611f64528061238b5280612c2952806135ea5280613a29525080610da9528061186c52806126125280613a7c5250806139e7525080613a5b52506157a26000f3fe6080604052600436106102a45760003560e01c80637d9f6db51161016e578063b8c6f579116100cb578063dd62ed3e1161007f578063efdc6a2211610064578063efdc6a2214610765578063f23b438514610785578063f2fde38b1461079a5761032f565b8063dd62ed3e14610725578063ed678017146107455761032f565b8063d22dbc59116100b0578063d22dbc59146106db578063d3411c21146106f0578063d48540a8146107105761032f565b8063b8c6f579146106a6578063cae74029146106c65761032f565b8063a457c2d711610122578063a9c0b93411610107578063a9c0b9341461065e578063b0b6fc4c1461067e578063b6b55f25146106935761032f565b8063a457c2d71461061e578063a9059cbb1461063e5761032f565b806395d89b411161015357806395d89b41146105bb5780639c74dc97146105d0578063a0a47596146105f05761032f565b80637d9f6db5146105915780638da5cb5b146105a65761032f565b806339bbd9041161021c5780635b1a85c8116101d057806370a08231116101b557806370a082311461053c578063715018a61461055c578063727203f7146105715761032f565b80635b1a85c8146104fc5780636b2963141461051c5761032f565b80633dcb0c5d116102015780633dcb0c5d146104b25780634285512d146104c757806347786d37146104dc5761032f565b806339bbd904146104725780633d3a62ee146104925761032f565b80631a57a4b3116102735780632e1a7d4d116102585780632e1a7d4d14610410578063313ce5671461043057806339509351146104525761032f565b80631a57a4b3146103d057806323b872dd146103f05761032f565b806306fdde0314610334578063095ea7b31461035f57806312132c001461038c57806318160ddd146103ae5761032f565b3661032f57336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806103085750336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016145b61032d5760405162461bcd60e51b81526004016103249061544f565b60405180910390fd5b005b600080fd5b34801561034057600080fd5b506103496107ba565b6040516103569190615244565b60405180910390f35b34801561036b57600080fd5b5061037f61037a366004614f4e565b610850565b6040516103569190615230565b34801561039857600080fd5b506103a161086e565b60405161035691906151c5565b3480156103ba57600080fd5b506103c361087d565b604051610356919061523b565b3480156103dc57600080fd5b5061032d6103eb366004614ed6565b610883565b3480156103fc57600080fd5b5061037f61040b366004614f0e565b610c1f565b34801561041c57600080fd5b5061032d61042b3660046150c3565b610ca7565b34801561043c57600080fd5b50610445610f6d565b6040516103569190615581565b34801561045e57600080fd5b5061037f61046d366004614f4e565b610f76565b34801561047e57600080fd5b506103c361048d3660046150c3565b610fc4565b34801561049e57600080fd5b5061032d6104ad3660046150c3565b610fd7565b3480156104be57600080fd5b506103a1611072565b3480156104d357600080fd5b506103a1611096565b3480156104e857600080fd5b5061032d6104f73660046150c3565b6110ba565b34801561050857600080fd5b506103c36105173660046150c3565b61116e565b34801561052857600080fd5b5061032d6105373660046150f3565b611179565b34801561054857600080fd5b506103c3610557366004614eba565b611450565b34801561056857600080fd5b5061032d61146b565b34801561057d57600080fd5b5061032d61058c3660046150c3565b611546565b34801561059d57600080fd5b506103a16119a6565b3480156105b257600080fd5b506103a16119b5565b3480156105c757600080fd5b506103496119c9565b3480156105dc57600080fd5b5061032d6105eb3660046150f3565b611a2a565b3480156105fc57600080fd5b5061061061060b366004615114565b611d24565b60405161035692919061553a565b34801561062a57600080fd5b5061037f610639366004614f4e565b611d43565b34801561064a57600080fd5b5061037f610659366004614f4e565b611dab565b34801561066a57600080fd5b5061032d6106793660046150f3565b611dbf565b34801561068a57600080fd5b506103c361209c565b61032d6106a13660046150c3565b6120a8565b3480156106b257600080fd5b5061032d6106c1366004614eba565b61246e565b3480156106d257600080fd5b506103c36125bf565b3480156106e757600080fd5b5061037f6125c5565b3480156106fc57600080fd5b506103c361070b3660046150f3565b6125ce565b34801561071c57600080fd5b506106106129c9565b34801561073157600080fd5b506103c3610740366004614ed6565b6129dc565b34801561075157600080fd5b5061032d6107603660046150f3565b612a07565b34801561077157600080fd5b5061032d610780366004614eba565b612ca4565b34801561079157600080fd5b506103c3612dbf565b3480156107a657600080fd5b5061032d6107b5366004614eba565b612dc5565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061086461085d612efc565b8484612f00565b5060015b92915050565b6008546001600160a01b031681565b60025490565b61088b612efc565b6001600160a01b031661089c6119b5565b6001600160a01b0316146108f7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ff9475256040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561095257600080fd5b505af1158015610966573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098a9190614f79565b156109a75760405162461bcd60e51b8152600401610324906153e1565b600a5460ff16156109ca5760405162461bcd60e51b8152600401610324906154bd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614158015610a3e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015610a7c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b610a985760405162461bcd60e51b815260040161032490615305565b6001600160a01b038116610abe5760405162461bcd60e51b8152600401610324906154f4565b6001600160a01b038216610ae457610adf6001600160a01b03821647612fec565b610bdb565b6040516370a0823160e01b81526001600160a01b0383169063a9059cbb90839083906370a0823190610b1a9030906004016151c5565b60206040518083038186803b158015610b3257600080fd5b505afa158015610b46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6a91906150db565b6040518363ffffffff1660e01b8152600401610b879291906151fd565b602060405180830381600087803b158015610ba157600080fd5b505af1158015610bb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd99190614f79565b505b806001600160a01b0316826001600160a01b03167f48e432392da6b1f166942a95cb39a5eeffb983e1209c48b724d10b6db7eaacf460405160405180910390a35050565b6000610c2c8484846130d6565b610c9c84610c38612efc565b610c97856040518060600160405280602881526020016156b6602891396001600160a01b038a16600090815260016020526040812090610c76612efc565b6001600160a01b031681526020810191909152604001600020549190613231565b612f00565b5060015b9392505050565b6000610cbb610cb461087d565b83906132c8565b90506000610cd4600754836132f990919063ffffffff16565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d3157600080fd5b505afa158015610d45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6991906150db565b90506000610d75613321565b915060009050610d8f83610d8986856132f9565b906132c8565b6040516323b872dd60e01b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906323b872dd90610de2903390309086906004016151d9565b602060405180830381600087803b158015610dfc57600080fd5b505af1158015610e10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e349190614f79565b50610e3f3387613488565b610e4761087d565b1580610e5f5750655af3107a4000610e5d61087d565b115b610e7b5760405162461bcd60e51b815260040161032490615486565b610e8484613584565b50604051632e1a7d4d60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690632e1a7d4d90610ed190879060040161523b565b600060405180830381600087803b158015610eeb57600080fd5b505af1158015610eff573d6000803e3d6000fd5b505050506000610f0e8661359f565b509050336001600160a01b03167fb7ee00edafdb5db3a1b52a5789a6b562eb48268842d113dbfe860b6f86e5f5958887858547604051610f5295949392919061555e565b60405180910390a2610f643347612fec565b50505050505050565b60055460ff1690565b6000610864610f83612efc565b84610c978560016000610f94612efc565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906137f2565b6000610fcf8261384c565b90505b919050565b600a5460ff16610ff95760405162461bcd60e51b815260040161032490615373565b6000611006610cb461087d565b9050600061101482476132f9565b90506110203384613488565b61102a3382612fec565b336001600160a01b03167fe9ab9870b9093d99f8e981919f65ad09b7ae90ff80f1031639af9e0357eb9ed6848360405161106592919061553a565b60405180910390a2505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6110c2612efc565b6001600160a01b03166110d36119b5565b6001600160a01b03161461112e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b7fdbbbb176683582b710ef3349793b8d62658724a9d9b54deccf193c4b0aa90c4c6009548260405161116192919061553a565b60405180910390a1600955565b6000610fcf826138f1565b6006546001600160a01b031633146111be576040805162461bcd60e51b81526020600482015260036024820152624c423160e81b604482015290519081900360640190fd5b81156112eb57604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd9160648083019260209291908290030181600087803b15801561123957600080fd5b505af115801561124d573d6000803e3d6000fd5b505050506040513d602081101561126357600080fd5b50506040805163d8aed14560e01b81526000600482018190526024820185905291516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169263d8aed145926044808201939182900301818387803b1580156112d257600080fd5b505af11580156112e6573d6000803e3d6000fd5b505050505b80156114125760408051630441a3e760e41b81526000600482018190526024820184905291516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169263441a3e70926044808201939182900301818387803b15801561135e57600080fd5b505af1158015611372573d6000803e3d6000fd5b50506040805163a9059cbb60e01b81523360048201526024810185905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016935063a9059cbb925060448083019260209291908290030181600087803b1580156113e557600080fd5b505af11580156113f9573d6000803e3d6000fd5b505050506040513d602081101561140f57600080fd5b50505b6040805183815260208101839052815133927f0e7e8abd3a81eb1e36dd3bb07f2c677fd9ec366278c0928eb38687da853ccd07928290030190a25050565b6001600160a01b031660009081526020819052604090205490565b611473612efc565b6001600160a01b03166114846119b5565b6001600160a01b0316146114df576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b6006546001600160a01b031633146115705760405162461bcd60e51b8152600401610324906153aa565b6040516323b872dd60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906323b872dd906115c0903390309086906004016151d9565b602060405180830381600087803b1580156115da57600080fd5b505af11580156115ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116129190614f79565b50604051632e1a7d4d60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690632e1a7d4d9061165f90849060040161523b565b600060405180830381600087803b15801561167957600080fd5b505af115801561168d573d6000803e3d6000fd5b50506040516370a0823160e01b8152600092506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691506370a08231906116e09030906004016151c5565b60206040518083038186803b1580156116f857600080fd5b505afa15801561170c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173091906150db565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561178d57600080fd5b505af11580156117a1573d6000803e3d6000fd5b505050505061185461184f827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016117f991906151c5565b60206040518083038186803b15801561181157600080fd5b505afa158015611825573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184991906150db565b90613963565b6139bb565b506040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb90339083906370a08231906118ab9030906004016151c5565b60206040518083038186803b1580156118c357600080fd5b505afa1580156118d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fb91906150db565b6040518363ffffffff1660e01b81526004016119189291906151fd565b602060405180830381600087803b15801561193257600080fd5b505af1158015611946573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196a9190614f79565b507f3c7e43a84c111fc1eb404e97b9f4dcb0f0b96f7cf657973565fd1f599556468a8260405161199a919061523b565b60405180910390a15050565b6006546001600160a01b031681565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108465780601f1061081b57610100808354040283529160200191610846565b6008546001600160a01b03163314611a545760405162461bcd60e51b8152600401610324906152ce565b670de0b6b3a7640000811415611a7257600a805460ff191660011790555b6000611b1a7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401611ac391906151c5565b60206040518083038186803b158015611adb57600080fd5b505afa158015611aef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1391906150db565b83906132f9565b9050611b2581613584565b506040517f3d3a62ee0000000000000000000000000000000000000000000000000000000081526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690633d3a62ee90611b8b90849060040161523b565b600060405180830381600087803b158015611ba557600080fd5b505af1158015611bb9573d6000803e3d6000fd5b50505050611bc68261359f565b50507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b158015611c2357600080fd5b505af1158015611c37573d6000803e3d6000fd5b505060085460405163a9059cbb60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116955063a9059cbb9450611c919350919091169087906004016151fd565b602060405180830381600087803b158015611cab57600080fd5b505af1158015611cbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce39190614f79565b507f9824a1addbc90e305a833b6b390835799a665d4877bb6f8fa7479bc71e7192c1838383604051611d1793929190615548565b60405180910390a1505050565b600080611d3487878787876139cb565b915091505b9550959350505050565b6000610864611d50612efc565b84610c97856040518060600160405280602581526020016157486025913960016000611d7a612efc565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190613231565b6000610864611db8612efc565b84846130d6565b6006546001600160a01b03163314611e04576040805162461bcd60e51b81526020600482015260036024820152624c423160e81b604482015290519081900360640190fd5b8115611f3157604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd9160648083019260209291908290030181600087803b158015611e7f57600080fd5b505af1158015611e93573d6000803e3d6000fd5b505050506040513d6020811015611ea957600080fd5b505060408051631c57762b60e31b81526000600482018190526024820185905291516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169263e2bbb158926044808201939182900301818387803b158015611f1857600080fd5b505af1158015611f2c573d6000803e3d6000fd5b505050505b801561205e57604080516323b872dd60e01b81523360048201523060248201526044810183905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd9160648083019260209291908290030181600087803b158015611fac57600080fd5b505af1158015611fc0573d6000803e3d6000fd5b505050506040513d6020811015611fd657600080fd5b50506040805163d8aed14560e01b81526000600482018190526024820184905291516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169263d8aed145926044808201939182900301818387803b15801561204557600080fd5b505af1158015612059573d6000803e3d6000fd5b505050505b6040805183815260208101839052815133927f6e7f15b1119485fd929d8722f8c91f4537dab9acdc0966a8fa9bd787d42cda6a928290030190a25050565b671bc16d674ec8000081565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ff9475256040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561210357600080fd5b505af1158015612117573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061213b9190614f79565b156121585760405162461bcd60e51b8152600401610324906153e1565b6040516323b872dd60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906323b872dd906121a8903390309086906004016151d9565b602060405180830381600087803b1580156121c257600080fd5b505af11580156121d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121fa9190614f79565b506000612206826139bb565b9050670de0b6b3a764000061221961087d565b61222c576122273384613c9f565b61226f565b61223683836132c8565b9050600061226161224f670de0b6b3a764000084613963565b610d8961225a61087d565b85906132f9565b905061226d3382613c9f565b505b655af3107a400061227e61087d565b1161229b5760405162461bcd60e51b81526004016103249061533c565b6000806122a6613321565b91509150600080600061234c888787877f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561230f57600080fd5b505afa158015612323573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234791906150db565b613d8f565b9250925092506009548111156123745760405162461bcd60e51b815260040161032490615418565b60405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb906123c290339086906004016151fd565b602060405180830381600087803b1580156123dc57600080fd5b505af11580156123f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124149190614f79565b5061241f3347612fec565b336001600160a01b03167f36af321ec8d3c75236829c5317affd40ddb308863a1236d2d277a4025cccee1e89858560405161245c93929190615548565b60405180910390a25050505050505050565b612476612efc565b6001600160a01b03166124876119b5565b6001600160a01b0316146124e2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661253d576040805162461bcd60e51b815260206004820152600360248201527f4c42320000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600654604080516001600160a01b039283168152918316602083015280517fe15f87a8ff5f60c36e1dbbd214b7f2d76d15143cb7cb7b1e78de6736d78bc68f9281900390910190a1600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60095481565b600a5460ff1681565b6006546000906001600160a01b031633146125fb5760405162461bcd60e51b8152600401610324906153aa565b6040516323b872dd60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906323b872dd9061264b903390309087906004016151d9565b602060405180830381600087803b15801561266557600080fd5b505af1158015612679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269d9190614f79565b506040516370a0823160e01b81526000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906126ed9030906004016151c5565b60206040518083038186803b15801561270557600080fd5b505afa158015612719573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273d91906150db565b604051632e1a7d4d60e01b81529091506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690632e1a7d4d9061278c90879060040161523b565b600060405180830381600087803b1580156127a657600080fd5b505af11580156127ba573d6000803e3d6000fd5b5050505061286c6128677f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161281091906151c5565b60206040518083038186803b15801561282857600080fd5b505afa15801561283c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286091906150db565b8390613963565b613584565b5060004790507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156128cd57600080fd5b505af11580156128e1573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016935063a9059cbb92506129349150339085906004016151fd565b602060405180830381600087803b15801561294e57600080fd5b505af1158015612962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129869190614f79565b50847fc2a71574e2174645e7b9b9281b27f62bda542b11b0578cfc0ce6ed7f31df0a1685836040516129b992919061553a565b60405180910390a2949350505050565b6000806129d4613321565b915091509091565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b03163314612a4c576040805162461bcd60e51b81526020600482015260036024820152624c423160e81b604482015290519081900360640190fd5b8115612b7957604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd9160648083019260209291908290030181600087803b158015612ac757600080fd5b505af1158015612adb573d6000803e3d6000fd5b505050506040513d6020811015612af157600080fd5b505060408051631c57762b60e31b81526000600482018190526024820185905291516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169263e2bbb158926044808201939182900301818387803b158015612b6057600080fd5b505af1158015612b74573d6000803e3d6000fd5b505050505b8015612ca05760408051630ecbcdab60e01b81526000600482018190526024820184905291516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001692630ecbcdab926044808201939182900301818387803b158015612bec57600080fd5b505af1158015612c00573d6000803e3d6000fd5b50506040805163a9059cbb60e01b81523360048201526024810185905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016935063a9059cbb925060448083019260209291908290030181600087803b158015612c7357600080fd5b505af1158015612c87573d6000803e3d6000fd5b505050506040513d6020811015612c9d57600080fd5b50505b5050565b612cac612efc565b6001600160a01b0316612cbd6119b5565b6001600160a01b031614612d18576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116612d3e5760405162461bcd60e51b815260040161032490615297565b6008546040517f50e1c7b60a87714f46c76bb471f83211123db04ff679befd3ce7a35654f6d40091612d7d916001600160a01b03909116908490615216565b60405180910390a1600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60075490565b612dcd612efc565b6001600160a01b0316612dde6119b5565b6001600160a01b031614612e39576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116612e7e5760405162461bcd60e51b81526004018080602001828103825260268152602001806155ed6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b3390565b6001600160a01b038316612f455760405162461bcd60e51b81526004018080602001828103825260248152602001806157246024913960400191505060405180910390fd5b6001600160a01b038216612f8a5760405162461bcd60e51b81526004018080602001828103825260228152602001806156136022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b80471015613041576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d806000811461308c576040519150601f19603f3d011682016040523d82523d6000602084013e613091565b606091505b50509050806130d15760405162461bcd60e51b815260040180806020018281038252603a81526020018061565b603a913960400191505060405180910390fd5b505050565b6001600160a01b03831661311b5760405162461bcd60e51b81526004018080602001828103825260258152602001806156ff6025913960400191505060405180910390fd5b6001600160a01b0382166131605760405162461bcd60e51b81526004018080602001828103825260238152602001806155a86023913960400191505060405180910390fd5b61316b8383836130d1565b6131a881604051806060016040528060268152602001615635602691396001600160a01b0386166000908152602081905260409020549190613231565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546131d790826137f2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156132c05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561328557818101518382015260200161326d565b50505050905090810190601f1680156132b25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000816132ea6132e085670de0b6b3a7640000613ebd565b6002855b04613f29565b816132f157fe5b049392505050565b6000670de0b6b3a76400006132ea6133118585613ebd565b6002670de0b6b3a76400006132e4565b60008060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638c64ea4a7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166333194c0a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156133ae57600080fd5b505afa1580156133c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133e691906150db565b6040518263ffffffff1660e01b8152600401613402919061523b565b60806040518083038186803b15801561341a57600080fd5b505afa15801561342e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134529190614f93565b60408101516060909101516bffffffffffffffffffffffff90911693506fffffffffffffffffffffffffffffffff169150509091565b6001600160a01b0382166134cd5760405162461bcd60e51b81526004018080602001828103825260218152602001806156de6021913960400191505060405180910390fd5b6134d9826000836130d1565b613516816040518060600160405280602281526020016155cb602291396001600160a01b0385166000908152602081905260409020549190613231565b6001600160a01b03831660009081526020819052604090205560025461353c9082613f81565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6007546000906135949083613963565b600781905592915050565b60008060006135ad8461384c565b905060006135ba856138f1565b604080516323b872dd60e01b81523360048201523060248201526044810185905290519192506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd916064808201926020929091908290030181600087803b15801561363357600080fd5b505af1158015613647573d6000803e3d6000fd5b505050506040513d602081101561365d57600080fd5b50506040805163d8aed14560e01b81526000600482018190526024820185905291516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169263d8aed145926044808201939182900301818387803b1580156136cc57600080fd5b505af11580156136e0573d6000803e3d6000fd5b505060408051630441a3e760e41b81526000600482018190526024820186905291516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016945063441a3e7093506044808301939282900301818387803b15801561375157600080fd5b505af1158015613765573d6000803e3d6000fd5b505050507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156137cf57600080fd5b505af11580156137e3573d6000803e3d6000fd5b50939550919350505050915091565b600082820183811015610ca0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610fcf7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156138be57600080fd5b505afa1580156138d2573d6000803e3d6000fd5b505050506040513d60208110156138e857600080fd5b505183906132f9565b6000610fcf7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633af9e669306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156138be57600080fd5b80820382811115610868576040805162461bcd60e51b815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6007546000906135949083613f29565b6000806000670de0b6b3a7640000871415613b4d576000613a527f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006101a46000613fde565b90506000613ac67f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006101a46000613fde565b90506000613aef87610d89613ae586613adf8d886132f9565b906132f9565b6118498d886132f9565b9050613b1483610d8983613adf8f671bc16d674ec800006132f990919063ffffffff16565b93506000613b3d64e8d4a51000613b37671bc16d674ec80000610d8989896132f9565b9061403e565b949650939450611d399350505050565b613c05613b62670de0b6b3a764000089613963565b610d89897f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633af9e669306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613bd357600080fd5b505afa158015613be7573d6000803e3d6000fd5b505050506040513d6020811015613bfd57600080fd5b5051906132f9565b90506000613c8f613c1e670de0b6b3a76400008a613963565b610d898a7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613bd357600080fd5b9199919850909650505050505050565b6001600160a01b038216613cfa576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b613d06600083836130d1565b600254613d1390826137f2565b6002556001600160a01b038216600090815260208190526040902054613d3990826137f2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000806000806000613da48a8a8a8a8a6139cb565b9150915034821115613dfd576040805162461bcd60e51b815260206004820152600360248201527f4c42300000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b613e068261409d565b613e0f8161419b565b81817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633af9e669306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613e7e57600080fd5b505afa158015613e92573d6000803e3d6000fd5b505050506040513d6020811015613ea857600080fd5b5051919c909b50909950975050505050505050565b6000811580613ed857505080820282828281613ed557fe5b04145b610868576040805162461bcd60e51b815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b80820182811015610868576040805162461bcd60e51b815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b600082821115613fd8576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600081613ff857613ff186868686614208565b9050614035565b600061400387614381565b905060008163ffffffff168563ffffffff16116140205784614022565b815b905061403088888884614208565b925050505b95945050505050565b6000808211614094576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816132f157fe5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156140f857600080fd5b505af115801561410c573d6000803e3d6000fd5b50505050507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e2bbb1586000836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b15801561418057600080fd5b505af1158015614194573d6000803e3d6000fd5b5050505050565b60408051630ecbcdab60e01b81526000600482018190526024820184905291516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001692630ecbcdab926044808201939182900301818387803b15801561418057600080fd5b6000806142178684600061455e565b9050600061422f82670de0b6b3a764000088886148a8565b90506000866001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561426c57600080fd5b505afa158015614280573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142a491906151ab565b90506000866001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156142e157600080fd5b505afa1580156142f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061431991906151ab565b90508060ff168260ff1614156143355782945050505050614379565b8060ff168260ff161115614360576143558360ff83850316600a0a614a10565b945050505050614379565b6143728360ff84840316600a0a61403e565b9450505050505b949350505050565b600080829050600080826001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156143c357600080fd5b505afa1580156143d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143fb9190615033565b50505093509350505060008161ffff168360010161ffff168161441a57fe5b069050600080856001600160a01b031663252c09d7846040518263ffffffff1660e01b815260040161444c919061552b565b60806040518083038186803b15801561446457600080fd5b505afa158015614478573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061449c919061514e565b93505050915080156144b7575042039450610fd29350505050565b6040517f252c09d70000000000000000000000000000000000000000000000000000000081526001600160a01b0387169063252c09d7906144fd9060009060040161523b565b60806040518083038186803b15801561451557600080fd5b505afa158015614529573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061454d919061514e565b505050420398975050505050505050565b60008163ffffffff168363ffffffff16116145c0576040805162461bcd60e51b815260206004820152600260248201527f4250000000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b604080516002808252606082018352600092839291906020830190803683370190505090506000848603905085826000815181106145fa57fe5b602002602001019063ffffffff16908163ffffffff1681525050848260018151811061462257fe5b63ffffffff9092166020928302919091018201526040517f883bdbfd000000000000000000000000000000000000000000000000000000008152600481018281528451602483015284516000936001600160a01b038c169363883bdbfd938893909283926044019185820191028083838b5b838110156146ac578181015183820152602001614694565b505050509050019250505060006040518083038186803b1580156146cf57600080fd5b505afa1580156146e3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604090815281101561470c57600080fd5b810190808051604051939291908464010000000082111561472c57600080fd5b90830190602082018581111561474157600080fd5b825186602082028301116401000000008211171561475e57600080fd5b82525081516020918201928201910280838360005b8381101561478b578181015183820152602001614773565b50505050905001604052602001805160405193929190846401000000008211156147b457600080fd5b9083019060208201858111156147c957600080fd5b82518660208202830111640100000000821117156147e657600080fd5b82525081516020918201928201910280838360005b838110156148135781810151838201526020016147fb565b5050505090500160405250505050905060008160008151811061483257fe5b60200260200101518260018151811061484757fe5b60200260200101510390508263ffffffff168160060b8161486457fe5b05945060008160060b12801561488e57508263ffffffff168160060b8161488757fe5b0760060b15155b1561489b57600019909401935b5092979650505050505050565b6000806148b486614a69565b90506fffffffffffffffffffffffffffffffff6001600160a01b03821611614968576001600160a01b038082168002908481169086161061492a576149257801000000000000000000000000000000000000000000000000876fffffffffffffffffffffffffffffffff1683614dc4565b614960565b61496081876fffffffffffffffffffffffffffffffff167801000000000000000000000000000000000000000000000000614dc4565b925050614a07565b60006149876001600160a01b0383168068010000000000000000614dc4565b9050836001600160a01b0316856001600160a01b0316106149d5576149d0700100000000000000000000000000000000876fffffffffffffffffffffffffffffffff1683614dc4565b614a03565b614a0381876fffffffffffffffffffffffffffffffff16700100000000000000000000000000000000614dc4565b9250505b50949350505050565b600082614a1f57506000610868565b82820282848281614a2c57fe5b0414610ca05760405162461bcd60e51b81526004018080602001828103825260218152602001806156956021913960400191505060405180910390fd5b60008060008360020b12614a80578260020b614a88565b8260020b6000035b9050620d89e8811115614ae2576040805162461bcd60e51b815260206004820152600160248201527f5400000000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600060018216614b0357700100000000000000000000000000000000614b15565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690506002821615614b49576ffff97272373d413259a46990580e213a0260801c5b6004821615614b68576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615614b87576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615614ba6576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615614bc5576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615614be4576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615614c03576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615614c23576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615614c43576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615614c63576ff3392b0822b70005940c7a398e4b70f30260801c5b610800821615614c83576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615614ca3576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615614cc3576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615614ce3576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615614d03576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615614d24576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615614d44576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615614d63576d2216e584f5fa1ea926041bedfe980260801c5b62080000821615614d80576b048a170391f7dc42444e8fa20260801c5b60008460020b1315614d9b578060001981614d9757fe5b0490505b640100000000810615614daf576001614db2565b60005b60ff16602082901c0192505050919050565b6000808060001985870986860292508281109083900303905080614dfa5760008411614def57600080fd5b508290049050610ca0565b808411614e0657600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b80518015158114610fd257600080fd5b805161ffff81168114610fd257600080fd5b805163ffffffff81168114610fd257600080fd5b805160ff81168114610fd257600080fd5b600060208284031215614ecb578081fd5b8135610ca08161558f565b60008060408385031215614ee8578081fd5b8235614ef38161558f565b91506020830135614f038161558f565b809150509250929050565b600080600060608486031215614f22578081fd5b8335614f2d8161558f565b92506020840135614f3d8161558f565b929592945050506040919091013590565b60008060408385031215614f60578182fd5b8235614f6b8161558f565b946020939093013593505050565b600060208284031215614f8a578081fd5b610ca082614e73565b600060808284031215614fa4578081fd5b6040516080810181811067ffffffffffffffff82111715614fc157fe5b6040528251614fcf8161558f565b8152614fdd60208401614e95565b602082015260408301516bffffffffffffffffffffffff81168114615000578283fd5b604082015260608301516fffffffffffffffffffffffffffffffff81168114615027578283fd5b60608201529392505050565b600080600080600080600060e0888a03121561504d578283fd5b87516150588161558f565b8097505060208801518060020b811461506f578384fd5b955061507d60408901614e83565b945061508b60608901614e83565b935061509960808901614e83565b92506150a760a08901614ea9565b91506150b560c08901614e73565b905092959891949750929550565b6000602082840312156150d4578081fd5b5035919050565b6000602082840312156150ec578081fd5b5051919050565b60008060408385031215615105578182fd5b50508035926020909101359150565b600080600080600060a0868803121561512b578283fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008060008060808587031215615163578182fd5b61516c85614e95565b935060208501518060060b8114615181578283fd5b60408601519093506151928161558f565b91506151a060608601614e73565b905092959194509250565b6000602082840312156151bc578081fd5b610ca082614ea9565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b8181101561527057858101830151858201604001528201615254565b818111156152815783604083870101525b50601f01601f1916929092016040019392505050565b60208082526003908201527f4253360000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253340000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253350000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253390000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253330000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253380000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253370000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253320000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253310000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526004908201527f4253313000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526004908201527f4253313200000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526004908201527f4253313100000000000000000000000000000000000000000000000000000000604082015260600190565b61ffff91909116815260200190565b918252602082015260400190565b9283526020830191909152604082015260600190565b948552602085019390935260408401919091526060830152608082015260a00190565b60ff91909116815260200190565b6001600160a01b03811681146155a457600080fd5b5056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200f26e18c84c55b3670e1e8e075f0a69e751cdc360175be5191ccfeb90987b3d864736f6c634300070600330000000000000000000000003b960e47784150f5a63777201ee2b15253d713e800000000000000000000000064187ae08781b09368e6253f9e94951243a493d500000000000000000000000027182842e098f60e3d576794a5bffb0777e025d30000000000000000000000003520d5a913427e6f0d6a83e07ccd4a4da316e4d3

Deployed Bytecode

0x6080604052600436106102a45760003560e01c80637d9f6db51161016e578063b8c6f579116100cb578063dd62ed3e1161007f578063efdc6a2211610064578063efdc6a2214610765578063f23b438514610785578063f2fde38b1461079a5761032f565b8063dd62ed3e14610725578063ed678017146107455761032f565b8063d22dbc59116100b0578063d22dbc59146106db578063d3411c21146106f0578063d48540a8146107105761032f565b8063b8c6f579146106a6578063cae74029146106c65761032f565b8063a457c2d711610122578063a9c0b93411610107578063a9c0b9341461065e578063b0b6fc4c1461067e578063b6b55f25146106935761032f565b8063a457c2d71461061e578063a9059cbb1461063e5761032f565b806395d89b411161015357806395d89b41146105bb5780639c74dc97146105d0578063a0a47596146105f05761032f565b80637d9f6db5146105915780638da5cb5b146105a65761032f565b806339bbd9041161021c5780635b1a85c8116101d057806370a08231116101b557806370a082311461053c578063715018a61461055c578063727203f7146105715761032f565b80635b1a85c8146104fc5780636b2963141461051c5761032f565b80633dcb0c5d116102015780633dcb0c5d146104b25780634285512d146104c757806347786d37146104dc5761032f565b806339bbd904146104725780633d3a62ee146104925761032f565b80631a57a4b3116102735780632e1a7d4d116102585780632e1a7d4d14610410578063313ce5671461043057806339509351146104525761032f565b80631a57a4b3146103d057806323b872dd146103f05761032f565b806306fdde0314610334578063095ea7b31461035f57806312132c001461038c57806318160ddd146103ae5761032f565b3661032f57336001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21614806103085750336001600160a01b037f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e816145b61032d5760405162461bcd60e51b81526004016103249061544f565b60405180910390fd5b005b600080fd5b34801561034057600080fd5b506103496107ba565b6040516103569190615244565b60405180910390f35b34801561036b57600080fd5b5061037f61037a366004614f4e565b610850565b6040516103569190615230565b34801561039857600080fd5b506103a161086e565b60405161035691906151c5565b3480156103ba57600080fd5b506103c361087d565b604051610356919061523b565b3480156103dc57600080fd5b5061032d6103eb366004614ed6565b610883565b3480156103fc57600080fd5b5061037f61040b366004614f0e565b610c1f565b34801561041c57600080fd5b5061032d61042b3660046150c3565b610ca7565b34801561043c57600080fd5b50610445610f6d565b6040516103569190615581565b34801561045e57600080fd5b5061037f61046d366004614f4e565b610f76565b34801561047e57600080fd5b506103c361048d3660046150c3565b610fc4565b34801561049e57600080fd5b5061032d6104ad3660046150c3565b610fd7565b3480156104be57600080fd5b506103a1611072565b3480156104d357600080fd5b506103a1611096565b3480156104e857600080fd5b5061032d6104f73660046150c3565b6110ba565b34801561050857600080fd5b506103c36105173660046150c3565b61116e565b34801561052857600080fd5b5061032d6105373660046150f3565b611179565b34801561054857600080fd5b506103c3610557366004614eba565b611450565b34801561056857600080fd5b5061032d61146b565b34801561057d57600080fd5b5061032d61058c3660046150c3565b611546565b34801561059d57600080fd5b506103a16119a6565b3480156105b257600080fd5b506103a16119b5565b3480156105c757600080fd5b506103496119c9565b3480156105dc57600080fd5b5061032d6105eb3660046150f3565b611a2a565b3480156105fc57600080fd5b5061061061060b366004615114565b611d24565b60405161035692919061553a565b34801561062a57600080fd5b5061037f610639366004614f4e565b611d43565b34801561064a57600080fd5b5061037f610659366004614f4e565b611dab565b34801561066a57600080fd5b5061032d6106793660046150f3565b611dbf565b34801561068a57600080fd5b506103c361209c565b61032d6106a13660046150c3565b6120a8565b3480156106b257600080fd5b5061032d6106c1366004614eba565b61246e565b3480156106d257600080fd5b506103c36125bf565b3480156106e757600080fd5b5061037f6125c5565b3480156106fc57600080fd5b506103c361070b3660046150f3565b6125ce565b34801561071c57600080fd5b506106106129c9565b34801561073157600080fd5b506103c3610740366004614ed6565b6129dc565b34801561075157600080fd5b5061032d6107603660046150f3565b612a07565b34801561077157600080fd5b5061032d610780366004614eba565b612ca4565b34801561079157600080fd5b506103c3612dbf565b3480156107a657600080fd5b5061032d6107b5366004614eba565b612dc5565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061086461085d612efc565b8484612f00565b5060015b92915050565b6008546001600160a01b031681565b60025490565b61088b612efc565b6001600160a01b031661089c6119b5565b6001600160a01b0316146108f7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b7f00000000000000000000000064187ae08781b09368e6253f9e94951243a493d56001600160a01b031663ff9475256040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561095257600080fd5b505af1158015610966573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098a9190614f79565b156109a75760405162461bcd60e51b8152600401610324906153e1565b600a5460ff16156109ca5760405162461bcd60e51b8152600401610324906154bd565b7f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e86001600160a01b0316826001600160a01b031614158015610a3e57507f0000000000000000000000001b808f49add4b8c6b5117d9681cf7312fcf0dc1d6001600160a01b0316826001600160a01b031614155b8015610a7c57507f00000000000000000000000084721a3db22eb852233aeae74f9bc8477f8bcc426001600160a01b0316826001600160a01b031614155b610a985760405162461bcd60e51b815260040161032490615305565b6001600160a01b038116610abe5760405162461bcd60e51b8152600401610324906154f4565b6001600160a01b038216610ae457610adf6001600160a01b03821647612fec565b610bdb565b6040516370a0823160e01b81526001600160a01b0383169063a9059cbb90839083906370a0823190610b1a9030906004016151c5565b60206040518083038186803b158015610b3257600080fd5b505afa158015610b46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6a91906150db565b6040518363ffffffff1660e01b8152600401610b879291906151fd565b602060405180830381600087803b158015610ba157600080fd5b505af1158015610bb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd99190614f79565b505b806001600160a01b0316826001600160a01b03167f48e432392da6b1f166942a95cb39a5eeffb983e1209c48b724d10b6db7eaacf460405160405180910390a35050565b6000610c2c8484846130d6565b610c9c84610c38612efc565b610c97856040518060600160405280602881526020016156b6602891396001600160a01b038a16600090815260016020526040812090610c76612efc565b6001600160a01b031681526020810191909152604001600020549190613231565b612f00565b5060015b9392505050565b6000610cbb610cb461087d565b83906132c8565b90506000610cd4600754836132f990919063ffffffff16565b905060007f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e86001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d3157600080fd5b505afa158015610d45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6991906150db565b90506000610d75613321565b915060009050610d8f83610d8986856132f9565b906132c8565b6040516323b872dd60e01b81529091506001600160a01b037f000000000000000000000000f1b99e3e573a1a9c5e6b2ce818b617f0e664e86b16906323b872dd90610de2903390309086906004016151d9565b602060405180830381600087803b158015610dfc57600080fd5b505af1158015610e10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e349190614f79565b50610e3f3387613488565b610e4761087d565b1580610e5f5750655af3107a4000610e5d61087d565b115b610e7b5760405162461bcd60e51b815260040161032490615486565b610e8484613584565b50604051632e1a7d4d60e01b81526001600160a01b037f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e81690632e1a7d4d90610ed190879060040161523b565b600060405180830381600087803b158015610eeb57600080fd5b505af1158015610eff573d6000803e3d6000fd5b505050506000610f0e8661359f565b509050336001600160a01b03167fb7ee00edafdb5db3a1b52a5789a6b562eb48268842d113dbfe860b6f86e5f5958887858547604051610f5295949392919061555e565b60405180910390a2610f643347612fec565b50505050505050565b60055460ff1690565b6000610864610f83612efc565b84610c978560016000610f94612efc565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906137f2565b6000610fcf8261384c565b90505b919050565b600a5460ff16610ff95760405162461bcd60e51b815260040161032490615373565b6000611006610cb461087d565b9050600061101482476132f9565b90506110203384613488565b61102a3382612fec565b336001600160a01b03167fe9ab9870b9093d99f8e981919f65ad09b7ae90ff80f1031639af9e0357eb9ed6848360405161106592919061553a565b60405180910390a2505050565b7f00000000000000000000000064187ae08781b09368e6253f9e94951243a493d581565b7f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e881565b6110c2612efc565b6001600160a01b03166110d36119b5565b6001600160a01b03161461112e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b7fdbbbb176683582b710ef3349793b8d62658724a9d9b54deccf193c4b0aa90c4c6009548260405161116192919061553a565b60405180910390a1600955565b6000610fcf826138f1565b6006546001600160a01b031633146111be576040805162461bcd60e51b81526020600482015260036024820152624c423160e81b604482015290519081900360640190fd5b81156112eb57604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4816916323b872dd9160648083019260209291908290030181600087803b15801561123957600080fd5b505af115801561124d573d6000803e3d6000fd5b505050506040513d602081101561126357600080fd5b50506040805163d8aed14560e01b81526000600482018190526024820185905291516001600160a01b037f00000000000000000000000084721a3db22eb852233aeae74f9bc8477f8bcc42169263d8aed145926044808201939182900301818387803b1580156112d257600080fd5b505af11580156112e6573d6000803e3d6000fd5b505050505b80156114125760408051630441a3e760e41b81526000600482018190526024820184905291516001600160a01b037f0000000000000000000000001b808f49add4b8c6b5117d9681cf7312fcf0dc1d169263441a3e70926044808201939182900301818387803b15801561135e57600080fd5b505af1158015611372573d6000803e3d6000fd5b50506040805163a9059cbb60e01b81523360048201526024810185905290516001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216935063a9059cbb925060448083019260209291908290030181600087803b1580156113e557600080fd5b505af11580156113f9573d6000803e3d6000fd5b505050506040513d602081101561140f57600080fd5b50505b6040805183815260208101839052815133927f0e7e8abd3a81eb1e36dd3bb07f2c677fd9ec366278c0928eb38687da853ccd07928290030190a25050565b6001600160a01b031660009081526020819052604090205490565b611473612efc565b6001600160a01b03166114846119b5565b6001600160a01b0316146114df576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b6006546001600160a01b031633146115705760405162461bcd60e51b8152600401610324906153aa565b6040516323b872dd60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216906323b872dd906115c0903390309086906004016151d9565b602060405180830381600087803b1580156115da57600080fd5b505af11580156115ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116129190614f79565b50604051632e1a7d4d60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21690632e1a7d4d9061165f90849060040161523b565b600060405180830381600087803b15801561167957600080fd5b505af115801561168d573d6000803e3d6000fd5b50506040516370a0823160e01b8152600092506001600160a01b037f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e81691506370a08231906116e09030906004016151c5565b60206040518083038186803b1580156116f857600080fd5b505afa15801561170c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173091906150db565b90507f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e86001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561178d57600080fd5b505af11580156117a1573d6000803e3d6000fd5b505050505061185461184f827f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e86001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016117f991906151c5565b60206040518083038186803b15801561181157600080fd5b505afa158015611825573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184991906150db565b90613963565b6139bb565b506040516370a0823160e01b81526001600160a01b037f000000000000000000000000f1b99e3e573a1a9c5e6b2ce818b617f0e664e86b169063a9059cbb90339083906370a08231906118ab9030906004016151c5565b60206040518083038186803b1580156118c357600080fd5b505afa1580156118d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fb91906150db565b6040518363ffffffff1660e01b81526004016119189291906151fd565b602060405180830381600087803b15801561193257600080fd5b505af1158015611946573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196a9190614f79565b507f3c7e43a84c111fc1eb404e97b9f4dcb0f0b96f7cf657973565fd1f599556468a8260405161199a919061523b565b60405180910390a15050565b6006546001600160a01b031681565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108465780601f1061081b57610100808354040283529160200191610846565b6008546001600160a01b03163314611a545760405162461bcd60e51b8152600401610324906152ce565b670de0b6b3a7640000811415611a7257600a805460ff191660011790555b6000611b1a7f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e86001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401611ac391906151c5565b60206040518083038186803b158015611adb57600080fd5b505afa158015611aef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1391906150db565b83906132f9565b9050611b2581613584565b506040517f3d3a62ee0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e81690633d3a62ee90611b8b90849060040161523b565b600060405180830381600087803b158015611ba557600080fd5b505af1158015611bb9573d6000803e3d6000fd5b50505050611bc68261359f565b50507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b158015611c2357600080fd5b505af1158015611c37573d6000803e3d6000fd5b505060085460405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28116955063a9059cbb9450611c919350919091169087906004016151fd565b602060405180830381600087803b158015611cab57600080fd5b505af1158015611cbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce39190614f79565b507f9824a1addbc90e305a833b6b390835799a665d4877bb6f8fa7479bc71e7192c1838383604051611d1793929190615548565b60405180910390a1505050565b600080611d3487878787876139cb565b915091505b9550959350505050565b6000610864611d50612efc565b84610c97856040518060600160405280602581526020016157486025913960016000611d7a612efc565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190613231565b6000610864611db8612efc565b84846130d6565b6006546001600160a01b03163314611e04576040805162461bcd60e51b81526020600482015260036024820152624c423160e81b604482015290519081900360640190fd5b8115611f3157604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216916323b872dd9160648083019260209291908290030181600087803b158015611e7f57600080fd5b505af1158015611e93573d6000803e3d6000fd5b505050506040513d6020811015611ea957600080fd5b505060408051631c57762b60e31b81526000600482018190526024820185905291516001600160a01b037f0000000000000000000000001b808f49add4b8c6b5117d9681cf7312fcf0dc1d169263e2bbb158926044808201939182900301818387803b158015611f1857600080fd5b505af1158015611f2c573d6000803e3d6000fd5b505050505b801561205e57604080516323b872dd60e01b81523360048201523060248201526044810183905290516001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4816916323b872dd9160648083019260209291908290030181600087803b158015611fac57600080fd5b505af1158015611fc0573d6000803e3d6000fd5b505050506040513d6020811015611fd657600080fd5b50506040805163d8aed14560e01b81526000600482018190526024820184905291516001600160a01b037f00000000000000000000000084721a3db22eb852233aeae74f9bc8477f8bcc42169263d8aed145926044808201939182900301818387803b15801561204557600080fd5b505af1158015612059573d6000803e3d6000fd5b505050505b6040805183815260208101839052815133927f6e7f15b1119485fd929d8722f8c91f4537dab9acdc0966a8fa9bd787d42cda6a928290030190a25050565b671bc16d674ec8000081565b7f00000000000000000000000064187ae08781b09368e6253f9e94951243a493d56001600160a01b031663ff9475256040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561210357600080fd5b505af1158015612117573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061213b9190614f79565b156121585760405162461bcd60e51b8152600401610324906153e1565b6040516323b872dd60e01b81526001600160a01b037f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e816906323b872dd906121a8903390309086906004016151d9565b602060405180830381600087803b1580156121c257600080fd5b505af11580156121d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121fa9190614f79565b506000612206826139bb565b9050670de0b6b3a764000061221961087d565b61222c576122273384613c9f565b61226f565b61223683836132c8565b9050600061226161224f670de0b6b3a764000084613963565b610d8961225a61087d565b85906132f9565b905061226d3382613c9f565b505b655af3107a400061227e61087d565b1161229b5760405162461bcd60e51b81526004016103249061533c565b6000806122a6613321565b91509150600080600061234c888787877f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e86001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561230f57600080fd5b505afa158015612323573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234791906150db565b613d8f565b9250925092506009548111156123745760405162461bcd60e51b815260040161032490615418565b60405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48169063a9059cbb906123c290339086906004016151fd565b602060405180830381600087803b1580156123dc57600080fd5b505af11580156123f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124149190614f79565b5061241f3347612fec565b336001600160a01b03167f36af321ec8d3c75236829c5317affd40ddb308863a1236d2d277a4025cccee1e89858560405161245c93929190615548565b60405180910390a25050505050505050565b612476612efc565b6001600160a01b03166124876119b5565b6001600160a01b0316146124e2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661253d576040805162461bcd60e51b815260206004820152600360248201527f4c42320000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600654604080516001600160a01b039283168152918316602083015280517fe15f87a8ff5f60c36e1dbbd214b7f2d76d15143cb7cb7b1e78de6736d78bc68f9281900390910190a1600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60095481565b600a5460ff1681565b6006546000906001600160a01b031633146125fb5760405162461bcd60e51b8152600401610324906153aa565b6040516323b872dd60e01b81526001600160a01b037f000000000000000000000000f1b99e3e573a1a9c5e6b2ce818b617f0e664e86b16906323b872dd9061264b903390309087906004016151d9565b602060405180830381600087803b15801561266557600080fd5b505af1158015612679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269d9190614f79565b506040516370a0823160e01b81526000906001600160a01b037f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e816906370a08231906126ed9030906004016151c5565b60206040518083038186803b15801561270557600080fd5b505afa158015612719573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273d91906150db565b604051632e1a7d4d60e01b81529091506001600160a01b037f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e81690632e1a7d4d9061278c90879060040161523b565b600060405180830381600087803b1580156127a657600080fd5b505af11580156127ba573d6000803e3d6000fd5b5050505061286c6128677f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e86001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161281091906151c5565b60206040518083038186803b15801561282857600080fd5b505afa15801561283c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286091906150db565b8390613963565b613584565b5060004790507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156128cd57600080fd5b505af11580156128e1573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216935063a9059cbb92506129349150339085906004016151fd565b602060405180830381600087803b15801561294e57600080fd5b505af1158015612962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129869190614f79565b50847fc2a71574e2174645e7b9b9281b27f62bda542b11b0578cfc0ce6ed7f31df0a1685836040516129b992919061553a565b60405180910390a2949350505050565b6000806129d4613321565b915091509091565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b03163314612a4c576040805162461bcd60e51b81526020600482015260036024820152624c423160e81b604482015290519081900360640190fd5b8115612b7957604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216916323b872dd9160648083019260209291908290030181600087803b158015612ac757600080fd5b505af1158015612adb573d6000803e3d6000fd5b505050506040513d6020811015612af157600080fd5b505060408051631c57762b60e31b81526000600482018190526024820185905291516001600160a01b037f0000000000000000000000001b808f49add4b8c6b5117d9681cf7312fcf0dc1d169263e2bbb158926044808201939182900301818387803b158015612b6057600080fd5b505af1158015612b74573d6000803e3d6000fd5b505050505b8015612ca05760408051630ecbcdab60e01b81526000600482018190526024820184905291516001600160a01b037f00000000000000000000000084721a3db22eb852233aeae74f9bc8477f8bcc421692630ecbcdab926044808201939182900301818387803b158015612bec57600080fd5b505af1158015612c00573d6000803e3d6000fd5b50506040805163a9059cbb60e01b81523360048201526024810185905290516001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4816935063a9059cbb925060448083019260209291908290030181600087803b158015612c7357600080fd5b505af1158015612c87573d6000803e3d6000fd5b505050506040513d6020811015612c9d57600080fd5b50505b5050565b612cac612efc565b6001600160a01b0316612cbd6119b5565b6001600160a01b031614612d18576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116612d3e5760405162461bcd60e51b815260040161032490615297565b6008546040517f50e1c7b60a87714f46c76bb471f83211123db04ff679befd3ce7a35654f6d40091612d7d916001600160a01b03909116908490615216565b60405180910390a1600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60075490565b612dcd612efc565b6001600160a01b0316612dde6119b5565b6001600160a01b031614612e39576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116612e7e5760405162461bcd60e51b81526004018080602001828103825260268152602001806155ed6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b3390565b6001600160a01b038316612f455760405162461bcd60e51b81526004018080602001828103825260248152602001806157246024913960400191505060405180910390fd5b6001600160a01b038216612f8a5760405162461bcd60e51b81526004018080602001828103825260228152602001806156136022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b80471015613041576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d806000811461308c576040519150601f19603f3d011682016040523d82523d6000602084013e613091565b606091505b50509050806130d15760405162461bcd60e51b815260040180806020018281038252603a81526020018061565b603a913960400191505060405180910390fd5b505050565b6001600160a01b03831661311b5760405162461bcd60e51b81526004018080602001828103825260258152602001806156ff6025913960400191505060405180910390fd5b6001600160a01b0382166131605760405162461bcd60e51b81526004018080602001828103825260238152602001806155a86023913960400191505060405180910390fd5b61316b8383836130d1565b6131a881604051806060016040528060268152602001615635602691396001600160a01b0386166000908152602081905260409020549190613231565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546131d790826137f2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156132c05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561328557818101518382015260200161326d565b50505050905090810190601f1680156132b25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000816132ea6132e085670de0b6b3a7640000613ebd565b6002855b04613f29565b816132f157fe5b049392505050565b6000670de0b6b3a76400006132ea6133118585613ebd565b6002670de0b6b3a76400006132e4565b60008060007f00000000000000000000000064187ae08781b09368e6253f9e94951243a493d56001600160a01b0316638c64ea4a7f0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e86001600160a01b03166333194c0a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156133ae57600080fd5b505afa1580156133c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133e691906150db565b6040518263ffffffff1660e01b8152600401613402919061523b565b60806040518083038186803b15801561341a57600080fd5b505afa15801561342e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134529190614f93565b60408101516060909101516bffffffffffffffffffffffff90911693506fffffffffffffffffffffffffffffffff169150509091565b6001600160a01b0382166134cd5760405162461bcd60e51b81526004018080602001828103825260218152602001806156de6021913960400191505060405180910390fd5b6134d9826000836130d1565b613516816040518060600160405280602281526020016155cb602291396001600160a01b0385166000908152602081905260409020549190613231565b6001600160a01b03831660009081526020819052604090205560025461353c9082613f81565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6007546000906135949083613963565b600781905592915050565b60008060006135ad8461384c565b905060006135ba856138f1565b604080516323b872dd60e01b81523360048201523060248201526044810185905290519192506001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4816916323b872dd916064808201926020929091908290030181600087803b15801561363357600080fd5b505af1158015613647573d6000803e3d6000fd5b505050506040513d602081101561365d57600080fd5b50506040805163d8aed14560e01b81526000600482018190526024820185905291516001600160a01b037f00000000000000000000000084721a3db22eb852233aeae74f9bc8477f8bcc42169263d8aed145926044808201939182900301818387803b1580156136cc57600080fd5b505af11580156136e0573d6000803e3d6000fd5b505060408051630441a3e760e41b81526000600482018190526024820186905291516001600160a01b037f0000000000000000000000001b808f49add4b8c6b5117d9681cf7312fcf0dc1d16945063441a3e7093506044808301939282900301818387803b15801561375157600080fd5b505af1158015613765573d6000803e3d6000fd5b505050507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156137cf57600080fd5b505af11580156137e3573d6000803e3d6000fd5b50939550919350505050915091565b600082820183811015610ca0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610fcf7f00000000000000000000000084721a3db22eb852233aeae74f9bc8477f8bcc426001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156138be57600080fd5b505afa1580156138d2573d6000803e3d6000fd5b505050506040513d60208110156138e857600080fd5b505183906132f9565b6000610fcf7f0000000000000000000000001b808f49add4b8c6b5117d9681cf7312fcf0dc1d6001600160a01b0316633af9e669306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156138be57600080fd5b80820382811115610868576040805162461bcd60e51b815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6007546000906135949083613f29565b6000806000670de0b6b3a7640000871415613b4d576000613a527f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d87f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc27f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486101a46000613fde565b90506000613ac67f00000000000000000000000082c427adfdf2d245ec51d8046b41c4ee87f0d29c7f000000000000000000000000f1b99e3e573a1a9c5e6b2ce818b617f0e664e86b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26101a46000613fde565b90506000613aef87610d89613ae586613adf8d886132f9565b906132f9565b6118498d886132f9565b9050613b1483610d8983613adf8f671bc16d674ec800006132f990919063ffffffff16565b93506000613b3d64e8d4a51000613b37671bc16d674ec80000610d8989896132f9565b9061403e565b949650939450611d399350505050565b613c05613b62670de0b6b3a764000089613963565b610d89897f0000000000000000000000001b808f49add4b8c6b5117d9681cf7312fcf0dc1d6001600160a01b0316633af9e669306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613bd357600080fd5b505afa158015613be7573d6000803e3d6000fd5b505050506040513d6020811015613bfd57600080fd5b5051906132f9565b90506000613c8f613c1e670de0b6b3a76400008a613963565b610d898a7f00000000000000000000000084721a3db22eb852233aeae74f9bc8477f8bcc426001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613bd357600080fd5b9199919850909650505050505050565b6001600160a01b038216613cfa576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b613d06600083836130d1565b600254613d1390826137f2565b6002556001600160a01b038216600090815260208190526040902054613d3990826137f2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000806000806000613da48a8a8a8a8a6139cb565b9150915034821115613dfd576040805162461bcd60e51b815260206004820152600360248201527f4c42300000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b613e068261409d565b613e0f8161419b565b81817f0000000000000000000000001b808f49add4b8c6b5117d9681cf7312fcf0dc1d6001600160a01b0316633af9e669306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613e7e57600080fd5b505afa158015613e92573d6000803e3d6000fd5b505050506040513d6020811015613ea857600080fd5b5051919c909b50909950975050505050505050565b6000811580613ed857505080820282828281613ed557fe5b04145b610868576040805162461bcd60e51b815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b80820182811015610868576040805162461bcd60e51b815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b600082821115613fd8576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600081613ff857613ff186868686614208565b9050614035565b600061400387614381565b905060008163ffffffff168563ffffffff16116140205784614022565b815b905061403088888884614208565b925050505b95945050505050565b6000808211614094576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816132f157fe5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156140f857600080fd5b505af115801561410c573d6000803e3d6000fd5b50505050507f0000000000000000000000001b808f49add4b8c6b5117d9681cf7312fcf0dc1d6001600160a01b031663e2bbb1586000836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b15801561418057600080fd5b505af1158015614194573d6000803e3d6000fd5b5050505050565b60408051630ecbcdab60e01b81526000600482018190526024820184905291516001600160a01b037f00000000000000000000000084721a3db22eb852233aeae74f9bc8477f8bcc421692630ecbcdab926044808201939182900301818387803b15801561418057600080fd5b6000806142178684600061455e565b9050600061422f82670de0b6b3a764000088886148a8565b90506000866001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561426c57600080fd5b505afa158015614280573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142a491906151ab565b90506000866001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156142e157600080fd5b505afa1580156142f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061431991906151ab565b90508060ff168260ff1614156143355782945050505050614379565b8060ff168260ff161115614360576143558360ff83850316600a0a614a10565b945050505050614379565b6143728360ff84840316600a0a61403e565b9450505050505b949350505050565b600080829050600080826001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156143c357600080fd5b505afa1580156143d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143fb9190615033565b50505093509350505060008161ffff168360010161ffff168161441a57fe5b069050600080856001600160a01b031663252c09d7846040518263ffffffff1660e01b815260040161444c919061552b565b60806040518083038186803b15801561446457600080fd5b505afa158015614478573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061449c919061514e565b93505050915080156144b7575042039450610fd29350505050565b6040517f252c09d70000000000000000000000000000000000000000000000000000000081526001600160a01b0387169063252c09d7906144fd9060009060040161523b565b60806040518083038186803b15801561451557600080fd5b505afa158015614529573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061454d919061514e565b505050420398975050505050505050565b60008163ffffffff168363ffffffff16116145c0576040805162461bcd60e51b815260206004820152600260248201527f4250000000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b604080516002808252606082018352600092839291906020830190803683370190505090506000848603905085826000815181106145fa57fe5b602002602001019063ffffffff16908163ffffffff1681525050848260018151811061462257fe5b63ffffffff9092166020928302919091018201526040517f883bdbfd000000000000000000000000000000000000000000000000000000008152600481018281528451602483015284516000936001600160a01b038c169363883bdbfd938893909283926044019185820191028083838b5b838110156146ac578181015183820152602001614694565b505050509050019250505060006040518083038186803b1580156146cf57600080fd5b505afa1580156146e3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604090815281101561470c57600080fd5b810190808051604051939291908464010000000082111561472c57600080fd5b90830190602082018581111561474157600080fd5b825186602082028301116401000000008211171561475e57600080fd5b82525081516020918201928201910280838360005b8381101561478b578181015183820152602001614773565b50505050905001604052602001805160405193929190846401000000008211156147b457600080fd5b9083019060208201858111156147c957600080fd5b82518660208202830111640100000000821117156147e657600080fd5b82525081516020918201928201910280838360005b838110156148135781810151838201526020016147fb565b5050505090500160405250505050905060008160008151811061483257fe5b60200260200101518260018151811061484757fe5b60200260200101510390508263ffffffff168160060b8161486457fe5b05945060008160060b12801561488e57508263ffffffff168160060b8161488757fe5b0760060b15155b1561489b57600019909401935b5092979650505050505050565b6000806148b486614a69565b90506fffffffffffffffffffffffffffffffff6001600160a01b03821611614968576001600160a01b038082168002908481169086161061492a576149257801000000000000000000000000000000000000000000000000876fffffffffffffffffffffffffffffffff1683614dc4565b614960565b61496081876fffffffffffffffffffffffffffffffff167801000000000000000000000000000000000000000000000000614dc4565b925050614a07565b60006149876001600160a01b0383168068010000000000000000614dc4565b9050836001600160a01b0316856001600160a01b0316106149d5576149d0700100000000000000000000000000000000876fffffffffffffffffffffffffffffffff1683614dc4565b614a03565b614a0381876fffffffffffffffffffffffffffffffff16700100000000000000000000000000000000614dc4565b9250505b50949350505050565b600082614a1f57506000610868565b82820282848281614a2c57fe5b0414610ca05760405162461bcd60e51b81526004018080602001828103825260218152602001806156956021913960400191505060405180910390fd5b60008060008360020b12614a80578260020b614a88565b8260020b6000035b9050620d89e8811115614ae2576040805162461bcd60e51b815260206004820152600160248201527f5400000000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600060018216614b0357700100000000000000000000000000000000614b15565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690506002821615614b49576ffff97272373d413259a46990580e213a0260801c5b6004821615614b68576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615614b87576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615614ba6576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615614bc5576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615614be4576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615614c03576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615614c23576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615614c43576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615614c63576ff3392b0822b70005940c7a398e4b70f30260801c5b610800821615614c83576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615614ca3576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615614cc3576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615614ce3576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615614d03576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615614d24576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615614d44576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615614d63576d2216e584f5fa1ea926041bedfe980260801c5b62080000821615614d80576b048a170391f7dc42444e8fa20260801c5b60008460020b1315614d9b578060001981614d9757fe5b0490505b640100000000810615614daf576001614db2565b60005b60ff16602082901c0192505050919050565b6000808060001985870986860292508281109083900303905080614dfa5760008411614def57600080fd5b508290049050610ca0565b808411614e0657600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b80518015158114610fd257600080fd5b805161ffff81168114610fd257600080fd5b805163ffffffff81168114610fd257600080fd5b805160ff81168114610fd257600080fd5b600060208284031215614ecb578081fd5b8135610ca08161558f565b60008060408385031215614ee8578081fd5b8235614ef38161558f565b91506020830135614f038161558f565b809150509250929050565b600080600060608486031215614f22578081fd5b8335614f2d8161558f565b92506020840135614f3d8161558f565b929592945050506040919091013590565b60008060408385031215614f60578182fd5b8235614f6b8161558f565b946020939093013593505050565b600060208284031215614f8a578081fd5b610ca082614e73565b600060808284031215614fa4578081fd5b6040516080810181811067ffffffffffffffff82111715614fc157fe5b6040528251614fcf8161558f565b8152614fdd60208401614e95565b602082015260408301516bffffffffffffffffffffffff81168114615000578283fd5b604082015260608301516fffffffffffffffffffffffffffffffff81168114615027578283fd5b60608201529392505050565b600080600080600080600060e0888a03121561504d578283fd5b87516150588161558f565b8097505060208801518060020b811461506f578384fd5b955061507d60408901614e83565b945061508b60608901614e83565b935061509960808901614e83565b92506150a760a08901614ea9565b91506150b560c08901614e73565b905092959891949750929550565b6000602082840312156150d4578081fd5b5035919050565b6000602082840312156150ec578081fd5b5051919050565b60008060408385031215615105578182fd5b50508035926020909101359150565b600080600080600060a0868803121561512b578283fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008060008060808587031215615163578182fd5b61516c85614e95565b935060208501518060060b8114615181578283fd5b60408601519093506151928161558f565b91506151a060608601614e73565b905092959194509250565b6000602082840312156151bc578081fd5b610ca082614ea9565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b8181101561527057858101830151858201604001528201615254565b818111156152815783604083870101525b50601f01601f1916929092016040019392505050565b60208082526003908201527f4253360000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253340000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253350000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253390000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253330000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253380000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253370000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253320000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4253310000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526004908201527f4253313000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526004908201527f4253313200000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526004908201527f4253313100000000000000000000000000000000000000000000000000000000604082015260600190565b61ffff91909116815260200190565b918252602082015260400190565b9283526020830191909152604082015260600190565b948552602085019390935260408401919091526060830152608082015260a00190565b60ff91909116815260200190565b6001600160a01b03811681146155a457600080fd5b5056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200f26e18c84c55b3670e1e8e075f0a69e751cdc360175be5191ccfeb90987b3d864736f6c63430007060033

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

0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e800000000000000000000000064187ae08781b09368e6253f9e94951243a493d500000000000000000000000027182842e098f60e3d576794a5bffb0777e025d30000000000000000000000003520d5a913427e6f0d6a83e07ccd4a4da316e4d3

-----Decoded View---------------
Arg [0] : _crab (address): 0x3B960E47784150F5a63777201ee2B15253D713e8
Arg [1] : _powerTokenController (address): 0x64187ae08781B09368e6253F9E94951243A493D5
Arg [2] : _euler (address): 0x27182842E098f60e3D576794A5bFFb0777E025d3
Arg [3] : _eulerMarketsModule (address): 0x3520d5a913427E6F0D6A83E07ccD4A4da316e4d3

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000003b960e47784150f5a63777201ee2b15253d713e8
Arg [1] : 00000000000000000000000064187ae08781b09368e6253f9e94951243a493d5
Arg [2] : 00000000000000000000000027182842e098f60e3d576794a5bffb0777e025d3
Arg [3] : 0000000000000000000000003520d5a913427e6f0d6a83e07ccd4a4da316e4d3


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.