ETH Price: $3,332.55 (-4.32%)
Gas: 3 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

340,889.673932568931193887 ERC20 ***

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,734.975137098394773744 ERC20 ***

Value
$0.00
0xe0bcE02C802233389C3c5309d279241C0638D90B
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
ConvexStakingWrapperAbra

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: contracts\interfaces\ICauldron.sol
pragma solidity 0.6.12;

interface ICauldron {
    function userCollateralShare(address account) external view returns (uint);
}

// File: contracts\interfaces\IBentoBox.sol
pragma solidity 0.6.12;

interface IBentoBox {
    function toAmount(address _token, uint256 _share, bool _roundUp) external view returns (uint);
}

// File: contracts\interfaces\IRewardStaking.sol

pragma solidity 0.6.12;

interface IRewardStaking {
    function stakeFor(address, uint256) external;
    function stake( uint256) external;
    function withdraw(uint256 amount, bool claim) external;
    function withdrawAndUnwrap(uint256 amount, bool claim) external;
    function earned(address account) external view returns (uint256);
    function getReward() external;
    function getReward(address _account, bool _claimExtras) external;
    function extraRewardsLength() external view returns (uint256);
    function extraRewards(uint256 _pid) external view returns (address);
    function rewardToken() external view returns (address);
    function balanceOf(address _account) external view returns (uint256);
}

// File: contracts\interfaces\IConvexDeposits.sol

pragma solidity 0.6.12;

interface IConvexDeposits {
    function deposit(uint256 _pid, uint256 _amount, bool _stake) external returns(bool);
    function deposit(uint256 _amount, bool _lock, address _stakeAddress) external;
}

// File: contracts\interfaces\ICvx.sol

pragma solidity 0.6.12;

interface ICvx {
    function reductionPerCliff() external view returns(uint256);
    function totalSupply() external view returns(uint256);
    function totalCliffs() external view returns(uint256);
    function maxSupply() external view returns(uint256);
}

// File: contracts\interfaces\CvxMining.sol

pragma solidity 0.6.12;


library CvxMining{
    ICvx public constant cvx = ICvx(0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B);

    function ConvertCrvToCvx(uint256 _amount) external view returns(uint256){
        uint256 supply = cvx.totalSupply();
        uint256 reductionPerCliff = cvx.reductionPerCliff();
        uint256 totalCliffs = cvx.totalCliffs();
        uint256 maxSupply = cvx.maxSupply();

        uint256 cliff = supply / reductionPerCliff;
        //mint if below total cliffs
        if(cliff < totalCliffs){
            //for reduction% take inverse of current cliff
            uint256 reduction = totalCliffs - cliff;
            //reduce
            _amount = _amount * reduction / totalCliffs;

            //supply cap check
            uint256 amtTillMax = maxSupply - supply;
            if(_amount > amtTillMax){
                _amount = amtTillMax;
            }

            //mint
            return _amount;
        }
        return 0;
    }
}

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

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

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

// File: @openzeppelin\contracts\token\ERC20\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: @openzeppelin\contracts\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);
    }

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

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

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

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

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

// File: @openzeppelin\contracts\token\ERC20\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: node_modules\@openzeppelin\contracts\utils\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: @openzeppelin\contracts\token\ERC20\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 virtual returns (string memory) {
        return _name;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin\contracts\utils\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\wrappers\ConvexStakingWrapper.sol

pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;


// import "@openzeppelin/contracts/access/Ownable.sol";


//Example of a tokenize a convex staked position.
//if used as collateral some modifications will be needed to fit the specific platform

//Based on Curve.fi's gauge wrapper implementations at https://github.com/curvefi/curve-dao-contracts/tree/master/contracts/gauges/wrappers
contract ConvexStakingWrapper is ERC20, ReentrancyGuard {
    using SafeERC20
    for IERC20;
    using Address
    for address;
    using SafeMath
    for uint256;

    struct EarnedData {
        address token;
        uint256 amount;
    }

    struct RewardType {
        address reward_token;
        address reward_pool;
        uint128 reward_integral;
        uint128 reward_remaining;
        mapping(address => uint256) reward_integral_for;
        mapping(address => uint256) claimable_reward;
    }

    uint256 public cvx_reward_integral;
    uint256 public cvx_reward_remaining;
    mapping(address => uint256) public cvx_reward_integral_for;
    mapping(address => uint256) public cvx_claimable_reward;

    //constants/immutables
    address public constant convexBooster = address(0xF403C135812408BFbE8713b5A23a04b3D48AAE31);
    address public constant crv = address(0xD533a949740bb3306d119CC777fa900bA034cd52);
    address public constant cvx = address(0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B);
    address public curveToken;
    address public convexToken;
    address public convexPool;
    uint256 public convexPoolId;
    address public collateralVault;

    //rewards
    RewardType[] public rewards;

    //management
    bool public isShutdown;
    bool public isInit;
    address public owner;

    string internal _tokenname;
    string internal _tokensymbol;

    event Deposited(address indexed _user, address indexed _account, uint256 _amount, bool _wrapped);
    event Withdrawn(address indexed _user, uint256 _amount, bool _unwrapped);
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor() public
        ERC20(
            "StakedConvexToken",
            "stkCvx"
        ){
    }

    function initialize(address _curveToken, address _convexToken, address _convexPool, uint256 _poolId, address _vault)
    virtual external {
        require(!isInit,"already init");
        owner = address(0xa3C5A1e09150B75ff251c1a7815A07182c3de2FB); //default to convex multisig
        emit OwnershipTransferred(address(0), owner);

        _tokenname = string(abi.encodePacked("Staked ", ERC20(_convexToken).name() ));
        _tokensymbol = string(abi.encodePacked("stk", ERC20(_convexToken).symbol()));
        isShutdown = false;
        isInit = true;
        curveToken = _curveToken;
        convexToken = _convexToken;
        convexPool = _convexPool;
        convexPoolId = _poolId;
        collateralVault = _vault;

        //add rewards
        addRewards();
        setApprovals();
    }

    function name() public view override returns (string memory) {
        return _tokenname;
    }

    function symbol() public view override returns (string memory) {
        return _tokensymbol;
    }

    function decimals() public view override returns (uint8) {
        return 18;
    }

    modifier onlyOwner() {
        require(owner == msg.sender, "Ownable: caller is not the 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;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(owner, address(0));
        owner = address(0);
    }

    function shutdown() external onlyOwner {
        isShutdown = true;
    }

    function setApprovals() public {
        IERC20(curveToken).safeApprove(convexBooster, 0);
        IERC20(curveToken).safeApprove(convexBooster, uint256(-1));
        IERC20(convexToken).safeApprove(convexPool, 0);
        IERC20(convexToken).safeApprove(convexPool, uint256(-1));
    }

    function addRewards() public {
        address mainPool = convexPool;

        if (rewards.length == 0) {
            rewards.push(
                RewardType({
                    reward_token: crv,
                    reward_pool: mainPool,
                    reward_integral: 0,
                    reward_remaining: 0
                })
            );
        }

        uint256 extraCount = IRewardStaking(mainPool).extraRewardsLength();
        uint256 startIndex = rewards.length - 1;
        for (uint256 i = startIndex; i < extraCount; i++) {
            address extraPool = IRewardStaking(mainPool).extraRewards(i);
            rewards.push(
                RewardType({
                    reward_token: IRewardStaking(extraPool).rewardToken(),
                    reward_pool: extraPool,
                    reward_integral: 0,
                    reward_remaining: 0
                })
            );
        }
    }

    function rewardLength() external view returns(uint256) {
        return rewards.length;
    }

    function _getDepositedBalance(address _account) internal virtual view returns(uint256) {
        if (_account == address(0) || _account == collateralVault) {
            return 0;
        }
        //get balance from collateralVault

        return balanceOf(_account);
    }

    function _getTotalSupply() internal virtual view returns(uint256){

        //override and add any supply needed (interest based growth)

        return totalSupply();
    }


    function _calcCvxIntegral(address[2] memory _accounts, uint256[2] memory _balances, uint256 _supply, bool _isClaim) internal {

        uint256 bal = IERC20(cvx).balanceOf(address(this));
        uint256 d_cvxreward = bal.sub(cvx_reward_remaining);

        if (_supply > 0 && d_cvxreward > 0) {
            cvx_reward_integral = cvx_reward_integral + d_cvxreward.mul(1e20).div(_supply);
        }

        
        //update user integrals for cvx
        for (uint256 u = 0; u < _accounts.length; u++) {
            //do not give rewards to address 0
            if (_accounts[u] == address(0)) continue;
            if (_accounts[u] == collateralVault) continue;

            uint userI = cvx_reward_integral_for[_accounts[u]];
            if(_isClaim || userI < cvx_reward_integral){
                uint256 receiveable = cvx_claimable_reward[_accounts[u]].add(_balances[u].mul(cvx_reward_integral.sub(userI)).div(1e20));
                if(_isClaim){
                    if(receiveable > 0){
                        cvx_claimable_reward[_accounts[u]] = 0;
                        IERC20(cvx).safeTransfer(_accounts[u], receiveable);
                        bal = bal.sub(receiveable);
                    }
                }else{
                    cvx_claimable_reward[_accounts[u]] = receiveable;
                }
                cvx_reward_integral_for[_accounts[u]] = cvx_reward_integral;
           }
        }

        //update reward total
        if(bal != cvx_reward_remaining){
            cvx_reward_remaining = bal;
        }
    }

    function _calcRewardIntegral(uint256 _index, address[2] memory _accounts, uint256[2] memory _balances, uint256 _supply, bool _isClaim) internal{
         RewardType storage reward = rewards[_index];

        //get difference in balance and remaining rewards
        //getReward is unguarded so we use reward_remaining to keep track of how much was actually claimed
        uint256 bal = IERC20(reward.reward_token).balanceOf(address(this));
        // uint256 d_reward = bal.sub(reward.reward_remaining);

        if (_supply > 0 && bal.sub(reward.reward_remaining) > 0) {
            reward.reward_integral = reward.reward_integral + uint128(bal.sub(reward.reward_remaining).mul(1e20).div(_supply));
        }

        //update user integrals
        for (uint256 u = 0; u < _accounts.length; u++) {
            //do not give rewards to address 0
            if (_accounts[u] == address(0)) continue;
            if (_accounts[u] == collateralVault) continue;

            uint userI = reward.reward_integral_for[_accounts[u]];
            if(_isClaim || userI < reward.reward_integral){
                if(_isClaim){
                    uint256 receiveable = reward.claimable_reward[_accounts[u]].add(_balances[u].mul( uint256(reward.reward_integral).sub(userI)).div(1e20));
                    if(receiveable > 0){
                        reward.claimable_reward[_accounts[u]] = 0;
                        IERC20(reward.reward_token).safeTransfer(_accounts[u], receiveable);
                        bal = bal.sub(receiveable);
                    }
                }else{
                    reward.claimable_reward[_accounts[u]] = reward.claimable_reward[_accounts[u]].add(_balances[u].mul( uint256(reward.reward_integral).sub(userI)).div(1e20));
                }
                reward.reward_integral_for[_accounts[u]] = reward.reward_integral;
            }
        }

        //update remaining reward here since balance could have changed if claiming
        if(bal !=  reward.reward_remaining){
            reward.reward_remaining = uint128(bal);
        }
    }

    function _checkpoint(address[2] memory _accounts) internal {
        //if shutdown, no longer checkpoint in case there are problems
        if(isShutdown) return;

        uint256 supply = _getTotalSupply();
        uint256[2] memory depositedBalance;
        depositedBalance[0] = _getDepositedBalance(_accounts[0]);
        depositedBalance[1] = _getDepositedBalance(_accounts[1]);
        
        IRewardStaking(convexPool).getReward(address(this), true);

        uint256 rewardCount = rewards.length;
        for (uint256 i = 0; i < rewardCount; i++) {
           _calcRewardIntegral(i,_accounts,depositedBalance,supply,false);
        }
        _calcCvxIntegral(_accounts,depositedBalance,supply,false);
    }

    function _checkpointAndClaim(address[2] memory _accounts) internal {

        uint256 supply = _getTotalSupply();
        uint256[2] memory depositedBalance;
        depositedBalance[0] = _getDepositedBalance(_accounts[0]); //only do first slot
        
        IRewardStaking(convexPool).getReward(address(this), true);

        uint256 rewardCount = rewards.length;
        for (uint256 i = 0; i < rewardCount; i++) {
           _calcRewardIntegral(i,_accounts,depositedBalance,supply,true);
        }
        _calcCvxIntegral(_accounts,depositedBalance,supply,true);
    }

    function user_checkpoint(address[2] calldata _accounts) external returns(bool) {
        _checkpoint([_accounts[0], _accounts[1]]);
        return true;
    }

    function totalBalanceOf(address _account) external view returns(uint256){
        return _getDepositedBalance(_account);
    }

    function earned(address _account) external view returns(EarnedData[] memory claimable) {
        uint256 supply = _getTotalSupply();
        // uint256 depositedBalance = _getDepositedBalance(_account);
        uint256 rewardCount = rewards.length;
        claimable = new EarnedData[](rewardCount + 1);

        for (uint256 i = 0; i < rewardCount; i++) {
            RewardType storage reward = rewards[i];

            //change in reward is current balance - remaining reward + earned
            uint256 bal = IERC20(reward.reward_token).balanceOf(address(this));
            uint256 d_reward = bal.sub(reward.reward_remaining);
            d_reward = d_reward.add(IRewardStaking(reward.reward_pool).earned(address(this)));

            uint256 I = reward.reward_integral;
            if (supply > 0) {
                I = I + d_reward.mul(1e20).div(supply);
            }

            uint256 newlyClaimable = _getDepositedBalance(_account).mul(I.sub(reward.reward_integral_for[_account])).div(1e20);
            claimable[i].amount = reward.claimable_reward[_account].add(newlyClaimable);
            claimable[i].token = reward.reward_token;

            //calc cvx here
            if(reward.reward_token == crv){
                claimable[rewardCount].amount = cvx_claimable_reward[_account].add(CvxMining.ConvertCrvToCvx(newlyClaimable));
                claimable[rewardCount].token = cvx;
            }
        }
        return claimable;
    }

    function getReward(address _account) external {
        //claim directly in checkpoint logic to save a bit of gas
        _checkpointAndClaim([_account, address(0)]);
    }

    //deposit a curve token
    function deposit(uint256 _amount, address _to) external nonReentrant {
        require(!isShutdown, "shutdown");

        //dont need to call checkpoint since _mint() will

        if (_amount > 0) {
            _mint(_to, _amount);
            IERC20(curveToken).safeTransferFrom(msg.sender, address(this), _amount);
            IConvexDeposits(convexBooster).deposit(convexPoolId, _amount, true);
        }

        emit Deposited(msg.sender, _to, _amount, true);
    }

    //stake a convex token
    function stake(uint256 _amount, address _to) external nonReentrant {
        require(!isShutdown, "shutdown");

        //dont need to call checkpoint since _mint() will

        if (_amount > 0) {
            _mint(_to, _amount);
            IERC20(convexToken).safeTransferFrom(msg.sender, address(this), _amount);
            IRewardStaking(convexPool).stake(_amount);
        }

        emit Deposited(msg.sender, _to, _amount, false);
    }

    //withdraw to convex deposit token
    function withdraw(uint256 _amount) external nonReentrant {

        //dont need to call checkpoint since _burn() will

        if (_amount > 0) {
            _burn(msg.sender, _amount);
            IRewardStaking(convexPool).withdraw(_amount, false);
            IERC20(convexToken).safeTransfer(msg.sender, _amount);
        }

        emit Withdrawn(msg.sender, _amount, false);
    }

    //withdraw to underlying curve lp token
    function withdrawAndUnwrap(uint256 _amount) external nonReentrant {
        
        //dont need to call checkpoint since _burn() will

        if (_amount > 0) {
            _burn(msg.sender, _amount);
            IRewardStaking(convexPool).withdrawAndUnwrap(_amount, false);
            IERC20(curveToken).safeTransfer(msg.sender, _amount);
        }

        //events
        emit Withdrawn(msg.sender, _amount, true);
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal override {
        _checkpoint([_from, _to]);
    }
}

// File: contracts\wrappers\ConvexStakingWrapperAbra.sol

pragma solidity 0.6.12;


//Staking wrapper for Abracadabra platform
//use convex LP positions as collateral while still receiving rewards
contract ConvexStakingWrapperAbra is ConvexStakingWrapper {
    using SafeERC20
    for IERC20;
    using Address
    for address;
    using SafeMath
    for uint256;

    address[] public cauldrons;

    constructor() public{}

    function initialize(address _curveToken, address _convexToken, address _convexPool, uint256 _poolId, address _vault)
    override external {
        require(!isInit,"already init");
        owner = address(0xa3C5A1e09150B75ff251c1a7815A07182c3de2FB); //default to convex multisig
        emit OwnershipTransferred(address(0), owner);
        _tokenname = string(abi.encodePacked("Staked ", ERC20(_convexToken).name(), " Abra" ));
        _tokensymbol = string(abi.encodePacked("stk", ERC20(_convexToken).symbol(), "-abra"));
        isShutdown = false;
        isInit = true;
        curveToken = _curveToken;
        convexToken = _convexToken;
        convexPool = _convexPool;
        convexPoolId = _poolId;
        collateralVault = address(0xF5BCE5077908a1b7370B9ae04AdC565EBd643966);
    
        if(_vault != address(0)){
            cauldrons.push(_vault);
        }

        //add rewards
        addRewards();
        setApprovals();
    }

    function cauldronsLength() external view returns (uint256) {
        return cauldrons.length;
    }

    function setCauldron(address _cauldron) external onlyOwner{
        //allow settings and changing cauldrons that receive staking rewards.
        require(_cauldron != address(0), "invalid cauldron");

        //do not allow doubles
        for(uint256 i = 0; i < cauldrons.length; i++){
            require(cauldrons[i] != _cauldron, "already added");
        }

        //IMPORTANT: when adding a cauldron,
        // it should be added to this list BEFORE anyone starts using it
        // or else a user may receive more than what they should
        cauldrons.push(_cauldron);
    }

    function _getDepositedBalance(address _account) internal override view returns(uint256) {
        if (_account == address(0) || _account == collateralVault) {
            return 0;
        }

        if(cauldrons.length == 0){
            return balanceOf(_account);
        }
        
        //add up all shares of all cauldrons
        uint256 share;
        for(uint256 i = 0; i < cauldrons.length; i++){
            try ICauldron(cauldrons[i]).userCollateralShare(_account) returns(uint256 _share){
                share = share.add(_share);
            }catch{}
        }

        //convert shares to balance amount via bento box
        uint256 collateral = IBentoBox(collateralVault).toAmount(address(this), share, false);
        
        //add to balance of this token
        return balanceOf(_account).add(collateral);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_wrapped","type":"bool"}],"name":"Deposited","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":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_unwrapped","type":"bool"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"addRewards","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cauldrons","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cauldronsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collateralVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convexBooster","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convexPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convexPoolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convexToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crv","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curveToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cvx","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cvx_claimable_reward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cvx_reward_integral","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cvx_reward_integral_for","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cvx_reward_remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"earned","outputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ConvexStakingWrapper.EarnedData[]","name":"claimable","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_curveToken","type":"address"},{"internalType":"address","name":"_convexToken","type":"address"},{"internalType":"address","name":"_convexPool","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_vault","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isInit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isShutdown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"address","name":"reward_token","type":"address"},{"internalType":"address","name":"reward_pool","type":"address"},{"internalType":"uint128","name":"reward_integral","type":"uint128"},{"internalType":"uint128","name":"reward_remaining","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setApprovals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_cauldron","type":"address"}],"name":"setCauldron","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shutdown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"totalBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[2]","name":"_accounts","type":"address[2]"}],"name":"user_checkpoint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAndUnwrap","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601181527029ba30b5b2b221b7b73b32bc2a37b5b2b760791b6020808301918252835180850190945260068452650e6e8d686ecf60d31b90840152815191929162000069916003916200009a565b5080516200007f9060049060208401906200009a565b50506005805460ff1916601217905550600160065562000136565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000dd57805160ff19168380011785556200010d565b828001600101855582156200010d579182015b828111156200010d578251825591602001919060010190620000f0565b506200011b9291506200011f565b5090565b5b808211156200011b576000815560010162000120565b61385480620001466000396000f3fe608060405234801561001057600080fd5b506004361061027e5760003560e01c80637c93fa621161015c578063bf86d690116100ce578063e529ee9511610087578063e529ee95146104e5578063e6d223b1146104ed578063e89133b214610500578063f2fde38b14610508578063f301af421461051b578063fc0e74d11461053e5761027e565b8063bf86d69014610489578063c00007b014610491578063c3ff0a5b146104a4578063cc7d510e146104b7578063dd62ed3e146104bf578063e2aecded146104d25761027e565b80639a04dbc7116101205780639a04dbc714610438578063a457c2d71461044b578063a52e19a51461045e578063a9059cbb14610466578063b145a5b814610479578063b95c5746146104815761027e565b80637c93fa62146104105780638757b15b146104185780638da5cb5b14610420578063923c1d611461042857806395d89b41146104305761027e565b80633969dfb4116101f55780636a4874a1116101b95780636a4874a1146103bf5780636e553f65146103c757806370a08231146103da578063715018a6146103ed57806376addb19146103f55780637acb7757146103fd5761027e565b80633969dfb41461036b5780634b0ee02a1461037e5780634f39059c14610391578063530b97a4146103995780635626265c146103ac5761027e565b806318160ddd1161024757806318160ddd1461030057806323b872dd146103155780632cdacb50146103285780632e1a7d4d14610330578063313ce5671461034357806339509351146103585761027e565b80628cc2621461028357806306fdde03146102ac578063095ea7b3146102c15780630bece79c146102e157806314d6aed0146102f6575b600080fd5b610296610291366004612dfd565b610546565b6040516102a391906131e5565b60405180910390f35b6102b4610938565b6040516102a39190613248565b6102d46102cf366004612f14565b6109ce565b6040516102a3919061323d565b6102e96109ec565b6040516102a39190613108565b6102fe6109fb565b005b610308610d62565b6040516102a39190613709565b6102d4610323366004612ed4565b610d68565b6102e9610df0565b6102fe61033e366004613020565b610e08565b61034b610f12565b6040516102a3919061373a565b6102d4610366366004612f14565b610f17565b6102fe610379366004613020565b610f65565b61030861038c366004612dfd565b611056565b6102e9611061565b6102fe6103a7366004612e6d565b611070565b6102e96103ba366004613020565b61132c565b6102e9611353565b6102fe6103d5366004613050565b61136b565b6103086103e8366004612dfd565b6114c7565b6102fe6114e2565b610308611564565b6102fe61040b366004613050565b61156a565b610308611686565b6102fe61168c565b6102e9611724565b6102e9611739565b6102b4611751565b610308610446366004612dfd565b6117b2565b6102d4610459366004612f14565b6117c4565b61030861182c565b6102d4610474366004612f14565b611832565b6102d4611846565b610308611854565b6102d461185a565b6102fe61049f366004612dfd565b611863565b6102fe6104b2366004612dfd565b61188c565b6102e9611994565b6103086104cd366004612e35565b6119a3565b6102d46104e0366004612f3f565b6119ce565b610308611a37565b6103086104fb366004612dfd565b611a3d565b6102e9611a4f565b6102fe610516366004612dfd565b611a5e565b61052e610529366004613020565b611b1e565b6040516102a39493929190613136565b6102fe611b6f565b60606000610552611bae565b6010549091506001810167ffffffffffffffff8111801561057257600080fd5b506040519080825280602002602001820160405280156105ac57816020015b610599612d35565b8152602001906001900390816105915790505b50925060005b8181101561092f576000601082815481106105c957fe5b60009182526020822060059091020180546040516370a0823160e01b81529193506001600160a01b0316906370a0823190610608903090600401613108565b60206040518083038186803b15801561062057600080fd5b505afa158015610634573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106589190613038565b600283015490915060009061067e908390600160801b90046001600160801b0316611bbd565b60018401546040516246613160e11b815291925061070c916001600160a01b0390911690628cc262906106b5903090600401613108565b60206040518083038186803b1580156106cd57600080fd5b505afa1580156106e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107059190613038565b8290611be5565b60028401549091506001600160801b03168615610742576107408761073a8468056bc75e2d63100000611c0a565b90611c44565b015b6001600160a01b038916600090815260038501602052604081205461078a9068056bc75e2d631000009061073a9061077b908690611bbd565b6107848e611c76565b90611c0a565b6001600160a01b038b1660009081526004870160205260409020549091506107b29082611be5565b8987815181106107be57fe5b6020908102919091018101510152845489516001600160a01b03909116908a90889081106107e857fe5b60209081029190910101516001600160a01b03918216905285541673d533a949740bb3306d119cc777fa900ba034cd52141561091e57604051638487474560e01b81526108c890733c75bfe6fbfda3a94e7e7e8c2216afc684de534390638487474590610859908590600401613709565b60206040518083038186803b15801561087157600080fd5b505af4158015610885573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a99190613038565b6001600160a01b038c166000908152600a602052604090205490611be5565b8988815181106108d457fe5b60200260200101516020018181525050734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b89888151811061090557fe5b60209081029190910101516001600160a01b0390911690525b5050600190930192506105b2915050565b5050505b919050565b60128054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c45780601f10610999576101008083540402835291602001916109c4565b820191906000526020600020905b8154815290600101906020018083116109a757829003601f168201915b5050505050905090565b60006109e26109db611e1d565b8484611e21565b5060015b92915050565b600f546001600160a01b031681565b600d546010546001600160a01b0390911690610b27576040805160808101825273d533a949740bb3306d119cc777fa900ba034cd5281526001600160a01b038381166020830190815260009383018481526060840185815260108054600181018255965293517f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672600590960295860180546001600160a01b031990811692861692909217905591517f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae673860180549093169316929092179055517f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae674909201805491516001600160801b03199092166001600160801b03938416178316600160801b93909216929092021790555b6000816001600160a01b031663d55a23f46040518163ffffffff1660e01b815260040160206040518083038186803b158015610b6257600080fd5b505afa158015610b76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9a9190613038565b60105490915060001901805b82811015610d5c57604051632061aa2360e11b81526000906001600160a01b038616906340c3544690610bdd908590600401613709565b60206040518083038186803b158015610bf557600080fd5b505afa158015610c09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2d9190612e19565b905060106040518060800160405280836001600160a01b031663f7c618c16040518163ffffffff1660e01b815260040160206040518083038186803b158015610c7557600080fd5b505afa158015610c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cad9190612e19565b6001600160a01b03908116825293841660208083019190915260006040808401829052606093840182905285546001808201885596835291839020855160059093020180546001600160a01b03199081169389169390931781559285015183870180549093169716969096179055938201516002909401805492909101516001600160801b03199092166001600160801b03948516178416600160801b94909216939093021790915501610ba6565b50505050565b60025490565b6000610d75848484611ed5565b610de584610d81611e1d565b610de0856040518060600160405280602881526020016137d2602891396001600160a01b038a16600090815260016020526040812090610dbf611e1d565b6001600160a01b031681526020810191909152604001600020549190611fea565b611e21565b5060015b9392505050565b73f403c135812408bfbe8713b5a23a04b3d48aae3181565b60026006541415610e345760405162461bcd60e51b8152600401610e2b90613645565b60405180910390fd5b60026006558015610ec657610e493382612016565b600d54604051631c683a1b60e11b81526001600160a01b03909116906338d0743690610e7c908490600090600401613712565b600060405180830381600087803b158015610e9657600080fd5b505af1158015610eaa573d6000803e3d6000fd5b5050600c54610ec692506001600160a01b0316905033836120f8565b336001600160a01b03167f2fd83d5e9f5d240bed47a97a24cf354e4047e25edc2da27b01fd95e5e8a0c9a5826000604051610f02929190613712565b60405180910390a2506001600655565b601290565b60006109e2610f24611e1d565b84610de08560016000610f35611e1d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611be5565b60026006541415610f885760405162461bcd60e51b8152600401610e2b90613645565b6002600655801561101a57610f9d3382612016565b600d54604051636197390160e11b81526001600160a01b039091169063c32e720290610fd0908490600090600401613712565b600060405180830381600087803b158015610fea57600080fd5b505af1158015610ffe573d6000803e3d6000fd5b5050600b5461101a92506001600160a01b0316905033836120f8565b336001600160a01b03167f2fd83d5e9f5d240bed47a97a24cf354e4047e25edc2da27b01fd95e5e8a0c9a5826001604051610f02929190613712565b60006109e682611c76565b600b546001600160a01b031681565b601154610100900460ff16156110985760405162461bcd60e51b8152600401610e2b9061343c565b6011805475a3c5a1e09150b75ff251c1a7815a07182c3de2fb000062010000600160b01b03199091161790819055604051620100009091046001600160a01b0316906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3836001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b15801561113b57600080fd5b505afa15801561114f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111779190810190612f85565b6040516020016111879190613090565b604051602081830303815290604052601290805190602001906111ab929190612d4c565b50836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156111e557600080fd5b505afa1580156111f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112219190810190612f85565b60405160200161123191906130ce565b60405160208183030381529060405260139080519060200190611255929190612d4c565b506011805461ffff1916610100179055600b80546001600160a01b038088166001600160a01b031992831617909255600c8054878416908316179055600d8054868416908316179055600e849055600f805490911673f5bce5077908a1b7370b9ae04adc565ebd64396617905581161561131557601480546001810182556000919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0180546001600160a01b0319166001600160a01b0383161790555b61131d6109fb565b61132561168c565b5050505050565b6014818154811061133957fe5b6000918252602090912001546001600160a01b0316905081565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6002600654141561138e5760405162461bcd60e51b8152600401610e2b90613645565b600260065560115460ff16156113b65760405162461bcd60e51b8152600401610e2b9061355e565b8115611470576113c68183612153565b600b546113de906001600160a01b0316333085612207565b600e546040516321d0683360e11b815273f403c135812408bfbe8713b5a23a04b3d48aae31916343a0d0669161141c91908690600190600401613722565b602060405180830381600087803b15801561143657600080fd5b505af115801561144a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146e9190612f65565b505b806001600160a01b0316336001600160a01b03167fb32af138549e2a71563d1f2b1f7f0a139b3cdbc83d877d13603de1c3c5fd487a8460016040516114b6929190613712565b60405180910390a350506001600655565b6001600160a01b031660009081526020819052604090205490565b6011546201000090046001600160a01b031633146115125760405162461bcd60e51b8152600401610e2b906134a3565b6011546040516000916201000090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36011805462010000600160b01b0319169055565b60075481565b6002600654141561158d5760405162461bcd60e51b8152600401610e2b90613645565b600260065560115460ff16156115b55760405162461bcd60e51b8152600401610e2b9061355e565b8115611640576115c58183612153565b600c546115dd906001600160a01b0316333085612207565b600d5460405163534a7e1d60e11b81526001600160a01b039091169063a694fc3a9061160d908590600401613709565b600060405180830381600087803b15801561162757600080fd5b505af115801561163b573d6000803e3d6000fd5b505050505b806001600160a01b0316336001600160a01b03167fb32af138549e2a71563d1f2b1f7f0a139b3cdbc83d877d13603de1c3c5fd487a8460006040516114b6929190613712565b60085481565b600b546116b8906001600160a01b031673f403c135812408bfbe8713b5a23a04b3d48aae316000612228565b600b546116e5906001600160a01b031673f403c135812408bfbe8713b5a23a04b3d48aae31600019612228565b600d54600c54611703916001600160a01b0391821691166000612228565b600d54600c54611722916001600160a01b039182169116600019612228565b565b6011546201000090046001600160a01b031681565b734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b81565b60138054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c45780601f10610999576101008083540402835291602001916109c4565b60096020526000908152604090205481565b60006109e26117d1611e1d565b84610de0856040518060600160405280602581526020016137fa60259139600160006117fb611e1d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fea565b60145490565b60006109e261183f611e1d565b8484611ed5565b601154610100900460ff1681565b60105490565b60115460ff1681565b604080518082019091526001600160a01b038216815260006020820152611889906122eb565b50565b6011546201000090046001600160a01b031633146118bc5760405162461bcd60e51b8152600401610e2b906134a3565b6001600160a01b0381166118e25760405162461bcd60e51b8152600401610e2b90613346565b60005b60145481101561194157816001600160a01b03166014828154811061190657fe5b6000918252602090912001546001600160a01b031614156119395760405162461bcd60e51b8152600401610e2b90613415565b6001016118e5565b50601480546001810182556000919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0180546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000611a2f6040518060400160405280846000600281106119eb57fe5b6020020160208101906119fe9190612dfd565b6001600160a01b03168152602090810190611a1f9060408701908701612dfd565b6001600160a01b031690526123ab565b506001919050565b600e5481565b600a6020526000908152604090205481565b600c546001600160a01b031681565b6011546201000090046001600160a01b03163314611a8e5760405162461bcd60e51b8152600401610e2b906134a3565b6001600160a01b038116611ab45760405162461bcd60e51b8152600401610e2b906132be565b6011546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3601180546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60108181548110611b2b57fe5b60009182526020909120600590910201805460018201546002909201546001600160a01b0391821693509116906001600160801b0380821691600160801b90041684565b6011546201000090046001600160a01b03163314611b9f5760405162461bcd60e51b8152600401610e2b906134a3565b6011805460ff19166001179055565b6000611bb8610d62565b905090565b600082821115611bdf5760405162461bcd60e51b8152600401610e2b906133a7565b50900390565b600082820183811015610de95760405162461bcd60e51b8152600401610e2b90613370565b600082611c19575060006109e6565b82820282848281611c2657fe5b0414610de95760405162461bcd60e51b8152600401610e2b90613462565b6000808211611c655760405162461bcd60e51b8152600401610e2b906133de565b818381611c6e57fe5b049392505050565b60006001600160a01b0382161580611c9b5750600f546001600160a01b038381169116145b15611ca857506000610933565b601454611cbf57611cb8826114c7565b9050610933565b6000805b601454811015611d7a5760148181548110611cda57fe5b600091825260209091200154604051631c9e379b60e01b81526001600160a01b0390911690631c9e379b90611d13908790600401613108565b60206040518083038186803b158015611d2b57600080fd5b505afa925050508015611d5b575060408051601f3d908101601f19168201909252611d5891810190613038565b60015b611d6457611d72565b611d6e8382611be5565b9250505b600101611cc3565b50600f54604051630acc462360e31b81526000916001600160a01b031690635662311890611db0903090869086906004016131c2565b60206040518083038186803b158015611dc857600080fd5b505afa158015611ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e009190613038565b9050611e1581611e0f866114c7565b90611be5565b949350505050565b3390565b6001600160a01b038316611e475760405162461bcd60e51b8152600401610e2b90613580565b6001600160a01b038216611e6d5760405162461bcd60e51b8152600401610e2b90613304565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611ec8908590613709565b60405180910390a3505050565b6001600160a01b038316611efb5760405162461bcd60e51b8152600401610e2b90613519565b6001600160a01b038216611f215760405162461bcd60e51b8152600401610e2b9061327b565b611f2c838383612485565b611f69816040518060600160405280602681526020016137ac602691396001600160a01b0386166000908152602081905260409020549190611fea565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f989082611be5565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611ec8908590613709565b6000818484111561200e5760405162461bcd60e51b8152600401610e2b9190613248565b505050900390565b6001600160a01b03821661203c5760405162461bcd60e51b8152600401610e2b906134d8565b61204882600083612485565b6120858160405180606001604052806022815260200161378a602291396001600160a01b0385166000908152602081905260409020549190611fea565b6001600160a01b0383166000908152602081905260409020556002546120ab9082611bbd565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120ec908590613709565b60405180910390a35050565b61214e8363a9059cbb60e01b84846040516024016121179291906131a9565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526124ac565b505050565b6001600160a01b0382166121795760405162461bcd60e51b8152600401610e2b906136d2565b61218560008383612485565b6002546121929082611be5565b6002556001600160a01b0382166000908152602081905260409020546121b89082611be5565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120ec908590613709565b610d5c846323b872dd60e01b8585856040516024016121179392919061316a565b8015806122b05750604051636eb1769f60e11b81526001600160a01b0384169063dd62ed3e9061225e903090869060040161311c565b60206040518083038186803b15801561227657600080fd5b505afa15801561228a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ae9190613038565b155b6122cc5760405162461bcd60e51b8152600401610e2b9061367c565b61214e8363095ea7b360e01b84846040516024016121179291906131a9565b60006122f5611bae565b90506122ff612dca565b6123108360005b6020020151611c76565b8152600d54604051637050ccd960e01b81526001600160a01b0390911690637050ccd99061234590309060019060040161318e565b600060405180830381600087803b15801561235f57600080fd5b505af1158015612373573d6000803e3d6000fd5b50506010549150600090505b8181101561239d5761239581868587600161253b565b60010161237f565b50610d5c8483856001612960565b60115460ff16156123bb57611889565b60006123c5611bae565b90506123cf612dca565b6123da836000612306565b81526123e7836001612306565b6020820152600d54604051637050ccd960e01b81526001600160a01b0390911690637050ccd99061241f90309060019060040161318e565b600060405180830381600087803b15801561243957600080fd5b505af115801561244d573d6000803e3d6000fd5b50506010549150600090505b818110156124775761246f81868587600061253b565b600101612459565b50610d5c8483856000612960565b604080518082019091526001600160a01b0380851682528316602082015261214e906123ab565b6060612501826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c4c9092919063ffffffff16565b80519091501561214e578080602001905181019061251f9190612f65565b61214e5760405162461bcd60e51b8152600401610e2b906135fb565b60006010868154811061254a57fe5b60009182526020822060059091020180546040516370a0823160e01b81529193506001600160a01b0316906370a0823190612589903090600401613108565b60206040518083038186803b1580156125a157600080fd5b505afa1580156125b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d99190613038565b905060008411801561260b57506002820154600090612609908390600160801b90046001600160801b0316611bbd565b115b1561266d57600282015461264590859061073a9068056bc75e2d6310000090610784908690600160801b90046001600160801b0316611bbd565b6002830180546001600160801b031981166001600160801b0391821693909301169190911790555b60005b600281101561291e57600087826002811061268757fe5b60200201516001600160a01b031614156126a057612916565b600f546001600160a01b03168782600281106126b857fe5b60200201516001600160a01b031614156126d157612916565b60008360030160008984600281106126e557fe5b60200201516001600160a01b03166001600160a01b031681526020019081526020016000205490508480612725575060028401546001600160801b031681105b1561291457841561283d5760028401546000906127bf906127799068056bc75e2d631000009061073a90612762906001600160801b031687611bbd565b8c886002811061276e57fe5b602002015190611c0a565b8660040160008c876002811061278b57fe5b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002054611be590919063ffffffff16565b905080156128375760008560040160008b86600281106127db57fe5b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555061282a89846002811061281357fe5b602002015186546001600160a01b031690836120f8565b6128348482611bbd565b93505b506128c6565b600284015461288a906128789068056bc75e2d631000009061073a9061286c906001600160801b031686611bbd565b8b876002811061276e57fe5b8560040160008b866002811061278b57fe5b8460040160008a856002811061289c57fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b6002808501546001600160801b03169060038601906000908b90869081106128ea57fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b505b600101612670565b506002820154600160801b90046001600160801b03168114612957576002820180546001600160801b03808416600160801b0291161790555b50505050505050565b6040516370a0823160e01b8152600090734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b906370a082319061299a903090600401613108565b60206040518083038186803b1580156129b257600080fd5b505afa1580156129c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ea9190613038565b90506000612a0360085483611bbd90919063ffffffff16565b9050600084118015612a155750600081115b15612a3c57612a318461073a8368056bc75e2d63100000611c0a565b600754016007819055505b60005b6002811015612c34576000878260028110612a5657fe5b60200201516001600160a01b03161415612a6f57612c2c565b600f546001600160a01b0316878260028110612a8757fe5b60200201516001600160a01b03161415612aa057612c2c565b600060096000898460028110612ab257fe5b60200201516001600160a01b03166001600160a01b031681526020019081526020016000205490508480612ae7575060075481105b15612c2a576000612b26612b1668056bc75e2d6310000061073a61276286600754611bbd90919063ffffffff16565b600a60008c876002811061278b57fe5b90508515612bb1578015612bac576000600a60008b8660028110612b4657fe5b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550612b9f898460028110612b7e57fe5b6020020151734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b90836120f8565b612ba98582611bbd565b94505b612bec565b80600a60008b8660028110612bc257fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b600754600960008b8660028110612bff57fe5b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550505b505b600101612a3f565b506008548214612c445760088290555b505050505050565b6060611e15848460008585612c6085612cf6565b612c7c5760405162461bcd60e51b8152600401610e2b906135c4565b60006060866001600160a01b03168587604051612c999190613074565b60006040518083038185875af1925050503d8060008114612cd6576040519150601f19603f3d011682016040523d82523d6000602084013e612cdb565b606091505b5091509150612ceb828286612cfc565b979650505050505050565b3b151590565b60608315612d0b575081610de9565b825115612d1b5782518084602001fd5b8160405162461bcd60e51b8152600401610e2b9190613248565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612d8d57805160ff1916838001178555612dba565b82800160010185558215612dba579182015b82811115612dba578251825591602001919060010190612d9f565b50612dc6929150612de8565b5090565b60405180604001604052806002906020820280368337509192915050565b5b80821115612dc65760008155600101612de9565b600060208284031215612e0e578081fd5b8135610de981613774565b600060208284031215612e2a578081fd5b8151610de981613774565b60008060408385031215612e47578081fd5b8235612e5281613774565b91506020830135612e6281613774565b809150509250929050565b600080600080600060a08688031215612e84578081fd5b8535612e8f81613774565b94506020860135612e9f81613774565b93506040860135612eaf81613774565b9250606086013591506080860135612ec681613774565b809150509295509295909350565b600080600060608486031215612ee8578283fd5b8335612ef381613774565b92506020840135612f0381613774565b929592945050506040919091013590565b60008060408385031215612f26578182fd5b8235612f3181613774565b946020939093013593505050565b600060408284031215612f50578081fd5b82604083011115612f5f578081fd5b50919050565b600060208284031215612f76578081fd5b81518015158114610de9578182fd5b600060208284031215612f96578081fd5b815167ffffffffffffffff80821115612fad578283fd5b818401915084601f830112612fc0578283fd5b815181811115612fce578384fd5b604051601f8201601f191681016020018381118282101715612fee578586fd5b604052818152838201602001871015613005578485fd5b613016826020830160208701613748565b9695505050505050565b600060208284031215613031578081fd5b5035919050565b600060208284031215613049578081fd5b5051919050565b60008060408385031215613062578182fd5b823591506020830135612e6281613774565b60008251613086818460208701613748565b9190910192915050565b600066029ba30b5b2b2160cd1b825282516130b2816007850160208701613748565b64204162726160d81b6007939091019283015250600c01919050565b60006273746b60e81b825282516130ec816003850160208701613748565b642d6162726160d81b6003939091019283015250600801919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b0394851681529290931660208301526001600160801b039081166040830152909116606082015260800190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b039290921682521515602082015260400190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0393909316835260208301919091521515604082015260600190565b602080825282518282018190526000919060409081850190868401855b8281101561323057815180516001600160a01b03168552860151868501529284019290850190600101613202565b5091979650505050505050565b901515815260200190565b6000602082528251806020840152613267816040850160208701613748565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526010908201526f34b73b30b634b21031b0bab6323937b760811b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b6020808252600d908201526c185b1c9958591e481859191959609a1b604082015260600190565b6020808252600c908201526b185b1c9958591e481a5b9a5d60a21b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526008908201526739b43aba3237bbb760c11b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526036908201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60408201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b9182521515602082015260400190565b92835260208301919091521515604082015260600190565b60ff91909116815260200190565b60005b8381101561376357818101518382015260200161374b565b83811115610d5c5750506000910152565b6001600160a01b038116811461188957600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201df206484aa0ad1afa1a72ab8c5c83ceb3041ad80880e3f948c2acaa9028ca3d64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061027e5760003560e01c80637c93fa621161015c578063bf86d690116100ce578063e529ee9511610087578063e529ee95146104e5578063e6d223b1146104ed578063e89133b214610500578063f2fde38b14610508578063f301af421461051b578063fc0e74d11461053e5761027e565b8063bf86d69014610489578063c00007b014610491578063c3ff0a5b146104a4578063cc7d510e146104b7578063dd62ed3e146104bf578063e2aecded146104d25761027e565b80639a04dbc7116101205780639a04dbc714610438578063a457c2d71461044b578063a52e19a51461045e578063a9059cbb14610466578063b145a5b814610479578063b95c5746146104815761027e565b80637c93fa62146104105780638757b15b146104185780638da5cb5b14610420578063923c1d611461042857806395d89b41146104305761027e565b80633969dfb4116101f55780636a4874a1116101b95780636a4874a1146103bf5780636e553f65146103c757806370a08231146103da578063715018a6146103ed57806376addb19146103f55780637acb7757146103fd5761027e565b80633969dfb41461036b5780634b0ee02a1461037e5780634f39059c14610391578063530b97a4146103995780635626265c146103ac5761027e565b806318160ddd1161024757806318160ddd1461030057806323b872dd146103155780632cdacb50146103285780632e1a7d4d14610330578063313ce5671461034357806339509351146103585761027e565b80628cc2621461028357806306fdde03146102ac578063095ea7b3146102c15780630bece79c146102e157806314d6aed0146102f6575b600080fd5b610296610291366004612dfd565b610546565b6040516102a391906131e5565b60405180910390f35b6102b4610938565b6040516102a39190613248565b6102d46102cf366004612f14565b6109ce565b6040516102a3919061323d565b6102e96109ec565b6040516102a39190613108565b6102fe6109fb565b005b610308610d62565b6040516102a39190613709565b6102d4610323366004612ed4565b610d68565b6102e9610df0565b6102fe61033e366004613020565b610e08565b61034b610f12565b6040516102a3919061373a565b6102d4610366366004612f14565b610f17565b6102fe610379366004613020565b610f65565b61030861038c366004612dfd565b611056565b6102e9611061565b6102fe6103a7366004612e6d565b611070565b6102e96103ba366004613020565b61132c565b6102e9611353565b6102fe6103d5366004613050565b61136b565b6103086103e8366004612dfd565b6114c7565b6102fe6114e2565b610308611564565b6102fe61040b366004613050565b61156a565b610308611686565b6102fe61168c565b6102e9611724565b6102e9611739565b6102b4611751565b610308610446366004612dfd565b6117b2565b6102d4610459366004612f14565b6117c4565b61030861182c565b6102d4610474366004612f14565b611832565b6102d4611846565b610308611854565b6102d461185a565b6102fe61049f366004612dfd565b611863565b6102fe6104b2366004612dfd565b61188c565b6102e9611994565b6103086104cd366004612e35565b6119a3565b6102d46104e0366004612f3f565b6119ce565b610308611a37565b6103086104fb366004612dfd565b611a3d565b6102e9611a4f565b6102fe610516366004612dfd565b611a5e565b61052e610529366004613020565b611b1e565b6040516102a39493929190613136565b6102fe611b6f565b60606000610552611bae565b6010549091506001810167ffffffffffffffff8111801561057257600080fd5b506040519080825280602002602001820160405280156105ac57816020015b610599612d35565b8152602001906001900390816105915790505b50925060005b8181101561092f576000601082815481106105c957fe5b60009182526020822060059091020180546040516370a0823160e01b81529193506001600160a01b0316906370a0823190610608903090600401613108565b60206040518083038186803b15801561062057600080fd5b505afa158015610634573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106589190613038565b600283015490915060009061067e908390600160801b90046001600160801b0316611bbd565b60018401546040516246613160e11b815291925061070c916001600160a01b0390911690628cc262906106b5903090600401613108565b60206040518083038186803b1580156106cd57600080fd5b505afa1580156106e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107059190613038565b8290611be5565b60028401549091506001600160801b03168615610742576107408761073a8468056bc75e2d63100000611c0a565b90611c44565b015b6001600160a01b038916600090815260038501602052604081205461078a9068056bc75e2d631000009061073a9061077b908690611bbd565b6107848e611c76565b90611c0a565b6001600160a01b038b1660009081526004870160205260409020549091506107b29082611be5565b8987815181106107be57fe5b6020908102919091018101510152845489516001600160a01b03909116908a90889081106107e857fe5b60209081029190910101516001600160a01b03918216905285541673d533a949740bb3306d119cc777fa900ba034cd52141561091e57604051638487474560e01b81526108c890733c75bfe6fbfda3a94e7e7e8c2216afc684de534390638487474590610859908590600401613709565b60206040518083038186803b15801561087157600080fd5b505af4158015610885573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a99190613038565b6001600160a01b038c166000908152600a602052604090205490611be5565b8988815181106108d457fe5b60200260200101516020018181525050734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b89888151811061090557fe5b60209081029190910101516001600160a01b0390911690525b5050600190930192506105b2915050565b5050505b919050565b60128054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c45780601f10610999576101008083540402835291602001916109c4565b820191906000526020600020905b8154815290600101906020018083116109a757829003601f168201915b5050505050905090565b60006109e26109db611e1d565b8484611e21565b5060015b92915050565b600f546001600160a01b031681565b600d546010546001600160a01b0390911690610b27576040805160808101825273d533a949740bb3306d119cc777fa900ba034cd5281526001600160a01b038381166020830190815260009383018481526060840185815260108054600181018255965293517f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672600590960295860180546001600160a01b031990811692861692909217905591517f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae673860180549093169316929092179055517f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae674909201805491516001600160801b03199092166001600160801b03938416178316600160801b93909216929092021790555b6000816001600160a01b031663d55a23f46040518163ffffffff1660e01b815260040160206040518083038186803b158015610b6257600080fd5b505afa158015610b76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9a9190613038565b60105490915060001901805b82811015610d5c57604051632061aa2360e11b81526000906001600160a01b038616906340c3544690610bdd908590600401613709565b60206040518083038186803b158015610bf557600080fd5b505afa158015610c09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2d9190612e19565b905060106040518060800160405280836001600160a01b031663f7c618c16040518163ffffffff1660e01b815260040160206040518083038186803b158015610c7557600080fd5b505afa158015610c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cad9190612e19565b6001600160a01b03908116825293841660208083019190915260006040808401829052606093840182905285546001808201885596835291839020855160059093020180546001600160a01b03199081169389169390931781559285015183870180549093169716969096179055938201516002909401805492909101516001600160801b03199092166001600160801b03948516178416600160801b94909216939093021790915501610ba6565b50505050565b60025490565b6000610d75848484611ed5565b610de584610d81611e1d565b610de0856040518060600160405280602881526020016137d2602891396001600160a01b038a16600090815260016020526040812090610dbf611e1d565b6001600160a01b031681526020810191909152604001600020549190611fea565b611e21565b5060015b9392505050565b73f403c135812408bfbe8713b5a23a04b3d48aae3181565b60026006541415610e345760405162461bcd60e51b8152600401610e2b90613645565b60405180910390fd5b60026006558015610ec657610e493382612016565b600d54604051631c683a1b60e11b81526001600160a01b03909116906338d0743690610e7c908490600090600401613712565b600060405180830381600087803b158015610e9657600080fd5b505af1158015610eaa573d6000803e3d6000fd5b5050600c54610ec692506001600160a01b0316905033836120f8565b336001600160a01b03167f2fd83d5e9f5d240bed47a97a24cf354e4047e25edc2da27b01fd95e5e8a0c9a5826000604051610f02929190613712565b60405180910390a2506001600655565b601290565b60006109e2610f24611e1d565b84610de08560016000610f35611e1d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611be5565b60026006541415610f885760405162461bcd60e51b8152600401610e2b90613645565b6002600655801561101a57610f9d3382612016565b600d54604051636197390160e11b81526001600160a01b039091169063c32e720290610fd0908490600090600401613712565b600060405180830381600087803b158015610fea57600080fd5b505af1158015610ffe573d6000803e3d6000fd5b5050600b5461101a92506001600160a01b0316905033836120f8565b336001600160a01b03167f2fd83d5e9f5d240bed47a97a24cf354e4047e25edc2da27b01fd95e5e8a0c9a5826001604051610f02929190613712565b60006109e682611c76565b600b546001600160a01b031681565b601154610100900460ff16156110985760405162461bcd60e51b8152600401610e2b9061343c565b6011805475a3c5a1e09150b75ff251c1a7815a07182c3de2fb000062010000600160b01b03199091161790819055604051620100009091046001600160a01b0316906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3836001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b15801561113b57600080fd5b505afa15801561114f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111779190810190612f85565b6040516020016111879190613090565b604051602081830303815290604052601290805190602001906111ab929190612d4c565b50836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156111e557600080fd5b505afa1580156111f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112219190810190612f85565b60405160200161123191906130ce565b60405160208183030381529060405260139080519060200190611255929190612d4c565b506011805461ffff1916610100179055600b80546001600160a01b038088166001600160a01b031992831617909255600c8054878416908316179055600d8054868416908316179055600e849055600f805490911673f5bce5077908a1b7370b9ae04adc565ebd64396617905581161561131557601480546001810182556000919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0180546001600160a01b0319166001600160a01b0383161790555b61131d6109fb565b61132561168c565b5050505050565b6014818154811061133957fe5b6000918252602090912001546001600160a01b0316905081565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6002600654141561138e5760405162461bcd60e51b8152600401610e2b90613645565b600260065560115460ff16156113b65760405162461bcd60e51b8152600401610e2b9061355e565b8115611470576113c68183612153565b600b546113de906001600160a01b0316333085612207565b600e546040516321d0683360e11b815273f403c135812408bfbe8713b5a23a04b3d48aae31916343a0d0669161141c91908690600190600401613722565b602060405180830381600087803b15801561143657600080fd5b505af115801561144a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146e9190612f65565b505b806001600160a01b0316336001600160a01b03167fb32af138549e2a71563d1f2b1f7f0a139b3cdbc83d877d13603de1c3c5fd487a8460016040516114b6929190613712565b60405180910390a350506001600655565b6001600160a01b031660009081526020819052604090205490565b6011546201000090046001600160a01b031633146115125760405162461bcd60e51b8152600401610e2b906134a3565b6011546040516000916201000090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36011805462010000600160b01b0319169055565b60075481565b6002600654141561158d5760405162461bcd60e51b8152600401610e2b90613645565b600260065560115460ff16156115b55760405162461bcd60e51b8152600401610e2b9061355e565b8115611640576115c58183612153565b600c546115dd906001600160a01b0316333085612207565b600d5460405163534a7e1d60e11b81526001600160a01b039091169063a694fc3a9061160d908590600401613709565b600060405180830381600087803b15801561162757600080fd5b505af115801561163b573d6000803e3d6000fd5b505050505b806001600160a01b0316336001600160a01b03167fb32af138549e2a71563d1f2b1f7f0a139b3cdbc83d877d13603de1c3c5fd487a8460006040516114b6929190613712565b60085481565b600b546116b8906001600160a01b031673f403c135812408bfbe8713b5a23a04b3d48aae316000612228565b600b546116e5906001600160a01b031673f403c135812408bfbe8713b5a23a04b3d48aae31600019612228565b600d54600c54611703916001600160a01b0391821691166000612228565b600d54600c54611722916001600160a01b039182169116600019612228565b565b6011546201000090046001600160a01b031681565b734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b81565b60138054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c45780601f10610999576101008083540402835291602001916109c4565b60096020526000908152604090205481565b60006109e26117d1611e1d565b84610de0856040518060600160405280602581526020016137fa60259139600160006117fb611e1d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fea565b60145490565b60006109e261183f611e1d565b8484611ed5565b601154610100900460ff1681565b60105490565b60115460ff1681565b604080518082019091526001600160a01b038216815260006020820152611889906122eb565b50565b6011546201000090046001600160a01b031633146118bc5760405162461bcd60e51b8152600401610e2b906134a3565b6001600160a01b0381166118e25760405162461bcd60e51b8152600401610e2b90613346565b60005b60145481101561194157816001600160a01b03166014828154811061190657fe5b6000918252602090912001546001600160a01b031614156119395760405162461bcd60e51b8152600401610e2b90613415565b6001016118e5565b50601480546001810182556000919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0180546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000611a2f6040518060400160405280846000600281106119eb57fe5b6020020160208101906119fe9190612dfd565b6001600160a01b03168152602090810190611a1f9060408701908701612dfd565b6001600160a01b031690526123ab565b506001919050565b600e5481565b600a6020526000908152604090205481565b600c546001600160a01b031681565b6011546201000090046001600160a01b03163314611a8e5760405162461bcd60e51b8152600401610e2b906134a3565b6001600160a01b038116611ab45760405162461bcd60e51b8152600401610e2b906132be565b6011546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3601180546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60108181548110611b2b57fe5b60009182526020909120600590910201805460018201546002909201546001600160a01b0391821693509116906001600160801b0380821691600160801b90041684565b6011546201000090046001600160a01b03163314611b9f5760405162461bcd60e51b8152600401610e2b906134a3565b6011805460ff19166001179055565b6000611bb8610d62565b905090565b600082821115611bdf5760405162461bcd60e51b8152600401610e2b906133a7565b50900390565b600082820183811015610de95760405162461bcd60e51b8152600401610e2b90613370565b600082611c19575060006109e6565b82820282848281611c2657fe5b0414610de95760405162461bcd60e51b8152600401610e2b90613462565b6000808211611c655760405162461bcd60e51b8152600401610e2b906133de565b818381611c6e57fe5b049392505050565b60006001600160a01b0382161580611c9b5750600f546001600160a01b038381169116145b15611ca857506000610933565b601454611cbf57611cb8826114c7565b9050610933565b6000805b601454811015611d7a5760148181548110611cda57fe5b600091825260209091200154604051631c9e379b60e01b81526001600160a01b0390911690631c9e379b90611d13908790600401613108565b60206040518083038186803b158015611d2b57600080fd5b505afa925050508015611d5b575060408051601f3d908101601f19168201909252611d5891810190613038565b60015b611d6457611d72565b611d6e8382611be5565b9250505b600101611cc3565b50600f54604051630acc462360e31b81526000916001600160a01b031690635662311890611db0903090869086906004016131c2565b60206040518083038186803b158015611dc857600080fd5b505afa158015611ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e009190613038565b9050611e1581611e0f866114c7565b90611be5565b949350505050565b3390565b6001600160a01b038316611e475760405162461bcd60e51b8152600401610e2b90613580565b6001600160a01b038216611e6d5760405162461bcd60e51b8152600401610e2b90613304565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611ec8908590613709565b60405180910390a3505050565b6001600160a01b038316611efb5760405162461bcd60e51b8152600401610e2b90613519565b6001600160a01b038216611f215760405162461bcd60e51b8152600401610e2b9061327b565b611f2c838383612485565b611f69816040518060600160405280602681526020016137ac602691396001600160a01b0386166000908152602081905260409020549190611fea565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f989082611be5565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611ec8908590613709565b6000818484111561200e5760405162461bcd60e51b8152600401610e2b9190613248565b505050900390565b6001600160a01b03821661203c5760405162461bcd60e51b8152600401610e2b906134d8565b61204882600083612485565b6120858160405180606001604052806022815260200161378a602291396001600160a01b0385166000908152602081905260409020549190611fea565b6001600160a01b0383166000908152602081905260409020556002546120ab9082611bbd565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120ec908590613709565b60405180910390a35050565b61214e8363a9059cbb60e01b84846040516024016121179291906131a9565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526124ac565b505050565b6001600160a01b0382166121795760405162461bcd60e51b8152600401610e2b906136d2565b61218560008383612485565b6002546121929082611be5565b6002556001600160a01b0382166000908152602081905260409020546121b89082611be5565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120ec908590613709565b610d5c846323b872dd60e01b8585856040516024016121179392919061316a565b8015806122b05750604051636eb1769f60e11b81526001600160a01b0384169063dd62ed3e9061225e903090869060040161311c565b60206040518083038186803b15801561227657600080fd5b505afa15801561228a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ae9190613038565b155b6122cc5760405162461bcd60e51b8152600401610e2b9061367c565b61214e8363095ea7b360e01b84846040516024016121179291906131a9565b60006122f5611bae565b90506122ff612dca565b6123108360005b6020020151611c76565b8152600d54604051637050ccd960e01b81526001600160a01b0390911690637050ccd99061234590309060019060040161318e565b600060405180830381600087803b15801561235f57600080fd5b505af1158015612373573d6000803e3d6000fd5b50506010549150600090505b8181101561239d5761239581868587600161253b565b60010161237f565b50610d5c8483856001612960565b60115460ff16156123bb57611889565b60006123c5611bae565b90506123cf612dca565b6123da836000612306565b81526123e7836001612306565b6020820152600d54604051637050ccd960e01b81526001600160a01b0390911690637050ccd99061241f90309060019060040161318e565b600060405180830381600087803b15801561243957600080fd5b505af115801561244d573d6000803e3d6000fd5b50506010549150600090505b818110156124775761246f81868587600061253b565b600101612459565b50610d5c8483856000612960565b604080518082019091526001600160a01b0380851682528316602082015261214e906123ab565b6060612501826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c4c9092919063ffffffff16565b80519091501561214e578080602001905181019061251f9190612f65565b61214e5760405162461bcd60e51b8152600401610e2b906135fb565b60006010868154811061254a57fe5b60009182526020822060059091020180546040516370a0823160e01b81529193506001600160a01b0316906370a0823190612589903090600401613108565b60206040518083038186803b1580156125a157600080fd5b505afa1580156125b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d99190613038565b905060008411801561260b57506002820154600090612609908390600160801b90046001600160801b0316611bbd565b115b1561266d57600282015461264590859061073a9068056bc75e2d6310000090610784908690600160801b90046001600160801b0316611bbd565b6002830180546001600160801b031981166001600160801b0391821693909301169190911790555b60005b600281101561291e57600087826002811061268757fe5b60200201516001600160a01b031614156126a057612916565b600f546001600160a01b03168782600281106126b857fe5b60200201516001600160a01b031614156126d157612916565b60008360030160008984600281106126e557fe5b60200201516001600160a01b03166001600160a01b031681526020019081526020016000205490508480612725575060028401546001600160801b031681105b1561291457841561283d5760028401546000906127bf906127799068056bc75e2d631000009061073a90612762906001600160801b031687611bbd565b8c886002811061276e57fe5b602002015190611c0a565b8660040160008c876002811061278b57fe5b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002054611be590919063ffffffff16565b905080156128375760008560040160008b86600281106127db57fe5b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555061282a89846002811061281357fe5b602002015186546001600160a01b031690836120f8565b6128348482611bbd565b93505b506128c6565b600284015461288a906128789068056bc75e2d631000009061073a9061286c906001600160801b031686611bbd565b8b876002811061276e57fe5b8560040160008b866002811061278b57fe5b8460040160008a856002811061289c57fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b6002808501546001600160801b03169060038601906000908b90869081106128ea57fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b505b600101612670565b506002820154600160801b90046001600160801b03168114612957576002820180546001600160801b03808416600160801b0291161790555b50505050505050565b6040516370a0823160e01b8152600090734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b906370a082319061299a903090600401613108565b60206040518083038186803b1580156129b257600080fd5b505afa1580156129c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ea9190613038565b90506000612a0360085483611bbd90919063ffffffff16565b9050600084118015612a155750600081115b15612a3c57612a318461073a8368056bc75e2d63100000611c0a565b600754016007819055505b60005b6002811015612c34576000878260028110612a5657fe5b60200201516001600160a01b03161415612a6f57612c2c565b600f546001600160a01b0316878260028110612a8757fe5b60200201516001600160a01b03161415612aa057612c2c565b600060096000898460028110612ab257fe5b60200201516001600160a01b03166001600160a01b031681526020019081526020016000205490508480612ae7575060075481105b15612c2a576000612b26612b1668056bc75e2d6310000061073a61276286600754611bbd90919063ffffffff16565b600a60008c876002811061278b57fe5b90508515612bb1578015612bac576000600a60008b8660028110612b4657fe5b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550612b9f898460028110612b7e57fe5b6020020151734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b90836120f8565b612ba98582611bbd565b94505b612bec565b80600a60008b8660028110612bc257fe5b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055505b600754600960008b8660028110612bff57fe5b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550505b505b600101612a3f565b506008548214612c445760088290555b505050505050565b6060611e15848460008585612c6085612cf6565b612c7c5760405162461bcd60e51b8152600401610e2b906135c4565b60006060866001600160a01b03168587604051612c999190613074565b60006040518083038185875af1925050503d8060008114612cd6576040519150601f19603f3d011682016040523d82523d6000602084013e612cdb565b606091505b5091509150612ceb828286612cfc565b979650505050505050565b3b151590565b60608315612d0b575081610de9565b825115612d1b5782518084602001fd5b8160405162461bcd60e51b8152600401610e2b9190613248565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612d8d57805160ff1916838001178555612dba565b82800160010185558215612dba579182015b82811115612dba578251825591602001919060010190612d9f565b50612dc6929150612de8565b5090565b60405180604001604052806002906020820280368337509192915050565b5b80821115612dc65760008155600101612de9565b600060208284031215612e0e578081fd5b8135610de981613774565b600060208284031215612e2a578081fd5b8151610de981613774565b60008060408385031215612e47578081fd5b8235612e5281613774565b91506020830135612e6281613774565b809150509250929050565b600080600080600060a08688031215612e84578081fd5b8535612e8f81613774565b94506020860135612e9f81613774565b93506040860135612eaf81613774565b9250606086013591506080860135612ec681613774565b809150509295509295909350565b600080600060608486031215612ee8578283fd5b8335612ef381613774565b92506020840135612f0381613774565b929592945050506040919091013590565b60008060408385031215612f26578182fd5b8235612f3181613774565b946020939093013593505050565b600060408284031215612f50578081fd5b82604083011115612f5f578081fd5b50919050565b600060208284031215612f76578081fd5b81518015158114610de9578182fd5b600060208284031215612f96578081fd5b815167ffffffffffffffff80821115612fad578283fd5b818401915084601f830112612fc0578283fd5b815181811115612fce578384fd5b604051601f8201601f191681016020018381118282101715612fee578586fd5b604052818152838201602001871015613005578485fd5b613016826020830160208701613748565b9695505050505050565b600060208284031215613031578081fd5b5035919050565b600060208284031215613049578081fd5b5051919050565b60008060408385031215613062578182fd5b823591506020830135612e6281613774565b60008251613086818460208701613748565b9190910192915050565b600066029ba30b5b2b2160cd1b825282516130b2816007850160208701613748565b64204162726160d81b6007939091019283015250600c01919050565b60006273746b60e81b825282516130ec816003850160208701613748565b642d6162726160d81b6003939091019283015250600801919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b0394851681529290931660208301526001600160801b039081166040830152909116606082015260800190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b039290921682521515602082015260400190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0393909316835260208301919091521515604082015260600190565b602080825282518282018190526000919060409081850190868401855b8281101561323057815180516001600160a01b03168552860151868501529284019290850190600101613202565b5091979650505050505050565b901515815260200190565b6000602082528251806020840152613267816040850160208701613748565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526010908201526f34b73b30b634b21031b0bab6323937b760811b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b6020808252600d908201526c185b1c9958591e481859191959609a1b604082015260600190565b6020808252600c908201526b185b1c9958591e481a5b9a5d60a21b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526008908201526739b43aba3237bbb760c11b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526036908201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60408201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b9182521515602082015260400190565b92835260208301919091521515604082015260600190565b60ff91909116815260200190565b60005b8381101561376357818101518382015260200161374b565b83811115610d5c5750506000910152565b6001600160a01b038116811461188957600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201df206484aa0ad1afa1a72ab8c5c83ceb3041ad80880e3f948c2acaa9028ca3d64736f6c634300060c0033

Deployed Bytecode Sourcemap

54873:2802:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50898:1486;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42782:97;;;:::i;:::-;;;;;;;:::i;30223:169::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41299:30::-;;;:::i;:::-;;;;;;;:::i;43999:957::-;;;:::i;:::-;;29176:108;;;:::i;:::-;;;;;;;:::i;30874:321::-;;;;;;:::i;:::-;;:::i;40894:91::-;;;:::i;53628:397::-;;;;;;:::i;:::-;;:::i;42996:85::-;;;:::i;:::-;;;;;;;:::i;31604:218::-;;;;;;:::i;:::-;;:::i;54078:439::-;;;;;;:::i;:::-;;:::i;50762:128::-;;;;;;:::i;:::-;;:::i;41168:25::-;;;:::i;55118:972::-;;;;;;:::i;:::-;;:::i;55053:26::-;;;;;;:::i;:::-;;:::i;40992:81::-;;;:::i;52604:483::-;;;;;;:::i;:::-;;:::i;29347:127::-;;;;;;:::i;:::-;;:::i;43463:146::-;;;:::i;40654:34::-;;;:::i;53123:457::-;;;;;;:::i;:::-;;:::i;40695:35::-;;;:::i;43700:291::-;;;:::i;41461:20::-;;;:::i;41080:81::-;;;:::i;42887:101::-;;;:::i;40737:58::-;;;;;;:::i;:::-;;:::i;32325:269::-;;;;;;:::i;:::-;;:::i;56098:101::-;;;:::i;29687:175::-;;;;;;:::i;:::-;;:::i;41436:18::-;;;:::i;44964:95::-;;;:::i;41407:22::-;;;:::i;52392:175::-;;;;;;:::i;:::-;;:::i;56207:599::-;;;;;;:::i;:::-;;:::i;41233:25::-;;;:::i;29925:151::-;;;;;;:::i;:::-;;:::i;50593:161::-;;;;;;:::i;:::-;;:::i;41265:27::-;;;:::i;40802:55::-;;;;;;:::i;:::-;;:::i;41200:26::-;;;:::i;43213:242::-;;;;;;:::i;:::-;;:::i;41353:27::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;43617:75::-;;;:::i;50898:1486::-;50954:29;50996:14;51013:17;:15;:17::i;:::-;51134:7;:14;50996:34;;-1:-1:-1;51202:1:0;51188:15;;51171:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;51159:45;;51222:9;51217:1133;51241:11;51237:1;:15;51217:1133;;;51274:25;51302:7;51310:1;51302:10;;;;;;;;;;;;;;;;;;;;51429:19;;51422:52;;-1:-1:-1;;;51422:52:0;;51302:10;;-1:-1:-1;;;;;;51429:19:0;;51422:37;;:52;;51468:4;;51422:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51516:23;;;;51408:66;;-1:-1:-1;51489:16:0;;51508:32;;51408:66;;-1:-1:-1;;;51516:23:0;;-1:-1:-1;;;;;51516:23:0;51508:7;:32::i;:::-;51594:18;;;;51579:56;;-1:-1:-1;;;51579:56:0;;51489:51;;-1:-1:-1;51566:70:0;;-1:-1:-1;;;;;51594:18:0;;;;51579:41;;:56;;51629:4;;51579:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51566:8;;:12;:70::i;:::-;51665:22;;;;51555:81;;-1:-1:-1;;;;;;51665:22:0;51706:10;;51702:89;;51745:30;51768:6;51745:18;:8;51758:4;51745:12;:18::i;:::-;:22;;:30::i;:::-;51741:34;51702:89;-1:-1:-1;;;;;51873:36:0;;51807:22;51873:36;;;:26;;;:36;;;;;;51832:89;;51916:4;;51832:79;;51867:43;;:1;;:5;:43::i;:::-;51832:30;51853:8;51832:20;:30::i;:::-;:34;;:79::i;:89::-;-1:-1:-1;;;;;51958:33:0;;;;;;:23;;;:33;;;;;;51807:114;;-1:-1:-1;51958:53:0;;51807:114;51958:37;:53::i;:::-;51936:9;51946:1;51936:12;;;;;;;;;;;;;;;;;;;:19;:75;52047:19;;52026:12;;-1:-1:-1;;;;;52047:19:0;;;;52026:9;;52036:1;;52026:12;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52026:40:0;;;;;52115:19;;;41030:42;52115:26;52112:227;;;52228:41;;-1:-1:-1;;;52228:41:0;;52193:77;;52228:9;;:25;;:41;;52254:14;;52228:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52193:30:0;;;;;;:20;:30;;;;;;;:34;:77::i;:::-;52161:9;52171:11;52161:22;;;;;;;;;;;;;;:29;;:109;;;;;41118:42;52289:9;52299:11;52289:22;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52289:34:0;;;;;52112:227;-1:-1:-1;;51254:3:0;;;;;-1:-1:-1;51217:1133:0;;-1:-1:-1;;51217:1133:0;;;52360:16;;50898:1486;;;;:::o;42782:97::-;42861:10;42854:17;;;;;;;;-1:-1:-1;;42854:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42828:13;;42854:17;;42861:10;;42854:17;;42861:10;42854:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42782:97;:::o;30223:169::-;30306:4;30323:39;30332:12;:10;:12::i;:::-;30346:7;30355:6;30323:8;:39::i;:::-;-1:-1:-1;30380:4:0;30223:169;;;;;:::o;41299:30::-;;;-1:-1:-1;;;;;41299:30:0;;:::o;43999:957::-;44058:10;;44085:7;:14;-1:-1:-1;;;;;44058:10:0;;;;44081:296;;44152:198;;;;;;;;41030:42;44152:198;;-1:-1:-1;;;;;44152:198:0;;;;;;;;;-1:-1:-1;44152:198:0;;;;;;;;;;;;44121:7;:244;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44121:244:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44121:244:0;;;-1:-1:-1;;;;;44121:244:0;;;;;;-1:-1:-1;;;44121:244:0;;;;;;;;;;;44081:296;44389:18;44425:8;-1:-1:-1;;;;;44410:43:0;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44487:7;:14;44389:66;;-1:-1:-1;;;44487:18:0;;44516:433;44549:10;44545:1;:14;44516:433;;;44601:40;;-1:-1:-1;;;44601:40:0;;44581:17;;-1:-1:-1;;;;;44601:37:0;;;;;:40;;44639:1;;44601:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44581:60;;44656:7;44687:235;;;;;;;;44750:9;-1:-1:-1;;;;;44735:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44687:235:0;;;;;;;;;;;;;;;;-1:-1:-1;44687:235:0;;;;;;;;;;;;;;44656:281;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44656:281:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44656:281:0;;;-1:-1:-1;;;;;44656:281:0;;;;;;-1:-1:-1;;;44656:281:0;;;;;;;;;;;;44561:3;44516:433;;;;43999:957;;;:::o;29176:108::-;29264:12;;29176:108;:::o;30874:321::-;30980:4;30997:36;31007:6;31015:9;31026:6;30997:9;:36::i;:::-;31044:121;31053:6;31061:12;:10;:12::i;:::-;31075:89;31113:6;31075:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31075:19:0;;;;;;:11;:19;;;;;;31095:12;:10;:12::i;:::-;-1:-1:-1;;;;;31075:33:0;;;;;;;;;;;;-1:-1:-1;31075:33:0;;;:89;:37;:89::i;:::-;31044:8;:121::i;:::-;-1:-1:-1;31183:4:0;30874:321;;;;;;:::o;40894:91::-;40942:42;40894:91;:::o;53628:397::-;38698:1;39304:7;;:19;;39296:63;;;;-1:-1:-1;;;39296:63:0;;;;;;;:::i;:::-;;;;;;;;;38698:1;39437:7;:18;53763:11;;53759:204:::1;;53791:26;53797:10;53809:7;53791:5;:26::i;:::-;53847:10;::::0;53832:51:::1;::::0;-1:-1:-1;;;53832:51:0;;-1:-1:-1;;;;;53847:10:0;;::::1;::::0;53832:35:::1;::::0;:51:::1;::::0;53868:7;;53847:10:::1;::::0;53832:51:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;53905:11:0::1;::::0;53898:53:::1;::::0;-1:-1:-1;;;;;;53905:11:0::1;::::0;-1:-1:-1;53931:10:0::1;53943:7:::0;53898:32:::1;:53::i;:::-;53990:10;-1:-1:-1::0;;;;;53980:37:0::1;;54002:7;54011:5;53980:37;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;38654:1:0;39616:7;:22;53628:397::o;42996:85::-;43071:2;42996:85;:::o;31604:218::-;31692:4;31709:83;31718:12;:10;:12::i;:::-;31732:7;31741:50;31780:10;31741:11;:25;31753:12;:10;:12::i;:::-;-1:-1:-1;;;;;31741:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31741:25:0;;;:34;;;;;;;;;;;:38;:50::i;54078:439::-;38698:1;39304:7;;:19;;39296:63;;;;-1:-1:-1;;;39296:63:0;;;;;;;:::i;:::-;38698:1;39437:7;:18;54230:11;;54226:212:::1;;54258:26;54264:10;54276:7;54258:5;:26::i;:::-;54314:10;::::0;54299:60:::1;::::0;-1:-1:-1;;;54299:60:0;;-1:-1:-1;;;;;54314:10:0;;::::1;::::0;54299:44:::1;::::0;:60:::1;::::0;54344:7;;54314:10:::1;::::0;54299:60:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54381:10:0::1;::::0;54374:52:::1;::::0;-1:-1:-1;;;;;;54381:10:0::1;::::0;-1:-1:-1;54406:10:0::1;54418:7:::0;54374:31:::1;:52::i;:::-;54483:10;-1:-1:-1::0;;;;;54473:36:0::1;;54495:7;54504:4;54473:36;;;;;;;:::i;50762:128::-:0;50826:7;50852:30;50873:8;50852:20;:30::i;41168:25::-;;;-1:-1:-1;;;;;41168:25:0;;:::o;55118:972::-;55278:6;;;;;;;55277:7;55269:31;;;;-1:-1:-1;;;55269:31:0;;;;;;;:::i;:::-;55311:5;:59;;;-1:-1:-1;;;;;;55311:59:0;;;;;;;;55415:39;;55311:59;55448:5;;;-1:-1:-1;;;;;55448:5:0;;-1:-1:-1;;55415:39:0;;-1:-1:-1;;55415:39:0;55519:12;-1:-1:-1;;;;;55513:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55513:26:0;;;;;;;;;;;;:::i;:::-;55485:65;;;;;;;;:::i;:::-;;;;;;;;;;;;;55465:10;:86;;;;;;;;;;;;:::i;:::-;;55614:12;-1:-1:-1;;;;;55608:26:0;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55608:28:0;;;;;;;;;;;;:::i;:::-;55584:62;;;;;;;;:::i;:::-;;;;;;;;;;;;;55562:12;:85;;;;;;;;;;;;:::i;:::-;-1:-1:-1;55658:10:0;:18;;-1:-1:-1;;55687:13:0;55658:18;55687:13;;;55711:10;:24;;-1:-1:-1;;;;;55711:24:0;;;-1:-1:-1;;;;;;55711:24:0;;;;;;;55746:11;:26;;;;;;;;;;;55783:10;:24;;;;;;;;;;;55818:12;:22;;;55851:15;:69;;;;;55877:42;55851:69;;;55940:20;;;55937:73;;55976:9;:22;;;;;;;-1:-1:-1;55976:22:0;;;;;;;;-1:-1:-1;;;;;;55976:22:0;-1:-1:-1;;;;;55976:22:0;;;;;55937:73;56045:12;:10;:12::i;:::-;56068:14;:12;:14::i;:::-;55118:972;;;;;:::o;55053:26::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55053:26:0;;-1:-1:-1;55053:26:0;:::o;40992:81::-;41030:42;40992:81;:::o;52604:483::-;38698:1;39304:7;;:19;;39296:63;;;;-1:-1:-1;;;39296:63:0;;;;;;;:::i;:::-;38698:1;39437:7;:18;52693:10:::1;::::0;::::1;;52692:11;52684:32;;;;-1:-1:-1::0;;;52684:32:0::1;;;;;;;:::i;:::-;52794:11:::0;;52790:231:::1;;52822:19;52828:3;52833:7;52822:5;:19::i;:::-;52863:10;::::0;52856:71:::1;::::0;-1:-1:-1;;;;;52863:10:0::1;52892;52912:4;52919:7:::0;52856:35:::1;:71::i;:::-;52981:12;::::0;52942:67:::1;::::0;-1:-1:-1;;;52942:67:0;;40942:42:::1;::::0;52942:38:::1;::::0;:67:::1;::::0;52981:12;52995:7;;53004:4:::1;::::0;52942:67:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52790:231;53060:3;-1:-1:-1::0;;;;;53038:41:0::1;53048:10;-1:-1:-1::0;;;;;53038:41:0::1;;53065:7;53074:4;53038:41;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;38654:1:0;39616:7;:22;52604:483::o;29347:127::-;-1:-1:-1;;;;;29448:18:0;29421:7;29448:18;;;;;;;;;;;;29347:127::o;43463:146::-;43129:5;;;;;-1:-1:-1;;;;;43129:5:0;43138:10;43129:19;43121:64;;;;-1:-1:-1;;;43121:64:0;;;;;;;:::i;:::-;43554:5:::1;::::0;43533:39:::1;::::0;43569:1:::1;::::0;43554:5;;::::1;-1:-1:-1::0;;;;;43554:5:0::1;::::0;43533:39:::1;::::0;43569:1;;43533:39:::1;43583:5;:18:::0;;-1:-1:-1;;;;;;43583:18:0::1;::::0;;43463:146::o;40654:34::-;;;;:::o;53123:457::-;38698:1;39304:7;;:19;;39296:63;;;;-1:-1:-1;;;39296:63:0;;;;;;;:::i;:::-;38698:1;39437:7;:18;53210:10:::1;::::0;::::1;;53209:11;53201:32;;;;-1:-1:-1::0;;;53201:32:0::1;;;;;;;:::i;:::-;53311:11:::0;;53307:206:::1;;53339:19;53345:3;53350:7;53339:5;:19::i;:::-;53380:11;::::0;53373:72:::1;::::0;-1:-1:-1;;;;;53380:11:0::1;53410:10;53430:4;53437:7:::0;53373:36:::1;:72::i;:::-;53475:10;::::0;53460:41:::1;::::0;-1:-1:-1;;;53460:41:0;;-1:-1:-1;;;;;53475:10:0;;::::1;::::0;53460:32:::1;::::0;:41:::1;::::0;53493:7;;53460:41:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53307:206;53552:3;-1:-1:-1::0;;;;;53530:42:0::1;53540:10;-1:-1:-1::0;;;;;53530:42:0::1;;53557:7;53566:5;53530:42;;;;;;;:::i;40695:35::-:0;;;;:::o;43700:291::-;43749:10;;43742:48;;-1:-1:-1;;;;;43749:10:0;40942:42;43788:1;43742:30;:48::i;:::-;43808:10;;43801:58;;-1:-1:-1;;;;;43808:10:0;40942:42;-1:-1:-1;;43801:30:0;:58::i;:::-;43902:10;;43877:11;;43870:46;;-1:-1:-1;;;;;43877:11:0;;;;43902:10;;43870:31;:46::i;:::-;43959:10;;43934:11;;43927:56;;-1:-1:-1;;;;;43934:11:0;;;;43959:10;-1:-1:-1;;43927:31:0;:56::i;:::-;43700:291::o;41461:20::-;;;;;;-1:-1:-1;;;;;41461:20:0;;:::o;41080:81::-;41118:42;41080:81;:::o;42887:101::-;42968:12;42961:19;;;;;;;;-1:-1:-1;;42961:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42935:13;;42961:19;;42968:12;;42961:19;;42968:12;42961:19;;;;;;;;;;;;;;;;;;;;;;;;40737:58;;;;;;;;;;;;;:::o;32325:269::-;32418:4;32435:129;32444:12;:10;:12::i;:::-;32458:7;32467:96;32506:15;32467:96;;;;;;;;;;;;;;;;;:11;:25;32479:12;:10;:12::i;:::-;-1:-1:-1;;;;;32467:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32467:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;56098:101::-;56175:9;:16;56098:101;:::o;29687:175::-;29773:4;29790:42;29800:12;:10;:12::i;:::-;29814:9;29825:6;29790:9;:42::i;41436:18::-;;;;;;;;;:::o;44964:95::-;45037:7;:14;44964:95;:::o;41407:22::-;;;;;;:::o;52392:175::-;52516:43;;;;;;;;;-1:-1:-1;;;;;52516:43:0;;;;-1:-1:-1;52516:43:0;;;;;;:19;:43::i;:::-;52392:175;:::o;56207:599::-;43129:5;;;;;-1:-1:-1;;;;;43129:5:0;43138:10;43129:19;43121:64;;;;-1:-1:-1;;;43121:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56363:23:0;::::1;56355:52;;;;-1:-1:-1::0;;;56355:52:0::1;;;;;;;:::i;:::-;56456:9;56452:123;56475:9;:16:::0;56471:20;::::1;56452:123;;;56536:9;-1:-1:-1::0;;;;;56520:25:0::1;:9;56530:1;56520:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;56520:12:0::1;:25;;56512:51;;;;-1:-1:-1::0;;;56512:51:0::1;;;;;;;:::i;:::-;56493:3;;56452:123;;;-1:-1:-1::0;56773:9:0::1;:25:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;56773:25:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;56773:25:0::1;-1:-1:-1::0;;;;;56773:25:0;;;::::1;::::0;;;::::1;::::0;;56207:599::o;41233:25::-;;;-1:-1:-1;;;;;41233:25:0;;:::o;29925:151::-;-1:-1:-1;;;;;30041:18:0;;;30014:7;30041:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29925:151::o;50593:161::-;50666:4;50683:41;;;;;;;;;50696:9;50706:1;50696:12;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50683:41:0;;;;;;;;50710:12;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50683:41:0;;;:11;:41::i;:::-;-1:-1:-1;50742:4:0;50593:161;;;:::o;41265:27::-;;;;:::o;40802:55::-;;;;;;;;;;;;;:::o;41200:26::-;;;-1:-1:-1;;;;;41200:26:0;;:::o;43213:242::-;43129:5;;;;;-1:-1:-1;;;;;43129:5:0;43138:10;43129:19;43121:64;;;;-1:-1:-1;;;43121:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43302:22:0;::::1;43294:73;;;;-1:-1:-1::0;;;43294:73:0::1;;;;;;;:::i;:::-;43404:5;::::0;43383:37:::1;::::0;-1:-1:-1;;;;;43383:37:0;;::::1;::::0;43404:5;;::::1;;::::0;43383:37:::1;::::0;;;::::1;43431:5;:16:::0;;-1:-1:-1;;;;;43431:16:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;43431:16:0;;::::1;::::0;;;::::1;::::0;;43213:242::o;41353:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41353:27:0;;;;-1:-1:-1;41353:27:0;;;-1:-1:-1;;;;;41353:27:0;;;;-1:-1:-1;;;41353:27:0;;;;:::o;43617:75::-;43129:5;;;;;-1:-1:-1;;;;;43129:5:0;43138:10;43129:19;43121:64;;;;-1:-1:-1;;;43121:64:0;;;;;;;:::i;:::-;43667:10:::1;:17:::0;;-1:-1:-1;;43667:17:0::1;43680:4;43667:17;::::0;;43617:75::o;45357:178::-;45414:7;45514:13;:11;:13::i;:::-;45507:20;;45357:178;:::o;6144:158::-;6202:7;6235:1;6230;:6;;6222:49;;;;-1:-1:-1;;;6222:49:0;;;;;;;:::i;:::-;-1:-1:-1;6289:5:0;;;6144:158::o;5682:179::-;5740:7;5772:5;;;5796:6;;;;5788:46;;;;-1:-1:-1;;;5788:46:0;;;;;;;:::i;6561:220::-;6619:7;6643:6;6639:20;;-1:-1:-1;6658:1:0;6651:8;;6639:20;6682:5;;;6686:1;6682;:5;:1;6706:5;;;;;:10;6698:56;;;;-1:-1:-1;;;6698:56:0;;;;;;;:::i;7259:153::-;7317:7;7349:1;7345;:5;7337:44;;;;-1:-1:-1;;;7337:44:0;;;;;;;:::i;:::-;7403:1;7399;:5;;;;;;;7259:153;-1:-1:-1;;;7259:153:0:o;56814:858::-;56893:7;-1:-1:-1;;;;;56917:22:0;;;;:53;;-1:-1:-1;56955:15:0;;-1:-1:-1;;;;;56943:27:0;;;56955:15;;56943:27;56917:53;56913:94;;;-1:-1:-1;56994:1:0;56987:8;;56913:94;57022:9;:16;57019:78;;57066:19;57076:8;57066:9;:19::i;:::-;57059:26;;;;57019:78;57163:13;;57187:219;57210:9;:16;57206:20;;57187:219;;;57261:9;57271:1;57261:12;;;;;;;;;;;;;;;;;;57251:53;;-1:-1:-1;;;57251:53:0;;-1:-1:-1;;;;;57261:12:0;;;;57251:43;;:53;;57295:8;;57251:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57251:53:0;;;;;;;;-1:-1:-1;;57251:53:0;;;;;;;;;;;;:::i;:::-;;;57247:148;;;;;57355:17;:5;57365:6;57355:9;:17::i;:::-;57347:25;;57305:83;57247:148;57228:3;;57187:219;;;-1:-1:-1;57507:15:0;;57497:64;;-1:-1:-1;;;57497:64:0;;57476:18;;-1:-1:-1;;;;;57507:15:0;;57497:35;;:64;;57541:4;;57548:5;;57476:18;;57497:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57476:85;;57629:35;57653:10;57629:19;57639:8;57629:9;:19::i;:::-;:23;;:35::i;:::-;57622:42;56814:858;-1:-1:-1;;;;56814:858:0:o;25563:106::-;25651:10;25563:106;:::o;35472:346::-;-1:-1:-1;;;;;35574:19:0;;35566:68;;;;-1:-1:-1;;;35566:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35653:21:0;;35645:68;;;;-1:-1:-1;;;35645:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35726:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;35778:32;;;;;35756:6;;35778:32;:::i;:::-;;;;;;;;35472:346;;;:::o;33084:539::-;-1:-1:-1;;;;;33190:20:0;;33182:70;;;;-1:-1:-1;;;33182:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33271:23:0;;33263:71;;;;-1:-1:-1;;;33263:71:0;;;;;;;:::i;:::-;33347:47;33368:6;33376:9;33387:6;33347:20;:47::i;:::-;33427:71;33449:6;33427:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33427:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;33407:17:0;;;:9;:17;;;;;;;;;;;:91;;;;33532:20;;;;;;;:32;;33557:6;33532:24;:32::i;:::-;-1:-1:-1;;;;;33509:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;33580:35;;;;;;;;;;33608:6;;33580:35;:::i;8509:166::-;8595:7;8631:12;8623:6;;;;8615:29;;;;-1:-1:-1;;;8615:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;8662:5:0;;;8509:166::o;34616:418::-;-1:-1:-1;;;;;34700:21:0;;34692:67;;;;-1:-1:-1;;;34692:67:0;;;;;;;:::i;:::-;34772:49;34793:7;34810:1;34814:6;34772:20;:49::i;:::-;34855:68;34878:6;34855:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34855:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;34834:18:0;;:9;:18;;;;;;;;;;:89;34949:12;;:24;;34966:6;34949:16;:24::i;:::-;34934:12;:39;34989:37;;35015:1;;-1:-1:-1;;;;;34989:37:0;;;;;;;35019:6;;34989:37;:::i;:::-;;;;;;;;34616:418;;:::o;21845:177::-;21928:86;21948:5;21978:23;;;22003:2;22007:5;21955:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;21955:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;21955:58:0;-1:-1:-1;;;;;;21955:58:0;;;;;;;;;;21928:19;:86::i;:::-;21845:177;;;:::o;33905:378::-;-1:-1:-1;;;;;33989:21:0;;33981:65;;;;-1:-1:-1;;;33981:65:0;;;;;;;:::i;:::-;34059:49;34088:1;34092:7;34101:6;34059:20;:49::i;:::-;34136:12;;:24;;34153:6;34136:16;:24::i;:::-;34121:12;:39;-1:-1:-1;;;;;34192:18:0;;:9;:18;;;;;;;;;;;:30;;34215:6;34192:22;:30::i;:::-;-1:-1:-1;;;;;34171:18:0;;:9;:18;;;;;;;;;;;:51;;;;34238:37;;34171:18;;:9;34238:37;;;;34268:6;;34238:37;:::i;22030:205::-;22131:96;22151:5;22181:27;;;22210:4;22216:2;22220:5;22158:68;;;;;;;;;;:::i;22504:622::-;22874:10;;;22873:62;;-1:-1:-1;22890:39:0;;-1:-1:-1;;;22890:39:0;;-1:-1:-1;;;;;22890:15:0;;;;;:39;;22914:4;;22921:7;;22890:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;22873:62;22865:152;;;;-1:-1:-1;;;22865:152:0;;;;;;;:::i;:::-;23028:90;23048:5;23078:22;;;23102:7;23111:5;23055:62;;;;;;;;;:::i;49997:588::-;50077:14;50094:17;:15;:17::i;:::-;50077:34;;50122;;:::i;:::-;50189;50210:9;50220:1;50210:12;;;;;50189:20;:34::i;:::-;50167:56;;50280:10;;50265:57;;-1:-1:-1;;;50265:57:0;;-1:-1:-1;;;;;50280:10:0;;;;50265:36;;:57;;50310:4;;50280:10;;50265:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50357:7:0;:14;;-1:-1:-1;50335:19:0;;-1:-1:-1;50382:129:0;50406:11;50402:1;:15;50382:129;;;50438:61;50458:1;50460:9;50470:16;50487:6;50494:4;50438:19;:61::i;:::-;50419:3;;50382:129;;;;50521:56;50538:9;50548:16;50565:6;50572:4;50521:16;:56::i;49257:732::-;49402:10;;;;49399:22;;;49414:7;;49399:22;49433:14;49450:17;:15;:17::i;:::-;49433:34;;49478;;:::i;:::-;49545;49566:9;49576:1;49566:12;;49545:34;49523:56;;49612:34;49633:9;49643:1;49633:12;;49612:34;49590:19;;;:56;49682:10;;49667:57;;-1:-1:-1;;;49667:57:0;;-1:-1:-1;;;;;49682:10:0;;;;49667:36;;:57;;49712:4;;49607:1;;49667:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49759:7:0;:14;;-1:-1:-1;49737:19:0;;-1:-1:-1;49784:130:0;49808:11;49804:1;:15;49784:130;;;49840:62;49860:1;49862:9;49872:16;49889:6;49896:5;49840:19;:62::i;:::-;49821:3;;49784:130;;;;49924:57;49941:9;49951:16;49968:6;49975:5;49924:16;:57::i;54525:137::-;54629:25;;;;;;;;;-1:-1:-1;;;;;54629:25:0;;;;;;;;;;;;;:11;:25::i;24150:761::-;24574:23;24600:69;24628:4;24600:69;;;;;;;;;;;;;;;;;24608:5;-1:-1:-1;;;;;24600:27:0;;;:69;;;;;:::i;:::-;24684:17;;24574:95;;-1:-1:-1;24684:21:0;24680:224;;24826:10;24815:30;;;;;;;;;;;;:::i;:::-;24807:85;;;;-1:-1:-1;;;24807:85:0;;;;;;;:::i;47138:2111::-;47293:25;47321:7;47329:6;47321:15;;;;;;;;;;;;;;;;;;;;47537:19;;47530:52;;-1:-1:-1;;;47530:52:0;;47321:15;;-1:-1:-1;;;;;;47537:19:0;;47530:37;;:52;;47576:4;;47530:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47516:66;;47674:1;47664:7;:11;:51;;;;-1:-1:-1;47687:23:0;;;;47714:1;;47679:32;;:3;;-1:-1:-1;;;47687:23:0;;-1:-1:-1;;;;;47687:23:0;47679:7;:32::i;:::-;:36;47664:51;47660:198;;;47798:23;;;;47790:55;;47837:7;;47790:42;;47827:4;;47790:32;;:3;;-1:-1:-1;;;47798:23:0;;-1:-1:-1;;;;;47798:23:0;47790:7;:32::i;:55::-;47757:22;;;;;-1:-1:-1;;;;;;47732:114:0;;-1:-1:-1;;;;;47757:22:0;;;:89;;;;47732:114;;;;;;;47660:198;47908:9;47903:1142;47927:16;47923:1;:20;47903:1142;;;48041:1;48017:9;48027:1;48017:12;;;;;;;;;;;-1:-1:-1;;;;;48017:26:0;;48013:40;;;48045:8;;48013:40;48088:15;;-1:-1:-1;;;;;48088:15:0;48072:9;48082:1;48072:12;;;;;;;;;;;-1:-1:-1;;;;;48072:31:0;;48068:45;;;48105:8;;48068:45;48130:10;48143:6;:26;;:40;48170:9;48180:1;48170:12;;;;;;;;;;;-1:-1:-1;;;;;48143:40:0;-1:-1:-1;;;;;48143:40:0;;;;;;;;;;;;;48130:53;;48201:8;:42;;;-1:-1:-1;48221:22:0;;;;-1:-1:-1;;;;;48221:22:0;48213:30;;48201:42;48198:836;;;48266:8;48263:672;;;48388:22;;;;48298:19;;48320:114;;48362:71;;48428:4;;48362:61;;48380:42;;-1:-1:-1;;;;;48388:22:0;48416:5;48380:35;:42::i;:::-;48362:9;48372:1;48362:12;;;;;;;;;;;;:16;:61::i;:71::-;48320:6;:23;;:37;48344:9;48354:1;48344:12;;;;;;;;;;;-1:-1:-1;;;;;48320:37:0;-1:-1:-1;;;;;48320:37:0;;;;;;;;;;;;;:41;;:114;;;;:::i;:::-;48298:136;-1:-1:-1;48460:15:0;;48457:258;;48543:1;48503:6;:23;;:37;48527:9;48537:1;48527:12;;;;;;;;;;;-1:-1:-1;;;;;48503:37:0;-1:-1:-1;;;;;48503:37:0;;;;;;;;;;;;:41;;;;48571:67;48612:9;48622:1;48612:12;;;;;;;;;;;48578:19;;-1:-1:-1;;;;;48578:19:0;;48626:11;48571:40;:67::i;:::-;48671:20;:3;48679:11;48671:7;:20::i;:::-;48665:26;;48457:258;48263:672;;;;48869:22;;;;48801:114;;48843:71;;48909:4;;48843:61;;48861:42;;-1:-1:-1;;;;;48869:22:0;48897:5;48861:35;:42::i;:::-;48843:9;48853:1;48843:12;;;;;;:71;48801:6;:23;;:37;48825:9;48835:1;48825:12;;;;;;48801:114;48761:6;:23;;:37;48785:9;48795:1;48785:12;;;;;;;;;;;-1:-1:-1;;;;;48761:37:0;-1:-1:-1;;;;;48761:37:0;;;;;;;;;;;;:154;;;;48263:672;48996:22;;;;;-1:-1:-1;;;;;48996:22:0;;48953:26;;;;48996:22;;48980:9;;48990:1;;48980:12;;;;;;;;;;-1:-1:-1;;;;;48953:40:0;-1:-1:-1;;;;;48953:40:0;;;;;;;;;;;;:65;;;;48198:836;47903:1142;;47945:3;;47903:1142;;;-1:-1:-1;49153:23:0;;;;-1:-1:-1;;;49153:23:0;;-1:-1:-1;;;;;49153:23:0;49145:31;;49142:100;;49192:23;;;:38;;-1:-1:-1;;;;;49192:38:0;;;-1:-1:-1;;;49192:38:0;;;;;;49142:100;47138:2111;;;;;;;:::o;45545:1585::-;45697:36;;-1:-1:-1;;;45697:36:0;;45683:11;;41118:42;;45697:21;;:36;;45727:4;;45697:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45683:50;;45744:19;45766:29;45774:20;;45766:3;:7;;:29;;;;:::i;:::-;45744:51;;45822:1;45812:7;:11;:30;;;;;45841:1;45827:11;:15;45812:30;45808:141;;;45903:34;45929:7;45903:21;:11;45919:4;45903:15;:21::i;:34::-;45881:19;;:56;45859:19;:78;;;;45808:141;46017:9;46012:984;46036:16;46032:1;:20;46012:984;;;46150:1;46126:9;46136:1;46126:12;;;;;;;;;;;-1:-1:-1;;;;;46126:26:0;;46122:40;;;46154:8;;46122:40;46197:15;;-1:-1:-1;;;;;46197:15:0;46181:9;46191:1;46181:12;;;;;;;;;;;-1:-1:-1;;;;;46181:31:0;;46177:45;;;46214:8;;46177:45;46239:10;46252:23;:37;46276:9;46286:1;46276:12;;;;;;;;;;;-1:-1:-1;;;;;46252:37:0;-1:-1:-1;;;;;46252:37:0;;;;;;;;;;;;;46239:50;;46307:8;:39;;;;46327:19;;46319:5;:27;46307:39;46304:681;;;46366:19;46388:98;46427:58;46480:4;46427:48;46444:30;46468:5;46444:19;;:23;;:30;;;;:::i;46427:58::-;46388:20;:34;46409:9;46419:1;46409:12;;;;;;46388:98;46366:120;;46508:8;46505:388;;;46543:15;;46540:239;;46623:1;46586:20;:34;46607:9;46617:1;46607:12;;;;;;;;;;;-1:-1:-1;;;;;46586:34:0;-1:-1:-1;;;;;46586:34:0;;;;;;;;;;;;:38;;;;46651:51;46676:9;46686:1;46676:12;;;;;;;;;;;41118:42;;46690:11;46651:24;:51::i;:::-;46735:20;:3;46743:11;46735:7;:20::i;:::-;46729:26;;46540:239;46505:388;;;46862:11;46825:20;:34;46846:9;46856:1;46846:12;;;;;;;;;;;-1:-1:-1;;;;;46825:34:0;-1:-1:-1;;;;;46825:34:0;;;;;;;;;;;;:48;;;;46505:388;46951:19;;46911:23;:37;46935:9;46945:1;46935:12;;;;;;;;;;;-1:-1:-1;;;;;46911:37:0;-1:-1:-1;;;;;46911:37:0;;;;;;;;;;;;:59;;;;46304:681;;46012:984;;46054:3;;46012:984;;;;47049:20;;47042:3;:27;47039:84;;47085:20;:26;;;47039:84;45545:1585;;;;;;:::o;16844:195::-;16947:12;16979:52;17001:6;17009:4;17015:1;17018:12;16947;18148:18;18159:6;18148:10;:18::i;:::-;18140:60;;;;-1:-1:-1;;;18140:60:0;;;;;;;:::i;:::-;18274:12;18288:23;18315:6;-1:-1:-1;;;;;18315:11:0;18335:5;18343:4;18315:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18273:75;;;;18366:52;18384:7;18393:10;18405:12;18366:17;:52::i;:::-;18359:59;17896:530;-1:-1:-1;;;;;;;17896:530:0:o;13926:422::-;14293:20;14332:8;;;13926:422::o;20436:742::-;20551:12;20580:7;20576:595;;;-1:-1:-1;20611:10:0;20604:17;;20576:595;20725:17;;:21;20721:439;;20988:10;20982:17;21049:15;21036:10;21032:2;21028:19;21021:44;20936:148;21131:12;21124:20;;-1:-1:-1;;;21124:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;1352:241;;1456:2;1444:9;1435:7;1431:23;1427:32;1424:2;;;-1:-1;;1462:12;1424:2;85:6;72:20;97:33;124:5;97:33;:::i;1600:263::-;;1715:2;1703:9;1694:7;1690:23;1686:32;1683:2;;;-1:-1;;1721:12;1683:2;226:6;220:13;238:33;265:5;238:33;:::i;1870:366::-;;;1991:2;1979:9;1970:7;1966:23;1962:32;1959:2;;;-1:-1;;1997:12;1959:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2049:63;-1:-1;2149:2;2188:22;;72:20;97:33;72:20;97:33;:::i;:::-;2157:63;;;;1953:283;;;;;:::o;2243:743::-;;;;;;2415:3;2403:9;2394:7;2390:23;2386:33;2383:2;;;-1:-1;;2422:12;2383:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2474:63;-1:-1;2574:2;2613:22;;72:20;97:33;72:20;97:33;:::i;:::-;2582:63;-1:-1;2682:2;2721:22;;72:20;97:33;72:20;97:33;:::i;:::-;2690:63;-1:-1;2790:2;2829:22;;1141:20;;-1:-1;2898:3;2938:22;;72:20;97:33;72:20;97:33;:::i;:::-;2907:63;;;;2377:609;;;;;;;;:::o;2993:491::-;;;;3131:2;3119:9;3110:7;3106:23;3102:32;3099:2;;;-1:-1;;3137:12;3099:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3189:63;-1:-1;3289:2;3328:22;;72:20;97:33;72:20;97:33;:::i;:::-;3093:391;;3297:63;;-1:-1;;;3397:2;3436:22;;;;1141:20;;3093:391::o;3491:366::-;;;3612:2;3600:9;3591:7;3587:23;3583:32;3580:2;;;-1:-1;;3618:12;3580:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3670:63;3770:2;3809:22;;;;1141:20;;-1:-1;;;3574:283::o;3864:291::-;;3993:2;3981:9;3972:7;3968:23;3964:32;3961:2;;;-1:-1;;3999:12;3961:2;451:3;3993:2;423:8;419:30;416:39;413:2;;;-1:-1;;458:12;413:2;-1:-1;4051:88;3955:200;-1:-1;3955:200::o;4162:257::-;;4274:2;4262:9;4253:7;4249:23;4245:32;4242:2;;;-1:-1;;4280:12;4242:2;567:6;561:13;37670:5;36642:13;36635:21;37648:5;37645:32;37635:2;;-1:-1;;37681:12;4426:362;;4551:2;4539:9;4530:7;4526:23;4522:32;4519:2;;;-1:-1;;4557:12;4519:2;4608:17;4602:24;4646:18;;4638:6;4635:30;4632:2;;;-1:-1;;4668:12;4632:2;4755:6;4744:9;4740:22;;;735:3;728:4;720:6;716:17;712:27;702:2;;-1:-1;;743:12;702:2;783:6;777:13;4646:18;34833:6;34830:30;34827:2;;;-1:-1;;34863:12;34827:2;34496;34490:9;34936;34917:17;;-1:-1;;34913:33;34522:17;;4551:2;34522:17;34582:34;;;34618:22;;;34579:62;34576:2;;;-1:-1;;34644:12;34576:2;34496;34663:22;876:21;;;976:16;;;4551:2;976:16;973:25;-1:-1;970:2;;;-1:-1;;1001:12;970:2;1021:39;1053:6;4551:2;952:5;948:16;4551:2;918:6;914:17;1021:39;:::i;:::-;4688:84;4513:275;-1:-1;;;;;;4513:275::o;4795:241::-;;4899:2;4887:9;4878:7;4874:23;4870:32;4867:2;;;-1:-1;;4905:12;4867:2;-1:-1;1141:20;;4861:175;-1:-1;4861:175::o;5043:263::-;;5158:2;5146:9;5137:7;5133:23;5129:32;5126:2;;;-1:-1;;5164:12;5126:2;-1:-1;1289:13;;5120:186;-1:-1;5120:186::o;5313:366::-;;;5434:2;5422:9;5413:7;5409:23;5405:32;5402:2;;;-1:-1;;5440:12;5402:2;1154:6;1141:20;5492:63;;5592:2;5635:9;5631:22;72:20;97:33;124:5;97:33;:::i;18466:271::-;;7496:5;35343:12;7607:52;7652:6;7647:3;7640:4;7633:5;7629:16;7607:52;:::i;:::-;7671:16;;;;;18600:137;-1:-1;;18600:137::o;18744:809::-;;-1:-1;;;11544:11;11537:30;7496:5;35343:12;7607:52;7652:6;11522:1;11590:3;11586:11;7640:4;7633:5;7629:16;7607:52;:::i;:::-;-1:-1;;;11522:1;7671:16;;;;;;;8696:28;-1:-1;8743:11;;;19082:471;-1:-1;19082:471::o;19560:809::-;;-1:-1;;;14738:11;14731:26;7496:5;35343:12;7607:52;7652:6;14716:1;14780:3;14776:11;7640:4;7633:5;7629:16;7607:52;:::i;:::-;-1:-1;;;14716:1;7671:16;;;;;;;10850:28;-1:-1;10897:11;;;19898:471;-1:-1;19898:471::o;20376:222::-;-1:-1;;;;;36850:54;;;;6041:37;;20503:2;20488:18;;20474:124::o;20605:333::-;-1:-1;;;;;36850:54;;;6041:37;;36850:54;;20924:2;20909:18;;6041:37;20760:2;20745:18;;20731:207::o;20945:556::-;-1:-1;;;;;36850:54;;;6041:37;;36850:54;;;;21321:2;21306:18;;6041:37;-1:-1;;;;;36730:46;;;21404:2;21389:18;;17945:37;36730:46;;;21487:2;21472:18;;17945:37;21156:3;21141:19;;21127:374::o;21508:444::-;-1:-1;;;;;36850:54;;;6041:37;;36850:54;;;;21855:2;21840:18;;6041:37;21938:2;21923:18;;18055:37;;;;21691:2;21676:18;;21662:290::o;21959:321::-;-1:-1;;;;;36850:54;;;;6041:37;;36642:13;36635:21;22266:2;22251:18;;7290:34;22108:2;22093:18;;22079:201::o;22287:333::-;-1:-1;;;;;36850:54;;;;6041:37;;22606:2;22591:18;;18055:37;22442:2;22427:18;;22413:207::o;22627:432::-;-1:-1;;;;;36850:54;;;;6041:37;;22968:2;22953:18;;18055:37;;;;36642:13;36635:21;23045:2;23030:18;;7290:34;22804:2;22789:18;;22775:284::o;23066:482::-;23299:2;23313:47;;;35343:12;;23284:18;;;35931:19;;;23066:482;;23299:2;35971:14;;;;;;35169;;;23066:482;6851:344;6876:6;6873:1;6870:13;6851:344;;;6937:13;;17598:23;;-1:-1;;;;;36850:54;6041:37;;17760:16;;17754:23;17831:14;;;18055:37;5952:14;;;;35758;;;;4646:18;6891:9;6851:344;;;-1:-1;23366:172;;23270:278;-1:-1;;;;;;;23270:278::o;23555:210::-;36642:13;;36635:21;7290:34;;23676:2;23661:18;;23647:118::o;23772:310::-;;23919:2;23940:17;23933:47;7844:5;35343:12;35943:6;23919:2;23908:9;23904:18;35931:19;7938:52;7983:6;35971:14;23908:9;35971:14;23919:2;7964:5;7960:16;7938:52;:::i;:::-;34936:9;37428:14;-1:-1;;37424:28;8002:39;;;;35971:14;8002:39;;23890:192;-1:-1;;23890:192::o;24089:416::-;24289:2;24303:47;;;8993:2;24274:18;;;35931:19;9029:34;35971:14;;;9009:55;-1:-1;;;9084:12;;;9077:27;9123:12;;;24260:245::o;24512:416::-;24712:2;24726:47;;;9374:2;24697:18;;;35931:19;9410:34;35971:14;;;9390:55;-1:-1;;;9465:12;;;9458:30;9507:12;;;24683:245::o;24935:416::-;25135:2;25149:47;;;9758:2;25120:18;;;35931:19;9794:34;35971:14;;;9774:55;-1:-1;;;9849:12;;;9842:26;9887:12;;;25106:245::o;25358:416::-;25558:2;25572:47;;;10138:2;25543:18;;;35931:19;-1:-1;;;35971:14;;;10154:39;10212:12;;;25529:245::o;25781:416::-;25981:2;25995:47;;;10463:2;25966:18;;;35931:19;10499:29;35971:14;;;10479:50;10548:12;;;25952:245::o;26204:416::-;26404:2;26418:47;;;11147:2;26389:18;;;35931:19;11183:32;35971:14;;;11163:53;11235:12;;;26375:245::o;27050:416::-;27250:2;27264:47;;;12220:2;27235:18;;;35931:19;12256:28;35971:14;;;12236:49;12304:12;;;27221:245::o;27473:416::-;27673:2;27687:47;;;12555:2;27658:18;;;35931:19;-1:-1;;;35971:14;;;12571:36;12626:12;;;27644:245::o;27896:416::-;28096:2;28110:47;;;12877:2;28081:18;;;35931:19;-1:-1;;;35971:14;;;12893:35;12947:12;;;28067:245::o;28319:416::-;28519:2;28533:47;;;13198:2;28504:18;;;35931:19;13234:34;35971:14;;;13214:55;-1:-1;;;13289:12;;;13282:25;13326:12;;;28490:245::o;28742:416::-;28942:2;28956:47;;;28927:18;;;35931:19;13613:34;35971:14;;;13593:55;13667:12;;;28913:245::o;29165:416::-;29365:2;29379:47;;;13918:2;29350:18;;;35931:19;13954:34;35971:14;;;13934:55;-1:-1;;;14009:12;;;14002:25;14046:12;;;29336:245::o;29588:416::-;29788:2;29802:47;;;14297:2;29773:18;;;35931:19;14333:34;35971:14;;;14313:55;-1:-1;;;14388:12;;;14381:29;14429:12;;;29759:245::o;30011:416::-;30211:2;30225:47;;;15026:1;30196:18;;;35931:19;-1:-1;;;35971:14;;;15041:31;15091:12;;;30182:245::o;30434:416::-;30634:2;30648:47;;;15342:2;30619:18;;;35931:19;15378:34;35971:14;;;15358:55;-1:-1;;;15433:12;;;15426:28;15473:12;;;30605:245::o;30857:416::-;31057:2;31071:47;;;15724:2;31042:18;;;35931:19;15760:31;35971:14;;;15740:52;15811:12;;;31028:245::o;31280:416::-;31480:2;31494:47;;;16062:2;31465:18;;;35931:19;16098:34;35971:14;;;16078:55;-1:-1;;;16153:12;;;16146:34;16199:12;;;31451:245::o;31703:416::-;31903:2;31917:47;;;16450:2;31888:18;;;35931:19;16486:33;35971:14;;;16466:54;16539:12;;;31874:245::o;32126:416::-;32326:2;32340:47;;;16790:2;32311:18;;;35931:19;16826:34;35971:14;;;16806:55;-1:-1;;;16881:12;;;16874:46;16939:12;;;32297:245::o;32549:416::-;32749:2;32763:47;;;17190:2;32734:18;;;35931:19;17226:33;35971:14;;;17206:54;17279:12;;;32720:245::o;32972:238::-;18055:37;;;33107:2;33092:18;;33078:132::o;33446:321::-;18055:37;;;36642:13;36635:21;33753:2;33738:18;;7290:34;33595:2;33580:18;;33566:201::o;33774:432::-;18055:37;;;34115:2;34100:18;;18055:37;;;;36642:13;36635:21;34192:2;34177:18;;7290:34;33951:2;33936:18;;33922:284::o;34213:214::-;37066:4;37055:16;;;;18419:35;;34336:2;34321:18;;34307:120::o;37084:268::-;37149:1;37156:101;37170:6;37167:1;37164:13;37156:101;;;37237:11;;;37231:18;37218:11;;;37211:39;37192:2;37185:10;37156:101;;;37272:6;37269:1;37266:13;37263:2;;;-1:-1;;37149:1;37319:16;;37312:27;37133:219::o;37465:117::-;-1:-1;;;;;36850:54;;37524:35;;37514:2;;37573:1;;37563:12

Swarm Source

ipfs://1df206484aa0ad1afa1a72ab8c5c83ceb3041ad80880e3f948c2acaa9028ca3d
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.