ETH Price: $3,253.59 (+2.46%)
Gas: 3 Gwei

Token

oneWING (oneWING)
 

Overview

Max Total Supply

3,311.088505522 oneWING

Holders

54 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.249878535 oneWING

Value
$0.00
0xd8ff9d762d90ae342982a42745db6fd5a82296b2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

oneWING is the stablecoin created for the Wing Finance community. Backed by both a treasury of WING and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the WING treasury.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
oneWING

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-02
*/

// File: contracts/lib/oracle/AggregatorV3Interface.sol

// SPDX-License-Identifier: No License
pragma solidity >=0.6.0;

interface AggregatorV3Interface {

  function decimals() external view returns (uint8);
  function description() external view returns (string memory);
  function version() external view returns (uint256);

  // getRoundData and latestRoundData should both raise "No data present"
  // if they do not have data to report, instead of returning unset values
  // which could be misinterpreted as actual reported values.
  function getRoundData(uint80 _roundId)
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );
  function latestRoundData()
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );

}

// File: contracts/lib/math/SafeMath.sol



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, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

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

// File: contracts/lib/token/IERC20.sol



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: contracts/lib/utils/Address.sol



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

    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: contracts/lib/token/SafeERC20.sol



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: contracts/lib/utils/ReentrancyGuard.sol



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/lib/GSN/Context.sol



pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

// File: contracts/lib/token/ERC20.sol



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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override virtual 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 {
        _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: contracts/lib/access/Ownable.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

// File: contracts/oneWING.sol



pragma solidity >=0.6.0;







// interface for the oneToken
interface OneToken {
    function getOneTokenUsd() external view returns (uint256);
}

// interface for CollateralOracle
interface IOracleInterface {
    function getLatestPrice() external view returns (uint256);
    function update() external;
    function changeInterval(uint256 seconds_) external;
    function priceChangeMax(uint256 change_) external;
}

/// @title An overcollateralized stablecoin using ETH
/// @author Masanobu Fukuoka
contract oneWING is ERC20("oneWING", "oneWING"), Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    uint256 public MAX_RESERVE_RATIO; // At 100% reserve ratio, each oneWING is backed 1-to-1 by $1 of existing stable coins
    uint256 private constant DECIMALS = 9;
    uint256 public lastRefreshReserve; // The last time the reserve ratio was updated by the contract
    uint256 public minimumRefreshTime; // The time between reserve ratio refreshes

    address public stimulus; // oneWING builds a stimulus fund in ETH.
    uint256 public stimulusDecimals; // used to calculate oracle rate of Uniswap Pair

    address public oneTokenOracle; // oracle for the oneWING stable coin
    bool public oneTokenOracleHasUpdate; //if oneWING token oracle requires update
    address public stimulusOracle;  // oracle for a stimulus 
    bool public stimulusOracleHasUpdate; //if stimulus oracle requires update

    // Only governance should cause the coin to go fully agorithmic by changing the minimum reserve
    // ratio.  For now, we will set a conservative minimum reserve ratio.
    uint256 public MIN_RESERVE_RATIO;
    uint256 public MIN_DELAY;

    // Makes sure that you can't send coins to a 0 address and prevents coins from being sent to the
    // contract address. I want to protect your funds!
    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    uint256 private _totalSupply;
    mapping(address => uint256) private _oneBalances;
    mapping(address => uint256) private _lastCall;  // used as a record to prevent flash loan attacks
    mapping (address => mapping (address => uint256)) private _allowedOne; // allowance to spend one

    address public gov; // who has admin rights over certain functions
    address public pendingGov;  // allows you to transfer the governance to a different user - they must accept it!
    uint256 public reserveStepSize; // step size of update of reserve rate (e.g. 5 * 10 ** 8 = 0.5%)
    uint256 public reserveRatio;    // a number between 0 and 100 * 10 ** 9.
                                    // 0 = 0%
                                    // 100 * 10 ** 9 = 100%

    // map of acceptable collaterals
    mapping (address => bool) public acceptedCollateral;
    mapping (address => uint256) public collateralMintFee; // minting fee for different collaterals (100 * 10 ** 9 = 100% fee)
    address[] public collateralArray; // array of collateral - used to iterate while updating certain things like oracle intervals for TWAP

    // modifier to allow auto update of TWAP oracle prices
    // also updates reserves rate programatically
    modifier updateProtocol() {
        if (address(oneTokenOracle) != address(0)) {

            // this is always updated because we always need stablecoin oracle price
            if (oneTokenOracleHasUpdate) IOracleInterface(oneTokenOracle).update();

            if (stimulusOracleHasUpdate) IOracleInterface(stimulusOracle).update();

            for (uint i = 0; i < collateralArray.length; i++){
                if (acceptedCollateral[collateralArray[i]] && !oneCoinCollateralOracle[collateralArray[i]]) IOracleInterface(collateralOracle[collateralArray[i]]).update();
            }

            // update reserve ratio if enough time has passed
            if (block.timestamp - lastRefreshReserve >= minimumRefreshTime) {
                // $Z / 1 one token
                if (getOneTokenUsd() > 1 * 10 ** 9) {
                    setReserveRatio(reserveRatio.sub(reserveStepSize));
                } else {
                    setReserveRatio(reserveRatio.add(reserveStepSize));
                }

                lastRefreshReserve = block.timestamp;
            }
        }

        _;
    }

    // events for off-chain record keeping
    event NewPendingGov(address oldPendingGov, address newPendingGov);
    event NewGov(address oldGov, address newGov);
    event NewReserveRate(uint256 reserveRatio);
    event Mint(address stimulus, address receiver, address collateral, uint256 collateralAmount, uint256 stimulusAmount, uint256 oneAmount);
    event Withdraw(address stimulus, address receiver, address collateral, uint256 collateralAmount, uint256 stimulusAmount, uint256 oneAmount);
    event NewMinimumRefreshTime(uint256 minimumRefreshTime);
    event ExecuteTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature,  bytes data);

    modifier onlyIchiGov() {
        require(msg.sender == gov, "ACCESS: only Ichi governance");
        _;
    }

    bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));  // shortcut for calling transfer
    mapping (address => uint256) public collateralDecimals;     // needed to be able to convert from different collaterals
    mapping (address => bool) public oneCoinCollateralOracle;   // if true, we query the one token contract's usd price
    mapping (address => bool) public previouslySeenCollateral;  // used to allow users to withdraw collateral, even if the collateral has since been deprecated
                                                                // previouslySeenCollateral lets the contract know if a collateral has been used before - this also
                                                                // prevents attacks where uses add a custom address as collateral, but that custom address is actually 
                                                                // their own malicious smart contract. Read peckshield blog for more info.
    mapping (address => address) public collateralOracle;       // address of the Collateral-ETH Uniswap Price
    mapping (address => bool) public collateralOracleHasUpdate; // if collatoral oracle requires an update

    // default to 0
    uint256 public mintFee;
    uint256 public withdrawFee;

    // fee to charge when minting oneWING - this will go into collateral
    event MintFee(uint256 fee_);
    // fee to charge when redeeming oneWING - this will go into collateral
    event WithdrawFee(uint256 fee_);

    // set governance access to only oneWING - USDC pool multisig (elected after rewards)
    modifier oneLPGov() {
        require(msg.sender == lpGov, "ACCESS: only oneLP governance");
        _;
    }

    address public lpGov;
    address public pendingLPGov;

    event NewPendingLPGov(address oldPendingLPGov, address newPendingLPGov);
    event NewLPGov(address oldLPGov, address newLPGov);
    event NewMintFee(address collateral, uint256 oldFee, uint256 newFee);

    mapping (address => uint256) private _burnedStablecoin; // maps user to burned oneWING

    // important: make sure changeInterval is a function to allow the interval of update to change
    function addCollateral(address collateral_, uint256 collateralDecimal_, address oracleAddress_, bool oneCoinOracle, bool oracleHasUpdate)
        external
        oneLPGov
    {
        // only add collateral once
        if (!previouslySeenCollateral[collateral_]) collateralArray.push(collateral_);

        previouslySeenCollateral[collateral_] = true;
        acceptedCollateral[collateral_] = true;
        oneCoinCollateralOracle[collateral_] = oneCoinOracle;
        collateralDecimals[collateral_] = collateralDecimal_;
        collateralOracle[collateral_] = oracleAddress_;
        collateralMintFee[collateral_] = 0;
        collateralOracleHasUpdate[collateral_]= oracleHasUpdate;
    }


    function setCollateralMintFee(address collateral_, uint256 fee_)
        external
        oneLPGov
    {
        require(acceptedCollateral[collateral_], "invalid collateral");
        require(fee_ <= 100 * 10 ** 9, "Fee must be valid");
        emit NewMintFee(collateral_, collateralMintFee[collateral_], fee_);
        collateralMintFee[collateral_] = fee_;
    }

    // step size = how much the reserve rate updates per update cycle
    function setReserveStepSize(uint256 stepSize_)
        external
        oneLPGov
    {
        reserveStepSize = stepSize_;
    }

    // changes the oracle for a given collaterarl
    function setCollateralOracle(address collateral_, address oracleAddress_, bool oneCoinOracle_, bool oracleHasUpdate)
        external
        oneLPGov
    {
        require(acceptedCollateral[collateral_], "invalid collateral");
        oneCoinCollateralOracle[collateral_] = oneCoinOracle_;
        collateralOracle[collateral_] = oracleAddress_;
        collateralOracleHasUpdate[collateral_] = oracleHasUpdate;
    }

    // removes a collateral from minting. Still allows withdrawals however
    function removeCollateral(address collateral_)
        external
        oneLPGov
    {
        acceptedCollateral[collateral_] = false;
    }

    // used for querying
    function getBurnedStablecoin(address _user)
        public
        view
        returns (uint256)
    {
        return _burnedStablecoin[_user];
    }

    // returns 10 ** 9 price of collateral
    function getCollateralUsd(address collateral_) public view returns (uint256) {
        require(previouslySeenCollateral[collateral_], "must be an existing collateral");

        if (oneCoinCollateralOracle[collateral_]) return OneToken(collateral_).getOneTokenUsd();
        
        return IOracleInterface(collateralOracle[collateral_]).getLatestPrice();
    }

    function globalCollateralValue() public view returns (uint256) {
        uint256 totalCollateralUsd = 0;

        for (uint i = 0; i < collateralArray.length; i++){
            // Exclude null addresses
            if (collateralArray[i] != address(0)){
                totalCollateralUsd += IERC20(collateralArray[i]).balanceOf(address(this)).mul(10 ** 9).div(10 ** collateralDecimals[collateralArray[i]]).mul(getCollateralUsd(collateralArray[i])).div(10 ** 9); // add stablecoin balance
            }

        }
        return totalCollateralUsd;
    }

    // return price of oneWING in 10 ** 9 decimal
    function getOneTokenUsd()
        public
        view
        returns (uint256)
    {
        return IOracleInterface(oneTokenOracle).getLatestPrice();
    }

    /**
     * @return The total number of oneWING.
     */
    function totalSupply()
        public
        override
        view
        returns (uint256)
    {
        return _totalSupply;
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who)
        public
        override
        view
        returns (uint256)
    {
        return _oneBalances[who];
    }

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        public
        override
        validRecipient(to)
        updateProtocol()
        returns (bool)
    {
        _oneBalances[msg.sender] = _oneBalances[msg.sender].sub(value);
        _oneBalances[to] = _oneBalances[to].add(value);
        emit Transfer(msg.sender, to, value);

        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        public
        override
        view
        returns (uint256)
    {
        return _allowedOne[owner_][spender];
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(address from, address to, uint256 value)
        public
        override
        validRecipient(to)
        updateProtocol()
        returns (bool)
    {
        _allowedOne[from][msg.sender] = _allowedOne[from][msg.sender].sub(value);

        _oneBalances[from] = _oneBalances[from].sub(value);
        _oneBalances[to] = _oneBalances[to].add(value);
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        public
        override
        validRecipient(spender)
        updateProtocol()
        returns (bool)
    {
        _allowedOne[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        override
        returns (bool)
    {
        _allowedOne[msg.sender][spender] = _allowedOne[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowedOne[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        override
        returns (bool)
    {
        uint256 oldValue = _allowedOne[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedOne[msg.sender][spender] = 0;
        } else {
            _allowedOne[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedOne[msg.sender][spender]);
        return true;
    }

    function setOneTokenOracle(address oracle_, bool hasUpdate)
        external
        oneLPGov
        returns (bool)
    {
        oneTokenOracle = oracle_;
        oneTokenOracleHasUpdate = hasUpdate;

        return true;
    }

    function setStimulusOracle(address oracle_, bool hasUpdate)
        external
        oneLPGov
        returns (bool)
    {
        stimulusOracle = oracle_;
        stimulusOracleHasUpdate = hasUpdate;

        return true;
    }

    function setStimulusPriceChangeMax(uint256 change_)
        external
        oneLPGov
        returns (bool)
    {
        IOracleInterface(stimulusOracle).priceChangeMax(change_);

        return true;
    }

    // oracle rate is 10 ** 9 decimals
    // returns $Z / Stimulus
    function getStimulusUSD()
        public
        view
        returns (uint256)
    {
        return IOracleInterface(stimulusOracle).getLatestPrice();
       
    }

    // minimum amount of block time (seconds) required for an update in reserve ratio
    function setMinimumRefreshTime(uint256 val_)
        external
        oneLPGov
        returns (bool)
    {
        require(val_ != 0, "minimum refresh time must be valid");

        minimumRefreshTime = val_;

        // change collateral array
        for (uint i = 0; i < collateralArray.length; i++){
            if (acceptedCollateral[collateralArray[i]] && !oneCoinCollateralOracle[collateralArray[i]] && collateralOracleHasUpdate[collateralArray[i]]) IOracleInterface(collateralOracle[collateralArray[i]]).changeInterval(val_);
        }

        if (oneTokenOracleHasUpdate) IOracleInterface(oneTokenOracle).changeInterval(val_);

        if (stimulusOracleHasUpdate) IOracleInterface(stimulusOracle).changeInterval(val_);

        // change all the oracles (collateral, stimulus, oneToken)

        emit NewMinimumRefreshTime(val_);
        return true;
    }

    constructor(
        uint256 reserveRatio_,
        address stimulus_,
        uint256 stimulusDecimals_
    )
        public
    {
        _setupDecimals(uint8(9));
        stimulus = stimulus_;
        minimumRefreshTime = 3600 * 1; // 1 hour by default
        stimulusDecimals = stimulusDecimals_;
        reserveStepSize = 2 * 10 ** 8;  // 0.2% by default
        MIN_RESERVE_RATIO = 90 * 10 ** 9;
        MAX_RESERVE_RATIO = 100 * 10 ** 9;
        MIN_DELAY = 3;             // 3 blocks
        withdrawFee = 5 * 10 ** 8; // 0.5% fee at first, remains in collateral
        gov = msg.sender;
        lpGov = msg.sender;
        reserveRatio = reserveRatio_;
        _totalSupply = 10 ** 9;

        _oneBalances[msg.sender] = 10 ** 9;
        emit Transfer(address(0x0), msg.sender, 10 ** 9);
    }

    function setMinimumReserveRatio(uint256 val_)
        external
        oneLPGov
    {
        MIN_RESERVE_RATIO = val_;
        if (MIN_RESERVE_RATIO > reserveRatio) setReserveRatio(MIN_RESERVE_RATIO);
    }

    function setMaximumReserveRatio(uint256 val_)
        external
        oneLPGov
    {
        MAX_RESERVE_RATIO = val_;
        if (MAX_RESERVE_RATIO < reserveRatio) setReserveRatio(MAX_RESERVE_RATIO);
    }

    function setMinimumDelay(uint256 val_)
        external
        oneLPGov
    {
        MIN_DELAY = val_;
    }

    // LP pool governance ====================================
    function setPendingLPGov(address pendingLPGov_)
        external
        oneLPGov
    {
        address oldPendingLPGov = pendingLPGov;
        pendingLPGov = pendingLPGov_;
        emit NewPendingLPGov(oldPendingLPGov, pendingLPGov_);
    }

    function acceptLPGov()
        external
    {
        require(msg.sender == pendingLPGov, "!pending");
        address oldLPGov = lpGov; // that
        lpGov = pendingLPGov;
        pendingLPGov = address(0);
        emit NewGov(oldLPGov, lpGov);
    }

    // over-arching protocol level governance  ===============
    function setPendingGov(address pendingGov_)
        external
        onlyIchiGov
    {
        address oldPendingGov = pendingGov;
        pendingGov = pendingGov_;
        emit NewPendingGov(oldPendingGov, pendingGov_);
    }

    function acceptGov()
        external
    {
        require(msg.sender == pendingGov, "!pending");
        address oldGov = gov;
        gov = pendingGov;
        pendingGov = address(0);
        emit NewGov(oldGov, gov);
    }
    // ======================================================

    // calculates how much you will need to send in order to mint oneWING, depending on current market prices + reserve ratio
    // oneAmount: the amount of oneWING you want to mint
    // collateral: the collateral you want to use to pay
    // also works in the reverse direction, i.e. how much collateral + stimulus to receive when you burn One
    function consultOneDeposit(uint256 oneAmount, address collateral)
        public
        view
        returns (uint256, uint256)
    {
        require(oneAmount != 0, "must use valid oneAmount");
        require(acceptedCollateral[collateral], "must be an accepted collateral");

        uint256 stimulusUsd = getStimulusUSD();     // 10 ** 9

        if (stimulusUsd == 0) {  //price variance too big mint at 100% reserve ratio
            uint256 n_collateralAmount = oneAmount.mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS);
            n_collateralAmount = n_collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral));
            return (n_collateralAmount, 0);
        }

        // convert to correct decimals for collateral
        uint256 collateralAmount = oneAmount.mul(reserveRatio).div(MAX_RESERVE_RATIO).mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS);
        collateralAmount = collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral));

        if (address(oneTokenOracle) == address(0)) return (collateralAmount, 0);

        uint256 stimulusAmountInOneStablecoin = oneAmount.mul(MAX_RESERVE_RATIO.sub(reserveRatio)).div(MAX_RESERVE_RATIO);

        uint256 stimulusAmount = stimulusAmountInOneStablecoin.mul(10 ** 9).div(stimulusUsd).mul(10 ** stimulusDecimals).div(10 ** DECIMALS); // must be 10 ** stimulusDecimals

        return (collateralAmount, stimulusAmount);
    }

    function consultOneWithdraw(uint256 oneAmount, address collateral)
        public
        view
        returns (uint256, uint256)
    {
        require(oneAmount != 0, "must use valid oneAmount");
        require(previouslySeenCollateral[collateral], "must be an accepted collateral");

        uint256 collateralAmount = oneAmount.sub(oneAmount.mul(withdrawFee).div(100 * 10 ** DECIMALS)).mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS);
        collateralAmount = collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral));

        return (collateralAmount, 0);
    }

    // @title: deposit collateral + stimulus token
    // collateral: address of the collateral to deposit (USDC, DAI, TUSD, etc)
    function mint(
        uint256 oneAmount,
        address collateral
    )
        public
        payable
        nonReentrant
        updateProtocol()
    {
        require(acceptedCollateral[collateral], "must be an accepted collateral");
        require(oneAmount != 0, "must mint non-zero amount");

        // wait 3 blocks to avoid flash loans
        require((_lastCall[msg.sender] + MIN_DELAY) <= block.number, "action too soon - please wait a few more blocks");

        // validate input amounts are correct
        (uint256 collateralAmount, uint256 stimulusAmount) = consultOneDeposit(oneAmount, collateral);
        require(collateralAmount <= IERC20(collateral).balanceOf(msg.sender), "sender has insufficient collateral balance");
        require(stimulusAmount <= IERC20(stimulus).balanceOf(msg.sender), "sender has insufficient stimulus balance");

        // checks passed, so transfer tokens
        SafeERC20.safeTransferFrom(IERC20(collateral), msg.sender, address(this), collateralAmount);
        SafeERC20.safeTransferFrom(IERC20(stimulus), msg.sender, address(this), stimulusAmount);

        oneAmount = oneAmount.sub(oneAmount.mul(mintFee).div(100 * 10 ** DECIMALS));                            // apply mint fee
        oneAmount = oneAmount.sub(oneAmount.mul(collateralMintFee[collateral]).div(100 * 10 ** DECIMALS));      // apply collateral fee

        _totalSupply = _totalSupply.add(oneAmount);
        _oneBalances[msg.sender] = _oneBalances[msg.sender].add(oneAmount);

        emit Transfer(address(0x0), msg.sender, oneAmount);

        _lastCall[msg.sender] = block.number;

        emit Mint(stimulus, msg.sender, collateral, collateralAmount, stimulusAmount, oneAmount);
    }

    // fee_ should be 10 ** 9 decimals (e.g. 10% = 10 * 10 ** 9)
    function editMintFee(uint256 fee_)
        external
        onlyIchiGov
    {
        require(fee_ <= 100 * 10 ** 9, "Fee must be valid");
        mintFee = fee_;
        emit MintFee(fee_);
    }

    // fee_ should be 10 ** 9 decimals (e.g. 10% = 10 * 10 ** 9)
    function editWithdrawFee(uint256 fee_)
        external
        onlyIchiGov
    {
        withdrawFee = fee_;
        emit WithdrawFee(fee_);
    }

    /// burns stablecoin and increments _burnedStablecoin mapping for user
    ///         user can claim collateral in a 2nd step below
    function withdraw(
        uint256 oneAmount,
        address collateral
    )
        public
        nonReentrant
        updateProtocol()
    {
        require(oneAmount != 0, "must withdraw non-zero amount");
        require(oneAmount <= _oneBalances[msg.sender], "insufficient balance");
        require(previouslySeenCollateral[collateral], "must be an existing collateral");
        require((_lastCall[msg.sender] + MIN_DELAY) <= block.number, "action too soon - please wait a few blocks");

        // burn oneAmount
        _totalSupply = _totalSupply.sub(oneAmount);
        _oneBalances[msg.sender] = _oneBalances[msg.sender].sub(oneAmount);

        _burnedStablecoin[msg.sender] = _burnedStablecoin[msg.sender].add(oneAmount);

        _lastCall[msg.sender] = block.number;
        emit Transfer(msg.sender, address(0x0), oneAmount);
    }

    // 2nd step for withdrawal of collateral
    // this 2 step withdrawal is important for prevent flash-loan style attacks
    // flash-loan style attacks try to use loops/complex arbitrage strategies to
    // drain collateral so adding a 2-step process prevents any potential attacks
    // because all flash-loans must be repaid within 1 tx and 1 block

    /// @notice If you are interested, I would recommend reading: https://slowmist.medium.com/
    ///         also https://cryptobriefing.com/50-million-lost-the-top-19-defi-cryptocurrency-hacks-2020/
    function withdrawFinal(address collateral, uint256 amount)
        public
        nonReentrant
        updateProtocol()
    {
        require(previouslySeenCollateral[collateral], "must be an existing collateral");
        require((_lastCall[msg.sender] + MIN_DELAY) <= block.number, "action too soon - please wait a few blocks");

        uint256 oneAmount = _burnedStablecoin[msg.sender];
        require(oneAmount != 0, "insufficient oneWING to redeem");
        require(amount <= oneAmount, "insufficient oneWING to redeem");

        _burnedStablecoin[msg.sender] = _burnedStablecoin[msg.sender].sub(amount);

        // send collateral - fee (convert to collateral decimals too)
        uint256 collateralAmount = amount.sub(amount.mul(withdrawFee).div(100 * 10 ** DECIMALS)).mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS);
        collateralAmount = collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral));

        uint256 stimulusAmount = 0;

        // check enough reserves - don't want to burn one coin if we cannot fulfill withdrawal
        require(collateralAmount <= IERC20(collateral).balanceOf(address(this)), "insufficient collateral reserves - try another collateral");

        SafeERC20.safeTransfer(IERC20(collateral), msg.sender, collateralAmount);

        _lastCall[msg.sender] = block.number;

        emit Withdraw(stimulus, msg.sender, collateral, collateralAmount, stimulusAmount, amount);
    }

    // internal function used to set the reserve ratio of the token
    // must be between MIN / MAX Reserve Ratio, which are constants
    // cannot be 0
    function setReserveRatio(uint256 newRatio_)
        internal
    {
        require(newRatio_ >= 0, "positive reserve ratio");

        if (newRatio_ <= MAX_RESERVE_RATIO && newRatio_ >= MIN_RESERVE_RATIO) {
            reserveRatio = newRatio_;
            emit NewReserveRate(reserveRatio);
        }
    }

    /// @notice easy function transfer ETH (not WETH)
    function safeTransferETH(address to, uint value)
        public
        oneLPGov
    {
        (bool success,) = to.call{value:value}(new bytes(0));
        require(success, 'ETH_TRANSFER_FAILED');
    }

    /// @notice easy funtion to move stimulus to a new location
    //  location: address to send to
    //  amount: amount of stimulus to send (use full decimals)
    function moveStimulus(
        address location,
        uint256 amount
    )
        public
        oneLPGov
    {
        SafeERC20.safeTransfer(IERC20(stimulus), location, amount);
    }

    // can execute any abstract transaction on this smart contrat
    // target: address / smart contract you are interracting with
    // value: msg.value (amount of eth in WEI you are sending. Most of the time it is 0)
    // signature: the function signature (name of the function and the types of the arguments).
    //            for example: "transfer(address,uint256)", or "approve(address,uint256)"
    // data: abi-encodeded byte-code of the parameter values you are sending. See "./encode.js" for Ether.js library function to make this easier
    function executeTransaction(address target, uint value, string memory signature, bytes memory data) public payable oneLPGov returns (bytes memory) {
        bytes memory callData;

        if (bytes(signature).length == 0) {
            callData = data;
        } else {
            callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data);
        }

        // solium-disable-next-line security/no-call-value
        (bool success, bytes memory returnData) = target.call.value(value)(callData);
        require(success, "oneWING::executeTransaction: Transaction execution reverted.");

        return returnData;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"reserveRatio_","type":"uint256"},{"internalType":"address","name":"stimulus_","type":"address"},{"internalType":"uint256","name":"stimulusDecimals_","type":"uint256"}],"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":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"ExecuteTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stimulus","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stimulusAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oneAmount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"MintFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGov","type":"address"},{"indexed":false,"internalType":"address","name":"newGov","type":"address"}],"name":"NewGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldLPGov","type":"address"},{"indexed":false,"internalType":"address","name":"newLPGov","type":"address"}],"name":"NewLPGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minimumRefreshTime","type":"uint256"}],"name":"NewMinimumRefreshTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"NewMintFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingGov","type":"address"}],"name":"NewPendingGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingLPGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingLPGov","type":"address"}],"name":"NewPendingLPGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reserveRatio","type":"uint256"}],"name":"NewReserveRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stimulus","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stimulusAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oneAmount","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"WithdrawFee","type":"event"},{"inputs":[],"name":"MAX_RESERVE_RATIO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_RESERVE_RATIO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"acceptLPGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"acceptedCollateral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"},{"internalType":"uint256","name":"collateralDecimal_","type":"uint256"},{"internalType":"address","name":"oracleAddress_","type":"address"},{"internalType":"bool","name":"oneCoinOracle","type":"bool"},{"internalType":"bool","name":"oracleHasUpdate","type":"bool"}],"name":"addCollateral","outputs":[],"stateMutability":"nonpayable","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collateralArray","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralMintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralOracleHasUpdate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"consultOneDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"consultOneWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"editMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"editWithdrawFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"executeTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getBurnedStablecoin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"}],"name":"getCollateralUsd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOneTokenUsd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStimulusUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalCollateralValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"lastRefreshReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpGov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumRefreshTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"location","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"moveStimulus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"oneCoinCollateralOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneTokenOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneTokenOracleHasUpdate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingLPGov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"previouslySeenCollateral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"}],"name":"removeCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveStepSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"safeTransferETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"},{"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"setCollateralMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"},{"internalType":"address","name":"oracleAddress_","type":"address"},{"internalType":"bool","name":"oneCoinOracle_","type":"bool"},{"internalType":"bool","name":"oracleHasUpdate","type":"bool"}],"name":"setCollateralOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMaximumReserveRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMinimumDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMinimumRefreshTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMinimumReserveRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oracle_","type":"address"},{"internalType":"bool","name":"hasUpdate","type":"bool"}],"name":"setOneTokenOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingGov_","type":"address"}],"name":"setPendingGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingLPGov_","type":"address"}],"name":"setPendingLPGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stepSize_","type":"uint256"}],"name":"setReserveStepSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oracle_","type":"address"},{"internalType":"bool","name":"hasUpdate","type":"bool"}],"name":"setStimulusOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"change_","type":"uint256"}],"name":"setStimulusPriceChangeMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stimulus","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stimulusDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stimulusOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stimulusOracleHasUpdate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFinal","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620057bb380380620057bb833981810160405260608110156200003757600080fd5b508051602080830151604093840151845180860186526007808252666f6e6557494e4760c81b8286018181528851808a019099529188529487019490945280519495929491939092916200008e9160039162000209565b508051620000a490600490602084019062000209565b50506005805460ff19166012179055506000620000c0620001ef565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600655620001276009620001f3565b600a80546001600160a01b0384166001600160a01b031991821617909155610e10600955600b829055630bebc2006016556414f46b0400600e5564174876e8006007556003600f55631dcd6500602155601480548216339081179091556022805490921681179091556017849055633b9aca006010819055600082815260116020908152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505050620002a5565b3390565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200024c57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027c5782518255916020019190600101906200025f565b506200028a9291506200028e565b5090565b5b808211156200028a57600081556001016200028f565b61550680620002b56000396000f3fe60806040526004361061041a5760003560e01c80638da5cb5b1161021e578063d494d58611610123578063eb7afed0116100ab578063f20505851161007a578063f205058514611057578063f2fde38b146110a4578063f6cad255146110d7578063fcc6ce761461110a578063fdec254f1461111f5761041a565b8063eb7afed014610f94578063efdf0bb014610fbe578063f196d01814610ff1578063f1ae3c7f146110245761041a565b8063e2ceebd1116100f2578063e2ceebd114610eb6578063e56df6c614610eef578063e581890a14610f19578063e9144e7314610f4c578063e941fa7814610f7f5761041a565b8063d494d58614610e00578063da2b9bfa14610e33578063dd62ed3e14610e48578063e2b11a6414610e835761041a565b80639f81aed7116101a6578063c522e74f11610175578063c522e74f14610d31578063c99d3a0614610d5b578063ca7f171a14610d8e578063d00e3a3a14610db8578063d2d97b0614610deb5761041a565b80639f81aed714610c71578063a457c2d714610c86578063a9059cbb14610cbf578063c072ea4314610cf85761041a565b806395d89b41116101ed57806395d89b4114610ba6578063962442c114610bbb57806399b16efd14610c0c57806399e3291014610c215780639bf7451914610c5c5761041a565b80638da5cb5b14610b3b5780638fe605ad14610b5057806393fab9ee14610b6557806394bf804d14610b7a5761041a565b8063395093511161032457806370a08231116102ac5780637bc6729b1161027b5780637bc6729b14610a755780637c365e1b14610a8a5780637c4368c114610ac35780638028faa214610afc57806389a604eb14610b265761041a565b806370a08231146109ee578063715018a614610a2157806375e8ef5c14610a3657806379baca1514610a605761041a565b806354588637116102f3578063545886371461092e57806355c00fb51461094357806357288d001461096d5780635f72a2a7146109a65780636ca2fc1b146109bb5761041a565b806339509351146108725780633a1b9147146108ab5780634ba8f7a1146108e65780634d7efed7146109195761041a565b806317d33845116103a757806323b872dd1161037657806323b872dd146107b057806324552f33146107f35780632524081014610808578063313ce5671461081d57806333d5327c146108485761041a565b806317d33845146105f257806318160ddd146106075780631cf3cf311461061c5780632224fa251461066e5761041a565b80630c7d5cd8116103ee5780630c7d5cd81461055b5780630ed2dff0146105825780631190016c146105b357806312d43a51146105c857806313966db5146105dd5761041a565b8062f714ce1461041f57806306fdde031461045a578063095ea7b3146104e45780630acac95e14610531575b600080fd5b34801561042b57600080fd5b506104586004803603604081101561044257600080fd5b50803590602001356001600160a01b0316611134565b005b34801561046657600080fd5b5061046f611621565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a9578181015183820152602001610491565b50505050905090810190601f1680156104d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f057600080fd5b5061051d6004803603604081101561050757600080fd5b506001600160a01b0381351690602001356116b7565b604080519115158252519081900360200190f35b34801561053d57600080fd5b5061051d6004803603602081101561055457600080fd5b50356119ce565b34801561056757600080fd5b50610570611cf1565b60408051918252519081900360200190f35b34801561058e57600080fd5b50610597611cf7565b604080516001600160a01b039092168252519081900360200190f35b3480156105bf57600080fd5b50610570611d06565b3480156105d457600080fd5b50610597611d0c565b3480156105e957600080fd5b50610570611d1b565b3480156105fe57600080fd5b50610570611d21565b34801561061357600080fd5b50610570611d27565b34801561062857600080fd5b506106556004803603604081101561063f57600080fd5b50803590602001356001600160a01b0316611d2d565b6040805192835260208301919091528051918290030190f35b61046f6004803603608081101561068457600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156106b457600080fd5b8201836020820111156106c657600080fd5b803590602001918460018302840111640100000000831117156106e857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561073b57600080fd5b82018360208201111561074d57600080fd5b8035906020019184600183028401116401000000008311171561076f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e6e945050505050565b3480156107bc57600080fd5b5061051d600480360360608110156107d357600080fd5b506001600160a01b03813581169160208101359091169060400135612046565b3480156107ff57600080fd5b506105706123dd565b34801561081457600080fd5b506105976123e3565b34801561082957600080fd5b506108326123f2565b6040805160ff9092168252519081900360200190f35b34801561085457600080fd5b506104586004803603602081101561086b57600080fd5b50356123fb565b34801561087e57600080fd5b5061051d6004803603604081101561089557600080fd5b506001600160a01b038135169060200135612465565b3480156108b757600080fd5b5061051d600480360360408110156108ce57600080fd5b506001600160a01b03813516906020013515156124f9565b3480156108f257600080fd5b5061051d6004803603602081101561090957600080fd5b50356001600160a01b0316612583565b34801561092557600080fd5b50610597612598565b34801561093a57600080fd5b506105976125a7565b34801561094f57600080fd5b5061051d6004803603602081101561096657600080fd5b50356125b6565b34801561097957600080fd5b506104586004803603604081101561099057600080fd5b506001600160a01b038135169060200135612673565b3480156109b257600080fd5b5061051d612c98565b3480156109c757600080fd5b50610570600480360360208110156109de57600080fd5b50356001600160a01b0316612ca8565b3480156109fa57600080fd5b5061057060048036036020811015610a1157600080fd5b50356001600160a01b0316612cc3565b348015610a2d57600080fd5b50610458612cde565b348015610a4257600080fd5b5061045860048036036020811015610a5957600080fd5b5035612d9d565b348015610a6c57600080fd5b50610570612e04565b348015610a8157600080fd5b50610458612e7a565b348015610a9657600080fd5b5061045860048036036040811015610aad57600080fd5b506001600160a01b038135169060200135612f32565b348015610acf57600080fd5b5061045860048036036040811015610ae657600080fd5b506001600160a01b038135169060200135612f9a565b348015610b0857600080fd5b5061045860048036036020811015610b1f57600080fd5b50356130eb565b348015610b3257600080fd5b5061057061313d565b348015610b4757600080fd5b50610597613143565b348015610b5c57600080fd5b50610570613157565b348015610b7157600080fd5b5061057061319c565b61045860048036036040811015610b9057600080fd5b50803590602001356001600160a01b03166131a2565b348015610bb257600080fd5b5061046f613876565b348015610bc757600080fd5b50610458600480360360a0811015610bde57600080fd5b506001600160a01b0381358116916020810135916040820135169060608101351515906080013515156138d7565b348015610c1857600080fd5b50610597613a2d565b348015610c2d57600080fd5b5061051d60048036036040811015610c4457600080fd5b506001600160a01b0381351690602001351515613a3c565b348015610c6857600080fd5b50610458613ac6565b348015610c7d57600080fd5b50610570613b7e565b348015610c9257600080fd5b5061051d60048036036040811015610ca957600080fd5b506001600160a01b038135169060200135613b84565b348015610ccb57600080fd5b5061051d60048036036040811015610ce257600080fd5b506001600160a01b038135169060200135613c6d565b348015610d0457600080fd5b5061065560048036036040811015610d1b57600080fd5b50803590602001356001600160a01b0316613faf565b348015610d3d57600080fd5b5061059760048036036020811015610d5457600080fd5b50356141b1565b348015610d6757600080fd5b5061045860048036036020811015610d7e57600080fd5b50356001600160a01b03166141d8565b348015610d9a57600080fd5b5061045860048036036020811015610db157600080fd5b5035614246565b348015610dc457600080fd5b5061051d60048036036020811015610ddb57600080fd5b50356001600160a01b03166142e0565b348015610df757600080fd5b506105706142f5565b348015610e0c57600080fd5b5061057060048036036020811015610e2357600080fd5b50356001600160a01b031661446a565b348015610e3f57600080fd5b506105976145e7565b348015610e5457600080fd5b5061057060048036036040811015610e6b57600080fd5b506001600160a01b03813581169160200135166145f6565b348015610e8f57600080fd5b5061051d60048036036020811015610ea657600080fd5b50356001600160a01b0316614621565b348015610ec257600080fd5b5061045860048036036040811015610ed957600080fd5b506001600160a01b038135169060200135614636565b348015610efb57600080fd5b5061045860048036036020811015610f1257600080fd5b50356147a6565b348015610f2557600080fd5b5061057060048036036020811015610f3c57600080fd5b50356001600160a01b031661488f565b348015610f5857600080fd5b5061059760048036036020811015610f6f57600080fd5b50356001600160a01b03166148a1565b348015610f8b57600080fd5b506105706148bc565b348015610fa057600080fd5b5061045860048036036020811015610fb757600080fd5b50356148c2565b348015610fca57600080fd5b5061045860048036036020811015610fe157600080fd5b50356001600160a01b0316614914565b348015610ffd57600080fd5b506104586004803603602081101561101457600080fd5b50356001600160a01b03166149d6565b34801561103057600080fd5b506105706004803603602081101561104757600080fd5b50356001600160a01b0316614a86565b34801561106357600080fd5b506104586004803603608081101561107a57600080fd5b506001600160a01b0381358116916020810135909116906040810135151590606001351515614a98565b3480156110b057600080fd5b50610458600480360360208110156110c757600080fd5b50356001600160a01b0316614ba8565b3480156110e357600080fd5b5061051d600480360360208110156110fa57600080fd5b50356001600160a01b0316614cc3565b34801561111657600080fd5b5061051d614cd8565b34801561112b57600080fd5b50610570614ce8565b6002600654141561118c576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561141957600c54600160a01b900460ff161561121d57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561120457600080fd5b505af1158015611218573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561129857600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561127f57600080fd5b505af1158015611293573d6000803e3d6000fd5b505050505b60005b601a548110156113b55760186000601a83815481106112b657fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156113205750601c6000601a83815481106112f657fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156113ad57601e6000601a838154811061133657fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561139457600080fd5b505af11580156113a8573d6000803e3d6000fd5b505050505b60010161129b565b5060095460085442031061141957633b9aca006113d0613157565b11156113fa576113f56113f0601654601754614cee90919063ffffffff16565b614d37565b611414565b6114146113f0601654601754614d8b90919063ffffffff16565b426008555b8161146b576040805162461bcd60e51b815260206004820152601d60248201527f6d757374207769746864726177206e6f6e2d7a65726f20616d6f756e74000000604482015290519081900360640190fd5b336000908152601160205260409020548211156114c6576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b0381166000908152601d602052604090205460ff16611533576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156115865760405162461bcd60e51b815260040180806020018281038252602a8152602001806154a7602a913960400191505060405180910390fd5b6010546115939083614cee565b601055336000908152601160205260409020546115b09083614cee565b336000908152601160209081526040808320939093556024905220546115d69083614d8b565b3360008181526024602090815260408083209490945560128152838220439055835186815293519193600080516020615404833981519152929081900390910190a350506001600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116ad5780601f10611682576101008083540402835291602001916116ad565b820191906000526020600020905b81548152906001019060200180831161169057829003601f168201915b5050505050905090565b6000826001600160a01b0381166116cd57600080fd5b6001600160a01b0381163014156116e357600080fd5b600c546001600160a01b03161561196657600c54600160a01b900460ff161561176f57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561175657600080fd5b505af115801561176a573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156117ea57600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156117d157600080fd5b505af11580156117e5573d6000803e3d6000fd5b505050505b60005b601a548110156119075760186000601a838154811061180857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156118725750601c6000601a838154811061184857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156118ff57601e6000601a838154811061188857fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156118e657600080fd5b505af11580156118fa573d6000803e3d6000fd5b505050505b6001016117ed565b5060095460085442031061196657633b9aca00611922613157565b1115611947576119426113f0601654601754614cee90919063ffffffff16565b611961565b6119616113f0601654601754614d8b90919063ffffffff16565b426008555b3360008181526013602090815260408083206001600160a01b03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6022546000906001600160a01b03163314611a1e576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b81611a5a5760405162461bcd60e51b81526004018080602001828103825260228152602001806153856022913960400191505060405180910390fd5b600982905560005b601a54811015611bc45760186000601a8381548110611a7d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015611ae75750601c6000601a8381548110611abd57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b8015611b285750601f6000601a8381548110611aff57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff165b15611bbc57601e6000601a8381548110611b3e57fe5b60009182526020808320909101546001600160a01b03908116845290830193909352604091820181205482516363c7560760e01b81526004810188905292519316926363c7560792602480820193929182900301818387803b158015611ba357600080fd5b505af1158015611bb7573d6000803e3d6000fd5b505050505b600101611a62565b50600c54600160a01b900460ff1615611c3d57600c54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c2457600080fd5b505af1158015611c38573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615611cb557600d54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c9c57600080fd5b505af1158015611cb0573d6000803e3d6000fd5b505050505b6040805183815290517ff96993476642ad4471e701dee382f1d8b7947acb089dba94a2f49e477e85c8799181900360200190a15060015b919050565b60175481565b600d546001600160a01b031681565b60075481565b6014546001600160a01b031681565b60205481565b600b5481565b60105490565b60008083611d7d576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b0383166000908152601d602052604090205460ff16611dea576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0383166000908152601b6020526040812054602154611e4391633b9aca0091611e3091600a0a90611e3d90611e369064174876e8009085908d90614de5565b90614e3e565b8a90614cee565b90614de5565b9050611e5f611e518561446a565b611e3083633b9aca00614de5565b925060009150505b9250929050565b6022546060906001600160a01b03163314611ebe576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6060835160001415611ed1575081611f54565b83805190602001208360405160200180836001600160e01b031916815260040182805190602001908083835b60208310611f1c5780518252601f199092019160209182019101611efd565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b60006060876001600160a01b031687846040518082805190602001908083835b60208310611f935780518252601f199092019160209182019101611f74565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611ff5576040519150601f19603f3d011682016040523d82523d6000602084013e611ffa565b606091505b50915091508161203b5760405162461bcd60e51b815260040180806020018281038252603c8152602001806153a7603c913960400191505060405180910390fd5b979650505050505050565b6000826001600160a01b03811661205c57600080fd5b6001600160a01b03811630141561207257600080fd5b600c546001600160a01b0316156122f557600c54600160a01b900460ff16156120fe57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156120e557600080fd5b505af11580156120f9573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561217957600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561216057600080fd5b505af1158015612174573d6000803e3d6000fd5b505050505b60005b601a548110156122965760186000601a838154811061219757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156122015750601c6000601a83815481106121d757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561228e57601e6000601a838154811061221757fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561227557600080fd5b505af1158015612289573d6000803e3d6000fd5b505050505b60010161217c565b506009546008544203106122f557633b9aca006122b1613157565b11156122d6576122d16113f0601654601754614cee90919063ffffffff16565b6122f0565b6122f06113f0601654601754614d8b90919063ffffffff16565b426008555b6001600160a01b03851660009081526013602090815260408083203384529091529020546123239084614cee565b6001600160a01b03861660008181526013602090815260408083203384528252808320949094559181526011909152205461235e9084614cee565b6001600160a01b03808716600090815260116020526040808220939093559086168152205461238d9084614d8b565b6001600160a01b03808616600081815260116020908152604091829020949094558051878152905191939289169260008051602061540483398151915292918290030190a3506001949350505050565b600e5481565b6015546001600160a01b031681565b60055460ff1690565b6022546001600160a01b03163314612448576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600781905560175481101561246257612462600754614d37565b50565b3360009081526013602090815260408083206001600160a01b03861684529091528120546124939083614d8b565b3360008181526013602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060015b92915050565b6022546000906001600160a01b03163314612549576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b50600c80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b601c6020526000908152604090205460ff1681565b6023546001600160a01b031681565b600c546001600160a01b031681565b6022546000906001600160a01b03163314612606576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600d5460408051631d55d14560e11b81526004810185905290516001600160a01b0390921691633aaba28a9160248082019260009290919082900301818387803b15801561265357600080fd5b505af1158015612667573d6000803e3d6000fd5b50600195945050505050565b600260065414156126cb576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561295357600c54600160a01b900460ff161561275c57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274357600080fd5b505af1158015612757573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156127d757600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127be57600080fd5b505af11580156127d2573d6000803e3d6000fd5b505050505b60005b601a548110156128f45760186000601a83815481106127f557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561285f5750601c6000601a838154811061283557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156128ec57601e6000601a838154811061287557fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156128d357600080fd5b505af11580156128e7573d6000803e3d6000fd5b505050505b6001016127da565b5060095460085442031061295357633b9aca0061290f613157565b11156129345761292f6113f0601654601754614cee90919063ffffffff16565b61294e565b61294e6113f0601654601754614d8b90919063ffffffff16565b426008555b6001600160a01b0382166000908152601d602052604090205460ff166129c0576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f54336000908152601260205260409020544391011115612a135760405162461bcd60e51b815260040180806020018281038252602a8152602001806154a7602a913960400191505060405180910390fd5b3360009081526024602052604090205480612a75576040805162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e74206f6e6557494e4720746f2072656465656d0000604482015290519081900360640190fd5b80821115612aca576040805162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e74206f6e6557494e4720746f2072656465656d0000604482015290519081900360640190fd5b33600090815260246020526040902054612ae49083614cee565b336000908152602460209081526040808320939093556001600160a01b0386168252601b905290812054602154612b4291633b9aca0091611e3091600a0a90611e3d90612b3b9064174876e8009085908b90614de5565b8890614cee565b9050612b50611e518561446a565b90506000846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612ba157600080fd5b505afa158015612bb5573d6000803e3d6000fd5b505050506040513d6020811015612bcb57600080fd5b5051821115612c0b5760405162461bcd60e51b81526004018080602001828103825260398152602001806152fe6039913960400191505060405180910390fd5b612c16853384614e80565b33600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291871682820152606082018490526080820183905260a08201869052517fbbbdee62287b5bf3bee13cab60a29ad729cf38109bccbd2a986a11c99b8ca7049181900360c00190a150506001600655505050565b600c54600160a01b900460ff1681565b6001600160a01b031660009081526024602052604090205490565b6001600160a01b031660009081526011602052604090205490565b612ce6614ed2565b60055461010090046001600160a01b03908116911614612d4d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6022546001600160a01b03163314612dea576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600e81905560175481111561246257612462600e54614d37565b600d5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612e4957600080fd5b505afa158015612e5d573d6000803e3d6000fd5b505050506040513d6020811015612e7357600080fd5b5051905090565b6015546001600160a01b03163314612ec4576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60148054601580546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b6022546001600160a01b03163314612f7f576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600a54612f96906001600160a01b03168383614e80565b5050565b6022546001600160a01b03163314612fe7576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b602083106130335780518252601f199092019160209182019101613014565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613095576040519150601f19603f3d011682016040523d82523d6000602084013e61309a565b606091505b50509050806130e6576040805162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b604482015290519081900360640190fd5b505050565b6022546001600160a01b03163314613138576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600f55565b60165481565b60055461010090046001600160a01b031690565b600c5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612e4957600080fd5b60085481565b600260065414156131fa576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561348257600c54600160a01b900460ff161561328b57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561327257600080fd5b505af1158015613286573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561330657600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156132ed57600080fd5b505af1158015613301573d6000803e3d6000fd5b505050505b60005b601a548110156134235760186000601a838154811061332457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561338e5750601c6000601a838154811061336457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561341b57601e6000601a83815481106133a457fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561340257600080fd5b505af1158015613416573d6000803e3d6000fd5b505050505b600101613309565b5060095460085442031061348257633b9aca0061343e613157565b11156134635761345e6113f0601654601754614cee90919063ffffffff16565b61347d565b61347d6113f0601654601754614d8b90919063ffffffff16565b426008555b6001600160a01b03811660009081526018602052604090205460ff166134ef576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b81613541576040805162461bcd60e51b815260206004820152601960248201527f6d757374206d696e74206e6f6e2d7a65726f20616d6f756e7400000000000000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156135945760405162461bcd60e51b815260040180806020018281038252602f815260200180615424602f913960400191505060405180910390fd5b6000806135a18484613faf565b91509150826001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156135f257600080fd5b505afa158015613606573d6000803e3d6000fd5b505050506040513d602081101561361c57600080fd5b505182111561365c5760405162461bcd60e51b815260040180806020018281038252602a815260200180615453602a913960400191505060405180910390fd5b600a54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156136a757600080fd5b505afa1580156136bb573d6000803e3d6000fd5b505050506040513d60208110156136d157600080fd5b50518111156137115760405162461bcd60e51b81526004018080602001828103825260288152602001806153376028913960400191505060405180910390fd5b61371d83333085614ed6565b600a54613735906001600160a01b0316333084614ed6565b602054613759906137529064174876e80090611e30908890614de5565b8590614cee565b6001600160a01b03841660009081526019602052604090205490945061378f906137529064174876e80090611e30908890614de5565b60105490945061379f9085614d8b565b601055336000908152601160205260409020546137bc9085614d8b565b3360008181526011602090815260408083209490945583518881529351929391926000805160206154048339815191529281900390910190a333600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291851682820152606082018490526080820183905260a08201869052517feca801b067fae3d181506c21fb55d44a644d16cdb863595643131a7e105b5f019181900360c00190a1505060016006555050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116ad5780601f10611682576101008083540402835291602001916116ad565b6022546001600160a01b03163314613924576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152601d602052604090205460ff1661399057601a80546001810182556000919091527f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e0180546001600160a01b0319166001600160a01b0387161790555b6001600160a01b039485166000908152601d602090815260408083208054600160ff1991821681179092556018845282852080548216909217909155601c83528184208054821696151596909617909555601b825280832096909655601e815285822080546001600160a01b031916959097169490941790955560198352838520859055601f909252919092208054909116911515919091179055565b600a546001600160a01b031681565b6022546000906001600160a01b03163314613a8c576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b50600d80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b6023546001600160a01b03163314613b10576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60228054602380546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b600f5481565b3360009081526013602090815260408083206001600160a01b0386168452909152812054808310613bd8573360009081526013602090815260408083206001600160a01b0388168452909152812055613c07565b613be28184614cee565b3360009081526013602090815260408083206001600160a01b03891684529091529020555b3360008181526013602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b038116613c8357600080fd5b6001600160a01b038116301415613c9957600080fd5b600c546001600160a01b031615613f1c57600c54600160a01b900460ff1615613d2557600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d0c57600080fd5b505af1158015613d20573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615613da057600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d8757600080fd5b505af1158015613d9b573d6000803e3d6000fd5b505050505b60005b601a54811015613ebd5760186000601a8381548110613dbe57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015613e285750601c6000601a8381548110613dfe57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b15613eb557601e6000601a8381548110613e3e57fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b158015613e9c57600080fd5b505af1158015613eb0573d6000803e3d6000fd5b505050505b600101613da3565b50600954600854420310613f1c57633b9aca00613ed8613157565b1115613efd57613ef86113f0601654601754614cee90919063ffffffff16565b613f17565b613f176113f0601654601754614d8b90919063ffffffff16565b426008555b33600090815260116020526040902054613f369084614cee565b33600090815260116020526040808220929092556001600160a01b03861681522054613f629084614d8b565b6001600160a01b0385166000818152601160209081526040918290209390935580518681529051919233926000805160206154048339815191529281900390910190a35060019392505050565b60008083613fff576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b03831660009081526018602052604090205460ff1661406c576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6000614076612e04565b9050806140ca576001600160a01b0384166000908152601b60205260408120546140ae90633b9aca0090611e30908990600a0a614de5565b90506140bc611e518661446a565b935060009250611e67915050565b600061411b6009600a0a611e30601b6000896001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e3d600754611e306017548d614de590919063ffffffff16565b9050614129611e518661446a565b600c549091506001600160a01b031661414957925060009150611e679050565b6000614172600754611e3061416b601754600754614cee90919063ffffffff16565b8a90614de5565b905060006141a26009600a0a611e30600b54600a0a611e3d88611e30633b9aca0089614de590919063ffffffff16565b92989297509195505050505050565b601a81815481106141be57fe5b6000918252602090912001546001600160a01b0316905081565b6022546001600160a01b03163314614225576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601860205260409020805460ff19169055565b6014546001600160a01b031633146142a5576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b60218190556040805182815290517fa01cb43de193eb3a80b373fb949c09d0eedb01f39f3b6063ace0cb6b067cc1239181900360200190a150565b601f6020526000908152604090205460ff1681565b600080805b601a548110156144645760006001600160a01b0316601a828154811061431c57fe5b6000918252602090912001546001600160a01b03161461445c57614457633b9aca00611e3061436b601a858154811061435157fe5b6000918252602090912001546001600160a01b031661446a565b611e3d601b6000601a888154811061437f57fe5b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e30633b9aca00601a89815481106143d657fe5b60009182526020918290200154604080516370a0823160e01b815230600482015290516001600160a01b03909216926370a0823192602480840193829003018186803b15801561442557600080fd5b505afa158015614439573d6000803e3d6000fd5b505050506040513d602081101561444f57600080fd5b505190614de5565b820191505b6001016142fa565b50905090565b6001600160a01b0381166000908152601d602052604081205460ff166144d7576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0382166000908152601c602052604090205460ff161561456457816001600160a01b0316638fe605ad6040518163ffffffff1660e01b815260040160206040518083038186803b15801561453157600080fd5b505afa158015614545573d6000803e3d6000fd5b505050506040513d602081101561455b57600080fd5b50519050611cec565b6001600160a01b038083166000908152601e6020908152604091829020548251638e15f47360e01b81529251931692638e15f473926004808201939291829003018186803b1580156145b557600080fd5b505afa1580156145c9573d6000803e3d6000fd5b505050506040513d60208110156145df57600080fd5b505192915050565b6022546001600160a01b031681565b6001600160a01b03918216600090815260136020908152604080832093909416825291909152205490565b601d6020526000908152604090205460ff1681565b6022546001600160a01b03163314614683576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526018602052604090205460ff166146e5576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b64174876e800811115614733576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b6001600160a01b03821660008181526019602090815260409182902054825193845290830152818101839052517fcf85a5b7f4f21d4a913cf58eebe5679c7313cc3a20de1d2cd87f22a210e05fab9181900360600190a16001600160a01b03909116600090815260196020526040902055565b6014546001600160a01b03163314614805576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b64174876e800811115614853576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b60208181556040805183815290517f6f87524b705f31734b7940b88671f37a3291d7b961b69da31bcabf882b2531da929181900390910190a150565b60196020526000908152604090205481565b601e602052600090815260409020546001600160a01b031681565b60215481565b6022546001600160a01b0316331461490f576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b601655565b6014546001600160a01b03163314614973576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b601580546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6163d5b9efd962645dd649e6e48a61bcb0f9df00997a2398b80d135a9ab0c61e929181900390910190a15050565b6022546001600160a01b03163314614a23576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b602380546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6ea9654b538fab06e45f7940f0aa88b14cb8aca48a29d4e0b7626009fb7dc514929181900390910190a15050565b601b6020526000908152604090205481565b6022546001600160a01b03163314614ae5576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526018602052604090205460ff16614b47576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b6001600160a01b039384166000908152601c60209081526040808320805495151560ff19968716179055601e82528083208054969097166001600160a01b031990961695909517909555601f90945291909220805491151591909216179055565b614bb0614ed2565b60055461010090046001600160a01b03908116911614614c17576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116614c5c5760405162461bcd60e51b81526004018080602001828103825260268152602001806152b86026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60186020526000908152604090205460ff1681565b600d54600160a01b900460ff1681565b60095481565b6000614d3083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614f36565b9392505050565b6007548111158015614d4b5750600e548110155b156124625760178190556040805182815290517f2fbb30255fd6bab4bd8c21173ab8290d05fcef04343b7d0190495d90e6866c569181900360200190a150565b600082820183811015614d30576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082614df4575060006124f3565b82820282848281614e0157fe5b0414614d305760405162461bcd60e51b81526004018080602001828103825260218152602001806153e36021913960400191505060405180910390fd5b6000614d3083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614fcd565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526130e6908490615032565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052614f30908590615032565b50505050565b60008184841115614fc55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614f8a578181015183820152602001614f72565b50505050905090810190601f168015614fb75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818361501c5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614f8a578181015183820152602001614f72565b50600083858161502857fe5b0495945050505050565b6060615087826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150e39092919063ffffffff16565b8051909150156130e6578080602001905160208110156150a657600080fd5b50516130e65760405162461bcd60e51b815260040180806020018281038252602a81526020018061547d602a913960400191505060405180910390fd5b60606150f284846000856150fa565b949350505050565b60608247101561513b5760405162461bcd60e51b815260040180806020018281038252602681526020018061535f6026913960400191505060405180910390fd5b6151448561524b565b615195576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106151d45780518252601f1990920191602091820191016151b5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615236576040519150601f19603f3d011682016040523d82523d6000602084013e61523b565b606091505b509150915061203b828286615251565b3b151590565b60608315615260575081614d30565b8251156152705782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315614f8a578181015183820152602001614f7256fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734143434553533a206f6e6c79206f6e654c5020676f7665726e616e6365000000696e73756666696369656e7420636f6c6c61746572616c207265736572766573202d2074727920616e6f7468657220636f6c6c61746572616c73656e6465722068617320696e73756666696369656e74207374696d756c75732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c6d696e696d756d20726566726573682074696d65206d7573742062652076616c69646f6e6557494e473a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616374696f6e20746f6f20736f6f6e202d20706c656173652077616974206120666577206d6f726520626c6f636b7373656e6465722068617320696e73756666696369656e7420636f6c6c61746572616c2062616c616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564616374696f6e20746f6f20736f6f6e202d20706c65617365207761697420612066657720626c6f636b73a26469706673582212206c6c6c07be8e48e2afdec26453a83b27b037e7fa8cc0c91bd0d558aa77d4d08564736f6c634300060c0033000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000db0f18081b505a7de20b18ac41856bcb4ba86a1a0000000000000000000000000000000000000000000000000000000000000009

Deployed Bytecode

0x60806040526004361061041a5760003560e01c80638da5cb5b1161021e578063d494d58611610123578063eb7afed0116100ab578063f20505851161007a578063f205058514611057578063f2fde38b146110a4578063f6cad255146110d7578063fcc6ce761461110a578063fdec254f1461111f5761041a565b8063eb7afed014610f94578063efdf0bb014610fbe578063f196d01814610ff1578063f1ae3c7f146110245761041a565b8063e2ceebd1116100f2578063e2ceebd114610eb6578063e56df6c614610eef578063e581890a14610f19578063e9144e7314610f4c578063e941fa7814610f7f5761041a565b8063d494d58614610e00578063da2b9bfa14610e33578063dd62ed3e14610e48578063e2b11a6414610e835761041a565b80639f81aed7116101a6578063c522e74f11610175578063c522e74f14610d31578063c99d3a0614610d5b578063ca7f171a14610d8e578063d00e3a3a14610db8578063d2d97b0614610deb5761041a565b80639f81aed714610c71578063a457c2d714610c86578063a9059cbb14610cbf578063c072ea4314610cf85761041a565b806395d89b41116101ed57806395d89b4114610ba6578063962442c114610bbb57806399b16efd14610c0c57806399e3291014610c215780639bf7451914610c5c5761041a565b80638da5cb5b14610b3b5780638fe605ad14610b5057806393fab9ee14610b6557806394bf804d14610b7a5761041a565b8063395093511161032457806370a08231116102ac5780637bc6729b1161027b5780637bc6729b14610a755780637c365e1b14610a8a5780637c4368c114610ac35780638028faa214610afc57806389a604eb14610b265761041a565b806370a08231146109ee578063715018a614610a2157806375e8ef5c14610a3657806379baca1514610a605761041a565b806354588637116102f3578063545886371461092e57806355c00fb51461094357806357288d001461096d5780635f72a2a7146109a65780636ca2fc1b146109bb5761041a565b806339509351146108725780633a1b9147146108ab5780634ba8f7a1146108e65780634d7efed7146109195761041a565b806317d33845116103a757806323b872dd1161037657806323b872dd146107b057806324552f33146107f35780632524081014610808578063313ce5671461081d57806333d5327c146108485761041a565b806317d33845146105f257806318160ddd146106075780631cf3cf311461061c5780632224fa251461066e5761041a565b80630c7d5cd8116103ee5780630c7d5cd81461055b5780630ed2dff0146105825780631190016c146105b357806312d43a51146105c857806313966db5146105dd5761041a565b8062f714ce1461041f57806306fdde031461045a578063095ea7b3146104e45780630acac95e14610531575b600080fd5b34801561042b57600080fd5b506104586004803603604081101561044257600080fd5b50803590602001356001600160a01b0316611134565b005b34801561046657600080fd5b5061046f611621565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a9578181015183820152602001610491565b50505050905090810190601f1680156104d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f057600080fd5b5061051d6004803603604081101561050757600080fd5b506001600160a01b0381351690602001356116b7565b604080519115158252519081900360200190f35b34801561053d57600080fd5b5061051d6004803603602081101561055457600080fd5b50356119ce565b34801561056757600080fd5b50610570611cf1565b60408051918252519081900360200190f35b34801561058e57600080fd5b50610597611cf7565b604080516001600160a01b039092168252519081900360200190f35b3480156105bf57600080fd5b50610570611d06565b3480156105d457600080fd5b50610597611d0c565b3480156105e957600080fd5b50610570611d1b565b3480156105fe57600080fd5b50610570611d21565b34801561061357600080fd5b50610570611d27565b34801561062857600080fd5b506106556004803603604081101561063f57600080fd5b50803590602001356001600160a01b0316611d2d565b6040805192835260208301919091528051918290030190f35b61046f6004803603608081101561068457600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156106b457600080fd5b8201836020820111156106c657600080fd5b803590602001918460018302840111640100000000831117156106e857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561073b57600080fd5b82018360208201111561074d57600080fd5b8035906020019184600183028401116401000000008311171561076f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e6e945050505050565b3480156107bc57600080fd5b5061051d600480360360608110156107d357600080fd5b506001600160a01b03813581169160208101359091169060400135612046565b3480156107ff57600080fd5b506105706123dd565b34801561081457600080fd5b506105976123e3565b34801561082957600080fd5b506108326123f2565b6040805160ff9092168252519081900360200190f35b34801561085457600080fd5b506104586004803603602081101561086b57600080fd5b50356123fb565b34801561087e57600080fd5b5061051d6004803603604081101561089557600080fd5b506001600160a01b038135169060200135612465565b3480156108b757600080fd5b5061051d600480360360408110156108ce57600080fd5b506001600160a01b03813516906020013515156124f9565b3480156108f257600080fd5b5061051d6004803603602081101561090957600080fd5b50356001600160a01b0316612583565b34801561092557600080fd5b50610597612598565b34801561093a57600080fd5b506105976125a7565b34801561094f57600080fd5b5061051d6004803603602081101561096657600080fd5b50356125b6565b34801561097957600080fd5b506104586004803603604081101561099057600080fd5b506001600160a01b038135169060200135612673565b3480156109b257600080fd5b5061051d612c98565b3480156109c757600080fd5b50610570600480360360208110156109de57600080fd5b50356001600160a01b0316612ca8565b3480156109fa57600080fd5b5061057060048036036020811015610a1157600080fd5b50356001600160a01b0316612cc3565b348015610a2d57600080fd5b50610458612cde565b348015610a4257600080fd5b5061045860048036036020811015610a5957600080fd5b5035612d9d565b348015610a6c57600080fd5b50610570612e04565b348015610a8157600080fd5b50610458612e7a565b348015610a9657600080fd5b5061045860048036036040811015610aad57600080fd5b506001600160a01b038135169060200135612f32565b348015610acf57600080fd5b5061045860048036036040811015610ae657600080fd5b506001600160a01b038135169060200135612f9a565b348015610b0857600080fd5b5061045860048036036020811015610b1f57600080fd5b50356130eb565b348015610b3257600080fd5b5061057061313d565b348015610b4757600080fd5b50610597613143565b348015610b5c57600080fd5b50610570613157565b348015610b7157600080fd5b5061057061319c565b61045860048036036040811015610b9057600080fd5b50803590602001356001600160a01b03166131a2565b348015610bb257600080fd5b5061046f613876565b348015610bc757600080fd5b50610458600480360360a0811015610bde57600080fd5b506001600160a01b0381358116916020810135916040820135169060608101351515906080013515156138d7565b348015610c1857600080fd5b50610597613a2d565b348015610c2d57600080fd5b5061051d60048036036040811015610c4457600080fd5b506001600160a01b0381351690602001351515613a3c565b348015610c6857600080fd5b50610458613ac6565b348015610c7d57600080fd5b50610570613b7e565b348015610c9257600080fd5b5061051d60048036036040811015610ca957600080fd5b506001600160a01b038135169060200135613b84565b348015610ccb57600080fd5b5061051d60048036036040811015610ce257600080fd5b506001600160a01b038135169060200135613c6d565b348015610d0457600080fd5b5061065560048036036040811015610d1b57600080fd5b50803590602001356001600160a01b0316613faf565b348015610d3d57600080fd5b5061059760048036036020811015610d5457600080fd5b50356141b1565b348015610d6757600080fd5b5061045860048036036020811015610d7e57600080fd5b50356001600160a01b03166141d8565b348015610d9a57600080fd5b5061045860048036036020811015610db157600080fd5b5035614246565b348015610dc457600080fd5b5061051d60048036036020811015610ddb57600080fd5b50356001600160a01b03166142e0565b348015610df757600080fd5b506105706142f5565b348015610e0c57600080fd5b5061057060048036036020811015610e2357600080fd5b50356001600160a01b031661446a565b348015610e3f57600080fd5b506105976145e7565b348015610e5457600080fd5b5061057060048036036040811015610e6b57600080fd5b506001600160a01b03813581169160200135166145f6565b348015610e8f57600080fd5b5061051d60048036036020811015610ea657600080fd5b50356001600160a01b0316614621565b348015610ec257600080fd5b5061045860048036036040811015610ed957600080fd5b506001600160a01b038135169060200135614636565b348015610efb57600080fd5b5061045860048036036020811015610f1257600080fd5b50356147a6565b348015610f2557600080fd5b5061057060048036036020811015610f3c57600080fd5b50356001600160a01b031661488f565b348015610f5857600080fd5b5061059760048036036020811015610f6f57600080fd5b50356001600160a01b03166148a1565b348015610f8b57600080fd5b506105706148bc565b348015610fa057600080fd5b5061045860048036036020811015610fb757600080fd5b50356148c2565b348015610fca57600080fd5b5061045860048036036020811015610fe157600080fd5b50356001600160a01b0316614914565b348015610ffd57600080fd5b506104586004803603602081101561101457600080fd5b50356001600160a01b03166149d6565b34801561103057600080fd5b506105706004803603602081101561104757600080fd5b50356001600160a01b0316614a86565b34801561106357600080fd5b506104586004803603608081101561107a57600080fd5b506001600160a01b0381358116916020810135909116906040810135151590606001351515614a98565b3480156110b057600080fd5b50610458600480360360208110156110c757600080fd5b50356001600160a01b0316614ba8565b3480156110e357600080fd5b5061051d600480360360208110156110fa57600080fd5b50356001600160a01b0316614cc3565b34801561111657600080fd5b5061051d614cd8565b34801561112b57600080fd5b50610570614ce8565b6002600654141561118c576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561141957600c54600160a01b900460ff161561121d57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561120457600080fd5b505af1158015611218573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561129857600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561127f57600080fd5b505af1158015611293573d6000803e3d6000fd5b505050505b60005b601a548110156113b55760186000601a83815481106112b657fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156113205750601c6000601a83815481106112f657fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156113ad57601e6000601a838154811061133657fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561139457600080fd5b505af11580156113a8573d6000803e3d6000fd5b505050505b60010161129b565b5060095460085442031061141957633b9aca006113d0613157565b11156113fa576113f56113f0601654601754614cee90919063ffffffff16565b614d37565b611414565b6114146113f0601654601754614d8b90919063ffffffff16565b426008555b8161146b576040805162461bcd60e51b815260206004820152601d60248201527f6d757374207769746864726177206e6f6e2d7a65726f20616d6f756e74000000604482015290519081900360640190fd5b336000908152601160205260409020548211156114c6576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b0381166000908152601d602052604090205460ff16611533576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156115865760405162461bcd60e51b815260040180806020018281038252602a8152602001806154a7602a913960400191505060405180910390fd5b6010546115939083614cee565b601055336000908152601160205260409020546115b09083614cee565b336000908152601160209081526040808320939093556024905220546115d69083614d8b565b3360008181526024602090815260408083209490945560128152838220439055835186815293519193600080516020615404833981519152929081900390910190a350506001600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116ad5780601f10611682576101008083540402835291602001916116ad565b820191906000526020600020905b81548152906001019060200180831161169057829003601f168201915b5050505050905090565b6000826001600160a01b0381166116cd57600080fd5b6001600160a01b0381163014156116e357600080fd5b600c546001600160a01b03161561196657600c54600160a01b900460ff161561176f57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561175657600080fd5b505af115801561176a573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156117ea57600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156117d157600080fd5b505af11580156117e5573d6000803e3d6000fd5b505050505b60005b601a548110156119075760186000601a838154811061180857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156118725750601c6000601a838154811061184857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156118ff57601e6000601a838154811061188857fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156118e657600080fd5b505af11580156118fa573d6000803e3d6000fd5b505050505b6001016117ed565b5060095460085442031061196657633b9aca00611922613157565b1115611947576119426113f0601654601754614cee90919063ffffffff16565b611961565b6119616113f0601654601754614d8b90919063ffffffff16565b426008555b3360008181526013602090815260408083206001600160a01b03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6022546000906001600160a01b03163314611a1e576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b81611a5a5760405162461bcd60e51b81526004018080602001828103825260228152602001806153856022913960400191505060405180910390fd5b600982905560005b601a54811015611bc45760186000601a8381548110611a7d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015611ae75750601c6000601a8381548110611abd57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b8015611b285750601f6000601a8381548110611aff57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff165b15611bbc57601e6000601a8381548110611b3e57fe5b60009182526020808320909101546001600160a01b03908116845290830193909352604091820181205482516363c7560760e01b81526004810188905292519316926363c7560792602480820193929182900301818387803b158015611ba357600080fd5b505af1158015611bb7573d6000803e3d6000fd5b505050505b600101611a62565b50600c54600160a01b900460ff1615611c3d57600c54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c2457600080fd5b505af1158015611c38573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615611cb557600d54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c9c57600080fd5b505af1158015611cb0573d6000803e3d6000fd5b505050505b6040805183815290517ff96993476642ad4471e701dee382f1d8b7947acb089dba94a2f49e477e85c8799181900360200190a15060015b919050565b60175481565b600d546001600160a01b031681565b60075481565b6014546001600160a01b031681565b60205481565b600b5481565b60105490565b60008083611d7d576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b0383166000908152601d602052604090205460ff16611dea576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0383166000908152601b6020526040812054602154611e4391633b9aca0091611e3091600a0a90611e3d90611e369064174876e8009085908d90614de5565b90614e3e565b8a90614cee565b90614de5565b9050611e5f611e518561446a565b611e3083633b9aca00614de5565b925060009150505b9250929050565b6022546060906001600160a01b03163314611ebe576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6060835160001415611ed1575081611f54565b83805190602001208360405160200180836001600160e01b031916815260040182805190602001908083835b60208310611f1c5780518252601f199092019160209182019101611efd565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b60006060876001600160a01b031687846040518082805190602001908083835b60208310611f935780518252601f199092019160209182019101611f74565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611ff5576040519150601f19603f3d011682016040523d82523d6000602084013e611ffa565b606091505b50915091508161203b5760405162461bcd60e51b815260040180806020018281038252603c8152602001806153a7603c913960400191505060405180910390fd5b979650505050505050565b6000826001600160a01b03811661205c57600080fd5b6001600160a01b03811630141561207257600080fd5b600c546001600160a01b0316156122f557600c54600160a01b900460ff16156120fe57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156120e557600080fd5b505af11580156120f9573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561217957600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561216057600080fd5b505af1158015612174573d6000803e3d6000fd5b505050505b60005b601a548110156122965760186000601a838154811061219757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156122015750601c6000601a83815481106121d757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561228e57601e6000601a838154811061221757fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561227557600080fd5b505af1158015612289573d6000803e3d6000fd5b505050505b60010161217c565b506009546008544203106122f557633b9aca006122b1613157565b11156122d6576122d16113f0601654601754614cee90919063ffffffff16565b6122f0565b6122f06113f0601654601754614d8b90919063ffffffff16565b426008555b6001600160a01b03851660009081526013602090815260408083203384529091529020546123239084614cee565b6001600160a01b03861660008181526013602090815260408083203384528252808320949094559181526011909152205461235e9084614cee565b6001600160a01b03808716600090815260116020526040808220939093559086168152205461238d9084614d8b565b6001600160a01b03808616600081815260116020908152604091829020949094558051878152905191939289169260008051602061540483398151915292918290030190a3506001949350505050565b600e5481565b6015546001600160a01b031681565b60055460ff1690565b6022546001600160a01b03163314612448576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600781905560175481101561246257612462600754614d37565b50565b3360009081526013602090815260408083206001600160a01b03861684529091528120546124939083614d8b565b3360008181526013602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060015b92915050565b6022546000906001600160a01b03163314612549576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b50600c80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b601c6020526000908152604090205460ff1681565b6023546001600160a01b031681565b600c546001600160a01b031681565b6022546000906001600160a01b03163314612606576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600d5460408051631d55d14560e11b81526004810185905290516001600160a01b0390921691633aaba28a9160248082019260009290919082900301818387803b15801561265357600080fd5b505af1158015612667573d6000803e3d6000fd5b50600195945050505050565b600260065414156126cb576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561295357600c54600160a01b900460ff161561275c57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274357600080fd5b505af1158015612757573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156127d757600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127be57600080fd5b505af11580156127d2573d6000803e3d6000fd5b505050505b60005b601a548110156128f45760186000601a83815481106127f557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561285f5750601c6000601a838154811061283557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156128ec57601e6000601a838154811061287557fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156128d357600080fd5b505af11580156128e7573d6000803e3d6000fd5b505050505b6001016127da565b5060095460085442031061295357633b9aca0061290f613157565b11156129345761292f6113f0601654601754614cee90919063ffffffff16565b61294e565b61294e6113f0601654601754614d8b90919063ffffffff16565b426008555b6001600160a01b0382166000908152601d602052604090205460ff166129c0576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f54336000908152601260205260409020544391011115612a135760405162461bcd60e51b815260040180806020018281038252602a8152602001806154a7602a913960400191505060405180910390fd5b3360009081526024602052604090205480612a75576040805162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e74206f6e6557494e4720746f2072656465656d0000604482015290519081900360640190fd5b80821115612aca576040805162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e74206f6e6557494e4720746f2072656465656d0000604482015290519081900360640190fd5b33600090815260246020526040902054612ae49083614cee565b336000908152602460209081526040808320939093556001600160a01b0386168252601b905290812054602154612b4291633b9aca0091611e3091600a0a90611e3d90612b3b9064174876e8009085908b90614de5565b8890614cee565b9050612b50611e518561446a565b90506000846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612ba157600080fd5b505afa158015612bb5573d6000803e3d6000fd5b505050506040513d6020811015612bcb57600080fd5b5051821115612c0b5760405162461bcd60e51b81526004018080602001828103825260398152602001806152fe6039913960400191505060405180910390fd5b612c16853384614e80565b33600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291871682820152606082018490526080820183905260a08201869052517fbbbdee62287b5bf3bee13cab60a29ad729cf38109bccbd2a986a11c99b8ca7049181900360c00190a150506001600655505050565b600c54600160a01b900460ff1681565b6001600160a01b031660009081526024602052604090205490565b6001600160a01b031660009081526011602052604090205490565b612ce6614ed2565b60055461010090046001600160a01b03908116911614612d4d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6022546001600160a01b03163314612dea576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600e81905560175481111561246257612462600e54614d37565b600d5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612e4957600080fd5b505afa158015612e5d573d6000803e3d6000fd5b505050506040513d6020811015612e7357600080fd5b5051905090565b6015546001600160a01b03163314612ec4576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60148054601580546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b6022546001600160a01b03163314612f7f576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600a54612f96906001600160a01b03168383614e80565b5050565b6022546001600160a01b03163314612fe7576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b602083106130335780518252601f199092019160209182019101613014565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613095576040519150601f19603f3d011682016040523d82523d6000602084013e61309a565b606091505b50509050806130e6576040805162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b604482015290519081900360640190fd5b505050565b6022546001600160a01b03163314613138576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b600f55565b60165481565b60055461010090046001600160a01b031690565b600c5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612e4957600080fd5b60085481565b600260065414156131fa576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561348257600c54600160a01b900460ff161561328b57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561327257600080fd5b505af1158015613286573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561330657600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156132ed57600080fd5b505af1158015613301573d6000803e3d6000fd5b505050505b60005b601a548110156134235760186000601a838154811061332457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561338e5750601c6000601a838154811061336457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561341b57601e6000601a83815481106133a457fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561340257600080fd5b505af1158015613416573d6000803e3d6000fd5b505050505b600101613309565b5060095460085442031061348257633b9aca0061343e613157565b11156134635761345e6113f0601654601754614cee90919063ffffffff16565b61347d565b61347d6113f0601654601754614d8b90919063ffffffff16565b426008555b6001600160a01b03811660009081526018602052604090205460ff166134ef576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b81613541576040805162461bcd60e51b815260206004820152601960248201527f6d757374206d696e74206e6f6e2d7a65726f20616d6f756e7400000000000000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156135945760405162461bcd60e51b815260040180806020018281038252602f815260200180615424602f913960400191505060405180910390fd5b6000806135a18484613faf565b91509150826001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156135f257600080fd5b505afa158015613606573d6000803e3d6000fd5b505050506040513d602081101561361c57600080fd5b505182111561365c5760405162461bcd60e51b815260040180806020018281038252602a815260200180615453602a913960400191505060405180910390fd5b600a54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156136a757600080fd5b505afa1580156136bb573d6000803e3d6000fd5b505050506040513d60208110156136d157600080fd5b50518111156137115760405162461bcd60e51b81526004018080602001828103825260288152602001806153376028913960400191505060405180910390fd5b61371d83333085614ed6565b600a54613735906001600160a01b0316333084614ed6565b602054613759906137529064174876e80090611e30908890614de5565b8590614cee565b6001600160a01b03841660009081526019602052604090205490945061378f906137529064174876e80090611e30908890614de5565b60105490945061379f9085614d8b565b601055336000908152601160205260409020546137bc9085614d8b565b3360008181526011602090815260408083209490945583518881529351929391926000805160206154048339815191529281900390910190a333600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291851682820152606082018490526080820183905260a08201869052517feca801b067fae3d181506c21fb55d44a644d16cdb863595643131a7e105b5f019181900360c00190a1505060016006555050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116ad5780601f10611682576101008083540402835291602001916116ad565b6022546001600160a01b03163314613924576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152601d602052604090205460ff1661399057601a80546001810182556000919091527f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e0180546001600160a01b0319166001600160a01b0387161790555b6001600160a01b039485166000908152601d602090815260408083208054600160ff1991821681179092556018845282852080548216909217909155601c83528184208054821696151596909617909555601b825280832096909655601e815285822080546001600160a01b031916959097169490941790955560198352838520859055601f909252919092208054909116911515919091179055565b600a546001600160a01b031681565b6022546000906001600160a01b03163314613a8c576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b50600d80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b6023546001600160a01b03163314613b10576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60228054602380546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b600f5481565b3360009081526013602090815260408083206001600160a01b0386168452909152812054808310613bd8573360009081526013602090815260408083206001600160a01b0388168452909152812055613c07565b613be28184614cee565b3360009081526013602090815260408083206001600160a01b03891684529091529020555b3360008181526013602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b038116613c8357600080fd5b6001600160a01b038116301415613c9957600080fd5b600c546001600160a01b031615613f1c57600c54600160a01b900460ff1615613d2557600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d0c57600080fd5b505af1158015613d20573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615613da057600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d8757600080fd5b505af1158015613d9b573d6000803e3d6000fd5b505050505b60005b601a54811015613ebd5760186000601a8381548110613dbe57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015613e285750601c6000601a8381548110613dfe57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b15613eb557601e6000601a8381548110613e3e57fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b158015613e9c57600080fd5b505af1158015613eb0573d6000803e3d6000fd5b505050505b600101613da3565b50600954600854420310613f1c57633b9aca00613ed8613157565b1115613efd57613ef86113f0601654601754614cee90919063ffffffff16565b613f17565b613f176113f0601654601754614d8b90919063ffffffff16565b426008555b33600090815260116020526040902054613f369084614cee565b33600090815260116020526040808220929092556001600160a01b03861681522054613f629084614d8b565b6001600160a01b0385166000818152601160209081526040918290209390935580518681529051919233926000805160206154048339815191529281900390910190a35060019392505050565b60008083613fff576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b03831660009081526018602052604090205460ff1661406c576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6000614076612e04565b9050806140ca576001600160a01b0384166000908152601b60205260408120546140ae90633b9aca0090611e30908990600a0a614de5565b90506140bc611e518661446a565b935060009250611e67915050565b600061411b6009600a0a611e30601b6000896001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e3d600754611e306017548d614de590919063ffffffff16565b9050614129611e518661446a565b600c549091506001600160a01b031661414957925060009150611e679050565b6000614172600754611e3061416b601754600754614cee90919063ffffffff16565b8a90614de5565b905060006141a26009600a0a611e30600b54600a0a611e3d88611e30633b9aca0089614de590919063ffffffff16565b92989297509195505050505050565b601a81815481106141be57fe5b6000918252602090912001546001600160a01b0316905081565b6022546001600160a01b03163314614225576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601860205260409020805460ff19169055565b6014546001600160a01b031633146142a5576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b60218190556040805182815290517fa01cb43de193eb3a80b373fb949c09d0eedb01f39f3b6063ace0cb6b067cc1239181900360200190a150565b601f6020526000908152604090205460ff1681565b600080805b601a548110156144645760006001600160a01b0316601a828154811061431c57fe5b6000918252602090912001546001600160a01b03161461445c57614457633b9aca00611e3061436b601a858154811061435157fe5b6000918252602090912001546001600160a01b031661446a565b611e3d601b6000601a888154811061437f57fe5b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e30633b9aca00601a89815481106143d657fe5b60009182526020918290200154604080516370a0823160e01b815230600482015290516001600160a01b03909216926370a0823192602480840193829003018186803b15801561442557600080fd5b505afa158015614439573d6000803e3d6000fd5b505050506040513d602081101561444f57600080fd5b505190614de5565b820191505b6001016142fa565b50905090565b6001600160a01b0381166000908152601d602052604081205460ff166144d7576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0382166000908152601c602052604090205460ff161561456457816001600160a01b0316638fe605ad6040518163ffffffff1660e01b815260040160206040518083038186803b15801561453157600080fd5b505afa158015614545573d6000803e3d6000fd5b505050506040513d602081101561455b57600080fd5b50519050611cec565b6001600160a01b038083166000908152601e6020908152604091829020548251638e15f47360e01b81529251931692638e15f473926004808201939291829003018186803b1580156145b557600080fd5b505afa1580156145c9573d6000803e3d6000fd5b505050506040513d60208110156145df57600080fd5b505192915050565b6022546001600160a01b031681565b6001600160a01b03918216600090815260136020908152604080832093909416825291909152205490565b601d6020526000908152604090205460ff1681565b6022546001600160a01b03163314614683576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526018602052604090205460ff166146e5576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b64174876e800811115614733576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b6001600160a01b03821660008181526019602090815260409182902054825193845290830152818101839052517fcf85a5b7f4f21d4a913cf58eebe5679c7313cc3a20de1d2cd87f22a210e05fab9181900360600190a16001600160a01b03909116600090815260196020526040902055565b6014546001600160a01b03163314614805576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b64174876e800811115614853576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b60208181556040805183815290517f6f87524b705f31734b7940b88671f37a3291d7b961b69da31bcabf882b2531da929181900390910190a150565b60196020526000908152604090205481565b601e602052600090815260409020546001600160a01b031681565b60215481565b6022546001600160a01b0316331461490f576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b601655565b6014546001600160a01b03163314614973576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b601580546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6163d5b9efd962645dd649e6e48a61bcb0f9df00997a2398b80d135a9ab0c61e929181900390910190a15050565b6022546001600160a01b03163314614a23576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b602380546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6ea9654b538fab06e45f7940f0aa88b14cb8aca48a29d4e0b7626009fb7dc514929181900390910190a15050565b601b6020526000908152604090205481565b6022546001600160a01b03163314614ae5576040805162461bcd60e51b815260206004820152601d60248201526000805160206152de833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526018602052604090205460ff16614b47576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b6001600160a01b039384166000908152601c60209081526040808320805495151560ff19968716179055601e82528083208054969097166001600160a01b031990961695909517909555601f90945291909220805491151591909216179055565b614bb0614ed2565b60055461010090046001600160a01b03908116911614614c17576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116614c5c5760405162461bcd60e51b81526004018080602001828103825260268152602001806152b86026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60186020526000908152604090205460ff1681565b600d54600160a01b900460ff1681565b60095481565b6000614d3083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614f36565b9392505050565b6007548111158015614d4b5750600e548110155b156124625760178190556040805182815290517f2fbb30255fd6bab4bd8c21173ab8290d05fcef04343b7d0190495d90e6866c569181900360200190a150565b600082820183811015614d30576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082614df4575060006124f3565b82820282848281614e0157fe5b0414614d305760405162461bcd60e51b81526004018080602001828103825260218152602001806153e36021913960400191505060405180910390fd5b6000614d3083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614fcd565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526130e6908490615032565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052614f30908590615032565b50505050565b60008184841115614fc55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614f8a578181015183820152602001614f72565b50505050905090810190601f168015614fb75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818361501c5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614f8a578181015183820152602001614f72565b50600083858161502857fe5b0495945050505050565b6060615087826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150e39092919063ffffffff16565b8051909150156130e6578080602001905160208110156150a657600080fd5b50516130e65760405162461bcd60e51b815260040180806020018281038252602a81526020018061547d602a913960400191505060405180910390fd5b60606150f284846000856150fa565b949350505050565b60608247101561513b5760405162461bcd60e51b815260040180806020018281038252602681526020018061535f6026913960400191505060405180910390fd5b6151448561524b565b615195576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106151d45780518252601f1990920191602091820191016151b5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615236576040519150601f19603f3d011682016040523d82523d6000602084013e61523b565b606091505b509150915061203b828286615251565b3b151590565b60608315615260575081614d30565b8251156152705782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315614f8a578181015183820152602001614f7256fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734143434553533a206f6e6c79206f6e654c5020676f7665726e616e6365000000696e73756666696369656e7420636f6c6c61746572616c207265736572766573202d2074727920616e6f7468657220636f6c6c61746572616c73656e6465722068617320696e73756666696369656e74207374696d756c75732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c6d696e696d756d20726566726573682074696d65206d7573742062652076616c69646f6e6557494e473a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616374696f6e20746f6f20736f6f6e202d20706c656173652077616974206120666577206d6f726520626c6f636b7373656e6465722068617320696e73756666696369656e7420636f6c6c61746572616c2062616c616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564616374696f6e20746f6f20736f6f6e202d20706c65617365207761697420612066657720626c6f636b73a26469706673582212206c6c6c07be8e48e2afdec26453a83b27b037e7fa8cc0c91bd0d558aa77d4d08564736f6c634300060c0033

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

000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000db0f18081b505a7de20b18ac41856bcb4ba86a1a0000000000000000000000000000000000000000000000000000000000000009

-----Decoded View---------------
Arg [0] : reserveRatio_ (uint256): 100000000000
Arg [1] : stimulus_ (address): 0xDb0f18081b505A7DE20B18ac41856BCB4Ba86A1a
Arg [2] : stimulusDecimals_ (uint256): 9

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [1] : 000000000000000000000000db0f18081b505a7de20b18ac41856bcb4ba86a1a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009


Deployed Bytecode Sourcemap

37431:29842:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62002:872;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62002:872:0;;;;;;-1:-1:-1;;;;;62002:872:0;;:::i;:::-;;25728:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50703:304;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50703:304:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53539:890;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53539:890:0;;:::i;39504:27::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;38225:29;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;38225:29:0;;;;;;;;;;;;;;37547:32;;;;;;;;;;;;;:::i;39213:18::-;;;;;;;;;;;;;:::i;43367:22::-;;;;;;;;;;;;;:::i;37978:31::-;;;;;;;;;;;;;:::i;47836:141::-;;;;;;;;;;;;;:::i;58858:601::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58858:601:0;;;;;;-1:-1:-1;;;;;58858:601:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;66620:648;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66620:648:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66620:648:0;;;;;;;;-1:-1:-1;66620:648:0;;-1:-1:-1;;66620:648:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66620:648:0;;-1:-1:-1;66620:648:0;;-1:-1:-1;;;;;66620:648:0:i;49605:456::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49605:456:0;;;;;;;;;;;;;;;;;:::i;38545:32::-;;;;;;;;;;;;;:::i;39285:25::-;;;;;;;;;;;;;:::i;26655:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55493:213;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55493:213:0;;:::i;51380:330::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51380:330:0;;;;;;;;:::i;52486:238::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52486:238:0;;;;;;;;;;:::i;42368:56::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42368:56:0;-1:-1:-1;;;;;42368:56:0;;:::i;43893:27::-;;;;;;;;;;;;;:::i;38067:29::-;;;;;;;;;;;;;:::i;52978:216::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52978:216:0;;:::i;63451:1476::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;63451:1476:0;;;;;;;;:::i;38141:35::-;;;;;;;;;;;;;:::i;46394:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46394:156:0;-1:-1:-1;;;;;46394:156:0;;:::i;48098:155::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48098:155:0;-1:-1:-1;;;;;48098:155:0;;:::i;36312:148::-;;;;;;;;;;;;;:::i;55272:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55272:213:0;;:::i;53272:172::-;;;;;;;;;;;;;:::i;56731:235::-;;;;;;;;;;;;;:::i;65856:197::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;65856:197:0;;;;;;;;:::i;65472:209::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;65472:209:0;;;;;;;;:::i;55714:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55714:115:0;;:::i;39402:30::-;;;;;;;;;;;;;:::i;35670:79::-;;;;;;;;;;;;;:::i;47602:163::-;;;;;;;;;;;;;:::i;37717:33::-;;;;;;;;;;;;;:::i;59599:1752::-;;;;;;;;;;;;;;;;-1:-1:-1;59599:1752:0;;;;;;-1:-1:-1;;;;;59599:1752:0;;:::i;25930:87::-;;;;;;;;;;;;;:::i;44335:712::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44335:712:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;37906:23::-;;;;;;;;;;;;;:::i;52732:238::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52732:238:0;;;;;;;;;;:::i;56157:261::-;;;;;;;;;;;;;:::i;38584:24::-;;;;;;;;;;;;;:::i;51972:506::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51972:506:0;;;;;;;;:::i;48479:371::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48479:371:0;;;;;;;;:::i;57390:1460::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57390:1460:0;;;;;;-1:-1:-1;;;;;57390:1460:0;;:::i;39916:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39916:32:0;;:::i;46214:146::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46214:146:0;-1:-1:-1;;;;;46214:146:0;;:::i;61702:153::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61702:153:0;;:::i;43236:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43236:58:0;-1:-1:-1;;;;;43236:58:0;;:::i;46978:565::-;;;;;;;;;;;;;:::i;46602:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46602:368:0;-1:-1:-1;;;;;46602:368:0;;:::i;43866:20::-;;;;;;;;;;;;;:::i;49157:186::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49157:186:0;;;;;;;;;;:::i;42489:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42489:57:0;-1:-1:-1;;;;;42489:57:0;;:::i;45057:374::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45057:374:0;;;;;;;;:::i;61425:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61425:203:0;;:::i;39788:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39788:53:0;-1:-1:-1;;;;;39788:53:0;;:::i;43124:52::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43124:52:0;-1:-1:-1;;;;;43124:52:0;;:::i;43396:26::-;;;;;;;;;;;;;:::i;45510:134::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45510:134:0;;:::i;56490:233::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56490:233:0;-1:-1:-1;;;;;56490:233:0;;:::i;55901:248::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55901:248:0;-1:-1:-1;;;;;55901:248:0;;:::i;42244:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42244:54:0;-1:-1:-1;;;;;42244:54:0;;:::i;45703:427::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45703:427:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;36615:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36615:244:0;-1:-1:-1;;;;;36615:244:0;;:::i;39730:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39730:51:0;-1:-1:-1;;;;;39730:51:0;;:::i;38288:35::-;;;;;;;;;;;;;:::i;37820:33::-;;;;;;;;;;;;;:::i;62002:872::-;21643:1;22249:7;;:19;;22241:63;;;;;-1:-1:-1;;;22241:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21643:1;22382:7;:18;40219:14:::1;::::0;-1:-1:-1;;;;;40219:14:0::1;40211:37:::0;40207:1069:::1;;40357:23;::::0;-1:-1:-1;;;40357:23:0;::::1;;;40353:70;;;40399:14;;;;;;;;;-1:-1:-1::0;;;;;40399:14:0::1;-1:-1:-1::0;;;;;40382:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40353:70;40444:23;::::0;-1:-1:-1;;;40444:23:0;::::1;;;40440:70;;;40486:14;;;;;;;;;-1:-1:-1::0;;;;;40486:14:0::1;-1:-1:-1::0;;;;;40469:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40440:70;40532:6;40527:239;40548:15;:22:::0;40544:26;::::1;40527:239;;;40599:18;:38;40618:15;40634:1;40618:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40618:18:0::1;40599:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40642:23;:43;40666:15;40682:1;40666:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40666:18:0::1;40642:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40641:44;40599:86;40595:155;;;40704:16;:36;40721:15;40737:1;40721:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40721:18:0;;::::1;40704:36:::0;;;;::::1;::::0;;;;;;;;;;;40687:63;;-1:-1:-1;;;40687:63:0;;;;40704:36;::::1;::::0;40687:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40721:18;40687:63;;;;;;40721:18;40704:36;40687:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40595:155;40572:3;;40527:239;;;;40889:18;;40867;;40849:15;:36;:58;40845:420;;40988:11;40969:16;:14;:16::i;:::-;:30;40965:228;;;41024:50;41040:33;41057:15;;41040:12;;:16;;:33;;;;:::i;:::-;41024:15;:50::i;:::-;40965:228;;;41123:50;41139:33;41156:15;;41139:12;;:16;;:33;;;;:::i;41123:50::-;41234:15;41213:18;:36:::0;40845:420:::1;62172:14:::0;62164:56:::2;;;::::0;;-1:-1:-1;;;62164:56:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;62265:10;62252:24;::::0;;;:12:::2;:24;::::0;;;;;62239:37;::::2;;62231:70;;;::::0;;-1:-1:-1;;;62231:70:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;62231:70:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;62320:36:0;::::2;;::::0;;;:24:::2;:36;::::0;;;;;::::2;;62312:79;;;::::0;;-1:-1:-1;;;62312:79:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;62435:9;::::0;62421:10:::2;62411:21;::::0;;;:9:::2;:21;::::0;;;;;62449:12:::2;62411:33:::0;::::2;62410:51;;62402:106;;;;-1:-1:-1::0;;;62402:106:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62563:12;::::0;:27:::2;::::0;62580:9;62563:16:::2;:27::i;:::-;62548:12;:42:::0;62641:10:::2;62628:24;::::0;;;:12:::2;:24;::::0;;;;;:39:::2;::::0;62657:9;62628:28:::2;:39::i;:::-;62614:10;62601:24;::::0;;;:12:::2;:24;::::0;;;;;;;:66;;;;62712:17:::2;:29:::0;;;;:44:::2;::::0;62746:9;62712:33:::2;:44::i;:::-;62698:10;62680:29;::::0;;;:17:::2;:29;::::0;;;;;;;:76;;;;62769:9:::2;:21:::0;;;;;62793:12:::2;62769:36:::0;;62821:45;;;;;;;62680:29;;-1:-1:-1;;;;;;;;;;;62821:45:0;;;;;;;;;::::2;-1:-1:-1::0;;21599:1:0;22561:7;:22;62002:872::o;25728:83::-;25798:5;25791:12;;;;;;;;-1:-1:-1;;25791:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25765:13;;25791:12;;25798:5;;25791:12;;25798:5;25791:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25728:83;:::o;50703:304::-;50863:4;50810:7;-1:-1:-1;;;;;38830:18:0;;38822:27;;;;;;-1:-1:-1;;;;;38868:19:0;;38882:4;38868:19;;38860:28;;;;;;40219:14:::1;::::0;-1:-1:-1;;;;;40219:14:0::1;40211:37:::0;40207:1069:::1;;40357:23;::::0;-1:-1:-1;;;40357:23:0;::::1;;;40353:70;;;40399:14;;;;;;;;;-1:-1:-1::0;;;;;40399:14:0::1;-1:-1:-1::0;;;;;40382:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40353:70;40444:23;::::0;-1:-1:-1;;;40444:23:0;::::1;;;40440:70;;;40486:14;;;;;;;;;-1:-1:-1::0;;;;;40486:14:0::1;-1:-1:-1::0;;;;;40469:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40440:70;40532:6;40527:239;40548:15;:22:::0;40544:26;::::1;40527:239;;;40599:18;:38;40618:15;40634:1;40618:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40618:18:0::1;40599:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40642:23;:43;40666:15;40682:1;40666:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40666:18:0::1;40642:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40641:44;40599:86;40595:155;;;40704:16;:36;40721:15;40737:1;40721:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40721:18:0;;::::1;40704:36:::0;;;;::::1;::::0;;;;;;;;;;;40687:63;;-1:-1:-1;;;40687:63:0;;;;40704:36;::::1;::::0;40687:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40721:18;40687:63;;;;;;40721:18;40704:36;40687:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40595:155;40572:3;;40527:239;;;;40889:18;;40867;;40849:15;:36;:58;40845:420;;40988:11;40969:16;:14;:16::i;:::-;:30;40965:228;;;41024:50;41040:33;41057:15;;41040:12;;:16;;:33;;;;:::i;41024:50::-;40965:228;;;41123:50;41139:33;41156:15;;41139:12;;:16;;:33;;;;:::i;41123:50::-;41234:15;41213:18;:36:::0;40845:420:::1;50897:10:::2;50885:23;::::0;;;:11:::2;:23;::::0;;;;;;;-1:-1:-1;;;;;50885:32:0;::::2;::::0;;;;;;;;;;:40;;;50941:36;;;;;;;50885:32;;50897:10;50941:36:::2;::::0;;;;;;;;;::::2;-1:-1:-1::0;50995:4:0::2;::::0;50703:304;-1:-1:-1;;;50703:304:0:o;53539:890::-;43799:5;;53638:4;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;53668:9;53660:56:::1;;;;-1:-1:-1::0;;;53660:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53729:18;:25:::0;;;53808:6:::1;53803:292;53824:15;:22:::0;53820:26;::::1;53803:292;;;53871:18;:38;53890:15;53906:1;53890:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53890:18:0::1;53871:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;53914:23;:43;53938:15;53954:1;53938:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53938:18:0::1;53914:43:::0;;;::::1;::::0;;;;;;;;;::::1;;53913:44;53871:86;:135;;;;;53961:25;:45;53987:15;54003:1;53987:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53987:18:0::1;53961:45:::0;;;::::1;::::0;;;;;;;;;::::1;;53871:135;53867:216;;;54025:16;:36;54042:15;54058:1;54042:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;54042:18:0;;::::1;54025:36:::0;;;;::::1;::::0;;;;;;;;;;;54008:75;;-1:-1:-1;;;54008:75:0;;::::1;::::0;::::1;::::0;;;;;54025:36;::::1;::::0;54008:69:::1;::::0;:75;;;;;54042:18;54008:75;;;;;;54042:18;54025:36;54008:75;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53867:216;53848:3;;53803:292;;;-1:-1:-1::0;54111:23:0::1;::::0;-1:-1:-1;;;54111:23:0;::::1;;;54107:82;;;54153:14;::::0;54136:53:::1;::::0;;-1:-1:-1;;;54136:53:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;54153:14:0;;::::1;::::0;54136:47:::1;::::0;:53;;;;;54153:14:::1;::::0;54136:53;;;;;;;;54153:14;;54136:53;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54107:82;54206:23;::::0;-1:-1:-1;;;54206:23:0;::::1;;;54202:82;;;54248:14;::::0;54231:53:::1;::::0;;-1:-1:-1;;;54231:53:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;54248:14:0;;::::1;::::0;54231:47:::1;::::0;:53;;;;;54248:14:::1;::::0;54231:53;;;;;;;;54248:14;;54231:53;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54202:82;54372:27;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;54417:4:0::1;43849:1;53539:890:::0;;;:::o;39504:27::-;;;;:::o;38225:29::-;;;-1:-1:-1;;;;;38225:29:0;;:::o;37547:32::-;;;;:::o;39213:18::-;;;-1:-1:-1;;;;;39213:18:0;;:::o;43367:22::-;;;;:::o;37978:31::-;;;;:::o;47836:141::-;47957:12;;47836:141;:::o;58858:601::-;58973:7;;59015:14;59007:51;;;;;-1:-1:-1;;;59007:51:0;;;;;;;;;;;;-1:-1:-1;;;59007:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;59077:36:0;;;;;;:24;:36;;;;;;;;59069:79;;;;;-1:-1:-1;;;59069:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59266:30:0;;59161:24;59266:30;;;:18;:30;;;;;;59216:11;;59188:129;;59302:14;;59188:109;;59302:2;59260:36;;59188:67;;59202:52;;59233:20;;59188:109;;59202:9;;:13;:26::i;:::-;:30;;:52::i;:::-;59188:9;;:13;:67::i;:::-;:71;;:109::i;:129::-;59161:156;;59347:63;59381:28;59398:10;59381:16;:28::i;:::-;59347:29;:16;59368:7;59347:20;:29::i;:63::-;59328:82;-1:-1:-1;59449:1:0;;-1:-1:-1;;58858:601:0;;;;;;:::o;66620:648::-;43799:5;;66753:12;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;66778:21:::1;66822:9;66816:23;66843:1;66816:28;66812:179;;;-1:-1:-1::0;66872:4:0;66812:179:::1;;;66960:9;66944:27;;;;;;66974:4;66920:59;;;;;;-1:-1:-1::0;;;;;66920:59:0::1;;;;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;66920:59:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66909:70;;66812:179;67064:12;67078:23;67105:6;-1:-1:-1::0;;;;;67105:11:0::1;67123:5;67130:8;67105:34;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;67105:34:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67063:76;;;;67158:7;67150:80;;;;-1:-1:-1::0;;;67150:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67250:10:::0;66620:648;-1:-1:-1;;;;;;;66620:648:0:o;49605:456::-;49774:4;49726:2;-1:-1:-1;;;;;38830:18:0;;38822:27;;;;;;-1:-1:-1;;;;;38868:19:0;;38882:4;38868:19;;38860:28;;;;;;40219:14:::1;::::0;-1:-1:-1;;;;;40219:14:0::1;40211:37:::0;40207:1069:::1;;40357:23;::::0;-1:-1:-1;;;40357:23:0;::::1;;;40353:70;;;40399:14;;;;;;;;;-1:-1:-1::0;;;;;40399:14:0::1;-1:-1:-1::0;;;;;40382:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40353:70;40444:23;::::0;-1:-1:-1;;;40444:23:0;::::1;;;40440:70;;;40486:14;;;;;;;;;-1:-1:-1::0;;;;;40486:14:0::1;-1:-1:-1::0;;;;;40469:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40440:70;40532:6;40527:239;40548:15;:22:::0;40544:26;::::1;40527:239;;;40599:18;:38;40618:15;40634:1;40618:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40618:18:0::1;40599:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40642:23;:43;40666:15;40682:1;40666:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40666:18:0::1;40642:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40641:44;40599:86;40595:155;;;40704:16;:36;40721:15;40737:1;40721:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40721:18:0;;::::1;40704:36:::0;;;;::::1;::::0;;;;;;;;;;;40687:63;;-1:-1:-1;;;40687:63:0;;;;40704:36;::::1;::::0;40687:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40721:18;40687:63;;;;;;40721:18;40704:36;40687:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40595:155;40572:3;;40527:239;;;;40889:18;;40867;;40849:15;:36;:58;40845:420;;40988:11;40969:16;:14;:16::i;:::-;:30;40965:228;;;41024:50;41040:33;41057:15;;41040:12;;:16;;:33;;;;:::i;41024:50::-;40965:228;;;41123:50;41139:33;41156:15;;41139:12;;:16;;:33;;;;:::i;41123:50::-;41234:15;41213:18;:36:::0;40845:420:::1;-1:-1:-1::0;;;;;49828:17:0;::::2;;::::0;;;:11:::2;:17;::::0;;;;;;;49846:10:::2;49828:29:::0;;;;;;;;:40:::2;::::0;49862:5;49828:33:::2;:40::i;:::-;-1:-1:-1::0;;;;;49796:17:0;::::2;;::::0;;;:11:::2;:17;::::0;;;;;;;49814:10:::2;49796:29:::0;;;;;;;:72;;;;49902:18;;;:12:::2;:18:::0;;;;;:29:::2;::::0;49925:5;49902:22:::2;:29::i;:::-;-1:-1:-1::0;;;;;49881:18:0;;::::2;;::::0;;;:12:::2;:18;::::0;;;;;:50;;;;49961:16;;::::2;::::0;;;;:27:::2;::::0;49982:5;49961:20:::2;:27::i;:::-;-1:-1:-1::0;;;;;49942:16:0;;::::2;;::::0;;;:12:::2;:16;::::0;;;;;;;;:46;;;;50004:25;;;;;;;49942:16;;50004:25;;::::2;::::0;-1:-1:-1;;;;;;;;;;;50004:25:0;;;;;;;::::2;-1:-1:-1::0;50049:4:0::2;::::0;49605:456;-1:-1:-1;;;;49605:456:0:o;38545:32::-;;;;:::o;39285:25::-;;;-1:-1:-1;;;;;39285:25:0;;:::o;26655:83::-;26721:9;;;;26655:83;:::o;55493:213::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;55591:17:::1;:24:::0;;;55650:12:::1;::::0;55630:32;::::1;55626:72;;;55664:34;55680:17;;55664:15;:34::i;:::-;55493:213:::0;:::o;51380:330::-;51565:10;51496:4;51553:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51553:32:0;;;;;;;;;;:48;;51590:10;51553:36;:48::i;:::-;51530:10;51518:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51518:32:0;;;;;;;;;;;;:83;;;51617:63;;;;;;51518:32;;51617:63;;;;;;;;;;;-1:-1:-1;51698:4:0;51380:330;;;;;:::o;52486:238::-;43799:5;;52600:4;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;-1:-1:-1;52622:14:0::1;:24:::0;;-1:-1:-1;;;;;;52622:24:0::1;-1:-1:-1::0;;;;;52622:24:0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;52657:35:0::1;-1:-1:-1::0;;;52657:35:0;::::1;;::::0;;;::::1;;::::0;;-1:-1:-1;;52486:238:0:o;42368:56::-;;;;;;;;;;;;;;;:::o;43893:27::-;;;-1:-1:-1;;;;;43893:27:0;;:::o;38067:29::-;;;-1:-1:-1;;;;;38067:29:0;;:::o;52978:216::-;43799:5;;53084:4;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;53123:14:::1;::::0;53106:56:::1;::::0;;-1:-1:-1;;;53106:56:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;53123:14:0;;::::1;::::0;53106:47:::1;::::0;:56;;;;;53123:14:::1;::::0;53106:56;;;;;;;;53123:14;;53106:56;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;53182:4:0::1;::::0;52978:216;-1:-1:-1;;;;;52978:216:0:o;63451:1476::-;21643:1;22249:7;;:19;;22241:63;;;;;-1:-1:-1;;;22241:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21643:1;22382:7;:18;40219:14:::1;::::0;-1:-1:-1;;;;;40219:14:0::1;40211:37:::0;40207:1069:::1;;40357:23;::::0;-1:-1:-1;;;40357:23:0;::::1;;;40353:70;;;40399:14;;;;;;;;;-1:-1:-1::0;;;;;40399:14:0::1;-1:-1:-1::0;;;;;40382:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40353:70;40444:23;::::0;-1:-1:-1;;;40444:23:0;::::1;;;40440:70;;;40486:14;;;;;;;;;-1:-1:-1::0;;;;;40486:14:0::1;-1:-1:-1::0;;;;;40469:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40440:70;40532:6;40527:239;40548:15;:22:::0;40544:26;::::1;40527:239;;;40599:18;:38;40618:15;40634:1;40618:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40618:18:0::1;40599:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40642:23;:43;40666:15;40682:1;40666:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40666:18:0::1;40642:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40641:44;40599:86;40595:155;;;40704:16;:36;40721:15;40737:1;40721:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40721:18:0;;::::1;40704:36:::0;;;;::::1;::::0;;;;;;;;;;;40687:63;;-1:-1:-1;;;40687:63:0;;;;40704:36;::::1;::::0;40687:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40721:18;40687:63;;;;;;40721:18;40704:36;40687:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40595:155;40572:3;;40527:239;;;;40889:18;;40867;;40849:15;:36;:58;40845:420;;40988:11;40969:16;:14;:16::i;:::-;:30;40965:228;;;41024:50;41040:33;41057:15;;41040:12;;:16;;:33;;;;:::i;41024:50::-;40965:228;;;41123:50;41139:33;41156:15;;41139:12;;:16;;:33;;;;:::i;41123:50::-;41234:15;41213:18;:36:::0;40845:420:::1;-1:-1:-1::0;;;;;63598:36:0;::::2;;::::0;;;:24:::2;:36;::::0;;;;;::::2;;63590:79;;;::::0;;-1:-1:-1;;;63590:79:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;63713:9;::::0;63699:10:::2;63689:21;::::0;;;:9:::2;:21;::::0;;;;;63727:12:::2;63689:33:::0;::::2;63688:51;;63680:106;;;;-1:-1:-1::0;;;63680:106:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63837:10;63799:17;63819:29:::0;;;:17:::2;:29;::::0;;;;;63867:14;63859:57:::2;;;::::0;;-1:-1:-1;;;63859:57:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;63945:9;63935:6;:19;;63927:62;;;::::0;;-1:-1:-1;;;63927:62:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;64052:10;64034:29;::::0;;;:17:::2;:29;::::0;;;;;:41:::2;::::0;64068:6;64034:33:::2;:41::i;:::-;64020:10;64002:29;::::0;;;:17:::2;:29;::::0;;;;;;;:73;;;;-1:-1:-1;;;;;64258:30:0;::::2;::::0;;:18:::2;:30:::0;;;;;;64208:11:::2;::::0;64186:123:::2;::::0;64294:14;;64186:103:::2;::::0;64294:2:::2;64252:36;::::0;64186:61:::2;::::0;64197:49:::2;::::0;64225:20;;64186:103;;64197:6;;:10:::2;:23::i;:49::-;64186:6:::0;;:10:::2;:61::i;:123::-;64159:150;;64339:63;64373:28;64390:10;64373:16;:28::i;64339:63::-;64320:82;;64415:22;64585:10;-1:-1:-1::0;;;;;64578:28:0::2;;64615:4;64578:43;;;;;;;;;;;;;-1:-1:-1::0;;;;;64578:43:0::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;64578:43:0;64558:63;::::2;;64550:133;;;;-1:-1:-1::0;;;64550:133:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64696:72;64726:10;64739;64751:16;64696:22;:72::i;:::-;64791:10;64781:21;::::0;;;:9:::2;:21;::::0;;;;;;;;64805:12:::2;64781:36:::0;;64844:8:::2;::::0;64835:84;;-1:-1:-1;;;;;64844:8:0;;::::2;64835:84:::0;;;;::::2;::::0;;;;;;::::2;::::0;;;;;;;;;;;;;;;;;;;;;;;::::2;::::0;;;;;;;::::2;-1:-1:-1::0;;21599:1:0;22561:7;:22;-1:-1:-1;;;63451:1476:0:o;38141:35::-;;;-1:-1:-1;;;38141:35:0;;;;;:::o;46394:156::-;-1:-1:-1;;;;;46518:24:0;46486:7;46518:24;;;:17;:24;;;;;;;46394:156::o;48098:155::-;-1:-1:-1;;;;;48228:17:0;48196:7;48228:17;;;:12;:17;;;;;;;48098:155::o;36312:148::-;35892:12;:10;:12::i;:::-;35882:6;;;;;-1:-1:-1;;;;;35882:6:0;;;:22;;;35874:67;;;;;-1:-1:-1;;;35874:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36403:6:::1;::::0;36382:40:::1;::::0;36419:1:::1;::::0;36403:6:::1;::::0;::::1;-1:-1:-1::0;;;;;36403:6:0::1;::::0;36382:40:::1;::::0;36419:1;;36382:40:::1;36433:6;:19:::0;;-1:-1:-1;;;;;;36433:19:0::1;::::0;;36312:148::o;55272:213::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;55370:17:::1;:24:::0;;;55429:12:::1;::::0;55409:32;::::1;55405:72;;;55443:34;55459:17;;55443:15;:34::i;53272:172::-:0;53395:14;;53378:49;;;-1:-1:-1;;;53378:49:0;;;;53346:7;;-1:-1:-1;;;;;53395:14:0;;53378:47;;:49;;;;;;;;;;;;;;53395:14;53378:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53378:49:0;;-1:-1:-1;53272:172:0;:::o;56731:235::-;56808:10;;-1:-1:-1;;;;;56808:10:0;56794;:24;56786:45;;;;;-1:-1:-1;;;56786:45:0;;;;;;;;;;;;-1:-1:-1;;;56786:45:0;;;;;;;;;;;;;;;56859:3;;;56879:10;;;-1:-1:-1;;;;;;56873:16:0;;;-1:-1:-1;;;;;56879:10:0;;;56873:16;;;;;;;;56900:23;;;;;56939:19;;;56859:3;;;56939:19;;;56954:3;;;;56939:19;;;;;;;;;;;;;;;;56731:235;:::o;65856:197::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;66017:8:::1;::::0;65987:58:::1;::::0;-1:-1:-1;;;;;66017:8:0::1;66028::::0;66038:6;65987:22:::1;:58::i;:::-;65856:197:::0;;:::o;65472:209::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;65610:12:::1;::::0;;65572::::1;65610::::0;;;::::1;::::0;::::1;::::0;;;-1:-1:-1;;;;;65589:7:0;::::1;::::0;65603:5;;65589:34:::1;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;65589:34:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65571:52;;;65642:7;65634:39;;;::::0;;-1:-1:-1;;;65634:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;65634:39:0;;;;;;;;;;;;;::::1;;43849:1;65472:209:::0;;:::o;55714:115::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;55805:9:::1;:16:::0;55714:115::o;39402:30::-;;;;:::o;35670:79::-;35735:6;;;;;-1:-1:-1;;;;;35735:6:0;;35670:79::o;47602:163::-;47725:14;;47708:49;;;-1:-1:-1;;;47708:49:0;;;;47676:7;;-1:-1:-1;;;;;47725:14:0;;47708:47;;:49;;;;;;;;;;;;;;47725:14;47708:49;;;;;;;;;;37717:33;;;;:::o;59599:1752::-;21643:1;22249:7;;:19;;22241:63;;;;;-1:-1:-1;;;22241:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21643:1;22382:7;:18;40219:14:::1;::::0;-1:-1:-1;;;;;40219:14:0::1;40211:37:::0;40207:1069:::1;;40357:23;::::0;-1:-1:-1;;;40357:23:0;::::1;;;40353:70;;;40399:14;;;;;;;;;-1:-1:-1::0;;;;;40399:14:0::1;-1:-1:-1::0;;;;;40382:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40353:70;40444:23;::::0;-1:-1:-1;;;40444:23:0;::::1;;;40440:70;;;40486:14;;;;;;;;;-1:-1:-1::0;;;;;40486:14:0::1;-1:-1:-1::0;;;;;40469:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40440:70;40532:6;40527:239;40548:15;:22:::0;40544:26;::::1;40527:239;;;40599:18;:38;40618:15;40634:1;40618:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40618:18:0::1;40599:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40642:23;:43;40666:15;40682:1;40666:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40666:18:0::1;40642:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40641:44;40599:86;40595:155;;;40704:16;:36;40721:15;40737:1;40721:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40721:18:0;;::::1;40704:36:::0;;;;::::1;::::0;;;;;;;;;;;40687:63;;-1:-1:-1;;;40687:63:0;;;;40704:36;::::1;::::0;40687:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40721:18;40687:63;;;;;;40721:18;40704:36;40687:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40595:155;40572:3;;40527:239;;;;40889:18;;40867;;40849:15;:36;:58;40845:420;;40988:11;40969:16;:14;:16::i;:::-;:30;40965:228;;;41024:50;41040:33;41057:15;;41040:12;;:16;;:33;;;;:::i;41024:50::-;40965:228;;;41123:50;41139:33;41156:15;;41139:12;;:16;;:33;;;;:::i;41123:50::-;41234:15;41213:18;:36:::0;40845:420:::1;-1:-1:-1::0;;;;;59782:30:0;::::2;;::::0;;;:18:::2;:30;::::0;;;;;::::2;;59774:73;;;::::0;;-1:-1:-1;;;59774:73:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;59866:14:::0;59858:52:::2;;;::::0;;-1:-1:-1;;;59858:52:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;60003:9;::::0;59989:10:::2;59979:21;::::0;;;:9:::2;:21;::::0;;;;;60017:12:::2;59979:33:::0;::::2;59978:51;;59970:111;;;;-1:-1:-1::0;;;59970:111:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60142:24;60168:22:::0;60194:40:::2;60212:9;60223:10;60194:17;:40::i;:::-;60141:93;;;;60280:10;-1:-1:-1::0;;;;;60273:28:0::2;;60302:10;60273:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;60273:40:0::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;60273:40:0;60253:60;::::2;;60245:115;;;;-1:-1:-1::0;;;60245:115:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60404:8;::::0;60397:38:::2;::::0;;-1:-1:-1;;;60397:38:0;;60424:10:::2;60397:38;::::0;::::2;::::0;;;-1:-1:-1;;;;;60404:8:0;;::::2;::::0;60397:26:::2;::::0;:38;;;;;::::2;::::0;;;;;;;;;60404:8;60397:38;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;60397:38:0;60379:56;::::2;;60371:109;;;;-1:-1:-1::0;;;60371:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60539:91;60573:10;60586;60606:4;60613:16;60539:26;:91::i;:::-;60675:8;::::0;60641:87:::2;::::0;-1:-1:-1;;;;;60675:8:0::2;60686:10;60706:4;60713:14:::0;60641:26:::2;:87::i;:::-;60781:7;::::0;60753:63:::2;::::0;60767:48:::2;::::0;60794:20;;60767:22:::2;::::0;:9;;:13:::2;:22::i;:48::-;60753:9:::0;;:13:::2;:63::i;:::-;-1:-1:-1::0;;;;;60912:29:0;::::2;;::::0;;;:17:::2;:29;::::0;;;;;60741:75;;-1:-1:-1;60884:85:0::2;::::0;60898:70:::2;::::0;60947:20;;60898:44:::2;::::0;60741:75;;60898:13:::2;:44::i;60884:85::-;61026:12;::::0;60872:97;;-1:-1:-1;61026:27:0::2;::::0;60872:97;61026:16:::2;:27::i;:::-;61011:12;:42:::0;61104:10:::2;61091:24;::::0;;;:12:::2;:24;::::0;;;;;:39:::2;::::0;61120:9;61091:28:::2;:39::i;:::-;61077:10;61064:24;::::0;;;:12:::2;:24;::::0;;;;;;;:66;;;;61148:45;;;;;;;61077:10;;61064:24;;-1:-1:-1;;;;;;;;;;;61148:45:0;;;;;;;;::::2;61216:10;61206:21;::::0;;;:9:::2;:21;::::0;;;;;;;;61230:12:::2;61206:36:::0;;61265:8:::2;::::0;61260:83;;-1:-1:-1;;;;;61265:8:0;;::::2;61260:83:::0;;;;::::2;::::0;;;;;;::::2;::::0;;;;;;;;;;;;;;;;;;;;;;;::::2;::::0;;;;;;;::::2;-1:-1:-1::0;;21599:1:0;22561:7;:22;-1:-1:-1;;59599:1752:0:o;25930:87::-;26002:7;25995:14;;;;;;;;-1:-1:-1;;25995:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25969:13;;25995:14;;26002:7;;25995:14;;26002:7;25995:14;;;;;;;;;;;;;;;;;;;;;;;;44335:712;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44567:37:0;::::1;;::::0;;;:24:::1;:37;::::0;;;;;::::1;;44562:77;;44606:15;:33:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;44606:33:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;44606:33:0::1;-1:-1:-1::0;;;;;44606:33:0;::::1;;::::0;;44562:77:::1;-1:-1:-1::0;;;;;44652:37:0;;::::1;;::::0;;;:24:::1;:37;::::0;;;;;;;:44;;44692:4:::1;-1:-1:-1::0;;44652:44:0;;::::1;::::0;::::1;::::0;;;44707:18:::1;:31:::0;;;;;:38;;;::::1;::::0;;::::1;::::0;;;44756:23:::1;:36:::0;;;;;:52;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;44819:18:::1;:31:::0;;;;;:52;;;;44882:16:::1;:29:::0;;;;;:46;;-1:-1:-1;;;;;;44882:46:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;;44939:17:::1;:30:::0;;;;;:34;;;44984:25:::1;:38:::0;;;;;;;:55;;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;44335:712::o;37906:23::-;;;-1:-1:-1;;;;;37906:23:0;;:::o;52732:238::-;43799:5;;52846:4;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;-1:-1:-1;52868:14:0::1;:24:::0;;-1:-1:-1;;;;;;52868:24:0::1;-1:-1:-1::0;;;;;52868:24:0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;52903:35:0::1;-1:-1:-1::0;;;52903:35:0;::::1;;::::0;;;::::1;;::::0;;-1:-1:-1;;52732:238:0:o;56157:261::-;56236:12;;-1:-1:-1;;;;;56236:12:0;56222:10;:26;56214:47;;;;;-1:-1:-1;;;56214:47:0;;;;;;;;;;;;-1:-1:-1;;;56214:47:0;;;;;;;;;;;;;;;56291:5;;;56323:12;;;-1:-1:-1;;;;;;56315:20:0;;;-1:-1:-1;;;;;56323:12:0;;;56315:20;;;;;;;;56346:25;;;;;56387:23;;;56291:5;;;56387:23;;;56404:5;;;;56387:23;;;;;;;;;;;;;;;;56157:261;:::o;38584:24::-;;;;:::o;51972:506::-;52146:10;52093:4;52134:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;52134:32:0;;;;;;;;;;52181:27;;;52177:193;;52237:10;52260:1;52225:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;52225:32:0;;;;;;;;;:36;52177:193;;;52329:29;:8;52342:15;52329:12;:29::i;:::-;52306:10;52294:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;52294:32:0;;;;;;;;;:64;52177:193;52394:10;52415:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;52385:63:0;;52415:32;;;;;;;;;;;52385:63;;;;;;;;;52394:10;52385:63;;;;;;;;;;;-1:-1:-1;52466:4:0;;51972:506;-1:-1:-1;;;51972:506:0:o;48479:371::-;48630:4;48582:2;-1:-1:-1;;;;;38830:18:0;;38822:27;;;;;;-1:-1:-1;;;;;38868:19:0;;38882:4;38868:19;;38860:28;;;;;;40219:14:::1;::::0;-1:-1:-1;;;;;40219:14:0::1;40211:37:::0;40207:1069:::1;;40357:23;::::0;-1:-1:-1;;;40357:23:0;::::1;;;40353:70;;;40399:14;;;;;;;;;-1:-1:-1::0;;;;;40399:14:0::1;-1:-1:-1::0;;;;;40382:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40353:70;40444:23;::::0;-1:-1:-1;;;40444:23:0;::::1;;;40440:70;;;40486:14;;;;;;;;;-1:-1:-1::0;;;;;40486:14:0::1;-1:-1:-1::0;;;;;40469:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40440:70;40532:6;40527:239;40548:15;:22:::0;40544:26;::::1;40527:239;;;40599:18;:38;40618:15;40634:1;40618:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40618:18:0::1;40599:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40642:23;:43;40666:15;40682:1;40666:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40666:18:0::1;40642:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40641:44;40599:86;40595:155;;;40704:16;:36;40721:15;40737:1;40721:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40721:18:0;;::::1;40704:36:::0;;;;::::1;::::0;;;;;;;;;;;40687:63;;-1:-1:-1;;;40687:63:0;;;;40704:36;::::1;::::0;40687:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40721:18;40687:63;;;;;;40721:18;40704:36;40687:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40595:155;40572:3;;40527:239;;;;40889:18;;40867;;40849:15;:36;:58;40845:420;;40988:11;40969:16;:14;:16::i;:::-;:30;40965:228;;;41024:50;41040:33;41057:15;;41040:12;;:16;;:33;;;;:::i;41024:50::-;40965:228;;;41123:50;41139:33;41156:15;;41139:12;;:16;;:33;;;;:::i;41123:50::-;41234:15;41213:18;:36:::0;40845:420:::1;48692:10:::2;48679:24;::::0;;;:12:::2;:24;::::0;;;;;:35:::2;::::0;48708:5;48679:28:::2;:35::i;:::-;48665:10;48652:24;::::0;;;:12:::2;:24;::::0;;;;;:62;;;;-1:-1:-1;;;;;48744:16:0;::::2;::::0;;;;:27:::2;::::0;48765:5;48744:20:::2;:27::i;:::-;-1:-1:-1::0;;;;;48725:16:0;::::2;;::::0;;;:12:::2;:16;::::0;;;;;;;;:46;;;;48787:31;;;;;;;48725:16;;48796:10:::2;::::0;-1:-1:-1;;;;;;;;;;;48787:31:0;;;;;;;;::::2;-1:-1:-1::0;48838:4:0::2;::::0;48479:371;-1:-1:-1;;;48479:371:0:o;57390:1460::-;57504:7;;57546:14;57538:51;;;;;-1:-1:-1;;;57538:51:0;;;;;;;;;;;;-1:-1:-1;;;57538:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;57608:30:0;;;;;;:18;:30;;;;;;;;57600:73;;;;;-1:-1:-1;;;57600:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;57686:19;57708:16;:14;:16::i;:::-;57686:38;-1:-1:-1;57756:16:0;57752:348;;-1:-1:-1;;;;;57891:30:0;;57842:26;57891:30;;;:18;:30;;;;;;57871:71;;57927:14;;57871:51;;:9;;57927:2;57885:36;57871:13;:51::i;:71::-;57842:100;;57978:65;58014:28;58031:10;58014:16;:28::i;57978:65::-;57957:86;-1:-1:-1;58086:1:0;;-1:-1:-1;58058:30:0;;-1:-1:-1;;58058:30:0;57752:348;58167:24;58194:112;37709:1;58291:2;:14;58194:92;58255:18;:30;58274:10;-1:-1:-1;;;;;58255:30:0;-1:-1:-1;;;;;58255:30:0;;;;;;;;;;;;;58249:2;:36;58194:50;58226:17;;58194:27;58208:12;;58194:9;:13;;:27;;;;:::i;:112::-;58167:139;;58336:63;58370:28;58387:10;58370:16;:28::i;58336:63::-;58424:14;;58317:82;;-1:-1:-1;;;;;;58424:14:0;58412:71;;58463:16;-1:-1:-1;58481:1:0;;-1:-1:-1;58455:28:0;;-1:-1:-1;58455:28:0;58412:71;58496:37;58536:73;58591:17;;58536:50;58550:35;58572:12;;58550:17;;:21;;:35;;;;:::i;:::-;58536:9;;:13;:50::i;:73::-;58496:113;;58622:22;58647:107;37709:1;58739:2;:14;58647:87;58717:16;;58711:2;:22;58647:59;58694:11;58647:42;58681:7;58647:29;:33;;:42;;;;:::i;:107::-;58809:16;;;;-1:-1:-1;57390:1460:0;;-1:-1:-1;;;;;;57390:1460:0:o;39916:32::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39916:32:0;;-1:-1:-1;39916:32:0;:::o;46214:146::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46313:31:0::1;46347:5;46313:31:::0;;;:18:::1;:31;::::0;;;;:39;;-1:-1:-1;;46313:39:0::1;::::0;;46214:146::o;61702:153::-;42051:3;;-1:-1:-1;;;;;42051:3:0;42037:10;:17;42029:58;;;;;-1:-1:-1;;;42029:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61796:11:::1;:18:::0;;;61830:17:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;61702:153:::0;:::o;43236:58::-;;;;;;;;;;;;;;;:::o;46978:565::-;47032:7;;;47095:405;47116:15;:22;47112:26;;47095:405;;;47232:1;-1:-1:-1;;;;;47202:32:0;:15;47218:1;47202:18;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47202:18:0;:32;47198:289;;47276:169;47437:7;47276:156;47395:36;47412:15;47428:1;47412:18;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47412:18:0;47395:16;:36::i;:::-;47276:114;47351:18;:38;47370:15;47386:1;47370:18;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47370:18:0;-1:-1:-1;;;;;47351:38:0;-1:-1:-1;;;;;47351:38:0;;;;;;;;;;;;;47345:2;:44;47276:64;47332:7;47283:15;47299:1;47283:18;;;;;;;;;;;;;;;;;;;47276:51;;;-1:-1:-1;;;47276:51:0;;47321:4;47276:51;;;;;;-1:-1:-1;;;;;47283:18:0;;;;47276:36;;:51;;;;;;;;;;47283:18;47276:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47276:51:0;;:55;:64::i;:169::-;47254:191;;;;47198:289;47140:3;;47095:405;;;-1:-1:-1;47517:18:0;-1:-1:-1;46978:565:0;:::o;46602:368::-;-1:-1:-1;;;;;46698:37:0;;46670:7;46698:37;;;:24;:37;;;;;;;;46690:80;;;;;-1:-1:-1;;;46690:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46787:36:0;;;;;;:23;:36;;;;;;;;46783:87;;;46841:11;-1:-1:-1;;;;;46832:36:0;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46832:38:0;;-1:-1:-1;46825:45:0;;46783:87;-1:-1:-1;;;;;46915:29:0;;;;;;;:16;:29;;;;;;;;;;46898:64;;-1:-1:-1;;;46898:64:0;;;;46915:29;;;46898:62;;:64;;;;;46915:29;46898:64;;;;;;46915:29;46898:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46898:64:0;;46602:368;-1:-1:-1;;46602:368:0:o;43866:20::-;;;-1:-1:-1;;;;;43866:20:0;;:::o;49157:186::-;-1:-1:-1;;;;;49307:19:0;;;49275:7;49307:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;49157:186::o;42489:57::-;;;;;;;;;;;;;;;:::o;45057:374::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45182:31:0;::::1;;::::0;;;:18:::1;:31;::::0;;;;;::::1;;45174:62;;;::::0;;-1:-1:-1;;;45174:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45174:62:0;;;;;;;;;;;;;::::1;;45263:13;45255:4;:21;;45247:51;;;::::0;;-1:-1:-1;;;45247:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45247:51:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;45338:30:0;::::1;;::::0;;;:17:::1;:30;::::0;;;;;;;;;45314:61;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;;;;45386:30:0;;::::1;;::::0;;;:17:::1;:30;::::0;;;;:37;45057:374::o;61425:203::-;42051:3;;-1:-1:-1;;;;;42051:3:0;42037:10;:17;42029:58;;;;;-1:-1:-1;;;42029:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61531:13:::1;61523:4;:21;;61515:51;;;::::0;;-1:-1:-1;;;61515:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;61515:51:0;;;;;;;;;;;;;::::1;;61577:7;:14:::0;;;61607:13:::1;::::0;;;;;;;::::1;::::0;;;;;;;;;::::1;61425:203:::0;:::o;39788:53::-;;;;;;;;;;;;;:::o;43124:52::-;;;;;;;;;;;;-1:-1:-1;;;;;43124:52:0;;:::o;43396:26::-;;;;:::o;45510:134::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;45609:15:::1;:27:::0;45510:134::o;56490:233::-;42051:3;;-1:-1:-1;;;;;42051:3:0;42037:10;:17;42029:58;;;;;-1:-1:-1;;;42029:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;56613:10:::1;::::0;;-1:-1:-1;;;;;56634:24:0;;::::1;-1:-1:-1::0;;;;;;56634:24:0;::::1;::::0;::::1;::::0;;;56674:41:::1;::::0;;56613:10;;;::::1;56674:41:::0;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;42098:1;56490:233:::0;:::o;55901:248::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;56027:12:::1;::::0;;-1:-1:-1;;;;;56050:28:0;;::::1;-1:-1:-1::0;;;;;;56050:28:0;::::1;::::0;::::1;::::0;;;56094:47:::1;::::0;;56027:12;;;::::1;56094:47:::0;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;43849:1;55901:248:::0;:::o;42244:54::-;;;;;;;;;;;;;:::o;45703:427::-;43799:5;;-1:-1:-1;;;;;43799:5:0;43785:10;:19;43777:61;;;;;-1:-1:-1;;;43777:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43777:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45880:31:0;::::1;;::::0;;;:18:::1;:31;::::0;;;;;::::1;;45872:62;;;::::0;;-1:-1:-1;;;45872:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45872:62:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;45945:36:0;;::::1;;::::0;;;:23:::1;:36;::::0;;;;;;;:53;;;::::1;;-1:-1:-1::0;;45945:53:0;;::::1;;::::0;;46009:16:::1;:29:::0;;;;;:46;;;;;::::1;-1:-1:-1::0;;;;;;46009:46:0;;::::1;::::0;;;::::1;::::0;;;46066:25:::1;:38:::0;;;;;;;:56;;;::::1;;::::0;;;::::1;;::::0;;45703:427::o;36615:244::-;35892:12;:10;:12::i;:::-;35882:6;;;;;-1:-1:-1;;;;;35882:6:0;;;:22;;;35874:67;;;;;-1:-1:-1;;;35874:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36704:22:0;::::1;36696:73;;;;-1:-1:-1::0;;;36696:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36806:6;::::0;36785:38:::1;::::0;-1:-1:-1;;;;;36785:38:0;;::::1;::::0;36806:6:::1;::::0;::::1;;::::0;36785:38:::1;::::0;;;::::1;36834:6;:17:::0;;-1:-1:-1;;;;;36834:17:0;;::::1;;;-1:-1:-1::0;;;;;;36834:17:0;;::::1;::::0;;;::::1;::::0;;36615:244::o;39730:51::-;;;;;;;;;;;;;;;:::o;38288:35::-;;;-1:-1:-1;;;38288:35:0;;;;;:::o;37820:33::-;;;;:::o;2368:136::-;2426:7;2453:43;2457:1;2460;2453:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2446:50;2368:136;-1:-1:-1;;;2368:136:0:o;65093:316::-;65250:17;;65237:9;:30;;:64;;;;;65284:17;;65271:9;:30;;65237:64;65233:169;;;65318:12;:24;;;65362:28;;;;;;;;;;;;;;;;;65093:316;:::o;1904:181::-;1962:7;1994:5;;;2018:6;;;;2010:46;;;;;-1:-1:-1;;;2010:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3258:471;3316:7;3561:6;3557:47;;-1:-1:-1;3591:1:0;3584:8;;3557:47;3628:5;;;3632:1;3628;:5;:1;3652:5;;;;;:10;3644:56;;;;-1:-1:-1;;;3644:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4205:132;4263:7;4290:39;4294:1;4297;4290:39;;;;;;;;;;;;;;;;;:3;:39::i;16828:177::-;16938:58;;;-1:-1:-1;;;;;16938:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16938:58:0;-1:-1:-1;;;16938:58:0;;;16911:86;;16931:5;;16911:19;:86::i;23222:106::-;23310:10;23222:106;:::o;17013:205::-;17141:68;;;-1:-1:-1;;;;;17141:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17141:68:0;-1:-1:-1;;;17141:68:0;;;17114:96;;17134:5;;17114:19;:96::i;:::-;17013:205;;;;:::o;2807:192::-;2893:7;2929:12;2921:6;;;;2913:29;;;;-1:-1:-1;;;2913:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2965:5:0;;;2807:192::o;4833:278::-;4919:7;4954:12;4947:5;4939:28;;;;-1:-1:-1;;;4939:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4978:9;4994:1;4990;:5;;;;;;;4833:278;-1:-1:-1;;;;;4833:278:0:o;19133:761::-;19557:23;19583:69;19611:4;19583:69;;;;;;;;;;;;;;;;;19591:5;-1:-1:-1;;;;;19583:27:0;;;:69;;;;;:::i;:::-;19667:17;;19557:95;;-1:-1:-1;19667:21:0;19663:224;;19809:10;19798:30;;;;;;;;;;;;;;;-1:-1:-1;19798:30:0;19790:85;;;;-1:-1:-1;;;19790:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12841:195;12944:12;12976:52;12998:6;13006:4;13012:1;13015:12;12976:21;:52::i;:::-;12969:59;12841:195;-1:-1:-1;;;;12841:195:0:o;13893:530::-;14020:12;14078:5;14053:21;:30;;14045:81;;;;-1:-1:-1;;;14045:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14145:18;14156:6;14145:10;:18::i;:::-;14137:60;;;;;-1:-1:-1;;;14137:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14271:12;14285:23;14312:6;-1:-1:-1;;;;;14312:11:0;14332:5;14340:4;14312:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14312:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14270:75;;;;14363:52;14381:7;14390:10;14402:12;14363:17;:52::i;9923:422::-;10290:20;10329:8;;;9923:422::o;15429:742::-;15544:12;15573:7;15569:595;;;-1:-1:-1;15604:10:0;15597:17;;15569:595;15718:17;;:21;15714:439;;15981:10;15975:17;16042:15;16029:10;16025:2;16021:19;16014:44;15929:148;16117:20;;-1:-1:-1;;;16117:20:0;;;;;;;;;;;;;;;;;16124:12;;16117:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://6c6c6c07be8e48e2afdec26453a83b27b037e7fa8cc0c91bd0d558aa77d4d085
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.