ETH Price: $2,461.50 (-8.18%)

Token

PowerPool Torn Vault (ppTORN)
 

Overview

Max Total Supply

2,280.776228954401302427 ppTORN

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
291.235716576018402122 ppTORN

Value
$0.00
0xc13877e8203bd395b5df47e02138cc08a4b8e566
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WrappedPiErc20

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-03
*/

/*
https://powerpool.finance/

          wrrrw r wrr
         ppwr rrr wppr0       prwwwrp                                 prwwwrp                   wr0
        rr 0rrrwrrprpwp0      pp   pr  prrrr0 pp   0r  prrrr0  0rwrrr pp   pr  prrrr0  prrrr0    r0
        rrp pr   wr00rrp      prwww0  pp   wr pp w00r prwwwpr  0rw    prwww0  pp   wr pp   wr    r0
        r0rprprwrrrp pr0      pp      wr   pr pp rwwr wr       0r     pp      wr   pr wr   pr    r0
         prwr wrr0wpwr        00        www0   0w0ww    www0   0w     00        www0    www0   0www0
          wrr ww0rrrr

*/

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;
pragma experimental ABIEncoderV2;

/*
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]

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 @openzeppelin/contracts/math/[email protected]

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 @openzeppelin/contracts/token/ERC20/[email protected]

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {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 @openzeppelin/contracts/utils/[email protected]

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/[email protected]

pragma solidity >=0.6.0 <0.8.0;

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

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity >=0.6.0 <0.8.0;

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

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

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File contracts/interfaces/PowerIndexNaiveRouterInterface.sol

pragma solidity 0.6.12;

interface PowerIndexNaiveRouterInterface {
  function migrateToNewRouter(
    address _piToken,
    address payable _newRouter,
    address[] memory _tokens
  ) external;

  function enableRouterCallback(address _piToken, bool _enable) external;

  function piTokenCallback(address sender, uint256 _withdrawAmount) external payable;
}

// File contracts/interfaces/PowerIndexRouterInterface.sol

pragma solidity 0.6.12;

interface PowerIndexRouterInterface {
  enum StakeStatus {
    EQUILIBRIUM,
    EXCESS,
    SHORTAGE
  }

  //  function setVotingAndStaking(address _voting, address _staking) external;

  function setReserveConfig(
    uint256 _reserveRatio,
    uint256 _reserveRatioLowerBound,
    uint256 _reserveRatioUpperBound,
    uint256 _claimRewardsInterval
  ) external;

  function getPiEquivalentForUnderlying(uint256 _underlyingAmount, uint256 _piTotalSupply)
    external
    view
    returns (uint256);

  function getPiEquivalentForUnderlyingPure(
    uint256 _underlyingAmount,
    uint256 _totalUnderlyingWrapped,
    uint256 _piTotalSupply
  ) external pure returns (uint256);

  function getUnderlyingEquivalentForPi(uint256 _piAmount, uint256 _piTotalSupply) external view returns (uint256);

  function getUnderlyingEquivalentForPiPure(
    uint256 _piAmount,
    uint256 _totalUnderlyingWrapped,
    uint256 _piTotalSupply
  ) external pure returns (uint256);
}

// File contracts/interfaces/IERC20Permit.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit is IERC20 {
  /**
   * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
   * given ``owner``'s signed approval.
   *
   * IMPORTANT: The same issues {IERC20-approve} has related to transaction
   * ordering also apply here.
   *
   * Emits an {Approval} event.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   * - `deadline` must be a timestamp in the future.
   * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
   * over the EIP712-formatted function arguments.
   * - the signature must use ``owner``'s current nonce (see {nonces}).
   *
   * For more information on the signature format, see the
   * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
   * section].
   */
  function permit(
    address owner,
    address spender,
    uint256 value,
    uint256 deadline,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external;

  /**
   * @dev Returns the current nonce for `owner`. This value must be
   * included whenever a signature is generated for {permit}.
   *
   * Every successful call to {permit} increases ``owner``'s nonce by one. This
   * prevents a signature from being used multiple times.
   */
  function nonces(address owner) external view returns (uint256);

  /**
   * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
   */
  // solhint-disable-next-line func-name-mixedcase
  function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File contracts/interfaces/WrappedPiErc20Interface.sol

pragma solidity 0.6.12;

interface WrappedPiErc20Interface is IERC20Permit {
  function deposit(uint256 _amount) external payable returns (uint256);

  function withdraw(uint256 _amount) external payable returns (uint256);

  function withdrawShares(uint256 _burnAmount) external payable returns (uint256);

  function changeRouter(address _newRouter) external;

  function enableRouterCallback(bool _enable) external;

  function setNoFee(address _for, bool _noFee) external;

  function setEthFee(uint256 _newEthFee) external;

  function withdrawEthFee(address payable receiver) external;

  function approveUnderlying(address _to, uint256 _amount) external;

  function getPiEquivalentForUnderlying(uint256 _underlyingAmount) external view returns (uint256);

  function getUnderlyingEquivalentForPi(uint256 _piAmount) external view returns (uint256);

  function balanceOfUnderlying(address account) external view returns (uint256);

  function callExternal(
    address voting,
    bytes4 signature,
    bytes calldata args,
    uint256 value
  ) external payable returns (bytes memory);

  struct ExternalCallData {
    address destination;
    bytes4 signature;
    bytes args;
    uint256 value;
  }

  function callExternalMultiple(ExternalCallData[] calldata calls) external payable returns (bytes[] memory);

  function getUnderlyingBalance() external view returns (uint256);
}


// File contracts/WrappedPiErc20.sol

pragma solidity 0.6.12;

contract WrappedPiErc20 is ERC20, ReentrancyGuard, WrappedPiErc20Interface {
  using SafeMath for uint256;
  using SafeERC20 for IERC20Permit;

  bytes32 public constant PERMIT_TYPEHASH =
    keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
  bytes public constant EIP712_REVISION = bytes("1");
  bytes32 internal constant EIP712_DOMAIN =
    keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

  IERC20Permit public immutable underlying;
  bytes32 public immutable override DOMAIN_SEPARATOR;
  address public router;
  bool public routerCallbackEnabled;
  uint256 public ethFee;
  mapping(address => bool) public noFeeWhitelist;
  mapping(address => uint256) public override nonces;

  event Deposit(address indexed account, uint256 undelyingDeposited, uint256 piMinted);
  event Withdraw(address indexed account, uint256 underlyingWithdrawn, uint256 piBurned);
  event Approve(address indexed to, uint256 amount);
  event ChangeRouter(address indexed newRouter);
  event EnableRouterCallback(bool indexed enabled);
  event SetEthFee(uint256 newEthFee);
  event SetNoFee(address indexed addr, bool noFee);
  event WithdrawEthFee(uint256 value);
  event CallExternal(address indexed destination, bytes4 indexed inputSig, bytes inputData, bytes outputData);

  modifier onlyRouter() {
    require(router == msg.sender, "ONLY_ROUTER");
    _;
  }

  constructor(
    address _token,
    address _router,
    string memory _name,
    string memory _symbol
  ) public ERC20(_name, _symbol) {
    underlying = IERC20Permit(_token);
    router = _router;

    uint256 chainId;

    assembly {
      chainId := chainid()
    }

    DOMAIN_SEPARATOR = keccak256(
      abi.encode(EIP712_DOMAIN, keccak256(bytes(_name)), keccak256(EIP712_REVISION), chainId, address(this))
    );
  }

  /**
   * @notice Deposits underlying ERC20 token to the piToken(piERC20) with permit params
   * @param _amount The amount to deposit in underlying ERC20 tokens.
   * @param _deadline Deadline timestamp of permit
   * @param _v param of permit
   * @param _r param of permit
   * @param _s param of permit
   */
  function depositWithPermit(
    uint256 _amount,
    uint256 _deadline,
    uint8 _v,
    bytes32 _r,
    bytes32 _s
  ) public virtual {
    underlying.permit(msg.sender, address(this), _amount, _deadline, _v, _r, _s);
    deposit(_amount);
  }

  /**
   * @notice Deposits underlying ERC20 token to the piToken(piERC20).
   * @param _depositAmount The amount to deposit in underlying ERC20 tokens.
   */
  function deposit(uint256 _depositAmount) public payable override nonReentrant returns (uint256) {
    if (noFeeWhitelist[msg.sender]) {
      require(msg.value == 0, "NO_FEE_FOR_WL");
    } else {
      require(msg.value >= ethFee, "FEE");
    }

    require(_depositAmount > 0, "ZERO_DEPOSIT");

    uint256 mintAmount = getPiEquivalentForUnderlying(_depositAmount);
    require(mintAmount > 0, "ZERO_PI_FOR_MINT");

    underlying.safeTransferFrom(msg.sender, address(this), _depositAmount);
    _mint(msg.sender, mintAmount);

    emit Deposit(msg.sender, _depositAmount, mintAmount);

    if (routerCallbackEnabled) {
      PowerIndexNaiveRouterInterface(router).piTokenCallback{ value: msg.value }(msg.sender, 0);
    }

    return mintAmount;
  }

  /**
   * @notice Withdraws underlying ERC20 token from the piToken (piERC20).
   * @param _withdrawAmount The amount to withdraw in underlying ERC20 tokens.
   * @return The amount of the burned shares.
   */
  function withdraw(uint256 _withdrawAmount) external payable override nonReentrant returns (uint256) {
    if (noFeeWhitelist[msg.sender]) {
      require(msg.value == 0, "NO_FEE_FOR_WL");
    } else {
      require(msg.value >= ethFee, "FEE");
    }

    require(_withdrawAmount > 0, "ZERO_WITHDRAWAL");

    if (routerCallbackEnabled) {
      PowerIndexNaiveRouterInterface(router).piTokenCallback{ value: msg.value }(msg.sender, _withdrawAmount);
    }

    uint256 burnAmount = getPiEquivalentForUnderlying(_withdrawAmount);
    require(burnAmount > 0, "ZERO_PI_FOR_BURN");

    _burn(msg.sender, burnAmount);
    underlying.safeTransfer(msg.sender, _withdrawAmount);

    emit Withdraw(msg.sender, _withdrawAmount, burnAmount);

    return burnAmount;
  }

  /**
   * @notice Withdraws underlying ERC20 token from the piToken(piERC20).
   * @param _burnAmount The amount of shares to burn.
   * @return The amount of the withdrawn underlying ERC20 token.
   */
  function withdrawShares(uint256 _burnAmount) external payable override nonReentrant returns (uint256) {
    if (noFeeWhitelist[msg.sender]) {
      require(msg.value == 0, "NO_FEE_FOR_WL");
    } else {
      require(msg.value >= ethFee, "FEE");
    }

    require(_burnAmount > 0, "ZERO_WITHDRAWAL");

    uint256 withdrawAmount = getUnderlyingEquivalentForPi(_burnAmount);
    require(withdrawAmount > 0, "ZERO_UNDERLYING_TO_WITHDRAW");

    if (routerCallbackEnabled) {
      PowerIndexNaiveRouterInterface(router).piTokenCallback{ value: msg.value }(msg.sender, withdrawAmount);
    }

    _burn(msg.sender, _burnAmount);
    underlying.safeTransfer(msg.sender, withdrawAmount);

    emit Withdraw(msg.sender, withdrawAmount, _burnAmount);

    return withdrawAmount;
  }

  function getPiEquivalentForUnderlying(uint256 _underlyingAmount) public view override returns (uint256) {
    return PowerIndexRouterInterface(router).getPiEquivalentForUnderlying(_underlyingAmount, totalSupply());
  }

  function getUnderlyingEquivalentForPi(uint256 _piAmount) public view override returns (uint256) {
    return PowerIndexRouterInterface(router).getUnderlyingEquivalentForPi(_piAmount, totalSupply());
  }

  function balanceOfUnderlying(address account) external view override returns (uint256) {
    return getUnderlyingEquivalentForPi(balanceOf(account));
  }

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

  function changeRouter(address _newRouter) external override onlyRouter {
    router = _newRouter;
    emit ChangeRouter(router);
  }

  function enableRouterCallback(bool _enable) external override onlyRouter {
    routerCallbackEnabled = _enable;
    emit EnableRouterCallback(_enable);
  }

  function setNoFee(address _for, bool _noFee) external override onlyRouter {
    noFeeWhitelist[_for] = _noFee;
    emit SetNoFee(_for, _noFee);
  }

  function setEthFee(uint256 _ethFee) external override onlyRouter {
    ethFee = _ethFee;
    emit SetEthFee(_ethFee);
  }

  function withdrawEthFee(address payable _receiver) external override onlyRouter {
    emit WithdrawEthFee(address(this).balance);
    _receiver.transfer(address(this).balance);
  }

  function approveUnderlying(address _to, uint256 _amount) external override onlyRouter {
    underlying.approve(_to, _amount);
    emit Approve(_to, _amount);
  }

  function callExternal(
    address _destination,
    bytes4 _signature,
    bytes calldata _args,
    uint256 _value
  ) external payable override onlyRouter returns (bytes memory) {
    return _callExternal(_destination, _signature, _args, _value);
  }

  function callExternalMultiple(ExternalCallData[] calldata _calls)
    external
    payable
    override
    onlyRouter
    returns (bytes[] memory results)
  {
    uint256 len = _calls.length;
    results = new bytes[](len);
    for (uint256 i = 0; i < len; i++) {
      results[i] = _callExternal(_calls[i].destination, _calls[i].signature, _calls[i].args, _calls[i].value);
    }
  }

  function getUnderlyingBalance() external view override returns (uint256) {
    return underlying.balanceOf(address(this));
  }

  /**
   * @dev implements the permit function as for
   *      https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md
   * @param owner the owner of the funds
   * @param spender the spender
   * @param value the amount
   * @param deadline the deadline timestamp, type(uint256).max for no deadline
   * @param v signature param
   * @param s signature param
   * @param r signature param
   */
  function permit(
    address owner,
    address spender,
    uint256 value,
    uint256 deadline,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external override {
    require(owner != address(0), "INVALID_OWNER");
    require(block.timestamp <= deadline, "INVALID_EXPIRATION");
    uint256 currentValidNonce = nonces[owner];
    bytes32 digest = keccak256(
      abi.encodePacked(
        "\x19\x01",
        DOMAIN_SEPARATOR,
        keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, currentValidNonce, deadline))
      )
    );

    require(owner == ecrecover(digest, v, r, s), "INVALID_SIGNATURE");
    nonces[owner] = currentValidNonce.add(1);
    _approve(owner, spender, value);
  }

  function _callExternal(
    address _destination,
    bytes4 _signature,
    bytes calldata _args,
    uint256 _value
  ) internal returns (bytes memory) {
    (bool success, bytes memory data) = _destination.call{ value: _value }(abi.encodePacked(_signature, _args));

    if (!success) {
      assembly {
        let output := mload(0x40)
        let size := returndatasize()
        switch size
        case 0 {
          // If there is no revert reason string, revert with the default `REVERTED_WITH_NO_REASON_STRING`
          mstore(output, 0x08c379a000000000000000000000000000000000000000000000000000000000) // error identifier
          mstore(add(output, 0x04), 0x0000000000000000000000000000000000000000000000000000000000000020) // offset
          mstore(add(output, 0x24), 0x000000000000000000000000000000000000000000000000000000000000001e) // length
          mstore(add(output, 0x44), 0x52455645525445445f574954485f4e4f5f524541534f4e5f535452494e470000) // reason
          revert(output, 100) // 100 = 4 + 3 * 32 (error identifier + 3 words for the ABI encoded error)
        }
        default {
          // If there is a revert reason string hijacked, revert with it
          revert(add(data, 32), size)
        }
      }
    }

    emit CallExternal(_destination, _signature, _args, data);

    return data;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_router","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approve","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"destination","type":"address"},{"indexed":true,"internalType":"bytes4","name":"inputSig","type":"bytes4"},{"indexed":false,"internalType":"bytes","name":"inputData","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"outputData","type":"bytes"}],"name":"CallExternal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRouter","type":"address"}],"name":"ChangeRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"undelyingDeposited","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"piMinted","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"enabled","type":"bool"}],"name":"EnableRouterCallback","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newEthFee","type":"uint256"}],"name":"SetEthFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"bool","name":"noFee","type":"bool"}],"name":"SetNoFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"underlyingWithdrawn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"piBurned","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"WithdrawEthFee","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EIP712_REVISION","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"approveUnderlying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_destination","type":"address"},{"internalType":"bytes4","name":"_signature","type":"bytes4"},{"internalType":"bytes","name":"_args","type":"bytes"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"callExternal","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"destination","type":"address"},{"internalType":"bytes4","name":"signature","type":"bytes4"},{"internalType":"bytes","name":"args","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct WrappedPiErc20Interface.ExternalCallData[]","name":"_calls","type":"tuple[]"}],"name":"callExternalMultiple","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRouter","type":"address"}],"name":"changeRouter","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":"_depositAmount","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"depositWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableRouterCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ethFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_underlyingAmount","type":"uint256"}],"name":"getPiEquivalentForUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnderlyingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_piAmount","type":"uint256"}],"name":"getUnderlyingEquivalentForPi","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noFeeWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerCallbackEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ethFee","type":"uint256"}],"name":"setEthFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_for","type":"address"},{"internalType":"bool","name":"_noFee","type":"bool"}],"name":"setNoFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyUnderlying","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":[],"name":"underlying","outputs":[{"internalType":"contract IERC20Permit","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawAmount","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_receiver","type":"address"}],"name":"withdrawEthFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnAmount","type":"uint256"}],"name":"withdrawShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"}]

60c06040523480156200001157600080fd5b5060405162002f1b38038062002f1b83398101604081905262000034916200028e565b8151829082906200004d9060039060208501906200014b565b508051620000639060049060208401906200014b565b50506005805460ff1916601217905550600160068190556001600160601b0319606086901b16608052600780546001600160a01b0386166001600160a01b03199091161790558251602080850191909120604080518082018252938452603160f81b938301939093529151469262000124927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f927fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc691869130910162000320565b60408051601f19818403018152919052805160209091012060a05250620003659350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600082601f830112620001f8578081fd5b81516001600160401b03808211156200020f578283fd5b6040516020601f8401601f191682018101838111838210171562000231578586fd5b806040525081945083825286818588010111156200024e57600080fd5b600092505b8383101562000272578583018101518284018201529182019162000253565b83831115620002845760008185840101525b5050505092915050565b60008060008060808587031215620002a4578384fd5b8451620002b1816200034c565b6020860151909450620002c4816200034c565b60408601519093506001600160401b0380821115620002e1578384fd5b620002ef88838901620001e7565b9350606087015191508082111562000305578283fd5b506200031487828801620001e7565b91505092959194509250565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b6001600160a01b03811681146200036257600080fd5b50565b60805160601c60a051612b6c620003af60003980610c06528061152452508061089a5280610afb5280610d8f5280610eb5528061118452806116b752806117825250612b6c6000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b6b55f25116100ab578063dd62ed3e1161006f578063dd62ed3e146105f4578063e2c6743914610614578063e57ae51714610629578063f887ea4014610649578063fea61faa1461065e57610225565b8063b6b55f251461056e578063b85cefc914610581578063ce50c756146105a1578063d1e40b55146105c1578063d505accf146105d457610225565b806395d89b41116100f257806395d89b41146104d9578063a457c2d7146104ee578063a9059cbb1461050e578063af9687941461052e578063b54c47531461054e57610225565b806370a082311461046457806378160376146104845780637ecebe001461049957806387051204146104b957610225565b80633644e515116101b15780634a970be7116101755780634a970be7146103d85780634cf1115d146103f857806363ba9a2f1461040d5780636dd2f37c146104225780636f307dc31461044257610225565b80633644e5151461034357806339509351146103585780633af9e669146103785780633f6738a91461039857806342701a8e146103b857610225565b806323b872dd116101f857806323b872dd146102b75780632e1a7d4d146102d757806330adf81f146102ea578063313ce567146102ff578063340ac20f1461032157610225565b806306fdde031461022a578063095ea7b31461025557806318160ddd1461028257806319810f3c146102a4575b600080fd5b34801561023657600080fd5b5061023f610673565b60405161024c91906124f6565b60405180910390f35b34801561026157600080fd5b50610275610270366004612175565b610709565b60405161024c9190612453565b34801561028e57600080fd5b50610297610727565b60405161024c919061245e565b6102976102b2366004612263565b61072d565b3480156102c357600080fd5b506102756102d2366004612005565b61090f565b6102976102e5366004612263565b610997565b3480156102f657600080fd5b50610297610b5d565b34801561030b57600080fd5b50610314610b81565b60405161024c91906129ca565b34801561032d57600080fd5b5061034161033c366004611fb1565b610b8a565b005b34801561034f57600080fd5b50610297610c04565b34801561036457600080fd5b50610275610373366004612175565b610c28565b34801561038457600080fd5b50610297610393366004611fb1565b610c76565b3480156103a457600080fd5b506103416103b3366004612263565b610c84565b3480156103c457600080fd5b506103416103d33660046120b3565b610cee565b3480156103e457600080fd5b506103416103f3366004612293565b610d78565b34801561040457600080fd5b50610297610e13565b34801561041957600080fd5b50610275610e19565b34801561042e57600080fd5b5061029761043d366004612263565b610e29565b34801561044e57600080fd5b50610457610eb3565b60405161024c9190612361565b34801561047057600080fd5b5061029761047f366004611fb1565b610ed7565b34801561049057600080fd5b5061023f610ef2565b3480156104a557600080fd5b506102976104b4366004611fb1565b610f0f565b3480156104c557600080fd5b506102756104d4366004611fb1565b610f21565b3480156104e557600080fd5b5061023f610f36565b3480156104fa57600080fd5b50610275610509366004612175565b610f97565b34801561051a57600080fd5b50610275610529366004612175565b610fff565b34801561053a57600080fd5b5061034161054936600461220f565b611013565b34801561055a57600080fd5b50610297610569366004612263565b611086565b61029761057c366004612263565b6110a3565b34801561058d57600080fd5b5061034161059c366004611fb1565b61127e565b6105b46105af3660046121a0565b611318565b60405161024c91906123f3565b61023f6105cf3660046120e0565b611477565b3480156105e057600080fd5b506103416105ef366004612045565b6114bb565b34801561060057600080fd5b5061029761060f366004611fcd565b611672565b34801561062057600080fd5b5061029761169d565b34801561063557600080fd5b50610341610644366004612175565b611741565b34801561065557600080fd5b50610457611845565b34801561066a57600080fd5b50610297611854565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b5050505050905090565b600061071d610716611861565b8484611865565b5060015b92915050565b60025490565b60006002600654141561075b5760405162461bcd60e51b815260040161075290612925565b60405180910390fd5b60026006553360009081526009602052604090205460ff161561079b5734156107965760405162461bcd60e51b8152600401610752906125ef565b6107bd565b6008543410156107bd5760405162461bcd60e51b815260040161075290612744565b600082116107dd5760405162461bcd60e51b81526004016107529061295c565b60006107e883611086565b90506000811161080a5760405162461bcd60e51b815260040161075290612665565b600754600160a01b900460ff161561088357600754604051637d52f48b60e01b81526001600160a01b0390911690637d52f48b90349061085090339086906004016123b6565b6000604051808303818588803b15801561086957600080fd5b505af115801561087d573d6000803e3d6000fd5b50505050505b61088d3384611919565b6108c16001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633836119fb565b336001600160a01b03167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b56882856040516108fc9291906129bc565b60405180910390a2600160065592915050565b600061091c848484611a56565b61098c84610928611861565b61098785604051806060016040528060288152602001612aea602891396001600160a01b038a16600090815260016020526040812090610966611861565b6001600160a01b031681526020810191909152604001600020549190611b6b565b611865565b5060015b9392505050565b6000600260065414156109bc5760405162461bcd60e51b815260040161075290612925565b60026006553360009081526009602052604090205460ff16156109fc5734156109f75760405162461bcd60e51b8152600401610752906125ef565b610a1e565b600854341015610a1e5760405162461bcd60e51b815260040161075290612744565b60008211610a3e5760405162461bcd60e51b81526004016107529061295c565b600754600160a01b900460ff1615610ab757600754604051637d52f48b60e01b81526001600160a01b0390911690637d52f48b903490610a8490339087906004016123b6565b6000604051808303818588803b158015610a9d57600080fd5b505af1158015610ab1573d6000803e3d6000fd5b50505050505b6000610ac283610e29565b905060008111610ae45760405162461bcd60e51b815260040161075290612616565b610aee3382611919565b610b226001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633856119fb565b336001600160a01b03167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b56884836040516108fc9291906129bc565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60055460ff1690565b6007546001600160a01b03163314610bb45760405162461bcd60e51b815260040161075290612640565b600780546001600160a01b0319166001600160a01b0383811691909117918290556040519116907f9dd0d31c5942a38bf92491447ea9a3ca6ac9f7477f4fdb7492346525a78284bd90600090a250565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061071d610c35611861565b846109878560016000610c46611861565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611b97565b600061072161056983610ed7565b6007546001600160a01b03163314610cae5760405162461bcd60e51b815260040161075290612640565b60088190556040517f33e6be91f228f4ecdac5071e0080def67f51b16bd8c191dfe7e3439cc96bb73f90610ce390839061245e565b60405180910390a150565b6007546001600160a01b03163314610d185760405162461bcd60e51b815260040161075290612640565b6001600160a01b03821660008181526009602052604090819020805460ff1916841515179055517f0e1d1f8c1bb242e0ee32339c4b42ddc41bdcd5abd42c09627f66d0606e3987a390610d6c908490612453565b60405180910390a25050565b60405163d505accf60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d505accf90610dd090339030908a908a908a908a908a90600401612375565b600060405180830381600087803b158015610dea57600080fd5b505af1158015610dfe573d6000803e3d6000fd5b50505050610e0b856110a3565b505050505050565b60085481565b600754600160a01b900460ff1681565b6007546000906001600160a01b031663db59917183610e46610727565b6040518363ffffffff1660e01b8152600401610e639291906129bc565b60206040518083038186803b158015610e7b57600080fd5b505afa158015610e8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610721919061227b565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b031660009081526020819052604090205490565b604051806040016040528060018152602001603160f81b81525081565b600a6020526000908152604090205481565b60096020526000908152604090205460ff1681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ff5780601f106106d4576101008083540402835291602001916106ff565b600061071d610fa4611861565b8461098785604051806060016040528060258152602001612b126025913960016000610fce611861565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b6b565b600061071d61100c611861565b8484611a56565b6007546001600160a01b0316331461103d5760405162461bcd60e51b815260040161075290612640565b6007805460ff60a01b1916600160a01b831515908102919091179091556040517fe34d40c2089ba3f2bbf33513b1c98af764ed74f62725f8769a9181ca03c3222490600090a250565b6007546000906001600160a01b0316635325f8ad83610e46610727565b6000600260065414156110c85760405162461bcd60e51b815260040161075290612925565b60026006553360009081526009602052604090205460ff16156111085734156111035760405162461bcd60e51b8152600401610752906125ef565b61112a565b60085434101561112a5760405162461bcd60e51b815260040161075290612744565b6000821161114a5760405162461bcd60e51b815260040161075290612761565b600061115583610e29565b9050600081116111775760405162461bcd60e51b81526004016107529061254c565b6111ac6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333086611bbc565b6111b63382611be3565b336001600160a01b03167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a1584836040516111f19291906129bc565b60405180910390a2600754600160a01b900460ff161561127357600754604051637d52f48b60e01b81526001600160a01b0390911690637d52f48b9034906112409033906000906004016123b6565b6000604051808303818588803b15801561125957600080fd5b505af115801561126d573d6000803e3d6000fd5b50505050505b600160065592915050565b6007546001600160a01b031633146112a85760405162461bcd60e51b815260040161075290612640565b7f15662c623742fc431ec5e8f5f9043b7c827077b816521eb3a5a7c24473eec197476040516112d7919061245e565b60405180910390a16040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611314573d6000803e3d6000fd5b5050565b6007546060906001600160a01b031633146113455760405162461bcd60e51b815260040161075290612640565b818067ffffffffffffffff8111801561135d57600080fd5b5060405190808252806020026020018201604052801561139157816020015b606081526020019060019003908161137c5790505b50915060005b8181101561146f576114508585838181106113ae57fe5b90506020028101906113c09190612a24565b6113ce906020810190611fb1565b8686848181106113da57fe5b90506020028101906113ec9190612a24565b6113fd906040810190602001612247565b87878581811061140957fe5b905060200281019061141b9190612a24565b6114299060408101906129d8565b89898781811061143557fe5b90506020028101906114479190612a24565b60600135611c97565b83828151811061145c57fe5b6020908102919091010152600101611397565b505092915050565b6007546060906001600160a01b031633146114a45760405162461bcd60e51b815260040161075290612640565b6114b18686868686611c97565b9695505050505050565b6001600160a01b0387166114e15760405162461bcd60e51b8152600401610752906127b3565b834211156115015760405162461bcd60e51b815260040161075290612787565b6001600160a01b0387166000908152600a602090815260408083205490519092917f00000000000000000000000000000000000000000000000000000000000000009161157a917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918d918d918d9189918e9101612467565b604051602081830303815290604052805190602001206040516020016115a1929190612346565b604051602081830303815290604052805190602001209050600181868686604051600081526020016040526040516115dc949392919061249b565b6020604051602081039080840390855afa1580156115fe573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b0316146116385760405162461bcd60e51b815260040161075290612719565b611643826001611b97565b6001600160a01b038a166000908152600a6020526040902055611667898989611865565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6040516370a0823160e01b81526000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906116ec903090600401612361565b60206040518083038186803b15801561170457600080fd5b505afa158015611718573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173c919061227b565b905090565b6007546001600160a01b0316331461176b5760405162461bcd60e51b815260040161075290612640565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906117b990859085906004016123b6565b602060405180830381600087803b1580156117d357600080fd5b505af11580156117e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180b919061222b565b50816001600160a01b03167f90ec57f18fa7b15c6b8d5e4d1deb90796c74b2ff23d4d0cecad0cb42a96b312882604051610d6c919061245e565b6007546001600160a01b031681565b600061173c610569610727565b3390565b6001600160a01b03831661188b5760405162461bcd60e51b815260040161075290612860565b6001600160a01b0382166118b15760405162461bcd60e51b815260040161075290612576565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061190c90859061245e565b60405180910390a3505050565b6001600160a01b03821661193f5760405162461bcd60e51b8152600401610752906127da565b61194b82600083611a51565b61198881604051806060016040528060228152602001612aa2602291396001600160a01b0385166000908152602081905260409020549190611b6b565b6001600160a01b0383166000908152602081905260409020556002546119ae9082611dd2565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119ef90859061245e565b60405180910390a35050565b611a518363a9059cbb60e01b8484604051602401611a1a9291906123b6565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611dfa565b505050565b6001600160a01b038316611a7c5760405162461bcd60e51b81526004016107529061281b565b6001600160a01b038216611aa25760405162461bcd60e51b815260040161075290612509565b611aad838383611a51565b611aea81604051806060016040528060268152602001612ac4602691396001600160a01b0386166000908152602081905260409020549190611b6b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b199082611b97565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061190c90859061245e565b60008184841115611b8f5760405162461bcd60e51b815260040161075291906124f6565b505050900390565b6000828201838110156109905760405162461bcd60e51b8152600401610752906125b8565b611bdd846323b872dd60e01b858585604051602401611a1a939291906123cf565b50505050565b6001600160a01b038216611c095760405162461bcd60e51b815260040161075290612985565b611c1560008383611a51565b600254611c229082611b97565b6002556001600160a01b038216600090815260208190526040902054611c489082611b97565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119ef90859061245e565b606060006060876001600160a01b031684888888604051602001611cbd93929190612306565b60408051601f1981840301815290829052611cd79161232a565b60006040518083038185875af1925050503d8060008114611d14576040519150601f19603f3d011682016040523d82523d6000602084013e611d19565b606091505b509150915081611d77576040513d808015611d35578160208501fd5b62461bcd60e51b835260206004840152601e60248401527f52455645525445445f574954485f4e4f5f524541534f4e5f535452494e4700006044840152606483fd5b866001600160e01b031916886001600160a01b03167f0f5c7afd652bed619c508171badaca3c2b8c33a010e9eb6152f715203f5c221f888885604051611dbf939291906124b9565b60405180910390a3979650505050505050565b600082821115611df45760405162461bcd60e51b81526004016107529061269c565b50900390565b6060611e4f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e899092919063ffffffff16565b805190915015611a515780806020019051810190611e6d919061222b565b611a515760405162461bcd60e51b8152600401610752906128db565b6060611e988484600085611ea0565b949350505050565b606082471015611ec25760405162461bcd60e51b8152600401610752906126d3565b611ecb85611f61565b611ee75760405162461bcd60e51b8152600401610752906128a4565b60006060866001600160a01b03168587604051611f04919061232a565b60006040518083038185875af1925050503d8060008114611f41576040519150601f19603f3d011682016040523d82523d6000602084013e611f46565b606091505b5091509150611f56828286611f67565b979650505050505050565b3b151590565b60608315611f76575081610990565b825115611f865782518084602001fd5b8160405162461bcd60e51b815260040161075291906124f6565b803560ff8116811461072157600080fd5b600060208284031215611fc2578081fd5b813561099081612a65565b60008060408385031215611fdf578081fd5b8235611fea81612a65565b91506020830135611ffa81612a65565b809150509250929050565b600080600060608486031215612019578081fd5b833561202481612a65565b9250602084013561203481612a65565b929592945050506040919091013590565b600080600080600080600060e0888a03121561205f578283fd5b873561206a81612a65565b9650602088013561207a81612a65565b955060408801359450606088013593506120978960808a01611fa0565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156120c5578182fd5b82356120d081612a65565b91506020830135611ffa81612a7d565b6000806000806000608086880312156120f7578081fd5b853561210281612a65565b9450602086013561211281612a8b565b9350604086013567ffffffffffffffff8082111561212e578283fd5b818801915088601f830112612141578283fd5b81358181111561214f578384fd5b896020828501011115612160578384fd5b96999598505060200195606001359392505050565b60008060408385031215612187578182fd5b823561219281612a65565b946020939093013593505050565b600080602083850312156121b2578182fd5b823567ffffffffffffffff808211156121c9578384fd5b818501915085601f8301126121dc578384fd5b8135818111156121ea578485fd5b86602080830285010111156121fd578485fd5b60209290920196919550909350505050565b600060208284031215612220578081fd5b813561099081612a7d565b60006020828403121561223c578081fd5b815161099081612a7d565b600060208284031215612258578081fd5b813561099081612a8b565b600060208284031215612274578081fd5b5035919050565b60006020828403121561228c578081fd5b5051919050565b600080600080600060a086880312156122aa578283fd5b85359450602086013593506122c28760408801611fa0565b94979396509394606081013594506080013592915050565b600081518084526122f2816020860160208601612a39565b601f01601f19169290920160200192915050565b6001600160e01b031984168152600082846004840137910160040190815292915050565b6000825161233c818460208701612a39565b9190910192915050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b0397881681529590961660208601526040850193909352606084019190915260ff16608083015260a082015260c081019190915260e00190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000602080830181845280855180835260408601915060408482028701019250838701855b8281101561244657603f198886030184526124348583516122da565b94509285019290850190600101612418565b5092979650505050505050565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845260ff9290921660208401526040830152606082015260800190565b600060408252836040830152838560608401378060608584010152601f19601f850116820160608382030160208401526114b160608201856122da565b60006020825261099060208301846122da565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526010908201526f16915493d7d41257d193d497d352539560821b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600d908201526c1393d7d1915157d193d497d5d3609a1b604082015260600190565b60208082526010908201526f2d22a927afa824afa327a92fa12aa92760811b604082015260600190565b6020808252600b908201526a27a7262cafa927aaaa22a960a91b604082015260600190565b6020808252601b908201527f5a45524f5f554e4445524c59494e475f544f5f57495448445241570000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b602080825260119082015270494e56414c49445f5349474e415455524560781b604082015260600190565b60208082526003908201526246454560e81b604082015260600190565b6020808252600c908201526b16915493d7d1115413d4d25560a21b604082015260600190565b60208082526012908201527124a72b20a624a22fa2ac2824a920aa24a7a760711b604082015260600190565b6020808252600d908201526c24a72b20a624a22fa7aba722a960991b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600f908201526e16915493d7d5d2551211149055d053608a1b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b918252602082015260400190565b60ff91909116815260200190565b6000808335601e198436030181126129ee578283fd5b83018035915067ffffffffffffffff821115612a08578283fd5b602001915036819003821315612a1d57600080fd5b9250929050565b60008235607e1983360301811261233c578182fd5b60005b83811015612a54578181015183820152602001612a3c565b83811115611bdd5750506000910152565b6001600160a01b0381168114612a7a57600080fd5b50565b8015158114612a7a57600080fd5b6001600160e01b031981168114612a7a57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200ef52ef00bbf3c486834914e7fa8734e719add169389ca28b67216345b344b3e64736f6c634300060c003300000000000000000000000077777feddddffc19ff86db637967013e6c6a116c00000000000000000000000029bff390fc12c900aaf0f2e51c06675df691337a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000014506f776572506f6f6c20546f726e205661756c7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000067070544f524e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063b6b55f25116100ab578063dd62ed3e1161006f578063dd62ed3e146105f4578063e2c6743914610614578063e57ae51714610629578063f887ea4014610649578063fea61faa1461065e57610225565b8063b6b55f251461056e578063b85cefc914610581578063ce50c756146105a1578063d1e40b55146105c1578063d505accf146105d457610225565b806395d89b41116100f257806395d89b41146104d9578063a457c2d7146104ee578063a9059cbb1461050e578063af9687941461052e578063b54c47531461054e57610225565b806370a082311461046457806378160376146104845780637ecebe001461049957806387051204146104b957610225565b80633644e515116101b15780634a970be7116101755780634a970be7146103d85780634cf1115d146103f857806363ba9a2f1461040d5780636dd2f37c146104225780636f307dc31461044257610225565b80633644e5151461034357806339509351146103585780633af9e669146103785780633f6738a91461039857806342701a8e146103b857610225565b806323b872dd116101f857806323b872dd146102b75780632e1a7d4d146102d757806330adf81f146102ea578063313ce567146102ff578063340ac20f1461032157610225565b806306fdde031461022a578063095ea7b31461025557806318160ddd1461028257806319810f3c146102a4575b600080fd5b34801561023657600080fd5b5061023f610673565b60405161024c91906124f6565b60405180910390f35b34801561026157600080fd5b50610275610270366004612175565b610709565b60405161024c9190612453565b34801561028e57600080fd5b50610297610727565b60405161024c919061245e565b6102976102b2366004612263565b61072d565b3480156102c357600080fd5b506102756102d2366004612005565b61090f565b6102976102e5366004612263565b610997565b3480156102f657600080fd5b50610297610b5d565b34801561030b57600080fd5b50610314610b81565b60405161024c91906129ca565b34801561032d57600080fd5b5061034161033c366004611fb1565b610b8a565b005b34801561034f57600080fd5b50610297610c04565b34801561036457600080fd5b50610275610373366004612175565b610c28565b34801561038457600080fd5b50610297610393366004611fb1565b610c76565b3480156103a457600080fd5b506103416103b3366004612263565b610c84565b3480156103c457600080fd5b506103416103d33660046120b3565b610cee565b3480156103e457600080fd5b506103416103f3366004612293565b610d78565b34801561040457600080fd5b50610297610e13565b34801561041957600080fd5b50610275610e19565b34801561042e57600080fd5b5061029761043d366004612263565b610e29565b34801561044e57600080fd5b50610457610eb3565b60405161024c9190612361565b34801561047057600080fd5b5061029761047f366004611fb1565b610ed7565b34801561049057600080fd5b5061023f610ef2565b3480156104a557600080fd5b506102976104b4366004611fb1565b610f0f565b3480156104c557600080fd5b506102756104d4366004611fb1565b610f21565b3480156104e557600080fd5b5061023f610f36565b3480156104fa57600080fd5b50610275610509366004612175565b610f97565b34801561051a57600080fd5b50610275610529366004612175565b610fff565b34801561053a57600080fd5b5061034161054936600461220f565b611013565b34801561055a57600080fd5b50610297610569366004612263565b611086565b61029761057c366004612263565b6110a3565b34801561058d57600080fd5b5061034161059c366004611fb1565b61127e565b6105b46105af3660046121a0565b611318565b60405161024c91906123f3565b61023f6105cf3660046120e0565b611477565b3480156105e057600080fd5b506103416105ef366004612045565b6114bb565b34801561060057600080fd5b5061029761060f366004611fcd565b611672565b34801561062057600080fd5b5061029761169d565b34801561063557600080fd5b50610341610644366004612175565b611741565b34801561065557600080fd5b50610457611845565b34801561066a57600080fd5b50610297611854565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b5050505050905090565b600061071d610716611861565b8484611865565b5060015b92915050565b60025490565b60006002600654141561075b5760405162461bcd60e51b815260040161075290612925565b60405180910390fd5b60026006553360009081526009602052604090205460ff161561079b5734156107965760405162461bcd60e51b8152600401610752906125ef565b6107bd565b6008543410156107bd5760405162461bcd60e51b815260040161075290612744565b600082116107dd5760405162461bcd60e51b81526004016107529061295c565b60006107e883611086565b90506000811161080a5760405162461bcd60e51b815260040161075290612665565b600754600160a01b900460ff161561088357600754604051637d52f48b60e01b81526001600160a01b0390911690637d52f48b90349061085090339086906004016123b6565b6000604051808303818588803b15801561086957600080fd5b505af115801561087d573d6000803e3d6000fd5b50505050505b61088d3384611919565b6108c16001600160a01b037f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c1633836119fb565b336001600160a01b03167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b56882856040516108fc9291906129bc565b60405180910390a2600160065592915050565b600061091c848484611a56565b61098c84610928611861565b61098785604051806060016040528060288152602001612aea602891396001600160a01b038a16600090815260016020526040812090610966611861565b6001600160a01b031681526020810191909152604001600020549190611b6b565b611865565b5060015b9392505050565b6000600260065414156109bc5760405162461bcd60e51b815260040161075290612925565b60026006553360009081526009602052604090205460ff16156109fc5734156109f75760405162461bcd60e51b8152600401610752906125ef565b610a1e565b600854341015610a1e5760405162461bcd60e51b815260040161075290612744565b60008211610a3e5760405162461bcd60e51b81526004016107529061295c565b600754600160a01b900460ff1615610ab757600754604051637d52f48b60e01b81526001600160a01b0390911690637d52f48b903490610a8490339087906004016123b6565b6000604051808303818588803b158015610a9d57600080fd5b505af1158015610ab1573d6000803e3d6000fd5b50505050505b6000610ac283610e29565b905060008111610ae45760405162461bcd60e51b815260040161075290612616565b610aee3382611919565b610b226001600160a01b037f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c1633856119fb565b336001600160a01b03167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b56884836040516108fc9291906129bc565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60055460ff1690565b6007546001600160a01b03163314610bb45760405162461bcd60e51b815260040161075290612640565b600780546001600160a01b0319166001600160a01b0383811691909117918290556040519116907f9dd0d31c5942a38bf92491447ea9a3ca6ac9f7477f4fdb7492346525a78284bd90600090a250565b7ff308e5128d84ba9838de77823bdb3addfe4eada513ef19300d29dd80d049d72281565b600061071d610c35611861565b846109878560016000610c46611861565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611b97565b600061072161056983610ed7565b6007546001600160a01b03163314610cae5760405162461bcd60e51b815260040161075290612640565b60088190556040517f33e6be91f228f4ecdac5071e0080def67f51b16bd8c191dfe7e3439cc96bb73f90610ce390839061245e565b60405180910390a150565b6007546001600160a01b03163314610d185760405162461bcd60e51b815260040161075290612640565b6001600160a01b03821660008181526009602052604090819020805460ff1916841515179055517f0e1d1f8c1bb242e0ee32339c4b42ddc41bdcd5abd42c09627f66d0606e3987a390610d6c908490612453565b60405180910390a25050565b60405163d505accf60e01b81526001600160a01b037f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c169063d505accf90610dd090339030908a908a908a908a908a90600401612375565b600060405180830381600087803b158015610dea57600080fd5b505af1158015610dfe573d6000803e3d6000fd5b50505050610e0b856110a3565b505050505050565b60085481565b600754600160a01b900460ff1681565b6007546000906001600160a01b031663db59917183610e46610727565b6040518363ffffffff1660e01b8152600401610e639291906129bc565b60206040518083038186803b158015610e7b57600080fd5b505afa158015610e8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610721919061227b565b7f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c81565b6001600160a01b031660009081526020819052604090205490565b604051806040016040528060018152602001603160f81b81525081565b600a6020526000908152604090205481565b60096020526000908152604090205460ff1681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ff5780601f106106d4576101008083540402835291602001916106ff565b600061071d610fa4611861565b8461098785604051806060016040528060258152602001612b126025913960016000610fce611861565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b6b565b600061071d61100c611861565b8484611a56565b6007546001600160a01b0316331461103d5760405162461bcd60e51b815260040161075290612640565b6007805460ff60a01b1916600160a01b831515908102919091179091556040517fe34d40c2089ba3f2bbf33513b1c98af764ed74f62725f8769a9181ca03c3222490600090a250565b6007546000906001600160a01b0316635325f8ad83610e46610727565b6000600260065414156110c85760405162461bcd60e51b815260040161075290612925565b60026006553360009081526009602052604090205460ff16156111085734156111035760405162461bcd60e51b8152600401610752906125ef565b61112a565b60085434101561112a5760405162461bcd60e51b815260040161075290612744565b6000821161114a5760405162461bcd60e51b815260040161075290612761565b600061115583610e29565b9050600081116111775760405162461bcd60e51b81526004016107529061254c565b6111ac6001600160a01b037f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c16333086611bbc565b6111b63382611be3565b336001600160a01b03167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a1584836040516111f19291906129bc565b60405180910390a2600754600160a01b900460ff161561127357600754604051637d52f48b60e01b81526001600160a01b0390911690637d52f48b9034906112409033906000906004016123b6565b6000604051808303818588803b15801561125957600080fd5b505af115801561126d573d6000803e3d6000fd5b50505050505b600160065592915050565b6007546001600160a01b031633146112a85760405162461bcd60e51b815260040161075290612640565b7f15662c623742fc431ec5e8f5f9043b7c827077b816521eb3a5a7c24473eec197476040516112d7919061245e565b60405180910390a16040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611314573d6000803e3d6000fd5b5050565b6007546060906001600160a01b031633146113455760405162461bcd60e51b815260040161075290612640565b818067ffffffffffffffff8111801561135d57600080fd5b5060405190808252806020026020018201604052801561139157816020015b606081526020019060019003908161137c5790505b50915060005b8181101561146f576114508585838181106113ae57fe5b90506020028101906113c09190612a24565b6113ce906020810190611fb1565b8686848181106113da57fe5b90506020028101906113ec9190612a24565b6113fd906040810190602001612247565b87878581811061140957fe5b905060200281019061141b9190612a24565b6114299060408101906129d8565b89898781811061143557fe5b90506020028101906114479190612a24565b60600135611c97565b83828151811061145c57fe5b6020908102919091010152600101611397565b505092915050565b6007546060906001600160a01b031633146114a45760405162461bcd60e51b815260040161075290612640565b6114b18686868686611c97565b9695505050505050565b6001600160a01b0387166114e15760405162461bcd60e51b8152600401610752906127b3565b834211156115015760405162461bcd60e51b815260040161075290612787565b6001600160a01b0387166000908152600a602090815260408083205490519092917ff308e5128d84ba9838de77823bdb3addfe4eada513ef19300d29dd80d049d7229161157a917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918d918d918d9189918e9101612467565b604051602081830303815290604052805190602001206040516020016115a1929190612346565b604051602081830303815290604052805190602001209050600181868686604051600081526020016040526040516115dc949392919061249b565b6020604051602081039080840390855afa1580156115fe573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b0316146116385760405162461bcd60e51b815260040161075290612719565b611643826001611b97565b6001600160a01b038a166000908152600a6020526040902055611667898989611865565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6040516370a0823160e01b81526000906001600160a01b037f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c16906370a08231906116ec903090600401612361565b60206040518083038186803b15801561170457600080fd5b505afa158015611718573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173c919061227b565b905090565b6007546001600160a01b0316331461176b5760405162461bcd60e51b815260040161075290612640565b60405163095ea7b360e01b81526001600160a01b037f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c169063095ea7b3906117b990859085906004016123b6565b602060405180830381600087803b1580156117d357600080fd5b505af11580156117e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180b919061222b565b50816001600160a01b03167f90ec57f18fa7b15c6b8d5e4d1deb90796c74b2ff23d4d0cecad0cb42a96b312882604051610d6c919061245e565b6007546001600160a01b031681565b600061173c610569610727565b3390565b6001600160a01b03831661188b5760405162461bcd60e51b815260040161075290612860565b6001600160a01b0382166118b15760405162461bcd60e51b815260040161075290612576565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061190c90859061245e565b60405180910390a3505050565b6001600160a01b03821661193f5760405162461bcd60e51b8152600401610752906127da565b61194b82600083611a51565b61198881604051806060016040528060228152602001612aa2602291396001600160a01b0385166000908152602081905260409020549190611b6b565b6001600160a01b0383166000908152602081905260409020556002546119ae9082611dd2565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119ef90859061245e565b60405180910390a35050565b611a518363a9059cbb60e01b8484604051602401611a1a9291906123b6565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611dfa565b505050565b6001600160a01b038316611a7c5760405162461bcd60e51b81526004016107529061281b565b6001600160a01b038216611aa25760405162461bcd60e51b815260040161075290612509565b611aad838383611a51565b611aea81604051806060016040528060268152602001612ac4602691396001600160a01b0386166000908152602081905260409020549190611b6b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b199082611b97565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061190c90859061245e565b60008184841115611b8f5760405162461bcd60e51b815260040161075291906124f6565b505050900390565b6000828201838110156109905760405162461bcd60e51b8152600401610752906125b8565b611bdd846323b872dd60e01b858585604051602401611a1a939291906123cf565b50505050565b6001600160a01b038216611c095760405162461bcd60e51b815260040161075290612985565b611c1560008383611a51565b600254611c229082611b97565b6002556001600160a01b038216600090815260208190526040902054611c489082611b97565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119ef90859061245e565b606060006060876001600160a01b031684888888604051602001611cbd93929190612306565b60408051601f1981840301815290829052611cd79161232a565b60006040518083038185875af1925050503d8060008114611d14576040519150601f19603f3d011682016040523d82523d6000602084013e611d19565b606091505b509150915081611d77576040513d808015611d35578160208501fd5b62461bcd60e51b835260206004840152601e60248401527f52455645525445445f574954485f4e4f5f524541534f4e5f535452494e4700006044840152606483fd5b866001600160e01b031916886001600160a01b03167f0f5c7afd652bed619c508171badaca3c2b8c33a010e9eb6152f715203f5c221f888885604051611dbf939291906124b9565b60405180910390a3979650505050505050565b600082821115611df45760405162461bcd60e51b81526004016107529061269c565b50900390565b6060611e4f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e899092919063ffffffff16565b805190915015611a515780806020019051810190611e6d919061222b565b611a515760405162461bcd60e51b8152600401610752906128db565b6060611e988484600085611ea0565b949350505050565b606082471015611ec25760405162461bcd60e51b8152600401610752906126d3565b611ecb85611f61565b611ee75760405162461bcd60e51b8152600401610752906128a4565b60006060866001600160a01b03168587604051611f04919061232a565b60006040518083038185875af1925050503d8060008114611f41576040519150601f19603f3d011682016040523d82523d6000602084013e611f46565b606091505b5091509150611f56828286611f67565b979650505050505050565b3b151590565b60608315611f76575081610990565b825115611f865782518084602001fd5b8160405162461bcd60e51b815260040161075291906124f6565b803560ff8116811461072157600080fd5b600060208284031215611fc2578081fd5b813561099081612a65565b60008060408385031215611fdf578081fd5b8235611fea81612a65565b91506020830135611ffa81612a65565b809150509250929050565b600080600060608486031215612019578081fd5b833561202481612a65565b9250602084013561203481612a65565b929592945050506040919091013590565b600080600080600080600060e0888a03121561205f578283fd5b873561206a81612a65565b9650602088013561207a81612a65565b955060408801359450606088013593506120978960808a01611fa0565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156120c5578182fd5b82356120d081612a65565b91506020830135611ffa81612a7d565b6000806000806000608086880312156120f7578081fd5b853561210281612a65565b9450602086013561211281612a8b565b9350604086013567ffffffffffffffff8082111561212e578283fd5b818801915088601f830112612141578283fd5b81358181111561214f578384fd5b896020828501011115612160578384fd5b96999598505060200195606001359392505050565b60008060408385031215612187578182fd5b823561219281612a65565b946020939093013593505050565b600080602083850312156121b2578182fd5b823567ffffffffffffffff808211156121c9578384fd5b818501915085601f8301126121dc578384fd5b8135818111156121ea578485fd5b86602080830285010111156121fd578485fd5b60209290920196919550909350505050565b600060208284031215612220578081fd5b813561099081612a7d565b60006020828403121561223c578081fd5b815161099081612a7d565b600060208284031215612258578081fd5b813561099081612a8b565b600060208284031215612274578081fd5b5035919050565b60006020828403121561228c578081fd5b5051919050565b600080600080600060a086880312156122aa578283fd5b85359450602086013593506122c28760408801611fa0565b94979396509394606081013594506080013592915050565b600081518084526122f2816020860160208601612a39565b601f01601f19169290920160200192915050565b6001600160e01b031984168152600082846004840137910160040190815292915050565b6000825161233c818460208701612a39565b9190910192915050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b0397881681529590961660208601526040850193909352606084019190915260ff16608083015260a082015260c081019190915260e00190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000602080830181845280855180835260408601915060408482028701019250838701855b8281101561244657603f198886030184526124348583516122da565b94509285019290850190600101612418565b5092979650505050505050565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845260ff9290921660208401526040830152606082015260800190565b600060408252836040830152838560608401378060608584010152601f19601f850116820160608382030160208401526114b160608201856122da565b60006020825261099060208301846122da565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526010908201526f16915493d7d41257d193d497d352539560821b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600d908201526c1393d7d1915157d193d497d5d3609a1b604082015260600190565b60208082526010908201526f2d22a927afa824afa327a92fa12aa92760811b604082015260600190565b6020808252600b908201526a27a7262cafa927aaaa22a960a91b604082015260600190565b6020808252601b908201527f5a45524f5f554e4445524c59494e475f544f5f57495448445241570000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b602080825260119082015270494e56414c49445f5349474e415455524560781b604082015260600190565b60208082526003908201526246454560e81b604082015260600190565b6020808252600c908201526b16915493d7d1115413d4d25560a21b604082015260600190565b60208082526012908201527124a72b20a624a22fa2ac2824a920aa24a7a760711b604082015260600190565b6020808252600d908201526c24a72b20a624a22fa7aba722a960991b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600f908201526e16915493d7d5d2551211149055d053608a1b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b918252602082015260400190565b60ff91909116815260200190565b6000808335601e198436030181126129ee578283fd5b83018035915067ffffffffffffffff821115612a08578283fd5b602001915036819003821315612a1d57600080fd5b9250929050565b60008235607e1983360301811261233c578182fd5b60005b83811015612a54578181015183820152602001612a3c565b83811115611bdd5750506000910152565b6001600160a01b0381168114612a7a57600080fd5b50565b8015158114612a7a57600080fd5b6001600160e01b031981168114612a7a57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200ef52ef00bbf3c486834914e7fa8734e719add169389ca28b67216345b344b3e64736f6c634300060c0033

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

00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c00000000000000000000000029bff390fc12c900aaf0f2e51c06675df691337a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000014506f776572506f6f6c20546f726e205661756c7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000067070544f524e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _token (address): 0x77777FeDdddFfC19Ff86DB637967013e6C6A116C
Arg [1] : _router (address): 0x29BfF390FC12C900Aaf0F2e51C06675Df691337a
Arg [2] : _name (string): PowerPool Torn Vault
Arg [3] : _symbol (string): ppTORN

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c
Arg [1] : 00000000000000000000000029bff390fc12c900aaf0f2e51c06675df691337a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 506f776572506f6f6c20546f726e205661756c74000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 7070544f524e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42718:10489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14099:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16245:169;;;;;;;;;;-1:-1:-1;16245:169:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;15198:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47380:797::-;;;;;;:::i;:::-;;:::i;16896:321::-;;;;;;;;;;-1:-1:-1;16896:321:0;;;;;:::i;:::-;;:::i;46384:781::-;;;;;;:::i;:::-;;:::i;42868:142::-;;;;;;;;;;;;;:::i;15042:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48914:135::-;;;;;;;;;;-1:-1:-1;48914:135:0;;;;;:::i;:::-;;:::i;:::-;;43264:50;;;;;;;;;;;;;:::i;17626:218::-;;;;;;;;;;-1:-1:-1;17626:218:0;;;;;:::i;:::-;;:::i;48619:155::-;;;;;;;;;;-1:-1:-1;48619:155:0;;;;;:::i;:::-;;:::i;49375:124::-;;;;;;;;;;-1:-1:-1;49375:124:0;;;;;:::i;:::-;;:::i;49219:150::-;;;;;;;;;;-1:-1:-1;49219:150:0;;;;;:::i;:::-;;:::i;44965:254::-;;;;;;;;;;-1:-1:-1;44965:254:0;;;;;:::i;:::-;;:::i;43383:21::-;;;;;;;;;;;;;:::i;43345:33::-;;;;;;;;;;;;;:::i;48183:220::-;;;;;;;;;;-1:-1:-1;48183:220:0;;;;;:::i;:::-;;:::i;43219:40::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15369:127::-;;;;;;;;;;-1:-1:-1;15369:127:0;;;;;:::i;:::-;;:::i;43015:50::-;;;;;;;;;;;;;:::i;43460:::-;;;;;;;;;;-1:-1:-1;43460:50:0;;;;;:::i;:::-;;:::i;43409:46::-;;;;;;;;;;-1:-1:-1;43409:46:0;;;;;:::i;:::-;;:::i;14309:95::-;;;;;;;;;;;;;:::i;18347:269::-;;;;;;;;;;-1:-1:-1;18347:269:0;;;;;:::i;:::-;;:::i;15709:175::-;;;;;;;;;;-1:-1:-1;15709:175:0;;;;;:::i;:::-;;:::i;49055:158::-;;;;;;;;;;-1:-1:-1;49055:158:0;;;;;:::i;:::-;;:::i;48409:204::-;;;;;;;;;;-1:-1:-1;48409:204:0;;;;;:::i;:::-;;:::i;45388:774::-;;;;;;:::i;:::-;;:::i;49505:183::-;;;;;;;;;;-1:-1:-1;49505:183:0;;;;;:::i;:::-;;:::i;50130:397::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49864:260::-;;;;;;:::i;:::-;;:::i;51115:723::-;;;;;;;;;;-1:-1:-1;51115:723:0;;;;;:::i;:::-;;:::i;15947:151::-;;;;;;;;;;-1:-1:-1;15947:151:0;;;;;:::i;:::-;;:::i;50533:128::-;;;;;;;;;;;;;:::i;49694:164::-;;;;;;;;;;-1:-1:-1;49694:164:0;;;;;:::i;:::-;;:::i;43319:21::-;;;;;;;;;;;;;:::i;48780:128::-;;;;;;;;;;;;;:::i;14099:91::-;14177:5;14170:12;;;;;;;;-1:-1:-1;;14170:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14144:13;;14170:12;;14177:5;;14170:12;;14177:5;14170:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14099:91;:::o;16245:169::-;16328:4;16345:39;16354:12;:10;:12::i;:::-;16368:7;16377:6;16345:8;:39::i;:::-;-1:-1:-1;16402:4:0;16245:169;;;;;:::o;15198:108::-;15286:12;;15198:108;:::o;47380:797::-;47473:7;36496:1;37102:7;;:19;;37094:63;;;;-1:-1:-1;;;37094:63:0;;;;;;;:::i;:::-;;;;;;;;;36496:1;37235:7;:18;47508:10:::1;47493:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;47489:147;;;47538:9;:14:::0;47530:40:::1;;;;-1:-1:-1::0;;;47530:40:0::1;;;;;;;:::i;:::-;47489:147;;;47614:6;;47601:9;:19;;47593:35;;;;-1:-1:-1::0;;;47593:35:0::1;;;;;;;:::i;:::-;47666:1;47652:11;:15;47644:43;;;;-1:-1:-1::0;;;47644:43:0::1;;;;;;;:::i;:::-;47696:22;47721:41;47750:11;47721:28;:41::i;:::-;47696:66;;47794:1;47777:14;:18;47769:58;;;;-1:-1:-1::0;;;47769:58:0::1;;;;;;;:::i;:::-;47840:21;::::0;-1:-1:-1;;;47840:21:0;::::1;;;47836:146;;;47903:6;::::0;47872:102:::1;::::0;-1:-1:-1;;;47872:102:0;;-1:-1:-1;;;;;47903:6:0;;::::1;::::0;47872:54:::1;::::0;47935:9:::1;::::0;47872:102:::1;::::0;47947:10:::1;::::0;47959:14;;47872:102:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;47836:146;47990:30;47996:10;48008:11;47990:5;:30::i;:::-;48027:51;-1:-1:-1::0;;;;;48027:10:0::1;:23;48051:10;48063:14:::0;48027:23:::1;:51::i;:::-;48101:10;-1:-1:-1::0;;;;;48092:49:0::1;;48113:14;48129:11;48092:49;;;;;;;:::i;:::-;;;;;;;;36452:1:::0;37414:7;:22;48157:14;47380:797;-1:-1:-1;;47380:797:0:o;16896:321::-;17002:4;17019:36;17029:6;17037:9;17048:6;17019:9;:36::i;:::-;17066:121;17075:6;17083:12;:10;:12::i;:::-;17097:89;17135:6;17097:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17097:19:0;;;;;;:11;:19;;;;;;17117:12;:10;:12::i;:::-;-1:-1:-1;;;;;17097:33:0;;;;;;;;;;;;-1:-1:-1;17097:33:0;;;:89;:37;:89::i;:::-;17066:8;:121::i;:::-;-1:-1:-1;17205:4:0;16896:321;;;;;;:::o;46384:781::-;46475:7;36496:1;37102:7;;:19;;37094:63;;;;-1:-1:-1;;;37094:63:0;;;;;;;:::i;:::-;36496:1;37235:7;:18;46510:10:::1;46495:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;46491:147;;;46540:9;:14:::0;46532:40:::1;;;;-1:-1:-1::0;;;46532:40:0::1;;;;;;;:::i;:::-;46491:147;;;46616:6;;46603:9;:19;;46595:35;;;;-1:-1:-1::0;;;46595:35:0::1;;;;;;;:::i;:::-;46672:1;46654:15;:19;46646:47;;;;-1:-1:-1::0;;;46646:47:0::1;;;;;;;:::i;:::-;46706:21;::::0;-1:-1:-1;;;46706:21:0;::::1;;;46702:147;;;46769:6;::::0;46738:103:::1;::::0;-1:-1:-1;;;46738:103:0;;-1:-1:-1;;;;;46769:6:0;;::::1;::::0;46738:54:::1;::::0;46801:9:::1;::::0;46738:103:::1;::::0;46813:10:::1;::::0;46825:15;;46738:103:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;46702:147;46857:18;46878:45;46907:15;46878:28;:45::i;:::-;46857:66;;46951:1;46938:10;:14;46930:43;;;;-1:-1:-1::0;;;46930:43:0::1;;;;;;;:::i;:::-;46982:29;46988:10;47000;46982:5;:29::i;:::-;47018:52;-1:-1:-1::0;;;;;47018:10:0::1;:23;47042:10;47054:15:::0;47018:23:::1;:52::i;:::-;47093:10;-1:-1:-1::0;;;;;47084:49:0::1;;47105:15;47122:10;47084:49;;;;;;;:::i;42868:142::-:0;42915:95;42868:142;:::o;15042:91::-;15116:9;;;;15042:91;:::o;48914:135::-;44137:6;;-1:-1:-1;;;;;44137:6:0;44147:10;44137:20;44129:44;;;;-1:-1:-1;;;44129:44:0;;;;;;;:::i;:::-;48992:6:::1;:19:::0;;-1:-1:-1;;;;;;48992:19:0::1;-1:-1:-1::0;;;;;48992:19:0;;::::1;::::0;;;::::1;::::0;;;;49023:20:::1;::::0;49036:6;::::1;::::0;49023:20:::1;::::0;-1:-1:-1;;49023:20:0::1;48914:135:::0;:::o;43264:50::-;;;:::o;17626:218::-;17714:4;17731:83;17740:12;:10;:12::i;:::-;17754:7;17763:50;17802:10;17763:11;:25;17775:12;:10;:12::i;:::-;-1:-1:-1;;;;;17763:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17763:25:0;;;:34;;;;;;;;;;;:38;:50::i;48619:155::-;48697:7;48720:48;48749:18;48759:7;48749:9;:18::i;49375:124::-;44137:6;;-1:-1:-1;;;;;44137:6:0;44147:10;44137:20;44129:44;;;;-1:-1:-1;;;44129:44:0;;;;;;;:::i;:::-;49447:6:::1;:16:::0;;;49475:18:::1;::::0;::::1;::::0;::::1;::::0;49456:7;;49475:18:::1;:::i;:::-;;;;;;;;49375:124:::0;:::o;49219:150::-;44137:6;;-1:-1:-1;;;;;44137:6:0;44147:10;44137:20;44129:44;;;;-1:-1:-1;;;44129:44:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49300:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;;;:29;;-1:-1:-1;;49300:29:0::1;::::0;::::1;;;::::0;;49341:22;::::1;::::0;::::1;::::0;49300:29;;49341:22:::1;:::i;:::-;;;;;;;;49219:150:::0;;:::o;44965:254::-;45114:76;;-1:-1:-1;;;45114:76:0;;-1:-1:-1;;;;;45114:10:0;:17;;;;:76;;45132:10;;45152:4;;45159:7;;45168:9;;45179:2;;45183;;45187;;45114:76;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45197:16;45205:7;45197;:16::i;:::-;;44965:254;;;;;:::o;43383:21::-;;;;:::o;43345:33::-;;;-1:-1:-1;;;43345:33:0;;;;;:::o;48183:220::-;48327:6;;48278:7;;-1:-1:-1;;;;;48327:6:0;48301:62;48364:17;48383:13;:11;:13::i;:::-;48301:96;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;43219:40::-;;;:::o;15369:127::-;-1:-1:-1;;;;;15470:18:0;15443:7;15470:18;;;;;;;;;;;;15369:127::o;43015:50::-;43055:10;;;;;;;;;;;;;-1:-1:-1;;;43055:10:0;;;43015:50;:::o;43460:::-;;;;;;;;;;;;;:::o;43409:46::-;;;;;;;;;;;;;;;:::o;14309:95::-;14389:7;14382:14;;;;;;;;-1:-1:-1;;14382:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14356:13;;14382:14;;14389:7;;14382:14;;14389:7;14382:14;;;;;;;;;;;;;;;;;;;;;;;;18347:269;18440:4;18457:129;18466:12;:10;:12::i;:::-;18480:7;18489:96;18528:15;18489:96;;;;;;;;;;;;;;;;;:11;:25;18501:12;:10;:12::i;:::-;-1:-1:-1;;;;;18489:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18489:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;15709:175::-;15795:4;15812:42;15822:12;:10;:12::i;:::-;15836:9;15847:6;15812:9;:42::i;49055:158::-;44137:6;;-1:-1:-1;;;;;44137:6:0;44147:10;44137:20;44129:44;;;;-1:-1:-1;;;44129:44:0;;;;;;;:::i;:::-;49135:21:::1;:31:::0;;-1:-1:-1;;;;49135:31:0::1;-1:-1:-1::0;;;49135:31:0;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;49178:29:::1;::::0;::::1;::::0;-1:-1:-1;;49178:29:0::1;49055:158:::0;:::o;48409:204::-;48545:6;;48496:7;;-1:-1:-1;;;;;48545:6:0;48519:62;48582:9;48593:13;:11;:13::i;45388:774::-;45475:7;36496:1;37102:7;;:19;;37094:63;;;;-1:-1:-1;;;37094:63:0;;;;;;;:::i;:::-;36496:1;37235:7;:18;45510:10:::1;45495:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;45491:147;;;45540:9;:14:::0;45532:40:::1;;;;-1:-1:-1::0;;;45532:40:0::1;;;;;;;:::i;:::-;45491:147;;;45616:6;;45603:9;:19;;45595:35;;;;-1:-1:-1::0;;;45595:35:0::1;;;;;;;:::i;:::-;45671:1;45654:14;:18;45646:43;;;;-1:-1:-1::0;;;45646:43:0::1;;;;;;;:::i;:::-;45698:18;45719:44;45748:14;45719:28;:44::i;:::-;45698:65;;45791:1;45778:10;:14;45770:43;;;;-1:-1:-1::0;;;45770:43:0::1;;;;;;;:::i;:::-;45822:70;-1:-1:-1::0;;;;;45822:10:0::1;:27;45850:10;45870:4;45877:14:::0;45822:27:::1;:70::i;:::-;45899:29;45905:10;45917;45899:5;:29::i;:::-;45950:10;-1:-1:-1::0;;;;;45942:47:0::1;;45962:14;45978:10;45942:47;;;;;;;:::i;:::-;;;;;;;;46002:21;::::0;-1:-1:-1;;;46002:21:0;::::1;;;45998:133;;;46065:6;::::0;46034:89:::1;::::0;-1:-1:-1;;;46034:89:0;;-1:-1:-1;;;;;46065:6:0;;::::1;::::0;46034:54:::1;::::0;46097:9:::1;::::0;46034:89:::1;::::0;46109:10:::1;::::0;46065:6:::1;::::0;46034:89:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;45998:133;36452:1:::0;37414:7;:22;46146:10;45388:774;-1:-1:-1;;45388:774:0:o;49505:183::-;44137:6;;-1:-1:-1;;;;;44137:6:0;44147:10;44137:20;44129:44;;;;-1:-1:-1;;;44129:44:0;;;;;;;:::i;:::-;49597:37:::1;49612:21;49597:37;;;;;;:::i;:::-;;;;;;;;49641:41;::::0;-1:-1:-1;;;;;49641:18:0;::::1;::::0;49660:21:::1;49641:41:::0;::::1;;;::::0;::::1;::::0;;;49660:21;49641:18;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49505:183:::0;:::o;50130:397::-;44137:6;;50267:22;;-1:-1:-1;;;;;44137:6:0;44147:10;44137:20;44129:44;;;;-1:-1:-1;;;44129:44:0;;;;;;;:::i;:::-;50315:6;;50345:16:::1;::::0;::::1;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50335:26;;50373:9;50368:154;50392:3;50388:1;:7;50368:154;;;50424:90;50438:6;;50445:1;50438:9;;;;;;;;;;;;;;;;;;:::i;:::-;:21;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;50461:6;;50468:1;50461:9;;;;;;;;;;;;;;;;;;:::i;:::-;:19;::::0;;;;;::::1;;;:::i;:::-;50482:6;;50489:1;50482:9;;;;;;;;;;;;;;;;;;:::i;:::-;:14;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;50498:6;;50505:1;50498:9;;;;;;;;;;;;;;;;;;:::i;:::-;:15;;;50424:13;:90::i;:::-;50411:7;50419:1;50411:10;;;;;;;;;::::0;;::::1;::::0;;;;;:103;50397:3:::1;;50368:154;;;;44180:1;50130:397:::0;;;;:::o;49864:260::-;44137:6;;50036:12;;-1:-1:-1;;;;;44137:6:0;44147:10;44137:20;44129:44;;;;-1:-1:-1;;;44129:44:0;;;;;;;:::i;:::-;50064:54:::1;50078:12;50092:10;50104:5;;50111:6;50064:13;:54::i;:::-;50057:61:::0;49864:260;-1:-1:-1;;;;;;49864:260:0:o;51115:723::-;-1:-1:-1;;;;;51300:19:0;;51292:45;;;;-1:-1:-1;;;51292:45:0;;;;;;;:::i;:::-;51371:8;51352:15;:27;;51344:58;;;;-1:-1:-1;;;51344:58:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51437:13:0;;51409:25;51437:13;;;:6;:13;;;;;;;;;51577:79;;51437:13;;51409:25;51540:16;;51577:79;;42915:95;;51444:5;;51612:7;;51621:5;;51437:13;;51647:8;;51577:79;;:::i;:::-;;;;;;;;;;;;;51567:90;;;;;;51492:174;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51474:199;;;;;;51457:216;;51699:26;51709:6;51717:1;51720;51723;51699:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51690:35:0;:5;-1:-1:-1;;;;;51690:35:0;;51682:65;;;;-1:-1:-1;;;51682:65:0;;;;;;;:::i;:::-;51770:24;:17;51792:1;51770:21;:24::i;:::-;-1:-1:-1;;;;;51754:13:0;;;;;;:6;:13;;;;;:40;51801:31;51761:5;51817:7;51826:5;51801:8;:31::i;:::-;51115:723;;;;;;;;;:::o;15947:151::-;-1:-1:-1;;;;;16063:18:0;;;16036:7;16063:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15947:151::o;50533:128::-;50620:35;;-1:-1:-1;;;50620:35:0;;50597:7;;-1:-1:-1;;;;;50620:10:0;:20;;;;:35;;50649:4;;50620:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50613:42;;50533:128;:::o;49694:164::-;44137:6;;-1:-1:-1;;;;;44137:6:0;44147:10;44137:20;44129:44;;;;-1:-1:-1;;;44129:44:0;;;;;;;:::i;:::-;49787:32:::1;::::0;-1:-1:-1;;;49787:32:0;;-1:-1:-1;;;;;49787:10:0::1;:18;::::0;::::1;::::0;:32:::1;::::0;49806:3;;49811:7;;49787:32:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49839:3;-1:-1:-1::0;;;;;49831:21:0::1;;49844:7;49831:21;;;;;;:::i;43319:::-:0;;;-1:-1:-1;;;;;43319:21:0;;:::o;48780:128::-;48836:7;48859:43;48888:13;:11;:13::i;1302:106::-;1390:10;1302:106;:::o;21494:346::-;-1:-1:-1;;;;;21596:19:0;;21588:68;;;;-1:-1:-1;;;21588:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21675:21:0;;21667:68;;;;-1:-1:-1;;;21667:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21748:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;21800:32;;;;;21778:6;;21800:32;:::i;:::-;;;;;;;;21494:346;;;:::o;20638:418::-;-1:-1:-1;;;;;20722:21:0;;20714:67;;;;-1:-1:-1;;;20714:67:0;;;;;;;:::i;:::-;20794:49;20815:7;20832:1;20836:6;20794:20;:49::i;:::-;20877:68;20900:6;20877:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20877:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20856:18:0;;:9;:18;;;;;;;;;;:89;20971:12;;:24;;20988:6;20971:16;:24::i;:::-;20956:12;:39;21011:37;;21037:1;;-1:-1:-1;;;;;21011:37:0;;;;;;;21041:6;;21011:37;:::i;:::-;;;;;;;;20638:418;;:::o;31669:177::-;31752:86;31772:5;31802:23;;;31827:2;31831:5;31779:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;31779:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;31779:58:0;-1:-1:-1;;;;;;31779:58:0;;;;;;;;;;31752:19;:86::i;:::-;31669:177;;;:::o;19106:539::-;-1:-1:-1;;;;;19212:20:0;;19204:70;;;;-1:-1:-1;;;19204:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19293:23:0;;19285:71;;;;-1:-1:-1;;;19285:71:0;;;;;;;:::i;:::-;19369:47;19390:6;19398:9;19409:6;19369:20;:47::i;:::-;19449:71;19471:6;19449:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19449:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;19429:17:0;;;:9;:17;;;;;;;;;;;:91;;;;19554:20;;;;;;;:32;;19579:6;19554:24;:32::i;:::-;-1:-1:-1;;;;;19531:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19602:35;;;;;;;;;;19630:6;;19602:35;:::i;10095:166::-;10181:7;10217:12;10209:6;;;;10201:29;;;;-1:-1:-1;;;10201:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;10248:5:0;;;10095:166::o;7268:179::-;7326:7;7358:5;;;7382:6;;;;7374:46;;;;-1:-1:-1;;;7374:46:0;;;;;;;:::i;31854:205::-;31955:96;31975:5;32005:27;;;32034:4;32040:2;32044:5;31982:68;;;;;;;;;;:::i;31955:96::-;31854:205;;;;:::o;19927:378::-;-1:-1:-1;;;;;20011:21:0;;20003:65;;;;-1:-1:-1;;;20003:65:0;;;;;;;:::i;:::-;20081:49;20110:1;20114:7;20123:6;20081:20;:49::i;:::-;20158:12;;:24;;20175:6;20158:16;:24::i;:::-;20143:12;:39;-1:-1:-1;;;;;20214:18:0;;:9;:18;;;;;;;;;;;:30;;20237:6;20214:22;:30::i;:::-;-1:-1:-1;;;;;20193:18:0;;:9;:18;;;;;;;;;;;:51;;;;20260:37;;20193:18;;:9;20260:37;;;;20290:6;;20260:37;:::i;51844:1360::-;51989:12;52011;52025:17;52046:12;-1:-1:-1;;;;;52046:17:0;52072:6;52098:10;52110:5;;52081:35;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;52081:35:0;;;;;;;;;;52046:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52010:107;;;;52131:7;52126:988;;52189:4;52183:11;52216:16;;52263:692;;;;53082:4;53077:2;53071:4;53067:13;53060:27;52263:692;-1:-1:-1;;;52398:6:0;52391:82;52531:66;52524:4;52516:6;52512:17;52505:93;52646:66;52639:4;52631:6;52627:17;52620:93;52761:66;52754:4;52746:6;52742:17;52735:93;52865:3;52857:6;52850:19;52158:949;53154:10;-1:-1:-1;;;;;53127:51:0;;53140:12;-1:-1:-1;;;;;53127:51:0;;53166:5;;53173:4;53127:51;;;;;;;;:::i;:::-;;;;;;;;53194:4;51844:1360;-1:-1:-1;;;;;;;51844:1360:0:o;7730:158::-;7788:7;7821:1;7816;:6;;7808:49;;;;-1:-1:-1;;;7808:49:0;;;;;;;:::i;:::-;-1:-1:-1;7875:5:0;;;7730:158::o;33974:761::-;34398:23;34424:69;34452:4;34424:69;;;;;;;;;;;;;;;;;34432:5;-1:-1:-1;;;;;34424:27:0;;;:69;;;;;:::i;:::-;34508:17;;34398:95;;-1:-1:-1;34508:21:0;34504:224;;34650:10;34639:30;;;;;;;;;;;;:::i;:::-;34631:85;;;;-1:-1:-1;;;34631:85:0;;;;;;;:::i;26666:195::-;26769:12;26801:52;26823:6;26831:4;26837:1;26840:12;26801:21;:52::i;:::-;26794:59;26666:195;-1:-1:-1;;;;26666:195:0:o;27718:530::-;27845:12;27903:5;27878:21;:30;;27870:81;;;;-1:-1:-1;;;27870:81:0;;;;;;;:::i;:::-;27970:18;27981:6;27970:10;:18::i;:::-;27962:60;;;;-1:-1:-1;;;27962:60:0;;;;;;;:::i;:::-;28096:12;28110:23;28137:6;-1:-1:-1;;;;;28137:11:0;28157:5;28165:4;28137:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28095:75;;;;28188:52;28206:7;28215:10;28227:12;28188:17;:52::i;:::-;28181:59;27718:530;-1:-1:-1;;;;;;;27718:530:0:o;23748:422::-;24115:20;24154:8;;;23748:422::o;30258:742::-;30373:12;30402:7;30398:595;;;-1:-1:-1;30433:10:0;30426:17;;30398:595;30547:17;;:21;30543:439;;30810:10;30804:17;30871:15;30858:10;30854:2;30850:19;30843:44;30758:148;30953:12;30946:20;;-1:-1:-1;;;30946:20:0;;;;;;;;:::i;1923:126:-1:-;1988:20;;42880:4;42869:16;;45211:33;;45201:2;;45258:1;;45248:12;2056:241;;2160:2;2148:9;2139:7;2135:23;2131:32;2128:2;;;-1:-1;;2166:12;2128:2;85:6;72:20;97:33;124:5;97:33;:::i;2568:366::-;;;2689:2;2677:9;2668:7;2664:23;2660:32;2657:2;;;-1:-1;;2695:12;2657:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2747:63;-1:-1;2847:2;2886:22;;72:20;97:33;72:20;97:33;:::i;:::-;2855:63;;;;2651:283;;;;;:::o;2941:491::-;;;;3079:2;3067:9;3058:7;3054:23;3050:32;3047:2;;;-1:-1;;3085:12;3047:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3137:63;-1:-1;3237:2;3276:22;;72:20;97:33;72:20;97:33;:::i;:::-;3041:391;;3245:63;;-1:-1;;;3345:2;3384:22;;;;1712:20;;3041:391::o;3439:991::-;;;;;;;;3643:3;3631:9;3622:7;3618:23;3614:33;3611:2;;;-1:-1;;3650:12;3611:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3702:63;-1:-1;3802:2;3841:22;;72:20;97:33;72:20;97:33;:::i;:::-;3810:63;-1:-1;3910:2;3949:22;;1712:20;;-1:-1;4018:2;4057:22;;1712:20;;-1:-1;4145:51;4188:7;4126:3;4164:22;;4145:51;:::i;:::-;4135:61;;4233:3;4277:9;4273:22;1082:20;4242:63;;4342:3;4386:9;4382:22;1082:20;4351:63;;3605:825;;;;;;;;;;:::o;4437:360::-;;;4555:2;4543:9;4534:7;4530:23;4526:32;4523:2;;;-1:-1;;4561:12;4523:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;4613:63;-1:-1;4713:2;4749:22;;813:20;838:30;813:20;838:30;:::i;4804:739::-;;;;;;4977:3;4965:9;4956:7;4952:23;4948:33;4945:2;;;-1:-1;;4984:12;4945:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;5036:63;-1:-1;5136:2;5174:22;;1218:20;1243:32;1218:20;1243:32;:::i;:::-;5144:62;-1:-1;5271:2;5256:18;;5243:32;5295:18;5284:30;;;5281:2;;;-1:-1;;5317:12;5281:2;5402:6;5391:9;5387:22;;;1415:3;1408:4;1400:6;1396:17;1392:27;1382:2;;-1:-1;;1423:12;1382:2;1466:6;1453:20;5295:18;1485:6;1482:30;1479:2;;;-1:-1;;1515:12;1479:2;1610:3;5136:2;1590:17;1551:6;1576:32;;1573:41;1570:2;;;-1:-1;;1617:12;1570:2;4939:604;;;;-1:-1;;5136:2;1547:17;;5456:2;5495:22;1712:20;;4939:604;-1:-1;;;4939:604::o;5550:366::-;;;5671:2;5659:9;5650:7;5646:23;5642:32;5639:2;;;-1:-1;;5677:12;5639:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;5729:63;5829:2;5868:22;;;;1712:20;;-1:-1;;;5633:283::o;5923:469::-;;;6098:2;6086:9;6077:7;6073:23;6069:32;6066:2;;;-1:-1;;6104:12;6066:2;6162:17;6149:31;6200:18;;6192:6;6189:30;6186:2;;;-1:-1;;6222:12;6186:2;6359:6;6348:9;6344:22;;;519:3;512:4;504:6;500:17;496:27;486:2;;-1:-1;;527:12;486:2;570:6;557:20;6200:18;589:6;586:30;583:2;;;-1:-1;;619:12;583:2;714:3;6098:2;;698:6;694:17;655:6;680:32;;677:41;674:2;;;-1:-1;;721:12;674:2;6098;651:17;;;;;6242:134;;-1:-1;6060:332;;-1:-1;;;;6060:332::o;6399:235::-;;6500:2;6488:9;6479:7;6475:23;6471:32;6468:2;;;-1:-1;;6506:12;6468:2;826:6;813:20;838:30;862:5;838:30;:::i;6641:257::-;;6753:2;6741:9;6732:7;6728:23;6724:32;6721:2;;;-1:-1;;6759:12;6721:2;961:6;955:13;973:30;997:5;973:30;:::i;6905:239::-;;7008:2;6996:9;6987:7;6983:23;6979:32;6976:2;;;-1:-1;;7014:12;6976:2;1231:6;1218:20;1243:32;1269:5;1243:32;:::i;7151:241::-;;7255:2;7243:9;7234:7;7230:23;7226:32;7223:2;;;-1:-1;;7261:12;7223:2;-1:-1;1712:20;;7217:175;-1:-1;7217:175::o;7399:263::-;;7514:2;7502:9;7493:7;7489:23;7485:32;7482:2;;;-1:-1;;7520:12;7482:2;-1:-1;1860:13;;7476:186;-1:-1;7476:186::o;7669:739::-;;;;;;7839:3;7827:9;7818:7;7814:23;7810:33;7807:2;;;-1:-1;;7846:12;7807:2;1725:6;1712:20;7898:63;;7998:2;8041:9;8037:22;1712:20;8006:63;;8124:51;8167:7;8106:2;8147:9;8143:22;8124:51;:::i;:::-;7801:607;;;;-1:-1;8114:61;;8212:2;8251:22;;1082:20;;-1:-1;8320:3;8360:22;1082:20;;7801:607;-1:-1;;7801:607::o;11051:323::-;;11183:5;40647:12;41209:6;41204:3;41197:19;11266:52;11311:6;41246:4;41241:3;41237:14;41246:4;11292:5;11288:16;11266:52;:::i;:::-;44381:7;44365:14;-1:-1;;44361:28;11330:39;;;;41246:4;11330:39;;11131:243;-1:-1;;11131:243::o;21342:425::-;-1:-1;;;;;;42512:78;;10314:56;;21342:425;43787:6;43782:3;21619:1;21610:11;;43764:30;43825:16;;21619:1;43825:16;43818:27;;;43825:16;21512:255;-1:-1;;21512:255::o;21774:271::-;;11891:5;40647:12;12002:52;12047:6;12042:3;12035:4;12028:5;12024:16;12002:52;:::i;:::-;12066:16;;;;;21908:137;-1:-1;;21908:137::o;22052:659::-;-1:-1;;;14134:87;;14119:1;14240:11;;10019:37;;;;22563:12;;;10019:37;22674:12;;;22297:414::o;22718:222::-;-1:-1;;;;;42664:54;;;;8833:37;;22845:2;22830:18;;22816:124::o;22947:900::-;-1:-1;;;;;42664:54;;;8692:58;;42664:54;;;;23419:2;23404:18;;8833:37;23502:2;23487:18;;10019:37;;;;23585:2;23570:18;;10019:37;;;;42880:4;42869:16;23664:3;23649:19;;21295:35;42675:42;23733:19;;10019:37;23832:3;23817:19;;10019:37;;;;23246:3;23231:19;;23217:630::o;23854:365::-;-1:-1;;;;;42664:54;;;;8692:58;;24205:2;24190:18;;12348:58;24025:2;24010:18;;23996:223::o;24582:444::-;-1:-1;;;;;42664:54;;;8833:37;;42664:54;;;;24929:2;24914:18;;8833:37;25012:2;24997:18;;10019:37;;;;24765:2;24750:18;;24736:290::o;25373:406::-;;25568:2;;25557:9;25553:18;25568:2;25589:17;25582:47;25643:126;9129:5;40647:12;41209:6;41204:3;41197:19;41237:14;25557:9;41237:14;9141:102;;41237:14;25568:2;9300:6;9296:17;25557:9;9287:27;;9275:39;;25568:2;9394:5;40492:14;-1:-1;9433:357;9458:6;9455:1;9452:13;9433:357;;;9510:20;;25557:9;9514:4;9510:20;;9505:3;9498:33;8535:64;8595:3;9565:6;9559:13;8535:64;:::i;:::-;9579:90;-1:-1;9769:14;;;;41043;;;;9480:1;9473:9;9433:357;;;-1:-1;25635:134;;25539:240;-1:-1;;;;;;;25539:240::o;25786:210::-;42346:13;;42339:21;9902:34;;25907:2;25892:18;;25878:118::o;26003:222::-;10019:37;;;26130:2;26115:18;;26101:124::o;26232:780::-;10019:37;;;-1:-1;;;;;42664:54;;;26664:2;26649:18;;8833:37;42664:54;;;;26747:2;26732:18;;8833:37;26830:2;26815:18;;10019:37;26913:3;26898:19;;10019:37;;;;42675:42;26982:19;;10019:37;26499:3;26484:19;;26470:542::o;27019:548::-;10019:37;;;42880:4;42869:16;;;;27387:2;27372:18;;21295:35;27470:2;27455:18;;10019:37;27553:2;27538:18;;10019:37;27226:3;27211:19;;27197:370::o;27574:521::-;;27775:2;27796:17;27789:47;41209:6;27775:2;27764:9;27760:18;41197:19;43787:6;43782:3;41237:14;27764:9;41237:14;43764:30;-1:-1;41237:14;43834:6;27764:9;43825:16;;43818:27;44381:7;;44385:2;10688:6;44365:14;44361:28;27764:9;10657:39;41237:14;27984:9;10657:39;27974:20;;41246:4;27958:9;27954:18;27947:48;28009:76;41237:14;10657:39;;28071:6;28009:76;:::i;28102:306::-;;28247:2;28268:17;28261:47;28322:76;28247:2;28236:9;28232:18;28384:6;28322:76;:::i;29003:416::-;29203:2;29217:47;;;12997:2;29188:18;;;41197:19;13033:34;41237:14;;;13013:55;-1:-1;;;13088:12;;;13081:27;13127:12;;;29174:245::o;29426:416::-;29626:2;29640:47;;;13378:2;29611:18;;;41197:19;-1:-1;;;41237:14;;;13394:39;13452:12;;;29597:245::o;29849:416::-;30049:2;30063:47;;;13703:2;30034:18;;;41197:19;13739:34;41237:14;;;13719:55;-1:-1;;;13794:12;;;13787:26;13832:12;;;30020:245::o;30272:416::-;30472:2;30486:47;;;14490:2;30457:18;;;41197:19;14526:29;41237:14;;;14506:50;14575:12;;;30443:245::o;30695:416::-;30895:2;30909:47;;;14826:2;30880:18;;;41197:19;-1:-1;;;41237:14;;;14842:36;14897:12;;;30866:245::o;31118:416::-;31318:2;31332:47;;;15148:2;31303:18;;;41197:19;-1:-1;;;41237:14;;;15164:39;15222:12;;;31289:245::o;31541:416::-;31741:2;31755:47;;;15473:2;31726:18;;;41197:19;-1:-1;;;41237:14;;;15489:34;15542:12;;;31712:245::o;31964:416::-;32164:2;32178:47;;;15793:2;32149:18;;;41197:19;15829:29;41237:14;;;15809:50;15878:12;;;32135:245::o;32387:416::-;32587:2;32601:47;;;16129:2;32572:18;;;41197:19;16165:32;41237:14;;;16145:53;16217:12;;;32558:245::o;32810:416::-;33010:2;33024:47;;;16468:2;32995:18;;;41197:19;16504:34;41237:14;;;16484:55;-1:-1;;;16559:12;;;16552:30;16601:12;;;32981:245::o;33233:416::-;33433:2;33447:47;;;16852:2;33418:18;;;41197:19;-1:-1;;;41237:14;;;16868:40;16927:12;;;33404:245::o;33656:416::-;33856:2;33870:47;;;17178:1;33841:18;;;41197:19;-1:-1;;;41237:14;;;17193:26;17238:12;;;33827:245::o;34079:416::-;34279:2;34293:47;;;17489:2;34264:18;;;41197:19;-1:-1;;;41237:14;;;17505:35;17559:12;;;34250:245::o;34502:416::-;34702:2;34716:47;;;17810:2;34687:18;;;41197:19;-1:-1;;;41237:14;;;17826:41;17886:12;;;34673:245::o;34925:416::-;35125:2;35139:47;;;18137:2;35110:18;;;41197:19;-1:-1;;;41237:14;;;18153:36;18208:12;;;35096:245::o;35348:416::-;35548:2;35562:47;;;18459:2;35533:18;;;41197:19;18495:34;41237:14;;;18475:55;-1:-1;;;18550:12;;;18543:25;18587:12;;;35519:245::o;35771:416::-;35971:2;35985:47;;;18838:2;35956:18;;;41197:19;18874:34;41237:14;;;18854:55;-1:-1;;;18929:12;;;18922:29;18970:12;;;35942:245::o;36194:416::-;36394:2;36408:47;;;19221:2;36379:18;;;41197:19;19257:34;41237:14;;;19237:55;-1:-1;;;19312:12;;;19305:28;19352:12;;;36365:245::o;36617:416::-;36817:2;36831:47;;;19603:2;36802:18;;;41197:19;19639:31;41237:14;;;19619:52;19690:12;;;36788:245::o;37040:416::-;37240:2;37254:47;;;19941:2;37225:18;;;41197:19;19977:34;41237:14;;;19957:55;-1:-1;;;20032:12;;;20025:34;20078:12;;;37211:245::o;37463:416::-;37663:2;37677:47;;;20329:2;37648:18;;;41197:19;20365:33;41237:14;;;20345:54;20418:12;;;37634:245::o;37886:416::-;38086:2;38100:47;;;20669:2;38071:18;;;41197:19;-1:-1;;;41237:14;;;20685:38;20742:12;;;38057:245::o;38309:416::-;38509:2;38523:47;;;20993:2;38494:18;;;41197:19;21029:33;41237:14;;;21009:54;21082:12;;;38480:245::o;38961:333::-;10019:37;;;39280:2;39265:18;;10019:37;39116:2;39101:18;;39087:207::o;39301:214::-;42880:4;42869:16;;;;21295:35;;39424:2;39409:18;;39395:120::o;39522:506::-;;;39657:11;39644:25;39708:48;;39732:8;39716:14;39712:29;39708:48;39688:18;39684:73;39674:2;;-1:-1;;39761:12;39674:2;39788:33;;39842:18;;;-1:-1;39880:18;39869:30;;39866:2;;;-1:-1;;39902:12;39866:2;39747:4;39930:13;;-1:-1;39716:14;39962:38;;;39952:49;;39949:2;;;40014:1;;40004:12;39949:2;39612:416;;;;;:::o;40035:326::-;;40187:11;40174:25;40238:48;;40262:8;40246:14;40242:29;40238:48;40218:18;40214:73;40204:2;;-1:-1;;40291:12;43860:268;43925:1;43932:101;43946:6;43943:1;43940:13;43932:101;;;44013:11;;;44007:18;43994:11;;;43987:39;43968:2;43961:10;43932:101;;;44048:6;44045:1;44042:13;44039:2;;;-1:-1;;43925:1;44095:16;;44088:27;43909:219::o;44402:117::-;-1:-1;;;;;42664:54;;44461:35;;44451:2;;44510:1;;44500:12;44451:2;44445:74;:::o;44666:111::-;44747:5;42346:13;42339:21;44725:5;44722:32;44712:2;;44768:1;;44758:12;44908:115;-1:-1;;;;;;42512:78;;44966:34;;44956:2;;45014:1;;45004:12

Swarm Source

ipfs://0ef52ef00bbf3c486834914e7fa8734e719add169389ca28b67216345b344b3e
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.