ETH Price: $3,383.90 (-1.84%)
Gas: 2 Gwei

Token

Hyperbolic Protocol (HYPE)
 

Overview

Max Total Supply

88,654,455.950402246534848341 HYPE

Holders

3,201 ( -0.031%)

Market

Price

$0.01 @ 0.000003 ETH (-4.56%)

Onchain Market Cap

$924,807.82

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,445.845847 HYPE

Value
$67.24 ( ~0.0198705513120923 Eth) [0.0073%]
0x5609ffc9e2525c1b7f3a1b8522cf8e88be3c2ef7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Hyperbolic Protocol (HYPE) is the first-of-its-kind 100% fully on-chain collateralized lending protocol that leverages built-in Uniswap V3 TWAPs and automated variable APRs and protocol fee generation to support investor yield maximization, protocol growth, and ultimately sustainability.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HyperbolicProtocol

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 48 : 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 48 : 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 48 : 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 48 : 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 48 : 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 48 : 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 48 : 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 48 : 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 48 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

File 10 of 48 : 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 48 : IUniswapV3MintCallback.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Callback for IUniswapV3PoolActions#mint
/// @notice Any contract that calls IUniswapV3PoolActions#mint must implement this interface
interface IUniswapV3MintCallback {
    /// @notice Called to `msg.sender` after minting liquidity to a position from IUniswapV3Pool#mint.
    /// @dev In the implementation you must pay the pool tokens owed for the minted liquidity.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// @param amount0Owed The amount of token0 due to the pool for the minted liquidity
    /// @param amount1Owed The amount of token1 due to the pool for the minted liquidity
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#mint call
    function uniswapV3MintCallback(
        uint256 amount0Owed,
        uint256 amount1Owed,
        bytes calldata data
    ) external;
}

File 12 of 48 : IUniswapV3SwapCallback.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Callback for IUniswapV3PoolActions#swap
/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface
interface IUniswapV3SwapCallback {
    /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap.
    /// @dev In the implementation you must pay the pool tokens owed for the swap.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
    /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token0 to the pool.
    /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token1 to the pool.
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) external;
}

File 13 of 48 : IUniswapV3Factory.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title The interface for the Uniswap V3 Factory
/// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees
interface IUniswapV3Factory {
    /// @notice Emitted when the owner of the factory is changed
    /// @param oldOwner The owner before the owner was changed
    /// @param newOwner The owner after the owner was changed
    event OwnerChanged(address indexed oldOwner, address indexed newOwner);

    /// @notice Emitted when a pool is created
    /// @param token0 The first token of the pool by address sort order
    /// @param token1 The second token of the pool by address sort order
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @param tickSpacing The minimum number of ticks between initialized ticks
    /// @param pool The address of the created pool
    event PoolCreated(
        address indexed token0,
        address indexed token1,
        uint24 indexed fee,
        int24 tickSpacing,
        address pool
    );

    /// @notice Emitted when a new fee amount is enabled for pool creation via the factory
    /// @param fee The enabled fee, denominated in hundredths of a bip
    /// @param tickSpacing The minimum number of ticks between initialized ticks for pools created with the given fee
    event FeeAmountEnabled(uint24 indexed fee, int24 indexed tickSpacing);

    /// @notice Returns the current owner of the factory
    /// @dev Can be changed by the current owner via setOwner
    /// @return The address of the factory owner
    function owner() external view returns (address);

    /// @notice Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled
    /// @dev A fee amount can never be removed, so this value should be hard coded or cached in the calling context
    /// @param fee The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee
    /// @return The tick spacing
    function feeAmountTickSpacing(uint24 fee) external view returns (int24);

    /// @notice Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist
    /// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order
    /// @param tokenA The contract address of either token0 or token1
    /// @param tokenB The contract address of the other token
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @return pool The pool address
    function getPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external view returns (address pool);

    /// @notice Creates a pool for the given two tokens and fee
    /// @param tokenA One of the two tokens in the desired pool
    /// @param tokenB The other of the two tokens in the desired pool
    /// @param fee The desired fee for the pool
    /// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved
    /// from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments
    /// are invalid.
    /// @return pool The address of the newly created pool
    function createPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external returns (address pool);

    /// @notice Updates the owner of the factory
    /// @dev Must be called by the current owner
    /// @param _owner The new owner of the factory
    function setOwner(address _owner) external;

    /// @notice Enables a fee amount with the given tickSpacing
    /// @dev Fee amounts may never be removed once enabled
    /// @param fee The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6)
    /// @param tickSpacing The spacing between ticks to be enforced for all pools created with the given fee amount
    function enableFeeAmount(uint24 fee, int24 tickSpacing) external;
}

File 14 of 48 : 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 15 of 48 : 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 16 of 48 : 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 17 of 48 : 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 18 of 48 : 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 19 of 48 : 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 20 of 48 : 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 21 of 48 : 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 22 of 48 : 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 23 of 48 : 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 24 of 48 : LiquidityManagement.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity =0.7.6;
pragma abicoder v2;

import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol';
import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3MintCallback.sol';
import '@uniswap/v3-core/contracts/libraries/TickMath.sol';

import '../libraries/PoolAddress.sol';
import '../libraries/CallbackValidation.sol';
import '../libraries/LiquidityAmounts.sol';

import './PeripheryPayments.sol';
import './PeripheryImmutableState.sol';

/// @title Liquidity management functions
/// @notice Internal functions for safely managing liquidity in Uniswap V3
abstract contract LiquidityManagement is IUniswapV3MintCallback, PeripheryImmutableState, PeripheryPayments {
    struct MintCallbackData {
        PoolAddress.PoolKey poolKey;
        address payer;
    }

    /// @inheritdoc IUniswapV3MintCallback
    function uniswapV3MintCallback(
        uint256 amount0Owed,
        uint256 amount1Owed,
        bytes calldata data
    ) external override {
        MintCallbackData memory decoded = abi.decode(data, (MintCallbackData));
        CallbackValidation.verifyCallback(factory, decoded.poolKey);

        if (amount0Owed > 0) pay(decoded.poolKey.token0, decoded.payer, msg.sender, amount0Owed);
        if (amount1Owed > 0) pay(decoded.poolKey.token1, decoded.payer, msg.sender, amount1Owed);
    }

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

    /// @notice Add liquidity to an initialized pool
    function addLiquidity(AddLiquidityParams memory params)
        internal
        returns (
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1,
            IUniswapV3Pool pool
        )
    {
        PoolAddress.PoolKey memory poolKey =
            PoolAddress.PoolKey({token0: params.token0, token1: params.token1, fee: params.fee});

        pool = IUniswapV3Pool(PoolAddress.computeAddress(factory, poolKey));

        // compute the liquidity amount
        {
            (uint160 sqrtPriceX96, , , , , , ) = pool.slot0();
            uint160 sqrtRatioAX96 = TickMath.getSqrtRatioAtTick(params.tickLower);
            uint160 sqrtRatioBX96 = TickMath.getSqrtRatioAtTick(params.tickUpper);

            liquidity = LiquidityAmounts.getLiquidityForAmounts(
                sqrtPriceX96,
                sqrtRatioAX96,
                sqrtRatioBX96,
                params.amount0Desired,
                params.amount1Desired
            );
        }

        (amount0, amount1) = pool.mint(
            params.recipient,
            params.tickLower,
            params.tickUpper,
            liquidity,
            abi.encode(MintCallbackData({poolKey: poolKey, payer: msg.sender}))
        );

        require(amount0 >= params.amount0Min && amount1 >= params.amount1Min, 'Price slippage check');
    }
}

File 25 of 48 : PeripheryImmutableState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity =0.7.6;

import '../interfaces/IPeripheryImmutableState.sol';

/// @title Immutable state
/// @notice Immutable state used by periphery contracts
abstract contract PeripheryImmutableState is IPeripheryImmutableState {
    /// @inheritdoc IPeripheryImmutableState
    address public immutable override factory;
    /// @inheritdoc IPeripheryImmutableState
    address public immutable override WETH9;

    constructor(address _factory, address _WETH9) {
        factory = _factory;
        WETH9 = _WETH9;
    }
}

File 26 of 48 : PeripheryPayments.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';

import '../interfaces/IPeripheryPayments.sol';
import '../interfaces/external/IWETH9.sol';

import '../libraries/TransferHelper.sol';

import './PeripheryImmutableState.sol';

abstract contract PeripheryPayments is IPeripheryPayments, PeripheryImmutableState {
    receive() external payable {
        require(msg.sender == WETH9, 'Not WETH9');
    }

    /// @inheritdoc IPeripheryPayments
    function unwrapWETH9(uint256 amountMinimum, address recipient) public payable override {
        uint256 balanceWETH9 = IWETH9(WETH9).balanceOf(address(this));
        require(balanceWETH9 >= amountMinimum, 'Insufficient WETH9');

        if (balanceWETH9 > 0) {
            IWETH9(WETH9).withdraw(balanceWETH9);
            TransferHelper.safeTransferETH(recipient, balanceWETH9);
        }
    }

    /// @inheritdoc IPeripheryPayments
    function sweepToken(
        address token,
        uint256 amountMinimum,
        address recipient
    ) public payable override {
        uint256 balanceToken = IERC20(token).balanceOf(address(this));
        require(balanceToken >= amountMinimum, 'Insufficient token');

        if (balanceToken > 0) {
            TransferHelper.safeTransfer(token, recipient, balanceToken);
        }
    }

    /// @inheritdoc IPeripheryPayments
    function refundETH() external payable override {
        if (address(this).balance > 0) TransferHelper.safeTransferETH(msg.sender, address(this).balance);
    }

    /// @param token The token to pay
    /// @param payer The entity that must pay
    /// @param recipient The entity that will receive payment
    /// @param value The amount to pay
    function pay(
        address token,
        address payer,
        address recipient,
        uint256 value
    ) internal {
        if (token == WETH9 && address(this).balance >= value) {
            // pay with WETH9
            IWETH9(WETH9).deposit{value: value}(); // wrap only what is needed to pay
            IWETH9(WETH9).transfer(recipient, value);
        } else if (payer == address(this)) {
            // pay with tokens already in the contract (for the exact input multihop case)
            TransferHelper.safeTransfer(token, recipient, value);
        } else {
            // pull payment
            TransferHelper.safeTransferFrom(token, payer, recipient, value);
        }
    }
}

File 27 of 48 : IWETH9.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity =0.7.6;

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';

/// @title Interface for WETH9
interface IWETH9 is IERC20 {
    /// @notice Deposit ether to get wrapped ether
    function deposit() external payable;

    /// @notice Withdraw wrapped ether to get ether
    function withdraw(uint256) external;
}

File 28 of 48 : 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 29 of 48 : 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 30 of 48 : 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 31 of 48 : 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 32 of 48 : 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 33 of 48 : ISwapRouter.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;

import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';

/// @title Router token swapping functionality
/// @notice Functions for swapping tokens via Uniswap V3
interface ISwapRouter is IUniswapV3SwapCallback {
    struct ExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);

    struct ExactInputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut);

    struct ExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn);

    struct ExactOutputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn);
}

File 34 of 48 : CallbackValidation.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity =0.7.6;

import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';
import './PoolAddress.sol';

/// @notice Provides validation for callbacks from Uniswap V3 Pools
library CallbackValidation {
    /// @notice Returns the address of a valid Uniswap V3 Pool
    /// @param factory The contract address of the Uniswap V3 factory
    /// @param tokenA The contract address of either token0 or token1
    /// @param tokenB The contract address of the other token
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @return pool The V3 pool contract address
    function verifyCallback(
        address factory,
        address tokenA,
        address tokenB,
        uint24 fee
    ) internal view returns (IUniswapV3Pool pool) {
        return verifyCallback(factory, PoolAddress.getPoolKey(tokenA, tokenB, fee));
    }

    /// @notice Returns the address of a valid Uniswap V3 Pool
    /// @param factory The contract address of the Uniswap V3 factory
    /// @param poolKey The identifying key of the V3 pool
    /// @return pool The V3 pool contract address
    function verifyCallback(address factory, PoolAddress.PoolKey memory poolKey)
        internal
        view
        returns (IUniswapV3Pool pool)
    {
        pool = IUniswapV3Pool(PoolAddress.computeAddress(factory, poolKey));
        require(msg.sender == address(pool));
    }
}

File 35 of 48 : LiquidityAmounts.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/FixedPoint96.sol';

/// @title Liquidity amount functions
/// @notice Provides functions for computing liquidity amounts from token amounts and prices
library LiquidityAmounts {
    /// @notice Downcasts uint256 to uint128
    /// @param x The uint258 to be downcasted
    /// @return y The passed value, downcasted to uint128
    function toUint128(uint256 x) private pure returns (uint128 y) {
        require((y = uint128(x)) == x);
    }

    /// @notice Computes the amount of liquidity received for a given amount of token0 and price range
    /// @dev Calculates amount0 * (sqrt(upper) * sqrt(lower)) / (sqrt(upper) - sqrt(lower))
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param amount0 The amount0 being sent in
    /// @return liquidity The amount of returned liquidity
    function getLiquidityForAmount0(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint256 amount0
    ) internal pure returns (uint128 liquidity) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);
        uint256 intermediate = FullMath.mulDiv(sqrtRatioAX96, sqrtRatioBX96, FixedPoint96.Q96);
        return toUint128(FullMath.mulDiv(amount0, intermediate, sqrtRatioBX96 - sqrtRatioAX96));
    }

    /// @notice Computes the amount of liquidity received for a given amount of token1 and price range
    /// @dev Calculates amount1 / (sqrt(upper) - sqrt(lower)).
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param amount1 The amount1 being sent in
    /// @return liquidity The amount of returned liquidity
    function getLiquidityForAmount1(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint256 amount1
    ) internal pure returns (uint128 liquidity) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);
        return toUint128(FullMath.mulDiv(amount1, FixedPoint96.Q96, sqrtRatioBX96 - sqrtRatioAX96));
    }

    /// @notice Computes the maximum amount of liquidity received for a given amount of token0, token1, the current
    /// pool prices and the prices at the tick boundaries
    /// @param sqrtRatioX96 A sqrt price representing the current pool prices
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param amount0 The amount of token0 being sent in
    /// @param amount1 The amount of token1 being sent in
    /// @return liquidity The maximum amount of liquidity received
    function getLiquidityForAmounts(
        uint160 sqrtRatioX96,
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint256 amount0,
        uint256 amount1
    ) internal pure returns (uint128 liquidity) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        if (sqrtRatioX96 <= sqrtRatioAX96) {
            liquidity = getLiquidityForAmount0(sqrtRatioAX96, sqrtRatioBX96, amount0);
        } else if (sqrtRatioX96 < sqrtRatioBX96) {
            uint128 liquidity0 = getLiquidityForAmount0(sqrtRatioX96, sqrtRatioBX96, amount0);
            uint128 liquidity1 = getLiquidityForAmount1(sqrtRatioAX96, sqrtRatioX96, amount1);

            liquidity = liquidity0 < liquidity1 ? liquidity0 : liquidity1;
        } else {
            liquidity = getLiquidityForAmount1(sqrtRatioAX96, sqrtRatioBX96, amount1);
        }
    }

    /// @notice Computes the amount of token0 for a given amount of liquidity and a price range
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param liquidity The liquidity being valued
    /// @return amount0 The amount of token0
    function getAmount0ForLiquidity(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint128 liquidity
    ) internal pure returns (uint256 amount0) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        return
            FullMath.mulDiv(
                uint256(liquidity) << FixedPoint96.RESOLUTION,
                sqrtRatioBX96 - sqrtRatioAX96,
                sqrtRatioBX96
            ) / sqrtRatioAX96;
    }

    /// @notice Computes the amount of token1 for a given amount of liquidity and a price range
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param liquidity The liquidity being valued
    /// @return amount1 The amount of token1
    function getAmount1ForLiquidity(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint128 liquidity
    ) internal pure returns (uint256 amount1) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        return FullMath.mulDiv(liquidity, sqrtRatioBX96 - sqrtRatioAX96, FixedPoint96.Q96);
    }

    /// @notice Computes the token0 and token1 value for a given amount of liquidity, the current
    /// pool prices and the prices at the tick boundaries
    /// @param sqrtRatioX96 A sqrt price representing the current pool prices
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param liquidity The liquidity being valued
    /// @return amount0 The amount of token0
    /// @return amount1 The amount of token1
    function getAmountsForLiquidity(
        uint160 sqrtRatioX96,
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint128 liquidity
    ) internal pure returns (uint256 amount0, uint256 amount1) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        if (sqrtRatioX96 <= sqrtRatioAX96) {
            amount0 = getAmount0ForLiquidity(sqrtRatioAX96, sqrtRatioBX96, liquidity);
        } else if (sqrtRatioX96 < sqrtRatioBX96) {
            amount0 = getAmount0ForLiquidity(sqrtRatioX96, sqrtRatioBX96, liquidity);
            amount1 = getAmount1ForLiquidity(sqrtRatioAX96, sqrtRatioX96, liquidity);
        } else {
            amount1 = getAmount1ForLiquidity(sqrtRatioAX96, sqrtRatioBX96, liquidity);
        }
    }
}

File 36 of 48 : 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 37 of 48 : TransferHelper.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.6.0;

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';

library TransferHelper {
    /// @notice Transfers tokens from the targeted address to the given destination
    /// @notice Errors with 'STF' if transfer fails
    /// @param token The contract address of the token to be transferred
    /// @param from The originating address from which the tokens will be transferred
    /// @param to The destination address of the transfer
    /// @param value The amount to be transferred
    function safeTransferFrom(
        address token,
        address from,
        address to,
        uint256 value
    ) internal {
        (bool success, bytes memory data) =
            token.call(abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'STF');
    }

    /// @notice Transfers tokens from msg.sender to a recipient
    /// @dev Errors with ST if transfer fails
    /// @param token The contract address of the token which will be transferred
    /// @param to The recipient of the transfer
    /// @param value The value of the transfer
    function safeTransfer(
        address token,
        address to,
        uint256 value
    ) internal {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.transfer.selector, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'ST');
    }

    /// @notice Approves the stipulated contract to spend the given allowance in the given token
    /// @dev Errors with 'SA' if transfer fails
    /// @param token The contract address of the token to be approved
    /// @param to The target of the approval
    /// @param value The amount of the given token the target will be allowed to spend
    function safeApprove(
        address token,
        address to,
        uint256 value
    ) internal {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.approve.selector, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'SA');
    }

    /// @notice Transfers ETH to the recipient address
    /// @dev Fails with `STE`
    /// @param to The destination of the transfer
    /// @param value The value to be transferred
    function safeTransferETH(address to, uint256 value) internal {
        (bool success, ) = to.call{value: value}(new bytes(0));
        require(success, 'STE');
    }
}

File 38 of 48 : HyperbolicProtocol.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

import '@uniswap/v3-core/contracts/libraries/FixedPoint96.sol';
import './LendingRewards.sol';
import './RewardsLocker.sol';
import './UniswapV3FeeERC20.sol';
import './interfaces/IHyperbolicProtocol.sol';
import './interfaces/ILendingPool.sol';
import './interfaces/ITwapUtils.sol';
import './interfaces/IWETH.sol';

contract HyperbolicProtocol is IHyperbolicProtocol, UniswapV3FeeERC20 {
  uint32 constant DENOMENATOR = 10000;

  ILendingPool public lendingPool;
  LendingRewards public lendingRewards;
  RewardsLocker public rewardsLocker;
  ITwapUtils public twapUtils;

  uint256 public launchTime;

  uint32 public override poolToMarketCapTarget = DENOMENATOR; // 100%
  bool public taxesEnabled = true;
  bool public taxesOnTransfers;
  bool public taxesOnBuys = true;
  bool public taxesOnSells;
  uint32 public minTax;
  uint32 public maxTax = (DENOMENATOR * 8) / 100; // 8%
  uint32 public lpTax = (DENOMENATOR * 25) / 100;
  uint256 public swapAtAmount;
  bool public swapEnabled = true;

  mapping(address => bool) public amms; // AMM == Automated Market Maker
  mapping(address => bool) public isBot;
  mapping(address => bool) public rewardsExcluded;

  bool _swapping;
  modifier lockSwap() {
    _swapping = true;
    _;
    _swapping = false;
  }

  event Burn(address wallet, uint256 amount);

  constructor(
    ITwapUtils _twapUtils,
    INonfungiblePositionManager _manager,
    ISwapRouter _swapRouter,
    address _factory,
    address _WETH9
  )
    UniswapV3FeeERC20(
      'Hyperbolic Protocol',
      'HYPE',
      _manager,
      _swapRouter,
      _factory,
      _WETH9
    )
  {
    twapUtils = _twapUtils;
    lendingRewards = new LendingRewards(address(this));
    rewardsLocker = new RewardsLocker(lendingRewards);
    rewardsLocker.transferOwnership(_msgSender());

    rewardsExcluded[address(this)] = true;

    uint256 _totalSuppIncDecimals = 100_000_000 * 10 ** decimals();
    uint256 _lockerTokens = (_totalSuppIncDecimals * 10) / 100; // 10% to locker forever
    uint256 _disTokens = _totalSuppIncDecimals - _lockerTokens;
    _mint(address(rewardsLocker), _lockerTokens);
    _mint(owner(), _disTokens);
    swapAtAmount = (_totalSuppIncDecimals * 2) / 1000; // 0.2% supply
  }

  function _transfer(
    address sender,
    address recipient,
    uint256 amount
  ) internal virtual override {
    bool _isBuy = amms[sender] && recipient != address(swapRouter);
    bool _isSell = amms[recipient];
    uint256 _tax;

    if (_isBuy || _isSell) {
      require(launchTime > 0, 'TRANSFER: not launched');
    }

    if (launchTime > 0) {
      if (_isBuy) {
        if (block.timestamp <= launchTime + 10 seconds) {
          isBot[recipient] = true;
        } else if (block.timestamp <= launchTime + 30 minutes) {
          uint256 _launchMax = balanceOf(recipient) + amount;
          require(_launchMax <= totalSupply() / 100, 'max 1% at launch');
        }
      } else if (block.timestamp > launchTime + 10 seconds) {
        require(!isBot[recipient], 'TRANSFER: bot0');
        require(!isBot[sender], 'TRANSFER: bot1');
        require(!isBot[_msgSender()], 'TRANSFER: bot2');
      }

      if (
        !_swapping &&
        swapEnabled &&
        liquidityPosInitialized &&
        swapAtAmount > 0 &&
        balanceOf(address(this)) >= swapAtAmount
      ) {
        _swapForETHAndProcess();
      }

      if (taxesEnabled && _shouldBeTaxed(_isBuy, _isSell)) {
        _tax = calculateTaxFromAmount(amount);
        if (_tax > 0) {
          super._transfer(sender, address(this), _tax);
          _afterTokenTransfer(sender, address(this), _tax);
        }
      }
    }

    super._transfer(sender, recipient, amount - _tax);
    _afterTokenTransfer(sender, recipient, amount - _tax);
  }

  // NOTE: need this to execute _afterTokenTransfer callback (not present in openzeppelin 3.4.2)
  function _mint(address account, uint256 amount) internal override {
    super._mint(account, amount);
    _afterTokenTransfer(address(0), account, amount);
  }

  // NOTE: need this to execute _afterTokenTransfer callback (not present in openzeppelin 3.4.2)
  function _burn(address account, uint256 amount) internal override {
    super._burn(account, amount);
    _afterTokenTransfer(account, address(0), amount);
  }

  function burn(uint256 _amount) external {
    _burn(_msgSender(), _amount);
    emit Burn(_msgSender(), _amount);
  }

  function calculateTaxFromAmount(
    uint256 _amount
  ) public view returns (uint256) {
    (uint256 _poolBalETH, uint256 _mcETH) = poolBalToMarketCapRatio();
    uint256 _targetPoolBal = (_mcETH * poolToMarketCapTarget) / DENOMENATOR;
    if (_poolBalETH < _targetPoolBal) {
      uint256 _taxLessMax = ((maxTax - minTax) * _poolBalETH) / _targetPoolBal;
      return (_amount * (maxTax - _taxLessMax)) / DENOMENATOR;
    }
    return (_amount * minTax) / DENOMENATOR;
  }

  function poolBalToMarketCapRatio()
    public
    view
    override
    returns (uint256 lendPoolETHBal, uint256 marketCapETH)
  {
    (, , address _pool) = _getPoolInfo(_lpPoolFees[0]);
    if (_pool == address(0)) {
      return (0, 0);
    }
    lendPoolETHBal = address(lendingPool).balance;

    // get token market cap relative to token1 (WETH) and calculate
    // tax based on lending pool balance of ETH (higher bal, lower tax)
    uint160 _sqrtPriceX96 = twapUtils.getSqrtPriceX96FromPoolAndInterval(_pool);
    uint256 _priceX96 = twapUtils.getPriceX96FromSqrtPriceX96(_sqrtPriceX96);
    address _token0 = IUniswapV3Pool(_pool).token0();
    marketCapETH = _token0 == address(this)
      ? (totalSupply() * _priceX96) / FixedPoint96.Q96
      : (totalSupply() * FixedPoint96.Q96) / _priceX96;
  }

  // _fee: 3000 == 0.3%, 10000 == 1%
  // _initialPriceX96 = initialPrice * 2**96
  // initialPrice = token1Reserves / token0Reserves
  function lpCreatePool(
    uint24 _fee,
    uint256 _initialPriceX96,
    uint16 _initPriceObservations
  ) external onlyOwner {
    _createLiquidityPool(
      _fee,
      twapUtils.getSqrtPriceX96FromPriceX96(_initialPriceX96),
      _initPriceObservations
    );
  }

  // _fee: 3000 == 0.3%, 10000 == 1%
  function lpCreatePosition(
    uint24 _fee,
    uint256 _tokensNoDecimals
  ) external payable onlyOwner {
    require(msg.value > 0, 'ADDLP0');

    uint256 _tokens = _tokensNoDecimals * 10 ** decimals();
    super._transfer(_msgSender(), address(this), _tokens);
    address _pool = _createLiquidityPosition(_fee, _tokens, msg.value);
    _setIsRewardsExcluded(_pool, true);
    amms[_pool] = true;
  }

  function launch() external onlyOwner {
    require(launchTime == 0, 'LAUNCH: already launched');
    require(liquidityPosInitialized, 'LAUNCH: exec lpCreatePosition');
    launchTime = block.timestamp;
  }

  function toggleAmm(address _amm) external onlyOwner {
    amms[_amm] = !amms[_amm];
  }

  function forgiveBot(address _bot) external onlyOwner {
    require(isBot[_bot], 'FORGIVE: not a bot');
    isBot[_bot] = false;
  }

  function setIsRewardsExcluded(
    address _wallet,
    bool _isExcluded
  ) external onlyOwner {
    _setIsRewardsExcluded(_wallet, _isExcluded);
  }

  function _setIsRewardsExcluded(address _wallet, bool _isExcluded) internal {
    require(rewardsExcluded[_wallet] != _isExcluded, 'SETEXCL');
    rewardsExcluded[_wallet] = _isExcluded;

    uint256 _walletBal = balanceOf(_wallet);
    if (_walletBal > 0) {
      bool _removeRewards = false;
      if (_isExcluded) {
        _removeRewards = true;
      }
      lendingRewards.setShare(_wallet, _walletBal, _removeRewards);
    }
  }

  function setSwapAtAmount(uint256 _amount) external onlyOwner {
    require(_amount <= (totalSupply() * 2) / 100, 'SETSWAPAM: lte 2%');
    swapAtAmount = _amount;
  }

  function setSwapEnabled(bool _isEnabled) external onlyOwner {
    require(swapEnabled != _isEnabled, 'SETSWAPEN: must toggle');
    swapEnabled = _isEnabled;
  }

  function setPoolToMarketCapTarget(uint32 _target) external onlyOwner {
    require(_target <= DENOMENATOR, 'TARGET: lte 100%');
    poolToMarketCapTarget = _target;
  }

  function setTaxesEnabled(bool _enabled) external onlyOwner {
    require(taxesEnabled != _enabled, 'TAXESENABLED: must toggle');
    taxesEnabled = _enabled;
  }

  function setMinTax(uint32 _tax) external onlyOwner {
    require(_tax <= (DENOMENATOR * 20) / 100, 'SETMINTAX: lte 20%');
    minTax = _tax;
  }

  function setMaxTax(uint32 _tax) external onlyOwner {
    require(_tax <= (DENOMENATOR * 20) / 100, 'SETMAXTAX: lte 20%');
    maxTax = _tax;
  }

  function setLpTax(uint32 _tax) external onlyOwner {
    require(_tax <= DENOMENATOR, 'SETLPTAX: lte 100%');
    lpTax = _tax;
  }

  function setTaxOnAction(
    bool _onBuy,
    bool _onSell,
    bool _onTransfer
  ) external onlyOwner {
    taxesOnBuys = _onBuy;
    taxesOnSells = _onSell;
    taxesOnTransfers = _onTransfer;
  }

  function setLendingPool(ILendingPool _pool) external onlyOwner {
    lendingPool = _pool;
  }

  function manualSwap() external onlyOwner {
    require(balanceOf(address(this)) >= swapAtAmount, 'SWAP: not enough');
    _swapForETHAndProcess();
  }

  function _swapForETHAndProcess() internal lockSwap {
    uint256 _lpTokens = (swapAtAmount * lpTax) / DENOMENATOR / 2;
    uint256 _ethTokens = swapAtAmount - _lpTokens;
    (address _pool, ) = _swapTokensForETH(_ethTokens);

    uint256 _lpETH = (address(this).balance * lpTax) / DENOMENATOR;
    uint256 _lendingPoolETH = address(this).balance - _lpETH;

    if (_lendingPoolETH > 0) {
      address payable _payablePool = payable(address(lendingPool));
      (bool success, ) = _payablePool.call{ value: _lendingPoolETH }('');
      require(success, 'TRANSFER: ETH not sent to pool');
    }

    if (_pool != address(0) && _lpETH > 0) {
      _addToLiquidityPosition(_pool, _lpTokens, _lpETH);
    }
  }

  function _canReceiveRewards(address _wallet) internal view returns (bool) {
    return _wallet != address(0) && !rewardsExcluded[_wallet] && !amms[_wallet];
  }

  function _shouldBeTaxed(
    bool _isBuy,
    bool _isSell
  ) internal view returns (bool) {
    return
      (taxesOnTransfers && !_isBuy && !_isSell) ||
      (taxesOnBuys && _isBuy) ||
      (taxesOnSells && _isSell);
  }

  function _afterTokenTransfer(
    address _from,
    address _to,
    uint256 _amount
  ) internal virtual {
    if (_canReceiveRewards(_from)) {
      lendingRewards.setShare(_from, _amount, true);
    }
    if (_canReceiveRewards(_to)) {
      lendingRewards.setShare(_to, _amount, false);
    }
  }
}

File 39 of 48 : IHyperbolicProtocol.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

interface IHyperbolicProtocol {
  function poolBalToMarketCapRatio()
    external
    view
    returns (uint256 lendPoolETHBal, uint256 marketCapETH);

  function poolToMarketCapTarget() external view returns (uint32);
}

File 40 of 48 : ILendingPool.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

interface ILendingPool {
  function toggleWhitelistCollateralPool(address pool) external;
}

File 41 of 48 : IRewardsTracker.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

interface IRewardsTracker {
  function claimReward() external;

  function depositRewards() external payable;

  function getShares(address wallet) external view returns (uint256);

  function setShare(
    address shareholder,
    uint256 balanceUpdate,
    bool isRemoving
  ) external;
}

File 42 of 48 : ITwapUtils.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

interface ITwapUtils {
  function twapInterval() external view returns (uint32);

  function getPoolPriceUSDX96(
    address priceToken,
    address pricePool,
    address nativeStablePool,
    address WETH9,
    bool isPoolPairedWETH9
  ) external view returns (uint256);

  function getSqrtPriceX96FromPoolAndInterval(
    address uniswapV3Pool
  ) external view returns (uint160 sqrtPriceX96);

  function getSqrtPriceX96FromPriceX96(
    uint256 priceX96
  ) external pure returns (uint160 sqrtPriceX96);

  function getPriceX96FromSqrtPriceX96(
    uint160 sqrtPriceX96
  ) external pure returns (uint256 priceX96);
}

File 43 of 48 : IWETH.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

interface IWETH {
  function balanceOf(address wallet) external view returns (uint256);

  function decimals() external view returns (uint8);

  function deposit() external payable;

  function withdraw(uint256 _amount) external;
}

File 44 of 48 : LendingRewards.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

import './RewardsTracker.sol';

contract LendingRewards is RewardsTracker {
  constructor(address _token) RewardsTracker(_token) {}
}

File 45 of 48 : BokkyPooBahsDateTimeLibrary.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

// ----------------------------------------------------------------------------
// BokkyPooBah's DateTime Library v1.00
//
// A gas-efficient Solidity date and time library
//
// https://github.com/bokkypoobah/BokkyPooBahsDateTimeLibrary
//
// Tested date range 1970/01/01 to 2345/12/31
//
// Conventions:
// Unit      | Range         | Notes
// :-------- |:-------------:|:-----
// timestamp | >= 0          | Unix timestamp, number of seconds since 1970/01/01 00:00:00 UTC
// year      | 1970 ... 2345 |
// month     | 1 ... 12      |
// day       | 1 ... 31      |
// hour      | 0 ... 23      |
// minute    | 0 ... 59      |
// second    | 0 ... 59      |
// dayOfWeek | 1 ... 7       | 1 = Monday, ..., 7 = Sunday
//
//
// Enjoy. (c) BokkyPooBah / Bok Consulting Pty Ltd 2018.
//
// GNU Lesser General Public License 3.0
// https://www.gnu.org/licenses/lgpl-3.0.en.html
// ----------------------------------------------------------------------------

library BokkyPooBahsDateTimeLibrary {
  uint constant SECONDS_PER_DAY = 24 * 60 * 60;
  uint constant SECONDS_PER_HOUR = 60 * 60;
  uint constant SECONDS_PER_MINUTE = 60;
  int constant OFFSET19700101 = 2440588;

  uint constant DOW_MON = 1;
  uint constant DOW_TUE = 2;
  uint constant DOW_WED = 3;
  uint constant DOW_THU = 4;
  uint constant DOW_FRI = 5;
  uint constant DOW_SAT = 6;
  uint constant DOW_SUN = 7;

  // ------------------------------------------------------------------------
  // Calculate the number of days from 1970/01/01 to year/month/day using
  // the date conversion algorithm from
  //   http://aa.usno.navy.mil/faq/docs/JD_Formula.php
  // and subtracting the offset 2440588 so that 1970/01/01 is day 0
  //
  // days = day
  //      - 32075
  //      + 1461 * (year + 4800 + (month - 14) / 12) / 4
  //      + 367 * (month - 2 - (month - 14) / 12 * 12) / 12
  //      - 3 * ((year + 4900 + (month - 14) / 12) / 100) / 4
  //      - offset
  // ------------------------------------------------------------------------
  function _daysFromDate(
    uint year,
    uint month,
    uint day
  ) internal pure returns (uint _days) {
    require(year >= 1970);
    int _year = int(year);
    int _month = int(month);
    int _day = int(day);

    int __days = _day -
      32075 +
      (1461 * (_year + 4800 + (_month - 14) / 12)) /
      4 +
      (367 * (_month - 2 - ((_month - 14) / 12) * 12)) /
      12 -
      (3 * ((_year + 4900 + (_month - 14) / 12) / 100)) /
      4 -
      OFFSET19700101;

    _days = uint(__days);
  }

  // ------------------------------------------------------------------------
  // Calculate year/month/day from the number of days since 1970/01/01 using
  // the date conversion algorithm from
  //   http://aa.usno.navy.mil/faq/docs/JD_Formula.php
  // and adding the offset 2440588 so that 1970/01/01 is day 0
  //
  // int L = days + 68569 + offset
  // int N = 4 * L / 146097
  // L = L - (146097 * N + 3) / 4
  // year = 4000 * (L + 1) / 1461001
  // L = L - 1461 * year / 4 + 31
  // month = 80 * L / 2447
  // dd = L - 2447 * month / 80
  // L = month / 11
  // month = month + 2 - 12 * L
  // year = 100 * (N - 49) + year + L
  // ------------------------------------------------------------------------
  function _daysToDate(
    uint _days
  ) internal pure returns (uint year, uint month, uint day) {
    int __days = int(_days);

    int L = __days + 68569 + OFFSET19700101;
    int N = (4 * L) / 146097;
    L = L - (146097 * N + 3) / 4;
    int _year = (4000 * (L + 1)) / 1461001;
    L = L - (1461 * _year) / 4 + 31;
    int _month = (80 * L) / 2447;
    int _day = L - (2447 * _month) / 80;
    L = _month / 11;
    _month = _month + 2 - 12 * L;
    _year = 100 * (N - 49) + _year + L;

    year = uint(_year);
    month = uint(_month);
    day = uint(_day);
  }

  function timestampFromDate(
    uint year,
    uint month,
    uint day
  ) internal pure returns (uint timestamp) {
    timestamp = _daysFromDate(year, month, day) * SECONDS_PER_DAY;
  }

  function timestampFromDateTime(
    uint year,
    uint month,
    uint day,
    uint hour,
    uint minute,
    uint second
  ) internal pure returns (uint timestamp) {
    timestamp =
      _daysFromDate(year, month, day) *
      SECONDS_PER_DAY +
      hour *
      SECONDS_PER_HOUR +
      minute *
      SECONDS_PER_MINUTE +
      second;
  }

  function timestampToDate(
    uint timestamp
  ) internal pure returns (uint year, uint month, uint day) {
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
  }

  function timestampToDateTime(
    uint timestamp
  )
    internal
    pure
    returns (
      uint year,
      uint month,
      uint day,
      uint hour,
      uint minute,
      uint second
    )
  {
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    uint secs = timestamp % SECONDS_PER_DAY;
    hour = secs / SECONDS_PER_HOUR;
    secs = secs % SECONDS_PER_HOUR;
    minute = secs / SECONDS_PER_MINUTE;
    second = secs % SECONDS_PER_MINUTE;
  }

  function isValidDate(
    uint year,
    uint month,
    uint day
  ) internal pure returns (bool valid) {
    if (year >= 1970 && month > 0 && month <= 12) {
      uint daysInMonth = _getDaysInMonth(year, month);
      if (day > 0 && day <= daysInMonth) {
        valid = true;
      }
    }
  }

  function isValidDateTime(
    uint year,
    uint month,
    uint day,
    uint hour,
    uint minute,
    uint second
  ) internal pure returns (bool valid) {
    if (isValidDate(year, month, day)) {
      if (hour < 24 && minute < 60 && second < 60) {
        valid = true;
      }
    }
  }

  function isLeapYear(uint timestamp) internal pure returns (bool leapYear) {
    uint year;
    uint month;
    uint day;
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    leapYear = _isLeapYear(year);
  }

  function _isLeapYear(uint year) internal pure returns (bool leapYear) {
    leapYear = ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0);
  }

  function isWeekDay(uint timestamp) internal pure returns (bool weekDay) {
    weekDay = getDayOfWeek(timestamp) <= DOW_FRI;
  }

  function isWeekEnd(uint timestamp) internal pure returns (bool weekEnd) {
    weekEnd = getDayOfWeek(timestamp) >= DOW_SAT;
  }

  function getDaysInMonth(
    uint timestamp
  ) internal pure returns (uint daysInMonth) {
    uint year;
    uint month;
    uint day;
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    daysInMonth = _getDaysInMonth(year, month);
  }

  function _getDaysInMonth(
    uint year,
    uint month
  ) internal pure returns (uint daysInMonth) {
    if (
      month == 1 ||
      month == 3 ||
      month == 5 ||
      month == 7 ||
      month == 8 ||
      month == 10 ||
      month == 12
    ) {
      daysInMonth = 31;
    } else if (month != 2) {
      daysInMonth = 30;
    } else {
      daysInMonth = _isLeapYear(year) ? 29 : 28;
    }
  }

  // 1 = Monday, 7 = Sunday
  function getDayOfWeek(uint timestamp) internal pure returns (uint dayOfWeek) {
    uint _days = timestamp / SECONDS_PER_DAY;
    dayOfWeek = ((_days + 3) % 7) + 1;
  }

  function getYear(uint timestamp) internal pure returns (uint year) {
    uint month;
    uint day;
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
  }

  function getMonth(uint timestamp) internal pure returns (uint month) {
    uint year;
    uint day;
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
  }

  function getDay(uint timestamp) internal pure returns (uint day) {
    uint year;
    uint month;
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
  }

  function getHour(uint timestamp) internal pure returns (uint hour) {
    uint secs = timestamp % SECONDS_PER_DAY;
    hour = secs / SECONDS_PER_HOUR;
  }

  function getMinute(uint timestamp) internal pure returns (uint minute) {
    uint secs = timestamp % SECONDS_PER_HOUR;
    minute = secs / SECONDS_PER_MINUTE;
  }

  function getSecond(uint timestamp) internal pure returns (uint second) {
    second = timestamp % SECONDS_PER_MINUTE;
  }

  function addYears(
    uint timestamp,
    uint _years
  ) internal pure returns (uint newTimestamp) {
    uint year;
    uint month;
    uint day;
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    year += _years;
    uint daysInMonth = _getDaysInMonth(year, month);
    if (day > daysInMonth) {
      day = daysInMonth;
    }
    newTimestamp =
      _daysFromDate(year, month, day) *
      SECONDS_PER_DAY +
      (timestamp % SECONDS_PER_DAY);
    require(newTimestamp >= timestamp);
  }

  function addMonths(
    uint timestamp,
    uint _months
  ) internal pure returns (uint newTimestamp) {
    uint year;
    uint month;
    uint day;
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    month += _months;
    year += (month - 1) / 12;
    month = ((month - 1) % 12) + 1;
    uint daysInMonth = _getDaysInMonth(year, month);
    if (day > daysInMonth) {
      day = daysInMonth;
    }
    newTimestamp =
      _daysFromDate(year, month, day) *
      SECONDS_PER_DAY +
      (timestamp % SECONDS_PER_DAY);
    require(newTimestamp >= timestamp);
  }

  function addDays(
    uint timestamp,
    uint _days
  ) internal pure returns (uint newTimestamp) {
    newTimestamp = timestamp + _days * SECONDS_PER_DAY;
    require(newTimestamp >= timestamp);
  }

  function addHours(
    uint timestamp,
    uint _hours
  ) internal pure returns (uint newTimestamp) {
    newTimestamp = timestamp + _hours * SECONDS_PER_HOUR;
    require(newTimestamp >= timestamp);
  }

  function addMinutes(
    uint timestamp,
    uint _minutes
  ) internal pure returns (uint newTimestamp) {
    newTimestamp = timestamp + _minutes * SECONDS_PER_MINUTE;
    require(newTimestamp >= timestamp);
  }

  function addSeconds(
    uint timestamp,
    uint _seconds
  ) internal pure returns (uint newTimestamp) {
    newTimestamp = timestamp + _seconds;
    require(newTimestamp >= timestamp);
  }

  function subYears(
    uint timestamp,
    uint _years
  ) internal pure returns (uint newTimestamp) {
    uint year;
    uint month;
    uint day;
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    year -= _years;
    uint daysInMonth = _getDaysInMonth(year, month);
    if (day > daysInMonth) {
      day = daysInMonth;
    }
    newTimestamp =
      _daysFromDate(year, month, day) *
      SECONDS_PER_DAY +
      (timestamp % SECONDS_PER_DAY);
    require(newTimestamp <= timestamp);
  }

  function subMonths(
    uint timestamp,
    uint _months
  ) internal pure returns (uint newTimestamp) {
    uint year;
    uint month;
    uint day;
    (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    uint yearMonth = year * 12 + (month - 1) - _months;
    year = yearMonth / 12;
    month = (yearMonth % 12) + 1;
    uint daysInMonth = _getDaysInMonth(year, month);
    if (day > daysInMonth) {
      day = daysInMonth;
    }
    newTimestamp =
      _daysFromDate(year, month, day) *
      SECONDS_PER_DAY +
      (timestamp % SECONDS_PER_DAY);
    require(newTimestamp <= timestamp);
  }

  function subDays(
    uint timestamp,
    uint _days
  ) internal pure returns (uint newTimestamp) {
    newTimestamp = timestamp - _days * SECONDS_PER_DAY;
    require(newTimestamp <= timestamp);
  }

  function subHours(
    uint timestamp,
    uint _hours
  ) internal pure returns (uint newTimestamp) {
    newTimestamp = timestamp - _hours * SECONDS_PER_HOUR;
    require(newTimestamp <= timestamp);
  }

  function subMinutes(
    uint timestamp,
    uint _minutes
  ) internal pure returns (uint newTimestamp) {
    newTimestamp = timestamp - _minutes * SECONDS_PER_MINUTE;
    require(newTimestamp <= timestamp);
  }

  function subSeconds(
    uint timestamp,
    uint _seconds
  ) internal pure returns (uint newTimestamp) {
    newTimestamp = timestamp - _seconds;
    require(newTimestamp <= timestamp);
  }

  function diffYears(
    uint fromTimestamp,
    uint toTimestamp
  ) internal pure returns (uint _years) {
    require(fromTimestamp <= toTimestamp);
    uint fromYear;
    uint fromMonth;
    uint fromDay;
    uint toYear;
    uint toMonth;
    uint toDay;
    (fromYear, fromMonth, fromDay) = _daysToDate(
      fromTimestamp / SECONDS_PER_DAY
    );
    (toYear, toMonth, toDay) = _daysToDate(toTimestamp / SECONDS_PER_DAY);
    _years = toYear - fromYear;
  }

  function diffMonths(
    uint fromTimestamp,
    uint toTimestamp
  ) internal pure returns (uint _months) {
    require(fromTimestamp <= toTimestamp);
    uint fromYear;
    uint fromMonth;
    uint fromDay;
    uint toYear;
    uint toMonth;
    uint toDay;
    (fromYear, fromMonth, fromDay) = _daysToDate(
      fromTimestamp / SECONDS_PER_DAY
    );
    (toYear, toMonth, toDay) = _daysToDate(toTimestamp / SECONDS_PER_DAY);
    _months = toYear * 12 + toMonth - fromYear * 12 - fromMonth;
  }

  function diffDays(
    uint fromTimestamp,
    uint toTimestamp
  ) internal pure returns (uint _days) {
    require(fromTimestamp <= toTimestamp);
    _days = (toTimestamp - fromTimestamp) / SECONDS_PER_DAY;
  }

  function diffHours(
    uint fromTimestamp,
    uint toTimestamp
  ) internal pure returns (uint _hours) {
    require(fromTimestamp <= toTimestamp);
    _hours = (toTimestamp - fromTimestamp) / SECONDS_PER_HOUR;
  }

  function diffMinutes(
    uint fromTimestamp,
    uint toTimestamp
  ) internal pure returns (uint _minutes) {
    require(fromTimestamp <= toTimestamp);
    _minutes = (toTimestamp - fromTimestamp) / SECONDS_PER_MINUTE;
  }

  function diffSeconds(
    uint fromTimestamp,
    uint toTimestamp
  ) internal pure returns (uint _seconds) {
    require(fromTimestamp <= toTimestamp);
    _seconds = toTimestamp - fromTimestamp;
  }
}

File 46 of 48 : RewardsLocker.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

import '@openzeppelin/contracts/access/Ownable.sol';
import './interfaces/IRewardsTracker.sol';

contract RewardsLocker is Ownable {
  IRewardsTracker public rewards;

  constructor(IRewardsTracker _rewards) {
    rewards = _rewards;
  }

  function withdrawRewards() external {
    rewards.claimReward();
    uint256 _bal = address(this).balance;
    require(_bal > 0, 'WITHDRAW: no rewards to withdraw');
    (bool success, ) = payable(owner()).call{ value: _bal }('');
    require(success, 'WITHDRAW: ETH not sent to owner');
  }

  receive() external payable {}
}

File 47 of 48 : RewardsTracker.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;

import './interfaces/IRewardsTracker.sol';
import './libraries/BokkyPooBahsDateTimeLibrary.sol';

contract RewardsTracker is IRewardsTracker {
  uint256 constant MULTIPLIER = 10 ** 36;
  address public token;
  uint256 public totalStakedUsers;
  uint256 public totalSharesDeposited;

  struct Share {
    uint256 amount;
    uint256 stakedTime;
  }
  struct Reward {
    uint256 totalExcluded;
    uint256 totalRealized;
  }
  mapping(address => Share) private shares;
  mapping(address => Reward) public rewards;

  uint256 public rewardsPerShare;
  uint256 public totalDistributed;
  uint256 public totalRewards;
  mapping(uint256 => uint256) public monthlyRewards;

  event AddShares(address indexed user, uint256 amount);
  event RemoveShares(address indexed user, uint256 amount);
  event ClaimReward(address user);
  event DistributeReward(address indexed user, uint256 amount);
  event DepositRewards(address indexed user, uint256 amountTokens);

  modifier onlyToken() {
    require(msg.sender == token, 'ONLYTOKEN');
    _;
  }

  constructor(address _token) {
    token = _token;
  }

  function setShare(
    address shareholder,
    uint256 balanceUpdate,
    bool isRemoving
  ) public override onlyToken {
    _setShare(shareholder, balanceUpdate, isRemoving);
  }

  function _setShare(
    address shareholder,
    uint256 balanceUpdate,
    bool isRemoving
  ) internal {
    if (isRemoving) {
      _removeShares(shareholder, balanceUpdate);
      emit RemoveShares(shareholder, balanceUpdate);
    } else {
      _addShares(shareholder, balanceUpdate);
      emit AddShares(shareholder, balanceUpdate);
    }
  }

  function _addShares(address shareholder, uint256 amount) private {
    if (shares[shareholder].amount > 0) {
      _distributeReward(shareholder);
    }

    uint256 sharesBefore = shares[shareholder].amount;

    totalSharesDeposited += amount;
    shares[shareholder].amount += amount;
    shares[shareholder].stakedTime = block.timestamp;
    if (sharesBefore == 0 && shares[shareholder].amount > 0) {
      totalStakedUsers++;
    }
    rewards[shareholder].totalExcluded = _cumulativeRewards(
      shares[shareholder].amount
    );
  }

  function _removeShares(address shareholder, uint256 amount) private {
    require(
      shares[shareholder].amount > 0 && amount <= shares[shareholder].amount,
      'REMOVE: no shares'
    );
    _distributeReward(shareholder);

    totalSharesDeposited -= amount;
    shares[shareholder].amount -= amount;
    if (shares[shareholder].amount == 0) {
      totalStakedUsers--;
    }
    rewards[shareholder].totalExcluded = _cumulativeRewards(
      shares[shareholder].amount
    );
  }

  function depositRewards() external payable override {
    _depositRewards(msg.value);
  }

  function _depositRewards(uint256 _amount) internal {
    require(_amount > 0, 'DEPOSIT: no ETH');
    require(totalSharesDeposited > 0, 'DEPOSIT: no shares');

    totalRewards += _amount;
    uint256 _month = beginningOfMonth(block.timestamp);
    monthlyRewards[_month] += _amount;
    rewardsPerShare += (MULTIPLIER * _amount) / totalSharesDeposited;
    emit DepositRewards(msg.sender, _amount);
  }

  function _distributeReward(address shareholder) internal {
    if (shares[shareholder].amount == 0) {
      return;
    }

    uint256 amount = getUnpaid(shareholder);
    rewards[shareholder].totalRealized += amount;
    rewards[shareholder].totalExcluded = _cumulativeRewards(
      shares[shareholder].amount
    );

    if (amount > 0) {
      totalDistributed += amount;
      uint256 _balBefore = address(this).balance;
      (bool success, ) = payable(shareholder).call{ value: amount }('');
      require(success, 'DIST: could not distribute');
      require(address(this).balance >= _balBefore - amount, 'DIST: too much');
      emit DistributeReward(shareholder, amount);
    }
  }

  function claimReward() external override {
    _distributeReward(msg.sender);
    emit ClaimReward(msg.sender);
  }

  function getUnpaid(address shareholder) public view returns (uint256) {
    if (shares[shareholder].amount == 0) {
      return 0;
    }
    uint256 earnedRewards = _cumulativeRewards(shares[shareholder].amount);
    uint256 rewardsExcluded = rewards[shareholder].totalExcluded;
    if (earnedRewards <= rewardsExcluded) {
      return 0;
    }
    return earnedRewards - rewardsExcluded;
  }

  function beginningOfMonth(uint256 _timestamp) public view returns (uint256) {
    (, , uint256 _dayOfMonth) = BokkyPooBahsDateTimeLibrary.timestampToDate(
      _timestamp
    );
    return
      _timestamp - ((_dayOfMonth - 1) * 24 * 60 * 60) - (_timestamp % 1 days);
  }

  function _cumulativeRewards(uint256 share) internal view returns (uint256) {
    return (share * rewardsPerShare) / MULTIPLIER;
  }

  function getShares(address user) external view override returns (uint256) {
    return shares[user].amount;
  }
}

File 48 of 48 : UniswapV3FeeERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma abicoder v2;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';
import '@uniswap/v3-core/contracts/libraries/TickMath.sol';
import '@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol';
import '@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.sol';
import '@uniswap/v3-periphery/contracts/libraries/PoolAddress.sol';
import '@uniswap/v3-periphery/contracts/libraries/TransferHelper.sol';
import '@uniswap/v3-periphery/contracts/base/LiquidityManagement.sol';
import './interfaces/IWETH.sol';

contract UniswapV3FeeERC20 is
  IERC721Receiver,
  ERC20,
  Ownable,
  PeripheryImmutableState
{
  uint24[] internal _lpPoolFees;

  INonfungiblePositionManager public lpPosManager;
  ISwapRouter public swapRouter;

  // pool => position tokenId
  mapping(address => uint256) public liquidityPositions;
  bool internal liquidityPosInitialized;

  constructor(
    string memory _name,
    string memory _symbol,
    INonfungiblePositionManager _manager,
    ISwapRouter _swapRouter,
    address _factory,
    address _WETH9
  ) ERC20(_name, _symbol) PeripheryImmutableState(_factory, _WETH9) {
    lpPosManager = _manager;
    swapRouter = _swapRouter;
  }

  function onERC721Received(
    address,
    address,
    uint256,
    bytes calldata
  ) external override returns (bytes4) {
    return this.onERC721Received.selector;
  }

  function collectLiquidityPositionFees(address _pool) external {
    require(liquidityPosInitialized, 'COLLECTLPFEES: not initialized');
    lpPosManager.collect(
      INonfungiblePositionManager.CollectParams({
        tokenId: liquidityPositions[_pool],
        recipient: owner(),
        amount0Max: type(uint128).max,
        amount1Max: type(uint128).max
      })
    );
  }

  function depositLiquidityPosition(uint256 _tokenId) external onlyOwner {
    address _owner = lpPosManager.ownerOf(_tokenId);
    if (_owner != address(this)) {
      lpPosManager.safeTransferFrom(_owner, address(this), _tokenId);
    }
    (
      ,
      ,
      address _token0,
      address _token1,
      uint24 _fee,
      ,
      ,
      ,
      ,
      ,
      ,

    ) = lpPosManager.positions(_tokenId);
    PoolAddress.PoolKey memory _poolKey = PoolAddress.PoolKey({
      token0: _token0,
      token1: _token1,
      fee: _fee
    });
    address _pool = PoolAddress.computeAddress(factory, _poolKey);
    _lpPoolFees.push(_fee);
    liquidityPositions[_pool] = _tokenId;
  }

  function withdrawLiquidityPosition(address _pool) external onlyOwner {
    uint256 _tokenId = liquidityPositions[_pool];
    require(_tokenId > 0, 'WITHDRAW: no position');
    delete liquidityPositions[_pool];
    lpPosManager.safeTransferFrom(address(this), owner(), _tokenId);

    uint24 _fee = IUniswapV3Pool(_pool).fee();
    uint256 _idx;
    for (uint256 _i = 0; _i < _lpPoolFees.length; _i++) {
      if (_lpPoolFees[_i] == _fee) {
        _idx = _i;
        break;
      }
    }
    _lpPoolFees[_idx] = _lpPoolFees[_lpPoolFees.length - 1];
    _lpPoolFees.pop();
  }

  function _createLiquidityPool(
    uint24 _poolFee,
    uint160 _initialSqrtPriceX96,
    uint16 _initPriceObservations
  ) internal {
    (address _token0, address _token1) = _getToken0AndToken1();
    for (uint256 _i = 0; _i < _lpPoolFees.length; _i++) {
      require(_lpPoolFees[_i] != _poolFee, 'CREATEPOOL: already created');
    }
    _lpPoolFees.push(_poolFee);
    address _newPool = lpPosManager.createAndInitializePoolIfNecessary(
      _token0,
      _token1,
      _poolFee,
      _initialSqrtPriceX96
    );
    if (_initPriceObservations > 0) {
      IUniswapV3Pool(_newPool).increaseObservationCardinalityNext(
        _initPriceObservations
      );
    }
  }

  function _createLiquidityPosition(
    uint24 _poolFee,
    uint256 _amount0, // pass desired amount tokens in position
    uint256 _amount1 // pass desired amount ETH in position
  ) internal returns (address pool) {
    uint256 _balBefore = address(this).balance;
    (address token0, address token1) = _getToken0AndToken1();
    // if the token placements are different than what was passed in,
    // update the amounts to reflect the adjustment
    uint256 _amountETH = _amount1; // ETH always passed in through amount1
    if (token0 != address(this)) {
      uint256 _cachedAmount0 = _amount0;
      _amount0 = _amount1;
      _amount1 = _cachedAmount0;
    }
    TransferHelper.safeApprove(token0, address(lpPosManager), _amount0);
    TransferHelper.safeApprove(token1, address(lpPosManager), _amount1);

    (, , address _pool) = _getPoolInfo(_poolFee);
    require(liquidityPositions[_pool] == 0, 'CREATELP: already created');

    // needed to support the following tickSpacing requirement:
    // https://github.com/Uniswap/v3-core/blob/main/contracts/UniswapV3Pool.sol#L433
    // https://github.com/Uniswap/v3-core/blob/main/contracts/libraries/TickBitmap.sol#L28
    int24 _tickSpaceMaxMod = TickMath.MAX_TICK %
      IUniswapV3Pool(_pool).tickSpacing();

    INonfungiblePositionManager.MintParams
      memory params = INonfungiblePositionManager.MintParams({
        token0: token0,
        token1: token1,
        fee: _poolFee,
        tickLower: TickMath.MIN_TICK + _tickSpaceMaxMod,
        tickUpper: TickMath.MAX_TICK - _tickSpaceMaxMod,
        amount0Desired: _amount0,
        amount1Desired: _amount1,
        amount0Min: 0,
        amount1Min: 0,
        recipient: address(this),
        deadline: block.timestamp
      });
    (
      uint256 tokenId,
      ,
      uint256 amount0Actual,
      uint256 amount1Actual
    ) = lpPosManager.mint{ value: _amountETH }(params);
    lpPosManager.refundETH();
    uint256 _returnETH = address(this).balance - (_balBefore - _amountETH);
    if (_returnETH > 0) {
      (bool _ethRefunded, ) = payable(owner()).call{ value: _returnETH }('');
      require(_ethRefunded, 'CREATELP: ETH not refunded');
    }

    // remove allowances
    TransferHelper.safeApprove(token0, address(lpPosManager), 0);
    TransferHelper.safeApprove(token1, address(lpPosManager), 0);

    // refund main token if needed
    if (token0 == address(this)) {
      if (amount0Actual < _amount0) {
        uint256 refund0 = _amount0 - amount0Actual;
        TransferHelper.safeTransfer(token0, owner(), refund0);
      }
    } else if (amount1Actual < _amount1) {
      uint256 refund1 = _amount1 - amount1Actual;
      TransferHelper.safeTransfer(token1, owner(), refund1);
    }
    liquidityPositions[_pool] = tokenId;
    liquidityPosInitialized = true;
    return _pool;
  }

  function _addToLiquidityPosition(
    address pool,
    uint256 amountAdd0,
    uint256 amountAdd1
  ) internal {
    require(liquidityPosInitialized, 'INCREASELP: not initialized');

    uint256 _balBefore = address(this).balance;
    (address token0, address token1) = _getToken0AndToken1();

    // if the token placements are different than what was passed in,
    // update the amounts to reflect the adjustment
    uint256 _amountETH = amountAdd1; // ETH always passed in through amount1
    if (token0 != address(this)) {
      uint256 _cachedAmount0 = amountAdd0;
      amountAdd0 = amountAdd1;
      amountAdd1 = _cachedAmount0;
    }

    TransferHelper.safeApprove(token0, address(lpPosManager), amountAdd0);
    TransferHelper.safeApprove(token1, address(lpPosManager), amountAdd1);
    INonfungiblePositionManager.IncreaseLiquidityParams
      memory params = INonfungiblePositionManager.IncreaseLiquidityParams({
        tokenId: liquidityPositions[pool],
        amount0Desired: amountAdd0,
        amount1Desired: amountAdd1,
        amount0Min: 0,
        amount1Min: 0,
        deadline: block.timestamp
      });

    (, uint256 amount0Actual, uint256 amount1Actual) = lpPosManager
      .increaseLiquidity{ value: _amountETH }(params);
    uint256 _returnETH = address(this).balance - (_balBefore - _amountETH);
    if (_returnETH > 0) {
      (bool _ethRefunded, ) = payable(owner()).call{ value: _returnETH }('');
      require(_ethRefunded, 'CREATELP: ETH not refunded');
    }

    // remove allowances
    TransferHelper.safeApprove(token0, address(lpPosManager), 0);
    TransferHelper.safeApprove(token1, address(lpPosManager), 0);

    // refund main token if needed
    if (token0 == address(this)) {
      if (amount0Actual < amountAdd0) {
        uint256 refund0 = amountAdd0 - amount0Actual;
        TransferHelper.safeTransfer(token0, owner(), refund0);
      }
    } else if (amount1Actual < amountAdd1) {
      uint256 refund1 = amountAdd1 - amount1Actual;
      TransferHelper.safeTransfer(token1, owner(), refund1);
    }
  }

  function _swapTokensForETH(
    uint256 _amountIn
  ) internal returns (address pool, uint256 amountOut) {
    for (uint256 _i = 0; _i < _lpPoolFees.length; _i++) {
      uint24 _fee = _lpPoolFees[_i];
      (, , pool) = _getPoolInfo(_fee);
      (, , , , , , bool _unlocked) = IUniswapV3Pool(pool).slot0();
      if (!_unlocked) {
        continue;
      }

      TransferHelper.safeApprove(address(this), address(swapRouter), _amountIn);
      amountOut = swapRouter.exactInputSingle(
        ISwapRouter.ExactInputSingleParams({
          tokenIn: address(this),
          tokenOut: WETH9,
          fee: _fee,
          recipient: address(this),
          deadline: block.timestamp,
          amountIn: _amountIn,
          amountOutMinimum: 0,
          sqrtPriceLimitX96: 0
        })
      );
      uint256 _balWETH = IERC20(WETH9).balanceOf(address(this));
      if (_balWETH > 0) {
        IWETH(WETH9).withdraw(_balWETH);
      }
      break;
    }
    return (pool, amountOut);
  }

  function _getPoolInfo(
    uint24 _fee
  ) internal view returns (address token0, address token1, address pool) {
    (token0, token1) = _getToken0AndToken1();
    PoolAddress.PoolKey memory _poolKey = PoolAddress.PoolKey({
      token0: token0,
      token1: token1,
      fee: _fee
    });
    pool = PoolAddress.computeAddress(factory, _poolKey);
  }

  // needed because of this requirement of token0 < token1
  // https://github.com/Uniswap/v3-periphery/blob/v1.0.0/contracts/base/PoolInitializer.sol#L19
  function _getToken0AndToken1() internal view returns (address, address) {
    address _t0 = address(this);
    address _t1 = WETH9;
    return _t0 < _t1 ? (_t0, _t1) : (_t1, _t0);
  }

  receive() external payable {}
}

Settings
{
  "metadata": {
    "bytecodeHash": "none"
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ITwapUtils","name":"_twapUtils","type":"address"},{"internalType":"contract INonfungiblePositionManager","name":"_manager","type":"address"},{"internalType":"contract ISwapRouter","name":"_swapRouter","type":"address"},{"internalType":"address","name":"_factory","type":"address"},{"internalType":"address","name":"_WETH9","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WETH9","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"amms","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"calculateTaxFromAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"collectLiquidityPositionFees","outputs":[],"stateMutability":"nonpayable","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":"_tokenId","type":"uint256"}],"name":"depositLiquidityPosition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_bot","type":"address"}],"name":"forgiveBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lendingPool","outputs":[{"internalType":"contract ILendingPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lendingRewards","outputs":[{"internalType":"contract LendingRewards","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityPositions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint24","name":"_fee","type":"uint24"},{"internalType":"uint256","name":"_initialPriceX96","type":"uint256"},{"internalType":"uint16","name":"_initPriceObservations","type":"uint16"}],"name":"lpCreatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"_fee","type":"uint24"},{"internalType":"uint256","name":"_tokensNoDecimals","type":"uint256"}],"name":"lpCreatePosition","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"lpPosManager","outputs":[{"internalType":"contract INonfungiblePositionManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolBalToMarketCapRatio","outputs":[{"internalType":"uint256","name":"lendPoolETHBal","type":"uint256"},{"internalType":"uint256","name":"marketCapETH","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolToMarketCapTarget","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardsExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsLocker","outputs":[{"internalType":"contract RewardsLocker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"setIsRewardsExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ILendingPool","name":"_pool","type":"address"}],"name":"setLendingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_tax","type":"uint32"}],"name":"setLpTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_tax","type":"uint32"}],"name":"setMaxTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_tax","type":"uint32"}],"name":"setMinTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_target","type":"uint32"}],"name":"setPoolToMarketCapTarget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isEnabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_onBuy","type":"bool"},{"internalType":"bool","name":"_onSell","type":"bool"},{"internalType":"bool","name":"_onTransfer","type":"bool"}],"name":"setTaxOnAction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract ISwapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesOnBuys","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesOnSells","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesOnTransfers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_amm","type":"address"}],"name":"toggleAmm","outputs":[],"stateMutability":"nonpayable","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":[],"name":"twapUtils","outputs":[{"internalType":"contract ITwapUtils","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"withdrawLiquidityPosition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600f805460ff60301b1960ff60201b1963ffffffff199092166127101791909116640100000000171666010000000000001763ffffffff60601b1916601960651b1763ffffffff60801b191661027160821b1790556011805460ff191660011790553480156200007357600080fd5b50604051620067ec380380620067ec833981810160405260a08110156200009957600080fd5b508051602080830151604080850151606086015160809096015182518084018452601381527f4879706572626f6c69632050726f746f636f6c00000000000000000000000000818701908152845180860190955260048552634859504560e01b968501969096528051969794969295919390929091879187918791879183918391899189916200012d9160039190620006f8565b50805162000143906004906020840190620006f8565b50506005805460ff191660121790555060006200015f620003ca565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350606091821b6001600160601b0319908116608052911b1660a0525050600780546001600160a01b03199081166001600160a01b039485161790915560088054821692841692909217909155600d80549091169189169190911790555050604051309062000222906200078d565b6001600160a01b03909116815260405190819003602001906000f08015801562000250573d6000803e3d6000fd5b50600b80546001600160a01b0319166001600160a01b03928316179081905560405191169062000280906200079b565b6001600160a01b03909116815260405190819003602001906000f080158015620002ae573d6000803e3d6000fd5b50600c80546001600160a01b0319166001600160a01b0392831617908190551663f2fde38b620002dd620003ca565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b5050306000908152601460205260408120805460ff1916600117905591506200035c9050620003ce565b60ff16600a0a6305f5e1000290506000606482600a02816200037a57fe5b600c549190049150818303906200039b906001600160a01b031683620003d7565b620003b0620003a962000400565b82620003d7565b6103e8600284020460105550620007c09650505050505050565b3390565b60055460ff1690565b620003ee82826200041460201b62002a6a1760201c565b620003fc6000838362000523565b5050565b60055461010090046001600160a01b031690565b6001600160a01b03821662000470576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200047e6000838362000631565b6200049a816002546200063660201b62002b5a1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620004cd91839062002b5a62000636821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200052e8362000698565b15620005ab57600b54604080516329cc05cf60e01b81526001600160a01b0386811660048301526024820185905260016044830152915191909216916329cc05cf91606480830192600092919082900301818387803b1580156200059157600080fd5b505af1158015620005a6573d6000803e3d6000fd5b505050505b620005b68262000698565b156200063157600b54604080516329cc05cf60e01b81526001600160a01b0385811660048301526024820185905260006044830181905292519316926329cc05cf9260648084019391929182900301818387803b1580156200061757600080fd5b505af11580156200062c573d6000803e3d6000fd5b505050505b505050565b60008282018381101562000691576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b03821615801590620006cc57506001600160a01b03821660009081526014602052604090205460ff16155b8015620006f257506001600160a01b03821660009081526012602052604090205460ff16155b92915050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200073057600085556200077b565b82601f106200074b57805160ff19168380011785556200077b565b828001600101855582156200077b579182015b828111156200077b5782518255916020019190600101906200075e565b5062000789929150620007a9565b5090565b610b68806200572d83390190565b610557806200629583390190565b5b80821115620007895760008155600101620007aa565b60805160601c60a05160601c614f25620008086000398061177c5280613f31528061400052806140b9528061439a525080611e27528061258a5280613b895250614f256000f3fe60806040526004361061039b5760003560e01c80636fd0ea92116101dc578063bff51ef811610102578063dbfcd81e116100a0578063ee3df3b21161006f578063ee3df3b214610d2c578063eed7b0f814610d56578063f2fde38b14610d7e578063fb5ebf3614610db1576103a2565b8063dbfcd81e14610c80578063dd62ed3e14610c95578063de7bdfa614610cd0578063e01af92c14610d00576103a2565b8063c9e55759116100dc578063c9e5575914610be8578063cea2d99e14610bfd578063d51c24d814610c12578063d8b8acba14610c4d576103a2565b8063bff51ef814610ba9578063c31c9c0714610bbe578063c45a015514610bd3576103a2565b80638da5cb5b1161017a578063a59a997311610149578063a59a997314610b31578063a9059cbb14610b46578063ac5da95214610b7f578063b8b94c6e14610b94576103a2565b80638da5cb5b14610aa457806395d89b4114610ab95780639c646bb714610ace578063a457c2d714610af8576103a2565b8063790ca413116101b6578063790ca41314610a325780637e35969914610a475780638691752414610a5c5780638bf2581c14610a71576103a2565b80636fd0ea92146109b757806370a08231146109ea578063715018a614610a1d576103a2565b806339509351116102c157806351bc3c851161025f5780636402511e1161022e5780636402511e1461094e57806367fb23f7146109785780636d8813c51461098d5780636ddd1713146109a2576103a2565b806351bc3c851461089b5780635252d27d146108b057806359512ab0146108ef5780635f29a7481461091b576103a2565b80633f6bcab01161029b5780633f6bcab0146107fb5780633fb223b91461081057806342966c68146108405780634aa4a4fc1461086a576103a2565b8063395093511461077a5780633bbac579146107b35780633d09a82a146107e6576103a2565b8063150b7a0211610339578063229976a311610308578063229976a3146106a957806323b872dd146106d95780632bfb8ce41461071c578063313ce5671461074f576103a2565b8063150b7a021461056757806318160ddd146106215780631de3b450146106485780632278a2b914610676576103a2565b8063095ea7b311610375578063095ea7b31461047857806309e9e030146104c5578063113aa8b114610501578063134f9c8d14610534576103a2565b806301339c21146103a75780630206fc16146103be57806306fdde03146103ee576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610ddf565b005b3480156103ca57600080fd5b506103bc600480360360208110156103e157600080fd5b503563ffffffff16610ef3565b3480156103fa57600080fd5b50610403610fd2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561043d578181015183820152602001610425565b50505050905090810190601f16801561046a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561048457600080fd5b506104b16004803603604081101561049b57600080fd5b506001600160a01b038135169060200135611068565b604080519115158252519081900360200190f35b3480156104d157600080fd5b506103bc600480360360608110156104e857600080fd5b5080351515906020810135151590604001351515611085565b34801561050d57600080fd5b506103bc6004803603602081101561052457600080fd5b50356001600160a01b031661113c565b34801561054057600080fd5b506103bc6004803603602081101561055757600080fd5b50356001600160a01b03166111c6565b34801561057357600080fd5b506106046004803603608081101561058a57600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156105c557600080fd5b8201836020820111156105d757600080fd5b803590602001918460018302840111640100000000831117156105f957600080fd5b5090925090506112ab565b604080516001600160e01b03199092168252519081900360200190f35b34801561062d57600080fd5b506106366112bc565b60408051918252519081900360200190f35b34801561065457600080fd5b5061065d6112c2565b6040805163ffffffff9092168252519081900360200190f35b34801561068257600080fd5b506103bc6004803603602081101561069957600080fd5b50356001600160a01b03166112d5565b3480156106b557600080fd5b506103bc600480360360208110156106cc57600080fd5b503563ffffffff166113d3565b3480156106e557600080fd5b506104b1600480360360608110156106fc57600080fd5b506001600160a01b038135811691602081013590911690604001356114ad565b34801561072857600080fd5b506103bc6004803603602081101561073f57600080fd5b50356001600160a01b0316611534565b34801561075b57600080fd5b506107646115bf565b6040805160ff9092168252519081900360200190f35b34801561078657600080fd5b506104b16004803603604081101561079d57600080fd5b506001600160a01b0381351690602001356115c8565b3480156107bf57600080fd5b506104b1600480360360208110156107d657600080fd5b50356001600160a01b0316611616565b3480156107f257600080fd5b5061065d61162b565b34801561080757600080fd5b506104b161163e565b34801561081c57600080fd5b506103bc6004803603602081101561083357600080fd5b503563ffffffff1661164e565b34801561084c57600080fd5b506103bc6004803603602081101561086357600080fd5b503561171c565b34801561087657600080fd5b5061087f61177a565b604080516001600160a01b039092168252519081900360200190f35b3480156108a757600080fd5b506103bc61179e565b3480156108bc57600080fd5b506103bc600480360360608110156108d357600080fd5b50803562ffffff16906020810135906040013561ffff1661185c565b3480156108fb57600080fd5b506103bc6004803603602081101561091257600080fd5b50351515611942565b34801561092757600080fd5b506104b16004803603602081101561093e57600080fd5b50356001600160a01b0316611a2b565b34801561095a57600080fd5b506103bc6004803603602081101561097157600080fd5b5035611a40565b34801561098457600080fd5b5061087f611b04565b34801561099957600080fd5b5061065d611b13565b3480156109ae57600080fd5b506104b1611b26565b3480156109c357600080fd5b50610636600480360360208110156109da57600080fd5b50356001600160a01b0316611b2f565b3480156109f657600080fd5b5061063660048036036020811015610a0d57600080fd5b50356001600160a01b0316611b41565b348015610a2957600080fd5b506103bc611b60565b348015610a3e57600080fd5b50610636611c12565b348015610a5357600080fd5b5061065d611c18565b348015610a6857600080fd5b50610636611c24565b348015610a7d57600080fd5b506104b160048036036020811015610a9457600080fd5b50356001600160a01b0316611c2a565b348015610ab057600080fd5b5061087f611c3f565b348015610ac557600080fd5b50610403611c53565b348015610ada57600080fd5b5061063660048036036020811015610af157600080fd5b5035611cb4565b348015610b0457600080fd5b506104b160048036036040811015610b1b57600080fd5b506001600160a01b038135169060200135611d57565b348015610b3d57600080fd5b5061087f611dbf565b348015610b5257600080fd5b506104b160048036036040811015610b6957600080fd5b506001600160a01b038135169060200135611dd3565b348015610b8b57600080fd5b5061087f611de7565b348015610ba057600080fd5b5061087f611df6565b348015610bb557600080fd5b506104b1611e05565b348015610bca57600080fd5b5061087f611e16565b348015610bdf57600080fd5b5061087f611e25565b348015610bf457600080fd5b506104b1611e49565b348015610c0957600080fd5b506104b1611e59565b348015610c1e57600080fd5b506103bc60048036036040811015610c3557600080fd5b506001600160a01b0381351690602001351515611e6b565b348015610c5957600080fd5b506103bc60048036036020811015610c7057600080fd5b50356001600160a01b0316611edb565b348015610c8c57600080fd5b5061087f61217c565b348015610ca157600080fd5b5061063660048036036040811015610cb857600080fd5b506001600160a01b038135811691602001351661218b565b348015610cdc57600080fd5b506103bc60048036036020811015610cf357600080fd5b503563ffffffff166121b6565b348015610d0c57600080fd5b506103bc60048036036020811015610d2357600080fd5b50351515612290565b348015610d3857600080fd5b506103bc60048036036020811015610d4f57600080fd5b503561235c565b6103bc60048036036040811015610d6c57600080fd5b5062ffffff813516906020013561262a565b348015610d8a57600080fd5b506103bc60048036036020811015610da157600080fd5b50356001600160a01b0316612731565b348015610dbd57600080fd5b50610dc661283f565b6040805192835260208301919091528051918290030190f35b610de7612bbb565b6001600160a01b0316610df8611c3f565b6001600160a01b031614610e41576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600e5415610e96576040805162461bcd60e51b815260206004820152601860248201527f4c41554e43483a20616c7265616479206c61756e636865640000000000000000604482015290519081900360640190fd5b600a5460ff16610eed576040805162461bcd60e51b815260206004820152601d60248201527f4c41554e43483a2065786563206c70437265617465506f736974696f6e000000604482015290519081900360640190fd5b42600e55565b610efb612bbb565b6001600160a01b0316610f0c611c3f565b6001600160a01b031614610f55576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6107d063ffffffff82161115610fa7576040805162461bcd60e51b81526020600482015260126024820152715345544d494e5441583a206c74652032302560701b604482015290519081900360640190fd5b600f805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561105e5780601f106110335761010080835404028352916020019161105e565b820191906000526020600020905b81548152906001019060200180831161104157829003601f168201915b5050505050905090565b600061107c611075612bbb565b8484612bbf565b50600192915050565b61108d612bbb565b6001600160a01b031661109e611c3f565b6001600160a01b0316146110e7576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600f805466ff0000000000001916600160301b941515949094029390931767ff000000000000001916600160381b921515929092029190911765ff000000000019166501000000000091151591909102179055565b611144612bbb565b6001600160a01b0316611155611c3f565b6001600160a01b03161461119e576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6111ce612bbb565b6001600160a01b03166111df611c3f565b6001600160a01b031614611228576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526013602052604090205460ff1661128a576040805162461bcd60e51b81526020600482015260126024820152711193d491d255914e881b9bdd081848189bdd60721b604482015290519081900360640190fd5b6001600160a01b03166000908152601360205260409020805460ff19169055565b630a85bd0160e11b95945050505050565b60025490565b600f54600160801b900463ffffffff1681565b600a5460ff166113005760405162461bcd60e51b81526004016112f790614ae4565b60405180910390fd5b600754604080516080810182526001600160a01b038481166000908152600960209081529390205482529092169163fc6f786591810161133e611c3f565b6001600160a01b031681526001600160801b0360208201819052604091820152516001600160e01b031960e084901b16815261137d9190600401614bc0565b6040805180830381600087803b15801561139657600080fd5b505af11580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce91906148f4565b505050565b6113db612bbb565b6001600160a01b03166113ec611c3f565b6001600160a01b031614611435576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6107d063ffffffff82161115611487576040805162461bcd60e51b81526020600482015260126024820152715345544d41585441583a206c74652032302560701b604482015290519081900360640190fd5b600f805463ffffffff909216600160601b0263ffffffff60601b19909216919091179055565b60006114ba848484612cab565b61152a846114c6612bbb565b61152585604051806060016040528060288152602001614e42602891396001600160a01b038a16600090815260016020526040812090611504612bbb565b6001600160a01b031681526020810191909152604001600020549190613017565b612bbf565b5060019392505050565b61153c612bbb565b6001600160a01b031661154d611c3f565b6001600160a01b031614611596576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601260205260409020805460ff19811660ff90911615179055565b60055460ff1690565b600061107c6115d5612bbb565b8461152585600160006115e6612bbb565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612b5a565b60136020526000908152604090205460ff1681565b600f54600160401b900463ffffffff1681565b600f54600160301b900460ff1681565b611656612bbb565b6001600160a01b0316611667611c3f565b6001600160a01b0316146116b0576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b61271063ffffffff82161115611700576040805162461bcd60e51b815260206004820152601060248201526f5441524745543a206c7465203130302560801b604482015290519081900360640190fd5b600f805463ffffffff191663ffffffff92909216919091179055565b61172d611727612bbb565b826130ae565b7fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5611756612bbb565b604080516001600160a01b039092168252602082018490528051918290030190a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b6117a6612bbb565b6001600160a01b03166117b7611c3f565b6001600160a01b031614611800576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b60105461180c30611b41565b1015611852576040805162461bcd60e51b815260206004820152601060248201526f0a6ae82a07440dcdee840cadcdeeaced60831b604482015290519081900360640190fd5b61185a6130c4565b565b611864612bbb565b6001600160a01b0316611875611c3f565b6001600160a01b0316146118be576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600d546040805163fca39ddd60e01b81526004810185905290516113ce9286926001600160a01b039091169163fca39ddd91602480820192602092909190829003018186803b15801561191057600080fd5b505afa158015611924573d6000803e3d6000fd5b505050506040513d602081101561193a57600080fd5b505183613222565b61194a612bbb565b6001600160a01b031661195b611c3f565b6001600160a01b0316146119a4576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600f5460ff6401000000009091041615158115151415611a0b576040805162461bcd60e51b815260206004820152601960248201527f5441584553454e41424c45443a206d75737420746f67676c6500000000000000604482015290519081900360640190fd5b600f80549115156401000000000264ff0000000019909216919091179055565b60126020526000908152604090205460ff1681565b611a48612bbb565b6001600160a01b0316611a59611c3f565b6001600160a01b031614611aa2576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6064611aac6112bc565b60020281611ab657fe5b04811115611aff576040805162461bcd60e51b815260206004820152601160248201527053455453574150414d3a206c746520322560781b604482015290519081900360640190fd5b601055565b6007546001600160a01b031681565b600f54600160601b900463ffffffff1681565b60115460ff1681565b60096020526000908152604090205481565b6001600160a01b0381166000908152602081905260409020545b919050565b611b68612bbb565b6001600160a01b0316611b79611c3f565b6001600160a01b031614611bc2576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600e5481565b600f5463ffffffff1681565b60105481565b60146020526000908152604090205460ff1681565b60055461010090046001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561105e5780601f106110335761010080835404028352916020019161105e565b6000806000611cc161283f565b600f54919350915061271063ffffffff90911682020480831015611d3757600f54600090829063ffffffff600160401b82048116600160601b90920481169190910316850281611d0d57fe5b600f54919004915061271090600160601b900463ffffffff16829003870204945050505050611b5b565b600f5461271090600160401b900463ffffffff1686020495945050505050565b600061107c611d64612bbb565b8461152585604051806060016040528060258152602001614ef46025913960016000611d8e612bbb565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190613017565b600a5461010090046001600160a01b031681565b600061107c611de0612bbb565b8484612cab565b600b546001600160a01b031681565b600c546001600160a01b031681565b600f54640100000000900460ff1681565b6008546001600160a01b031681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f54600160381b900460ff1681565b600f5465010000000000900460ff1681565b611e73612bbb565b6001600160a01b0316611e84611c3f565b6001600160a01b031614611ecd576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b611ed782826133f4565b5050565b611ee3612bbb565b6001600160a01b0316611ef4611c3f565b6001600160a01b031614611f3d576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205480611f735760405162461bcd60e51b81526004016112f790614a7e565b6001600160a01b03808316600090815260096020526040812055600754166342842e0e30611f9f611c3f565b846040518463ffffffff1660e01b8152600401611fbe93929190614a2a565b600060405180830381600087803b158015611fd857600080fd5b505af1158015611fec573d6000803e3d6000fd5b505050506000826001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b15801561202b57600080fd5b505afa15801561203f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120639190614887565b90506000805b6006548110156120c6578262ffffff166006828154811061208657fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff1614156120be578091506120c6565b600101612069565b506006805460001981019081106120d957fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff166006828154811061210b57fe5b90600052602060002090600a91828204019190066003026101000a81548162ffffff021916908362ffffff160217905550600680548061214757fe5b60019003818190600052602060002090600a91828204019190066003026101000a81549062ffffff0219169055905550505050565b600d546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6121be612bbb565b6001600160a01b03166121cf611c3f565b6001600160a01b031614612218576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b61271063ffffffff8216111561226a576040805162461bcd60e51b81526020600482015260126024820152715345544c505441583a206c7465203130302560701b604482015290519081900360640190fd5b600f805463ffffffff909216600160801b0263ffffffff60801b19909216919091179055565b612298612bbb565b6001600160a01b03166122a9611c3f565b6001600160a01b0316146122f2576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b60115460ff1615158115151415612349576040805162461bcd60e51b815260206004820152601660248201527553455453574150454e3a206d75737420746f67676c6560501b604482015290519081900360640190fd5b6011805460ff1916911515919091179055565b612364612bbb565b6001600160a01b0316612375611c3f565b6001600160a01b0316146123be576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6007546040516331a9108f60e11b81526000916001600160a01b031690636352211e906123ef908590600401614d6d565b60206040518083038186803b15801561240757600080fd5b505afa15801561241b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243f9190614786565b90506001600160a01b03811630146124b857600754604051632142170760e11b81526001600160a01b03909116906342842e0e9061248590849030908790600401614a2a565b600060405180830381600087803b15801561249f57600080fd5b505af11580156124b3573d6000803e3d6000fd5b505050505b60075460405163133f757160e31b8152600091829182916001600160a01b0316906399fbab88906124ed908890600401614d6d565b6101806040518083038186803b15801561250657600080fd5b505afa15801561251a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253e9190614917565b50505050505050945094509450505060006040518060600160405280856001600160a01b03168152602001846001600160a01b031681526020018362ffffff16815250905060006125af7f00000000000000000000000000000000000000000000000000000000000000008361350e565b6006805460018101909155600a8082047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01805462ffffff978816600393909406929092026101000a9283029690920219169490941790935550506001600160a01b0316600090815260096020526040902093909355505050565b612632612bbb565b6001600160a01b0316612643611c3f565b6001600160a01b03161461268c576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600034116126ca576040805162461bcd60e51b815260206004820152600660248201526504144444c50360d41b604482015290519081900360640190fd5b60006126d46115bf565b60ff16600a0a820290506126f06126e9612bbb565b30836135f2565b60006126fd84833461374d565b905061270a8160016133f4565b6001600160a01b03166000908152601260205260409020805460ff19166001179055505050565b612739612bbb565b6001600160a01b031661274a611c3f565b6001600160a01b031614612793576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6001600160a01b0381166127d85760405162461bcd60e51b8152600401808060200182810382526026815260200180614dd46026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600080600061287f600660008154811061285557fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16613b47565b925050506001600160a01b03811661289e576000809250925050612a66565b600a54600d5460408051631ece4f9760e21b81526001600160a01b038581166004830152915161010090940482163196506000939190921691637b393e5c916024808301926020929190829003018186803b1580156128fc57600080fd5b505afa158015612910573d6000803e3d6000fd5b505050506040513d602081101561292657600080fd5b5051600d54604080516304e09a6160e41b81526001600160a01b03808516600483015291519394506000939190921691634e09a610916024808301926020929190829003018186803b15801561297b57600080fd5b505afa15801561298f573d6000803e3d6000fd5b505050506040513d60208110156129a557600080fd5b505160408051630dfe168160e01b815290519192506000916001600160a01b03861691630dfe1681916004808301926020929190829003018186803b1580156129ed57600080fd5b505afa158015612a01573d6000803e3d6000fd5b505050506040513d6020811015612a1757600080fd5b505190506001600160a01b0381163014612a475781600160601b612a396112bc565b0281612a4157fe5b04612a5f565b600160601b82612a556112bc565b0281612a5d57fe5b045b9450505050505b9091565b6001600160a01b038216612ac5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612ad1600083836113ce565b600254612ade9082612b5a565b6002556001600160a01b038216600090815260208190526040902054612b049082612b5a565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015612bb4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316612c045760405162461bcd60e51b8152600401808060200182810382526024815260200180614ed06024913960400191505060405180910390fd5b6001600160a01b038216612c495760405162461bcd60e51b8152600401808060200182810382526022815260200180614dfa6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526012602052604081205460ff168015612ce157506008546001600160a01b03848116911614155b6001600160a01b03841660009081526012602052604081205491925060ff909116908280612d0c5750815b15612d61576000600e5411612d61576040805162461bcd60e51b81526020600482015260166024820152751514905394d191548e881b9bdd081b185d5b98da195960521b604482015290519081900360640190fd5b600e5415612ff5578215612e1f57600e54600a014211612da3576001600160a01b0385166000908152601360205260409020805460ff19166001179055612e1a565b600e54610708014211612e1a57600084612dbc87611b41565b0190506064612dc96112bc565b81612dd057fe5b04811115612e18576040805162461bcd60e51b815260206004820152601060248201526f0dac2f040624a40c2e840d8c2eadcc6d60831b604482015290519081900360640190fd5b505b612f56565b600e54600a01421115612f56576001600160a01b03851660009081526013602052604090205460ff1615612e8b576040805162461bcd60e51b815260206004820152600e60248201526d05452414e534645523a20626f74360941b604482015290519081900360640190fd5b6001600160a01b03861660009081526013602052604090205460ff1615612eea576040805162461bcd60e51b815260206004820152600e60248201526d5452414e534645523a20626f743160901b604482015290519081900360640190fd5b60136000612ef6612bbb565b6001600160a01b0316815260208101919091526040016000205460ff1615612f56576040805162461bcd60e51b815260206004820152600e60248201526d2a2920a729a322a91d103137ba1960911b604482015290519081900360640190fd5b60155460ff16158015612f6b575060115460ff165b8015612f795750600a5460ff165b8015612f8757506000601054115b8015612f9d5750601054612f9a30611b41565b10155b15612faa57612faa6130c4565b600f54640100000000900460ff168015612fc95750612fc98383613bb7565b15612ff557612fd784611cb4565b90508015612ff557612fea8630836135f2565b612ff5863083613c1a565b61300286868387036135f2565b61300f8686838703613c1a565b505050505050565b600081848411156130a65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561306b578181015183820152602001613053565b50505050905090810190601f1680156130985780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6130b88282613d22565b611ed782600083613c1a565b6015805460ff19166001179055600f5460105460009160029161271091600160801b900463ffffffff160204816130f757fe5b049050600081601054039050600061310e82613e1e565b50600f5490915061271063ffffffff600160801b909204919091164702044781900380156131e957600a546040516101009091046001600160a01b031690600090829084908381818185875af1925050503d806000811461318b576040519150601f19603f3d011682016040523d82523d6000602084013e613190565b606091505b50509050806131e6576040805162461bcd60e51b815260206004820152601e60248201527f5452414e534645523a20455448206e6f742073656e7420746f20706f6f6c0000604482015290519081900360640190fd5b50505b6001600160a01b038316158015906132015750600082115b1561321157613211838684614137565b50506015805460ff19169055505050565b60008061322d614394565b9150915060005b6006548110156132a1578562ffffff166006828154811061325157fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff1614156132995760405162461bcd60e51b81526004016112f790614b1b565b600101613234565b506006805460018101825560009182527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f600a808304919091018054919092066003026101000a62ffffff81810219909216918916021790556007546040516309f56ab160e11b81526001600160a01b03909116906313ead5629061333090869086908b908b90600401614a4e565b602060405180830381600087803b15801561334a57600080fd5b505af115801561335e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133829190614786565b905061ffff84161561300f576040516332148f6760e01b81526001600160a01b038216906332148f67906133ba908790600401614d5e565b600060405180830381600087803b1580156133d457600080fd5b505af11580156133e8573d6000803e3d6000fd5b50505050505050505050565b6001600160a01b03821660009081526014602052604090205460ff1615158115151415613452576040805162461bcd60e51b815260206004820152600760248201526614d155115610d360ca1b604482015290519081900360640190fd5b6001600160a01b0382166000908152601460205260408120805460ff191683151517905561347f83611b41565b905080156113ce5760008215613493575060015b600b54604080516329cc05cf60e01b81526001600160a01b038781166004830152602482018690528415156044830152915191909216916329cc05cf91606480830192600092919082900301818387803b1580156134f057600080fd5b505af1158015613504573d6000803e3d6000fd5b5050505050505050565b600081602001516001600160a01b031682600001516001600160a01b03161061353657600080fd5b50805160208083015160409384015184516001600160a01b0394851681850152939091168385015262ffffff166060808401919091528351808403820181526080840185528051908301206001600160f81b031960a085015294901b6bffffffffffffffffffffffff191660a183015260b58201939093527fe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b5460d5808301919091528251808303909101815260f5909101909152805191012090565b6001600160a01b0383166136375760405162461bcd60e51b8152600401808060200182810382526025815260200180614eab6025913960400191505060405180910390fd5b6001600160a01b03821661367c5760405162461bcd60e51b8152600401808060200182810382526023815260200180614d8f6023913960400191505060405180910390fd5b6136878383836113ce565b6136c481604051806060016040528060268152602001614e1c602691396001600160a01b0386166000908152602081905260409020549190613017565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546136f39082612b5a565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600047818061375a614394565b9092509050846001600160a01b0383163014613774579495945b60075461378c9084906001600160a01b0316896143dd565b6007546137a49083906001600160a01b0316886143dd565b60006137af89613b47565b6001600160a01b0381166000908152600960205260409020549093501591506137ec90505760405162461bcd60e51b81526004016112f790614b52565b6000816001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561382757600080fd5b505afa15801561383b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061385f91906147a2565b60020b620d89e88161386d57fe5b0790506000604051806101600160405280876001600160a01b03168152602001866001600160a01b031681526020018c62ffffff16815260200183620d89e7190160020b815260200183620d89e7196000030360020b81526020018b81526020018a81526020016000815260200160008152602001306001600160a01b031681526020014281525090506000806000600760009054906101000a90046001600160a01b03166001600160a01b0316638831645688866040518363ffffffff1660e01b815260040161393e9190614cb0565b6080604051808303818588803b15801561395757600080fd5b505af115801561396b573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061399091906148b9565b93509350509250600760009054906101000a90046001600160a01b03166001600160a01b03166312210e8a6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139e757600080fd5b505af11580156139fb573d6000803e3d6000fd5b50505050868a0347038015613a8f576000613a14611c3f565b6001600160a01b031682604051613a2a90614a13565b60006040518083038185875af1925050503d8060008114613a67576040519150601f19603f3d011682016040523d82523d6000602084013e613a6c565b606091505b5050905080613a8d5760405162461bcd60e51b81526004016112f790614b89565b505b600754613aa8908b906001600160a01b031660006143dd565b600754613ac1908a906001600160a01b031660006143dd565b6001600160a01b038a16301415613af6578d831015613af157828e03613aef8b613ae9611c3f565b8361452b565b505b613b0f565b8c821015613b0f57818d03613b0d8a613ae9611c3f565b505b5050506001600160a01b0384166000908152600960205260409020555050600a805460ff191660011790559450505050509392505050565b6000806000613b54614394565b604080516060810182526001600160a01b0380851682528316602082015262ffffff8816918101919091529194509250613bae7f00000000000000000000000000000000000000000000000000000000000000008261350e565b93959294505050565b600f5460009065010000000000900460ff168015613bd3575082155b8015613bdd575081155b80613bf95750600f54600160301b900460ff168015613bf95750825b80612bb45750600f54600160381b900460ff168015612bb457509092915050565b613c2383614672565b15613c9d57600b54604080516329cc05cf60e01b81526001600160a01b0386811660048301526024820185905260016044830152915191909216916329cc05cf91606480830192600092919082900301818387803b158015613c8457600080fd5b505af1158015613c98573d6000803e3d6000fd5b505050505b613ca682614672565b156113ce57600b54604080516329cc05cf60e01b81526001600160a01b0385811660048301526024820185905260006044830181905292519316926329cc05cf9260648084019391929182900301818387803b158015613d0557600080fd5b505af1158015613d19573d6000803e3d6000fd5b50505050505050565b6001600160a01b038216613d675760405162461bcd60e51b8152600401808060200182810382526021815260200180614e8a6021913960400191505060405180910390fd5b613d73826000836113ce565b613db081604051806060016040528060228152602001614db2602291396001600160a01b0385166000908152602081905260409020549190613017565b6001600160a01b038316600090815260208190526040902055600254613dd690826146d0565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008060005b60065481101561413157600060068281548110613e3d57fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050613e6d81613b47565b9091509050809450506000846001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015613eb157600080fd5b505afa158015613ec5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee991906147f0565b965050505050505080613efd575050614129565b600854613f159030906001600160a01b0316886143dd565b6008546040805161010081018252308082526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116602084015262ffffff871683850152606083019190915242608083015260a082018a9052600060c0830181905260e0830152915163414bf38960e01b8152919092169163414bf38991613fa89190600401614c03565b602060405180830381600087803b158015613fc257600080fd5b505af1158015613fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ffa91906148a1565b935060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161404a9190614a16565b60206040518083038186803b15801561406257600080fd5b505afa158015614076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061409a91906148a1565b9050801561412157604051632e1a7d4d60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690632e1a7d4d906140ee908490600401614d6d565b600060405180830381600087803b15801561410857600080fd5b505af115801561411c573d6000803e3d6000fd5b505050505b505050614131565b600101613e24565b50915091565b600a5460ff166141595760405162461bcd60e51b81526004016112f790614aad565b47600080614165614394565b9092509050836001600160a01b038316301461417f579394935b6007546141979084906001600160a01b0316886143dd565b6007546141af9083906001600160a01b0316876143dd565b6040805160c0810182526001600160a01b03808a1660009081526009602090815284822054845283018a905282840189905260608301819052608083018190524260a0840152600754935163219f5d1760e01b8152929390928392919091169063219f5d17908690614225908790600401614c6c565b6060604051808303818588803b15801561423e57600080fd5b505af1158015614252573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061427791906147bc565b9093509150508387034703801561430d576000614292611c3f565b6001600160a01b0316826040516142a890614a13565b60006040518083038185875af1925050503d80600081146142e5576040519150601f19603f3d011682016040523d82523d6000602084013e6142ea565b606091505b505090508061430b5760405162461bcd60e51b81526004016112f790614b89565b505b6007546143269088906001600160a01b031660006143dd565b60075461433f9087906001600160a01b031660006143dd565b6001600160a01b03871630141561436e578983101561436957828a0361436788613ae9611c3f565b505b614387565b888210156143875781890361438587613ae9611c3f565b505b5050505050505050505050565b600080307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03811682106143d05780826143d3565b81815b9350935050509091565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663095ea7b360e01b1781529251825160009485949389169392918291908083835b602083106144595780518252601f19909201916020918201910161443a565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146144bb576040519150601f19603f3d011682016040523d82523d6000602084013e6144c0565b606091505b50915091508180156144ee5750805115806144ee57508080602001905160208110156144eb57600080fd5b50515b614524576040805162461bcd60e51b8152602060048201526002602482015261534160f01b604482015290519081900360640190fd5b5050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1781529251825160009485949389169392918291908083835b602083106145a75780518252601f199092019160209182019101614588565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614609576040519150601f19603f3d011682016040523d82523d6000602084013e61460e565b606091505b509150915081801561463c57508051158061463c575080806020019051602081101561463957600080fd5b50515b614524576040805162461bcd60e51b815260206004820152600260248201526114d560f21b604482015290519081900360640190fd5b60006001600160a01b038216158015906146a557506001600160a01b03821660009081526014602052604090205460ff16155b80156146ca57506001600160a01b03821660009081526012602052604090205460ff16155b92915050565b600082821115614727576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b8051611b5b81614d76565b8051600281900b8114611b5b57600080fd5b80516001600160801b0381168114611b5b57600080fd5b805161ffff81168114611b5b57600080fd5b805162ffffff81168114611b5b57600080fd5b600060208284031215614797578081fd5b8151612bb481614d76565b6000602082840312156147b3578081fd5b612bb482614738565b6000806000606084860312156147d0578182fd5b6147d98461474a565b925060208401519150604084015190509250925092565b600080600080600080600060e0888a03121561480a578283fd5b875161481581614d76565b965061482360208901614738565b955061483160408901614761565b945061483f60608901614761565b935061484d60808901614761565b925060a088015160ff81168114614862578283fd5b60c08901519092508015158114614877578182fd5b8091505092959891949750929550565b600060208284031215614898578081fd5b612bb482614773565b6000602082840312156148b2578081fd5b5051919050565b600080600080608085870312156148ce578384fd5b845193506148de6020860161474a565b6040860151606090960151949790965092505050565b60008060408385031215614906578182fd5b505080516020909101519092909150565b6000806000806000806000806000806000806101808d8f031215614939578485fd5b8c516bffffffffffffffffffffffff81168114614954578586fd5b9b5061496260208e0161472d565b9a5061497060408e0161472d565b995061497e60608e0161472d565b985061498c60808e01614773565b975061499a60a08e01614738565b96506149a860c08e01614738565b95506149b660e08e0161474a565b94506101008d015193506101208d015192506149d56101408e0161474a565b91506149e46101608e0161474a565b90509295989b509295989b509295989b565b6001600160a01b03169052565b60020b9052565b62ffffff169052565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b039485168152928416602084015262ffffff919091166040830152909116606082015260800190565b6020808252601590820152742ba4aa24222920ab9d103737903837b9b4ba34b7b760591b604082015260600190565b6020808252601b908201527f494e4352454153454c503a206e6f7420696e697469616c697a65640000000000604082015260600190565b6020808252601e908201527f434f4c4c4543544c50464545533a206e6f7420696e697469616c697a65640000604082015260600190565b6020808252601b908201527f435245415445504f4f4c3a20616c726561647920637265617465640000000000604082015260600190565b60208082526019908201527f4352454154454c503a20616c7265616479206372656174656400000000000000604082015260600190565b6020808252601a908201527f4352454154454c503a20455448206e6f7420726566756e646564000000000000604082015260600190565b815181526020808301516001600160a01b0316908201526040808301516001600160801b0390811691830191909152606092830151169181019190915260800190565b81516001600160a01b03908116825260208084015182169083015260408084015162ffffff16908301526060808401518216908301526080808401519083015260a0838101519083015260c0808401519083015260e09283015116918101919091526101000190565b600060c082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015292915050565b600061016082019050614cc48284516149f6565b6020830151614cd660208401826149f6565b506040830151614ce96040840182614a0a565b506060830151614cfc6060840182614a03565b506080830151614d0f6080840182614a03565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151614d4d828501826149f6565b505061014092830151919092015290565b61ffff91909116815260200190565b90815260200190565b6001600160a01b0381168114614d8b57600080fd5b5056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa164736f6c6343000706000a608060405234801561001057600080fd5b50604051610b68380380610b688339818101604052602081101561003357600080fd5b5051600080546001600160a01b039092166001600160a01b0319909216919091179055610b03806100656000396000f3fe6080604052600436106100dd5760003560e01c806389d969171161007f578063d076eabc11610059578063d076eabc14610251578063efca2eed1461027b578063f04da65b14610290578063fc0c546a146102c3576100dd565b806389d96917146101f4578063b88a802f14610227578063c7e1d0b11461023c576100dd565b8063152111f7116100bb578063152111f71461017f57806329cc05cf146101895780633c6e6789146101ca57806380bb4055146101df576100dd565b8063058df06d146100e25780630700037d1461011e5780630e15561a1461016a575b600080fd5b3480156100ee57600080fd5b5061010c6004803603602081101561010557600080fd5b50356102f4565b60408051918252519081900360200190f35b34801561012a57600080fd5b506101516004803603602081101561014157600080fd5b50356001600160a01b0316610306565b6040805192835260208301919091528051918290030190f35b34801561017657600080fd5b5061010c61031f565b610187610325565b005b34801561019557600080fd5b50610187600480360360608110156101ac57600080fd5b506001600160a01b0381351690602081013590604001351515610330565b3480156101d657600080fd5b5061010c61038b565b3480156101eb57600080fd5b5061010c610391565b34801561020057600080fd5b5061010c6004803603602081101561021757600080fd5b50356001600160a01b0316610397565b34801561023357600080fd5b50610187610416565b34801561024857600080fd5b5061010c610454565b34801561025d57600080fd5b5061010c6004803603602081101561027457600080fd5b503561045a565b34801561028757600080fd5b5061010c61048f565b34801561029c57600080fd5b5061010c600480360360208110156102b357600080fd5b50356001600160a01b0316610495565b3480156102cf57600080fd5b506102d86104b0565b604080516001600160a01b039092168252519081900360200190f35b60086020526000908152604090205481565b6004602052600090815260409020805460019091015482565b60075481565b61032e346104bf565b565b6000546001600160a01b0316331461037b576040805162461bcd60e51b815260206004820152600960248201526827a7262caa27a5a2a760b91b604482015290519081900360640190fd5b6103868383836105e0565b505050565b60025481565b60015481565b6001600160a01b0381166000908152600360205260408120546103bc57506000610411565b6001600160a01b0382166000908152600360205260408120546103de90610682565b6001600160a01b03841660009081526004602052604090205490915080821161040c57600092505050610411565b900390505b919050565b61041f336106a7565b6040805133815290517f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e89181900360200190a1565b60055481565b6000806104668361086a565b9250505062015180838161047657fe5b0662015180600019909201919091028303039050919050565b60065481565b6001600160a01b031660009081526003602052604090205490565b6000546001600160a01b031681565b60008111610506576040805162461bcd60e51b815260206004820152600f60248201526e0888aa09ea692a87440dcde408aa89608b1b604482015290519081900360640190fd5b600060025411610552576040805162461bcd60e51b81526020600482015260126024820152714445504f5349543a206e6f2073686172657360701b604482015290519081900360640190fd5b600780548201905560006105654261045a565b60008181526008602052604090208054840190556002549091506ec097ce7bc90715b34b9f100000000083028161059857fe5b600580549290910491909101905560408051838152905133917fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d5613409919081900360200190a25050565b8015610634576105f08383610889565b6040805183815290516001600160a01b038516917fae0577e1c96b26fbc0b9df702431f5470979d001d24f136eded791b8b6521d6f919081900360200190a2610386565b61063e8383610991565b6040805183815290516001600160a01b038516917fba8f3777cf908803bf1f3dd58e7f4b7d3de4dbe3c234c4ccab0975d98f7cd388919081900360200190a2505050565b60006ec097ce7bc90715b34b9f10000000006005548302816106a057fe5b0492915050565b6001600160a01b0381166000908152600360205260409020546106c957610867565b60006106d482610397565b6001600160a01b0383166000908152600460209081526040808320600101805485019055600390915290205490915061070c90610682565b6001600160a01b038316600090815260046020526040902055801561086557600680548201905560405147906000906001600160a01b0385169084908381818185875af1925050503d8060008114610780576040519150601f19603f3d011682016040523d82523d6000602084013e610785565b606091505b50509050806107db576040805162461bcd60e51b815260206004820152601a60248201527f444953543a20636f756c64206e6f742064697374726962757465000000000000604482015290519081900360640190fd5b828203471015610823576040805162461bcd60e51b815260206004820152600e60248201526d08892a6a87440e8dede40daeac6d60931b604482015290519081900360640190fd5b6040805184815290516001600160a01b038616917fe8b160e373db99a103e0a2abfa029b9c3fc8b328984a1ead8a65ae68ae646db7919081900360200190a250505b505b50565b6000808061087c620151808504610a60565b9196909550909350915050565b6001600160a01b038216600090815260036020526040902054158015906108c857506001600160a01b0382166000908152600360205260409020548111155b61090d576040805162461bcd60e51b815260206004820152601160248201527052454d4f56453a206e6f2073686172657360781b604482015290519081900360640190fd5b610916826106a7565b6002805482900390556001600160a01b038216600090815260036020526040902080548290039081905561094f57600180546000190190555b6001600160a01b03821660009081526003602052604090205461097190610682565b6001600160a01b0390921660009081526004602052604090209190915550565b6001600160a01b038216600090815260036020526040902054156109b8576109b8826106a7565b6001600160a01b0382166000908152600360205260409020805460028054840190558154830182554260019092019190915580158015610a0f57506001600160a01b03831660009081526003602052604090205415155b15610a1d5760018054810190555b6001600160a01b038316600090815260036020526040902054610a3f90610682565b6001600160a01b039093166000908152600460205260409020929092555050565b60008080836226496581018262023ab1600483020590506004600362023ab18302010590910390600062164b09610fa0600185010205905060046105b58202058303601f019250600061098f8460500281610ab757fe5b0590506000605061098f83020585039050600b820560301994909401606402929092018301996002600c9094029091039290920197509550935050505056fea164736f6c6343000706000a608060405234801561001057600080fd5b506040516105573803806105578339818101604052602081101561003357600080fd5b5051600061003f6100ae565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319166001600160a01b03929092169190911790556100b2565b3390565b610496806100c16000396000f3fe60806040526004361061004e5760003560e01c8063715018a61461005a5780638da5cb5b146100715780639ec5a894146100a2578063c7b8981c146100b7578063f2fde38b146100cc57610055565b3661005557005b600080fd5b34801561006657600080fd5b5061006f6100ff565b005b34801561007d57600080fd5b506100866101bd565b604080516001600160a01b039092168252519081900360200190f35b3480156100ae57600080fd5b506100866101cc565b3480156100c357600080fd5b5061006f6101db565b3480156100d857600080fd5b5061006f600480360360208110156100ef57600080fd5b50356001600160a01b031661034b565b61010761045f565b6001600160a01b03166101186101bd565b6001600160a01b031614610173576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6001546001600160a01b031681565b600160009054906101000a90046001600160a01b03166001600160a01b031663b88a802f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561022b57600080fd5b505af115801561023f573d6000803e3d6000fd5b50479250505080610297576040805162461bcd60e51b815260206004820181905260248201527f57495448445241573a206e6f207265776172647320746f207769746864726177604482015290519081900360640190fd5b60006102a16101bd565b6040516001600160a01b0391909116908390600081818185875af1925050503d80600081146102ec576040519150601f19603f3d011682016040523d82523d6000602084013e6102f1565b606091505b5050905080610347576040805162461bcd60e51b815260206004820152601f60248201527f57495448445241573a20455448206e6f742073656e7420746f206f776e657200604482015290519081900360640190fd5b5050565b61035361045f565b6001600160a01b03166103646101bd565b6001600160a01b0316146103bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166104045760405162461bcd60e51b81526004018080602001828103825260268152602001806104646026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b339056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a164736f6c6343000706000a000000000000000000000000bf1858b24243ecbcf7d940f458e36cb7401c2366000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80636fd0ea92116101dc578063bff51ef811610102578063dbfcd81e116100a0578063ee3df3b21161006f578063ee3df3b214610d2c578063eed7b0f814610d56578063f2fde38b14610d7e578063fb5ebf3614610db1576103a2565b8063dbfcd81e14610c80578063dd62ed3e14610c95578063de7bdfa614610cd0578063e01af92c14610d00576103a2565b8063c9e55759116100dc578063c9e5575914610be8578063cea2d99e14610bfd578063d51c24d814610c12578063d8b8acba14610c4d576103a2565b8063bff51ef814610ba9578063c31c9c0714610bbe578063c45a015514610bd3576103a2565b80638da5cb5b1161017a578063a59a997311610149578063a59a997314610b31578063a9059cbb14610b46578063ac5da95214610b7f578063b8b94c6e14610b94576103a2565b80638da5cb5b14610aa457806395d89b4114610ab95780639c646bb714610ace578063a457c2d714610af8576103a2565b8063790ca413116101b6578063790ca41314610a325780637e35969914610a475780638691752414610a5c5780638bf2581c14610a71576103a2565b80636fd0ea92146109b757806370a08231146109ea578063715018a614610a1d576103a2565b806339509351116102c157806351bc3c851161025f5780636402511e1161022e5780636402511e1461094e57806367fb23f7146109785780636d8813c51461098d5780636ddd1713146109a2576103a2565b806351bc3c851461089b5780635252d27d146108b057806359512ab0146108ef5780635f29a7481461091b576103a2565b80633f6bcab01161029b5780633f6bcab0146107fb5780633fb223b91461081057806342966c68146108405780634aa4a4fc1461086a576103a2565b8063395093511461077a5780633bbac579146107b35780633d09a82a146107e6576103a2565b8063150b7a0211610339578063229976a311610308578063229976a3146106a957806323b872dd146106d95780632bfb8ce41461071c578063313ce5671461074f576103a2565b8063150b7a021461056757806318160ddd146106215780631de3b450146106485780632278a2b914610676576103a2565b8063095ea7b311610375578063095ea7b31461047857806309e9e030146104c5578063113aa8b114610501578063134f9c8d14610534576103a2565b806301339c21146103a75780630206fc16146103be57806306fdde03146103ee576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610ddf565b005b3480156103ca57600080fd5b506103bc600480360360208110156103e157600080fd5b503563ffffffff16610ef3565b3480156103fa57600080fd5b50610403610fd2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561043d578181015183820152602001610425565b50505050905090810190601f16801561046a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561048457600080fd5b506104b16004803603604081101561049b57600080fd5b506001600160a01b038135169060200135611068565b604080519115158252519081900360200190f35b3480156104d157600080fd5b506103bc600480360360608110156104e857600080fd5b5080351515906020810135151590604001351515611085565b34801561050d57600080fd5b506103bc6004803603602081101561052457600080fd5b50356001600160a01b031661113c565b34801561054057600080fd5b506103bc6004803603602081101561055757600080fd5b50356001600160a01b03166111c6565b34801561057357600080fd5b506106046004803603608081101561058a57600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156105c557600080fd5b8201836020820111156105d757600080fd5b803590602001918460018302840111640100000000831117156105f957600080fd5b5090925090506112ab565b604080516001600160e01b03199092168252519081900360200190f35b34801561062d57600080fd5b506106366112bc565b60408051918252519081900360200190f35b34801561065457600080fd5b5061065d6112c2565b6040805163ffffffff9092168252519081900360200190f35b34801561068257600080fd5b506103bc6004803603602081101561069957600080fd5b50356001600160a01b03166112d5565b3480156106b557600080fd5b506103bc600480360360208110156106cc57600080fd5b503563ffffffff166113d3565b3480156106e557600080fd5b506104b1600480360360608110156106fc57600080fd5b506001600160a01b038135811691602081013590911690604001356114ad565b34801561072857600080fd5b506103bc6004803603602081101561073f57600080fd5b50356001600160a01b0316611534565b34801561075b57600080fd5b506107646115bf565b6040805160ff9092168252519081900360200190f35b34801561078657600080fd5b506104b16004803603604081101561079d57600080fd5b506001600160a01b0381351690602001356115c8565b3480156107bf57600080fd5b506104b1600480360360208110156107d657600080fd5b50356001600160a01b0316611616565b3480156107f257600080fd5b5061065d61162b565b34801561080757600080fd5b506104b161163e565b34801561081c57600080fd5b506103bc6004803603602081101561083357600080fd5b503563ffffffff1661164e565b34801561084c57600080fd5b506103bc6004803603602081101561086357600080fd5b503561171c565b34801561087657600080fd5b5061087f61177a565b604080516001600160a01b039092168252519081900360200190f35b3480156108a757600080fd5b506103bc61179e565b3480156108bc57600080fd5b506103bc600480360360608110156108d357600080fd5b50803562ffffff16906020810135906040013561ffff1661185c565b3480156108fb57600080fd5b506103bc6004803603602081101561091257600080fd5b50351515611942565b34801561092757600080fd5b506104b16004803603602081101561093e57600080fd5b50356001600160a01b0316611a2b565b34801561095a57600080fd5b506103bc6004803603602081101561097157600080fd5b5035611a40565b34801561098457600080fd5b5061087f611b04565b34801561099957600080fd5b5061065d611b13565b3480156109ae57600080fd5b506104b1611b26565b3480156109c357600080fd5b50610636600480360360208110156109da57600080fd5b50356001600160a01b0316611b2f565b3480156109f657600080fd5b5061063660048036036020811015610a0d57600080fd5b50356001600160a01b0316611b41565b348015610a2957600080fd5b506103bc611b60565b348015610a3e57600080fd5b50610636611c12565b348015610a5357600080fd5b5061065d611c18565b348015610a6857600080fd5b50610636611c24565b348015610a7d57600080fd5b506104b160048036036020811015610a9457600080fd5b50356001600160a01b0316611c2a565b348015610ab057600080fd5b5061087f611c3f565b348015610ac557600080fd5b50610403611c53565b348015610ada57600080fd5b5061063660048036036020811015610af157600080fd5b5035611cb4565b348015610b0457600080fd5b506104b160048036036040811015610b1b57600080fd5b506001600160a01b038135169060200135611d57565b348015610b3d57600080fd5b5061087f611dbf565b348015610b5257600080fd5b506104b160048036036040811015610b6957600080fd5b506001600160a01b038135169060200135611dd3565b348015610b8b57600080fd5b5061087f611de7565b348015610ba057600080fd5b5061087f611df6565b348015610bb557600080fd5b506104b1611e05565b348015610bca57600080fd5b5061087f611e16565b348015610bdf57600080fd5b5061087f611e25565b348015610bf457600080fd5b506104b1611e49565b348015610c0957600080fd5b506104b1611e59565b348015610c1e57600080fd5b506103bc60048036036040811015610c3557600080fd5b506001600160a01b0381351690602001351515611e6b565b348015610c5957600080fd5b506103bc60048036036020811015610c7057600080fd5b50356001600160a01b0316611edb565b348015610c8c57600080fd5b5061087f61217c565b348015610ca157600080fd5b5061063660048036036040811015610cb857600080fd5b506001600160a01b038135811691602001351661218b565b348015610cdc57600080fd5b506103bc60048036036020811015610cf357600080fd5b503563ffffffff166121b6565b348015610d0c57600080fd5b506103bc60048036036020811015610d2357600080fd5b50351515612290565b348015610d3857600080fd5b506103bc60048036036020811015610d4f57600080fd5b503561235c565b6103bc60048036036040811015610d6c57600080fd5b5062ffffff813516906020013561262a565b348015610d8a57600080fd5b506103bc60048036036020811015610da157600080fd5b50356001600160a01b0316612731565b348015610dbd57600080fd5b50610dc661283f565b6040805192835260208301919091528051918290030190f35b610de7612bbb565b6001600160a01b0316610df8611c3f565b6001600160a01b031614610e41576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600e5415610e96576040805162461bcd60e51b815260206004820152601860248201527f4c41554e43483a20616c7265616479206c61756e636865640000000000000000604482015290519081900360640190fd5b600a5460ff16610eed576040805162461bcd60e51b815260206004820152601d60248201527f4c41554e43483a2065786563206c70437265617465506f736974696f6e000000604482015290519081900360640190fd5b42600e55565b610efb612bbb565b6001600160a01b0316610f0c611c3f565b6001600160a01b031614610f55576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6107d063ffffffff82161115610fa7576040805162461bcd60e51b81526020600482015260126024820152715345544d494e5441583a206c74652032302560701b604482015290519081900360640190fd5b600f805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561105e5780601f106110335761010080835404028352916020019161105e565b820191906000526020600020905b81548152906001019060200180831161104157829003601f168201915b5050505050905090565b600061107c611075612bbb565b8484612bbf565b50600192915050565b61108d612bbb565b6001600160a01b031661109e611c3f565b6001600160a01b0316146110e7576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600f805466ff0000000000001916600160301b941515949094029390931767ff000000000000001916600160381b921515929092029190911765ff000000000019166501000000000091151591909102179055565b611144612bbb565b6001600160a01b0316611155611c3f565b6001600160a01b03161461119e576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6111ce612bbb565b6001600160a01b03166111df611c3f565b6001600160a01b031614611228576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526013602052604090205460ff1661128a576040805162461bcd60e51b81526020600482015260126024820152711193d491d255914e881b9bdd081848189bdd60721b604482015290519081900360640190fd5b6001600160a01b03166000908152601360205260409020805460ff19169055565b630a85bd0160e11b95945050505050565b60025490565b600f54600160801b900463ffffffff1681565b600a5460ff166113005760405162461bcd60e51b81526004016112f790614ae4565b60405180910390fd5b600754604080516080810182526001600160a01b038481166000908152600960209081529390205482529092169163fc6f786591810161133e611c3f565b6001600160a01b031681526001600160801b0360208201819052604091820152516001600160e01b031960e084901b16815261137d9190600401614bc0565b6040805180830381600087803b15801561139657600080fd5b505af11580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce91906148f4565b505050565b6113db612bbb565b6001600160a01b03166113ec611c3f565b6001600160a01b031614611435576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6107d063ffffffff82161115611487576040805162461bcd60e51b81526020600482015260126024820152715345544d41585441583a206c74652032302560701b604482015290519081900360640190fd5b600f805463ffffffff909216600160601b0263ffffffff60601b19909216919091179055565b60006114ba848484612cab565b61152a846114c6612bbb565b61152585604051806060016040528060288152602001614e42602891396001600160a01b038a16600090815260016020526040812090611504612bbb565b6001600160a01b031681526020810191909152604001600020549190613017565b612bbf565b5060019392505050565b61153c612bbb565b6001600160a01b031661154d611c3f565b6001600160a01b031614611596576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601260205260409020805460ff19811660ff90911615179055565b60055460ff1690565b600061107c6115d5612bbb565b8461152585600160006115e6612bbb565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612b5a565b60136020526000908152604090205460ff1681565b600f54600160401b900463ffffffff1681565b600f54600160301b900460ff1681565b611656612bbb565b6001600160a01b0316611667611c3f565b6001600160a01b0316146116b0576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b61271063ffffffff82161115611700576040805162461bcd60e51b815260206004820152601060248201526f5441524745543a206c7465203130302560801b604482015290519081900360640190fd5b600f805463ffffffff191663ffffffff92909216919091179055565b61172d611727612bbb565b826130ae565b7fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5611756612bbb565b604080516001600160a01b039092168252602082018490528051918290030190a150565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6117a6612bbb565b6001600160a01b03166117b7611c3f565b6001600160a01b031614611800576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b60105461180c30611b41565b1015611852576040805162461bcd60e51b815260206004820152601060248201526f0a6ae82a07440dcdee840cadcdeeaced60831b604482015290519081900360640190fd5b61185a6130c4565b565b611864612bbb565b6001600160a01b0316611875611c3f565b6001600160a01b0316146118be576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600d546040805163fca39ddd60e01b81526004810185905290516113ce9286926001600160a01b039091169163fca39ddd91602480820192602092909190829003018186803b15801561191057600080fd5b505afa158015611924573d6000803e3d6000fd5b505050506040513d602081101561193a57600080fd5b505183613222565b61194a612bbb565b6001600160a01b031661195b611c3f565b6001600160a01b0316146119a4576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600f5460ff6401000000009091041615158115151415611a0b576040805162461bcd60e51b815260206004820152601960248201527f5441584553454e41424c45443a206d75737420746f67676c6500000000000000604482015290519081900360640190fd5b600f80549115156401000000000264ff0000000019909216919091179055565b60126020526000908152604090205460ff1681565b611a48612bbb565b6001600160a01b0316611a59611c3f565b6001600160a01b031614611aa2576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6064611aac6112bc565b60020281611ab657fe5b04811115611aff576040805162461bcd60e51b815260206004820152601160248201527053455453574150414d3a206c746520322560781b604482015290519081900360640190fd5b601055565b6007546001600160a01b031681565b600f54600160601b900463ffffffff1681565b60115460ff1681565b60096020526000908152604090205481565b6001600160a01b0381166000908152602081905260409020545b919050565b611b68612bbb565b6001600160a01b0316611b79611c3f565b6001600160a01b031614611bc2576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600e5481565b600f5463ffffffff1681565b60105481565b60146020526000908152604090205460ff1681565b60055461010090046001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561105e5780601f106110335761010080835404028352916020019161105e565b6000806000611cc161283f565b600f54919350915061271063ffffffff90911682020480831015611d3757600f54600090829063ffffffff600160401b82048116600160601b90920481169190910316850281611d0d57fe5b600f54919004915061271090600160601b900463ffffffff16829003870204945050505050611b5b565b600f5461271090600160401b900463ffffffff1686020495945050505050565b600061107c611d64612bbb565b8461152585604051806060016040528060258152602001614ef46025913960016000611d8e612bbb565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190613017565b600a5461010090046001600160a01b031681565b600061107c611de0612bbb565b8484612cab565b600b546001600160a01b031681565b600c546001600160a01b031681565b600f54640100000000900460ff1681565b6008546001600160a01b031681565b7f0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f98481565b600f54600160381b900460ff1681565b600f5465010000000000900460ff1681565b611e73612bbb565b6001600160a01b0316611e84611c3f565b6001600160a01b031614611ecd576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b611ed782826133f4565b5050565b611ee3612bbb565b6001600160a01b0316611ef4611c3f565b6001600160a01b031614611f3d576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205480611f735760405162461bcd60e51b81526004016112f790614a7e565b6001600160a01b03808316600090815260096020526040812055600754166342842e0e30611f9f611c3f565b846040518463ffffffff1660e01b8152600401611fbe93929190614a2a565b600060405180830381600087803b158015611fd857600080fd5b505af1158015611fec573d6000803e3d6000fd5b505050506000826001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b15801561202b57600080fd5b505afa15801561203f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120639190614887565b90506000805b6006548110156120c6578262ffffff166006828154811061208657fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff1614156120be578091506120c6565b600101612069565b506006805460001981019081106120d957fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff166006828154811061210b57fe5b90600052602060002090600a91828204019190066003026101000a81548162ffffff021916908362ffffff160217905550600680548061214757fe5b60019003818190600052602060002090600a91828204019190066003026101000a81549062ffffff0219169055905550505050565b600d546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6121be612bbb565b6001600160a01b03166121cf611c3f565b6001600160a01b031614612218576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b61271063ffffffff8216111561226a576040805162461bcd60e51b81526020600482015260126024820152715345544c505441583a206c7465203130302560701b604482015290519081900360640190fd5b600f805463ffffffff909216600160801b0263ffffffff60801b19909216919091179055565b612298612bbb565b6001600160a01b03166122a9611c3f565b6001600160a01b0316146122f2576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b60115460ff1615158115151415612349576040805162461bcd60e51b815260206004820152601660248201527553455453574150454e3a206d75737420746f67676c6560501b604482015290519081900360640190fd5b6011805460ff1916911515919091179055565b612364612bbb565b6001600160a01b0316612375611c3f565b6001600160a01b0316146123be576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6007546040516331a9108f60e11b81526000916001600160a01b031690636352211e906123ef908590600401614d6d565b60206040518083038186803b15801561240757600080fd5b505afa15801561241b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243f9190614786565b90506001600160a01b03811630146124b857600754604051632142170760e11b81526001600160a01b03909116906342842e0e9061248590849030908790600401614a2a565b600060405180830381600087803b15801561249f57600080fd5b505af11580156124b3573d6000803e3d6000fd5b505050505b60075460405163133f757160e31b8152600091829182916001600160a01b0316906399fbab88906124ed908890600401614d6d565b6101806040518083038186803b15801561250657600080fd5b505afa15801561251a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253e9190614917565b50505050505050945094509450505060006040518060600160405280856001600160a01b03168152602001846001600160a01b031681526020018362ffffff16815250905060006125af7f0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f9848361350e565b6006805460018101909155600a8082047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01805462ffffff978816600393909406929092026101000a9283029690920219169490941790935550506001600160a01b0316600090815260096020526040902093909355505050565b612632612bbb565b6001600160a01b0316612643611c3f565b6001600160a01b03161461268c576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b600034116126ca576040805162461bcd60e51b815260206004820152600660248201526504144444c50360d41b604482015290519081900360640190fd5b60006126d46115bf565b60ff16600a0a820290506126f06126e9612bbb565b30836135f2565b60006126fd84833461374d565b905061270a8160016133f4565b6001600160a01b03166000908152601260205260409020805460ff19166001179055505050565b612739612bbb565b6001600160a01b031661274a611c3f565b6001600160a01b031614612793576040805162461bcd60e51b81526020600482018190526024820152600080516020614e6a833981519152604482015290519081900360640190fd5b6001600160a01b0381166127d85760405162461bcd60e51b8152600401808060200182810382526026815260200180614dd46026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600080600061287f600660008154811061285557fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16613b47565b925050506001600160a01b03811661289e576000809250925050612a66565b600a54600d5460408051631ece4f9760e21b81526001600160a01b038581166004830152915161010090940482163196506000939190921691637b393e5c916024808301926020929190829003018186803b1580156128fc57600080fd5b505afa158015612910573d6000803e3d6000fd5b505050506040513d602081101561292657600080fd5b5051600d54604080516304e09a6160e41b81526001600160a01b03808516600483015291519394506000939190921691634e09a610916024808301926020929190829003018186803b15801561297b57600080fd5b505afa15801561298f573d6000803e3d6000fd5b505050506040513d60208110156129a557600080fd5b505160408051630dfe168160e01b815290519192506000916001600160a01b03861691630dfe1681916004808301926020929190829003018186803b1580156129ed57600080fd5b505afa158015612a01573d6000803e3d6000fd5b505050506040513d6020811015612a1757600080fd5b505190506001600160a01b0381163014612a475781600160601b612a396112bc565b0281612a4157fe5b04612a5f565b600160601b82612a556112bc565b0281612a5d57fe5b045b9450505050505b9091565b6001600160a01b038216612ac5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612ad1600083836113ce565b600254612ade9082612b5a565b6002556001600160a01b038216600090815260208190526040902054612b049082612b5a565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015612bb4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316612c045760405162461bcd60e51b8152600401808060200182810382526024815260200180614ed06024913960400191505060405180910390fd5b6001600160a01b038216612c495760405162461bcd60e51b8152600401808060200182810382526022815260200180614dfa6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526012602052604081205460ff168015612ce157506008546001600160a01b03848116911614155b6001600160a01b03841660009081526012602052604081205491925060ff909116908280612d0c5750815b15612d61576000600e5411612d61576040805162461bcd60e51b81526020600482015260166024820152751514905394d191548e881b9bdd081b185d5b98da195960521b604482015290519081900360640190fd5b600e5415612ff5578215612e1f57600e54600a014211612da3576001600160a01b0385166000908152601360205260409020805460ff19166001179055612e1a565b600e54610708014211612e1a57600084612dbc87611b41565b0190506064612dc96112bc565b81612dd057fe5b04811115612e18576040805162461bcd60e51b815260206004820152601060248201526f0dac2f040624a40c2e840d8c2eadcc6d60831b604482015290519081900360640190fd5b505b612f56565b600e54600a01421115612f56576001600160a01b03851660009081526013602052604090205460ff1615612e8b576040805162461bcd60e51b815260206004820152600e60248201526d05452414e534645523a20626f74360941b604482015290519081900360640190fd5b6001600160a01b03861660009081526013602052604090205460ff1615612eea576040805162461bcd60e51b815260206004820152600e60248201526d5452414e534645523a20626f743160901b604482015290519081900360640190fd5b60136000612ef6612bbb565b6001600160a01b0316815260208101919091526040016000205460ff1615612f56576040805162461bcd60e51b815260206004820152600e60248201526d2a2920a729a322a91d103137ba1960911b604482015290519081900360640190fd5b60155460ff16158015612f6b575060115460ff165b8015612f795750600a5460ff165b8015612f8757506000601054115b8015612f9d5750601054612f9a30611b41565b10155b15612faa57612faa6130c4565b600f54640100000000900460ff168015612fc95750612fc98383613bb7565b15612ff557612fd784611cb4565b90508015612ff557612fea8630836135f2565b612ff5863083613c1a565b61300286868387036135f2565b61300f8686838703613c1a565b505050505050565b600081848411156130a65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561306b578181015183820152602001613053565b50505050905090810190601f1680156130985780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6130b88282613d22565b611ed782600083613c1a565b6015805460ff19166001179055600f5460105460009160029161271091600160801b900463ffffffff160204816130f757fe5b049050600081601054039050600061310e82613e1e565b50600f5490915061271063ffffffff600160801b909204919091164702044781900380156131e957600a546040516101009091046001600160a01b031690600090829084908381818185875af1925050503d806000811461318b576040519150601f19603f3d011682016040523d82523d6000602084013e613190565b606091505b50509050806131e6576040805162461bcd60e51b815260206004820152601e60248201527f5452414e534645523a20455448206e6f742073656e7420746f20706f6f6c0000604482015290519081900360640190fd5b50505b6001600160a01b038316158015906132015750600082115b1561321157613211838684614137565b50506015805460ff19169055505050565b60008061322d614394565b9150915060005b6006548110156132a1578562ffffff166006828154811061325157fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff1614156132995760405162461bcd60e51b81526004016112f790614b1b565b600101613234565b506006805460018101825560009182527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f600a808304919091018054919092066003026101000a62ffffff81810219909216918916021790556007546040516309f56ab160e11b81526001600160a01b03909116906313ead5629061333090869086908b908b90600401614a4e565b602060405180830381600087803b15801561334a57600080fd5b505af115801561335e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133829190614786565b905061ffff84161561300f576040516332148f6760e01b81526001600160a01b038216906332148f67906133ba908790600401614d5e565b600060405180830381600087803b1580156133d457600080fd5b505af11580156133e8573d6000803e3d6000fd5b50505050505050505050565b6001600160a01b03821660009081526014602052604090205460ff1615158115151415613452576040805162461bcd60e51b815260206004820152600760248201526614d155115610d360ca1b604482015290519081900360640190fd5b6001600160a01b0382166000908152601460205260408120805460ff191683151517905561347f83611b41565b905080156113ce5760008215613493575060015b600b54604080516329cc05cf60e01b81526001600160a01b038781166004830152602482018690528415156044830152915191909216916329cc05cf91606480830192600092919082900301818387803b1580156134f057600080fd5b505af1158015613504573d6000803e3d6000fd5b5050505050505050565b600081602001516001600160a01b031682600001516001600160a01b03161061353657600080fd5b50805160208083015160409384015184516001600160a01b0394851681850152939091168385015262ffffff166060808401919091528351808403820181526080840185528051908301206001600160f81b031960a085015294901b6bffffffffffffffffffffffff191660a183015260b58201939093527fe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b5460d5808301919091528251808303909101815260f5909101909152805191012090565b6001600160a01b0383166136375760405162461bcd60e51b8152600401808060200182810382526025815260200180614eab6025913960400191505060405180910390fd5b6001600160a01b03821661367c5760405162461bcd60e51b8152600401808060200182810382526023815260200180614d8f6023913960400191505060405180910390fd5b6136878383836113ce565b6136c481604051806060016040528060268152602001614e1c602691396001600160a01b0386166000908152602081905260409020549190613017565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546136f39082612b5a565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600047818061375a614394565b9092509050846001600160a01b0383163014613774579495945b60075461378c9084906001600160a01b0316896143dd565b6007546137a49083906001600160a01b0316886143dd565b60006137af89613b47565b6001600160a01b0381166000908152600960205260409020549093501591506137ec90505760405162461bcd60e51b81526004016112f790614b52565b6000816001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561382757600080fd5b505afa15801561383b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061385f91906147a2565b60020b620d89e88161386d57fe5b0790506000604051806101600160405280876001600160a01b03168152602001866001600160a01b031681526020018c62ffffff16815260200183620d89e7190160020b815260200183620d89e7196000030360020b81526020018b81526020018a81526020016000815260200160008152602001306001600160a01b031681526020014281525090506000806000600760009054906101000a90046001600160a01b03166001600160a01b0316638831645688866040518363ffffffff1660e01b815260040161393e9190614cb0565b6080604051808303818588803b15801561395757600080fd5b505af115801561396b573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061399091906148b9565b93509350509250600760009054906101000a90046001600160a01b03166001600160a01b03166312210e8a6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139e757600080fd5b505af11580156139fb573d6000803e3d6000fd5b50505050868a0347038015613a8f576000613a14611c3f565b6001600160a01b031682604051613a2a90614a13565b60006040518083038185875af1925050503d8060008114613a67576040519150601f19603f3d011682016040523d82523d6000602084013e613a6c565b606091505b5050905080613a8d5760405162461bcd60e51b81526004016112f790614b89565b505b600754613aa8908b906001600160a01b031660006143dd565b600754613ac1908a906001600160a01b031660006143dd565b6001600160a01b038a16301415613af6578d831015613af157828e03613aef8b613ae9611c3f565b8361452b565b505b613b0f565b8c821015613b0f57818d03613b0d8a613ae9611c3f565b505b5050506001600160a01b0384166000908152600960205260409020555050600a805460ff191660011790559450505050509392505050565b6000806000613b54614394565b604080516060810182526001600160a01b0380851682528316602082015262ffffff8816918101919091529194509250613bae7f0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f9848261350e565b93959294505050565b600f5460009065010000000000900460ff168015613bd3575082155b8015613bdd575081155b80613bf95750600f54600160301b900460ff168015613bf95750825b80612bb45750600f54600160381b900460ff168015612bb457509092915050565b613c2383614672565b15613c9d57600b54604080516329cc05cf60e01b81526001600160a01b0386811660048301526024820185905260016044830152915191909216916329cc05cf91606480830192600092919082900301818387803b158015613c8457600080fd5b505af1158015613c98573d6000803e3d6000fd5b505050505b613ca682614672565b156113ce57600b54604080516329cc05cf60e01b81526001600160a01b0385811660048301526024820185905260006044830181905292519316926329cc05cf9260648084019391929182900301818387803b158015613d0557600080fd5b505af1158015613d19573d6000803e3d6000fd5b50505050505050565b6001600160a01b038216613d675760405162461bcd60e51b8152600401808060200182810382526021815260200180614e8a6021913960400191505060405180910390fd5b613d73826000836113ce565b613db081604051806060016040528060228152602001614db2602291396001600160a01b0385166000908152602081905260409020549190613017565b6001600160a01b038316600090815260208190526040902055600254613dd690826146d0565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008060005b60065481101561413157600060068281548110613e3d57fe5b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050613e6d81613b47565b9091509050809450506000846001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015613eb157600080fd5b505afa158015613ec5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee991906147f0565b965050505050505080613efd575050614129565b600854613f159030906001600160a01b0316886143dd565b6008546040805161010081018252308082526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28116602084015262ffffff871683850152606083019190915242608083015260a082018a9052600060c0830181905260e0830152915163414bf38960e01b8152919092169163414bf38991613fa89190600401614c03565b602060405180830381600087803b158015613fc257600080fd5b505af1158015613fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ffa91906148a1565b935060007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161404a9190614a16565b60206040518083038186803b15801561406257600080fd5b505afa158015614076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061409a91906148a1565b9050801561412157604051632e1a7d4d60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21690632e1a7d4d906140ee908490600401614d6d565b600060405180830381600087803b15801561410857600080fd5b505af115801561411c573d6000803e3d6000fd5b505050505b505050614131565b600101613e24565b50915091565b600a5460ff166141595760405162461bcd60e51b81526004016112f790614aad565b47600080614165614394565b9092509050836001600160a01b038316301461417f579394935b6007546141979084906001600160a01b0316886143dd565b6007546141af9083906001600160a01b0316876143dd565b6040805160c0810182526001600160a01b03808a1660009081526009602090815284822054845283018a905282840189905260608301819052608083018190524260a0840152600754935163219f5d1760e01b8152929390928392919091169063219f5d17908690614225908790600401614c6c565b6060604051808303818588803b15801561423e57600080fd5b505af1158015614252573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061427791906147bc565b9093509150508387034703801561430d576000614292611c3f565b6001600160a01b0316826040516142a890614a13565b60006040518083038185875af1925050503d80600081146142e5576040519150601f19603f3d011682016040523d82523d6000602084013e6142ea565b606091505b505090508061430b5760405162461bcd60e51b81526004016112f790614b89565b505b6007546143269088906001600160a01b031660006143dd565b60075461433f9087906001600160a01b031660006143dd565b6001600160a01b03871630141561436e578983101561436957828a0361436788613ae9611c3f565b505b614387565b888210156143875781890361438587613ae9611c3f565b505b5050505050505050505050565b600080307f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03811682106143d05780826143d3565b81815b9350935050509091565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663095ea7b360e01b1781529251825160009485949389169392918291908083835b602083106144595780518252601f19909201916020918201910161443a565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146144bb576040519150601f19603f3d011682016040523d82523d6000602084013e6144c0565b606091505b50915091508180156144ee5750805115806144ee57508080602001905160208110156144eb57600080fd5b50515b614524576040805162461bcd60e51b8152602060048201526002602482015261534160f01b604482015290519081900360640190fd5b5050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1781529251825160009485949389169392918291908083835b602083106145a75780518252601f199092019160209182019101614588565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614609576040519150601f19603f3d011682016040523d82523d6000602084013e61460e565b606091505b509150915081801561463c57508051158061463c575080806020019051602081101561463957600080fd5b50515b614524576040805162461bcd60e51b815260206004820152600260248201526114d560f21b604482015290519081900360640190fd5b60006001600160a01b038216158015906146a557506001600160a01b03821660009081526014602052604090205460ff16155b80156146ca57506001600160a01b03821660009081526012602052604090205460ff16155b92915050565b600082821115614727576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b8051611b5b81614d76565b8051600281900b8114611b5b57600080fd5b80516001600160801b0381168114611b5b57600080fd5b805161ffff81168114611b5b57600080fd5b805162ffffff81168114611b5b57600080fd5b600060208284031215614797578081fd5b8151612bb481614d76565b6000602082840312156147b3578081fd5b612bb482614738565b6000806000606084860312156147d0578182fd5b6147d98461474a565b925060208401519150604084015190509250925092565b600080600080600080600060e0888a03121561480a578283fd5b875161481581614d76565b965061482360208901614738565b955061483160408901614761565b945061483f60608901614761565b935061484d60808901614761565b925060a088015160ff81168114614862578283fd5b60c08901519092508015158114614877578182fd5b8091505092959891949750929550565b600060208284031215614898578081fd5b612bb482614773565b6000602082840312156148b2578081fd5b5051919050565b600080600080608085870312156148ce578384fd5b845193506148de6020860161474a565b6040860151606090960151949790965092505050565b60008060408385031215614906578182fd5b505080516020909101519092909150565b6000806000806000806000806000806000806101808d8f031215614939578485fd5b8c516bffffffffffffffffffffffff81168114614954578586fd5b9b5061496260208e0161472d565b9a5061497060408e0161472d565b995061497e60608e0161472d565b985061498c60808e01614773565b975061499a60a08e01614738565b96506149a860c08e01614738565b95506149b660e08e0161474a565b94506101008d015193506101208d015192506149d56101408e0161474a565b91506149e46101608e0161474a565b90509295989b509295989b509295989b565b6001600160a01b03169052565b60020b9052565b62ffffff169052565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b039485168152928416602084015262ffffff919091166040830152909116606082015260800190565b6020808252601590820152742ba4aa24222920ab9d103737903837b9b4ba34b7b760591b604082015260600190565b6020808252601b908201527f494e4352454153454c503a206e6f7420696e697469616c697a65640000000000604082015260600190565b6020808252601e908201527f434f4c4c4543544c50464545533a206e6f7420696e697469616c697a65640000604082015260600190565b6020808252601b908201527f435245415445504f4f4c3a20616c726561647920637265617465640000000000604082015260600190565b60208082526019908201527f4352454154454c503a20616c7265616479206372656174656400000000000000604082015260600190565b6020808252601a908201527f4352454154454c503a20455448206e6f7420726566756e646564000000000000604082015260600190565b815181526020808301516001600160a01b0316908201526040808301516001600160801b0390811691830191909152606092830151169181019190915260800190565b81516001600160a01b03908116825260208084015182169083015260408084015162ffffff16908301526060808401518216908301526080808401519083015260a0838101519083015260c0808401519083015260e09283015116918101919091526101000190565b600060c082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015292915050565b600061016082019050614cc48284516149f6565b6020830151614cd660208401826149f6565b506040830151614ce96040840182614a0a565b506060830151614cfc6060840182614a03565b506080830151614d0f6080840182614a03565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151614d4d828501826149f6565b505061014092830151919092015290565b61ffff91909116815260200190565b90815260200190565b6001600160a01b0381168114614d8b57600080fd5b5056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa164736f6c6343000706000a

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

000000000000000000000000bf1858b24243ecbcf7d940f458e36cb7401c2366000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

-----Decoded View---------------
Arg [0] : _twapUtils (address): 0xBf1858b24243Ecbcf7d940f458e36CB7401c2366
Arg [1] : _manager (address): 0xC36442b4a4522E871399CD717aBDD847Ab11FE88
Arg [2] : _swapRouter (address): 0xE592427A0AEce92De3Edee1F18E0157C05861564
Arg [3] : _factory (address): 0x1F98431c8aD98523631AE4a59f267346ea31F984
Arg [4] : _WETH9 (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000bf1858b24243ecbcf7d940f458e36cb7401c2366
Arg [1] : 000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88
Arg [2] : 000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564
Arg [3] : 0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984
Arg [4] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2


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.