ETH Price: $2,734.07 (-4.17%)
Gas: 0.97 Gwei

Token

Stake DAO GUniAgeur/ETH Vault (sdGUniAgeur/ETH-vault)
 

Overview

Max Total Supply

36.660019800162049295 sdGUniAgeur/ETH-vault

Holders

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AngleVaultGUni

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File contracts/strategy/AngleVaultGUni.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

/**
 * @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;
		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");

		(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");

		(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");

		(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");

		(bool success, bytes memory returndata) = target.delegatecall(data);
		return verifyCallResult(success, returndata, errorMessage);
	}

	/**
	 * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
	 * revert reason using the provided one.
	 *
	 * _Available since v4.3._
	 */
	function verifyCallResult(
		bool success,
		bytes memory returndata,
		string memory errorMessage
	) internal 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

				assembly {
					let returndata_size := mload(returndata)
					revert(add(32, returndata), returndata_size)
				}
			} else {
				revert(errorMessage);
			}
		}
	}
}

/**
 * @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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
	/**
	 * @dev Returns the name of the token.
	 */
	function name() external view returns (string memory);

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

	/**
	 * @dev Returns the decimals places of the token.
	 */
	function decimals() external view returns (uint8);
}

/**
 * @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 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) {
		return msg.sender;
	}

	function _msgData() internal view virtual returns (bytes calldata) {
		return msg.data;
	}
}

/**
 * @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 Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
	mapping(address => uint256) private _balances;

	mapping(address => mapping(address => uint256)) private _allowances;

	uint256 private _totalSupply;

	string private _name;
	string private _symbol;

	/**
	 * @dev Sets the values for {name} and {symbol}.
	 *
	 * The default value of {decimals} is 18. To select a different value for
	 * {decimals} you should overload it.
	 *
	 * All two of these values are immutable: they can only be set once during
	 * construction.
	 */
	constructor(string memory name_, string memory symbol_) {
		_name = name_;
		_symbol = symbol_;
	}

	/**
	 * @dev Returns the name of the token.
	 */
	function name() public view virtual override returns (string memory) {
		return _name;
	}

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

	/**
	 * @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);

		uint256 currentAllowance = _allowances[sender][_msgSender()];
		require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
		unchecked {
			_approve(sender, _msgSender(), currentAllowance - amount);
		}

		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] + 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) {
		uint256 currentAllowance = _allowances[_msgSender()][spender];
		require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
		unchecked {
			_approve(_msgSender(), spender, currentAllowance - subtractedValue);
		}

		return true;
	}

	/**
	 * @dev Moves `amount` of tokens from `sender` to `recipient`.
	 *
	 * This 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);

		uint256 senderBalance = _balances[sender];
		require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
		unchecked {
			_balances[sender] = senderBalance - amount;
		}
		_balances[recipient] += amount;

		emit Transfer(sender, recipient, amount);

		_afterTokenTransfer(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:
	 *
	 * - `account` 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 += amount;
		_balances[account] += amount;
		emit Transfer(address(0), account, amount);

		_afterTokenTransfer(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);

		uint256 accountBalance = _balances[account];
		require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
		unchecked {
			_balances[account] = accountBalance - amount;
		}
		_totalSupply -= amount;

		emit Transfer(account, address(0), amount);

		_afterTokenTransfer(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 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 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 {}

	/**
	 * @dev Hook that is called after any transfer of tokens. This includes
	 * minting and burning.
	 *
	 * Calling conditions:
	 *
	 * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
	 * has been transferred to `to`.
	 * - when `from` is zero, `amount` tokens have been minted for `to`.
	 * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
		address from,
		address to,
		uint256 amount
	) internal virtual {}
}

/**
 * @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 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'
		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) + value;
		_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
	}

	function safeDecreaseAllowance(
		IERC20 token,
		address spender,
		uint256 value
	) internal {
		unchecked {
			uint256 oldAllowance = token.allowance(address(this), spender);
			require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
			uint256 newAllowance = oldAllowance - value;
			_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
			require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
		}
	}
}

interface ILiquidityGaugeStrat {
	struct Reward {
		address token;
		address distributor;
		uint256 period_finish;
		uint256 rate;
		uint256 last_update;
		uint256 integral;
	}

	// solhint-disable-next-line
	function deposit_reward_token(address _rewardToken, uint256 _amount) external;

	// solhint-disable-next-line
	function claim_rewards_for(address _user, address _recipient) external;

	// // solhint-disable-next-line
	// function claim_rewards_for(address _user) external;

	// solhint-disable-next-line
	function deposit(uint256 _value, address _addr) external;

	// solhint-disable-next-line
	function reward_tokens(uint256 _i) external view returns (address);

	function withdraw(
		uint256 _value,
		address _addr,
		bool _claim_rewards
	) external;

	// solhint-disable-next-line
	function reward_data(address _tokenReward) external view returns (Reward memory);

	function balanceOf(address) external returns (uint256);

	function claimable_reward(address _user, address _reward_token) external view returns (uint256);

	function user_checkpoint(address _user) external returns (bool);

	function commit_transfer_ownership(address) external;

	function initialize(
		address _staking_token,
		address _admin,
		address _SDT,
		address _voting_escrow,
		address _veBoost_proxy,
		address _distributor,
		address _vault,
		string memory _symbol
	) external;

	function add_reward(address, address) external;
}

interface ILocker {
	function createLock(uint256, uint256) external;

	function increaseAmount(uint256) external;

	function increaseUnlockTime(uint256) external;

	function release() external;

	function claimRewards(address, address) external;

	function claimFXSRewards(address) external;

	function execute(
		address,
		uint256,
		bytes calldata
	) external returns (bool, bytes memory);

	function setGovernance(address) external;

	function voteGaugeWeight(address, uint256) external;

	function setAngleDepositor(address) external;

	function setFxsDepositor(address) external;
}

contract BaseStrategy {
	/* ========== STATE VARIABLES ========== */
	ILocker public locker;
	address public governance;
	address public rewardsReceiver;
	address public veSDTFeeProxy;
	address public vaultGaugeFactory;
	uint256 public constant BASE_FEE = 10_000;
	mapping(address => address) public gauges;
	mapping(address => bool) public vaults;
	mapping(address => uint256) public perfFee;
	mapping(address => address) public multiGauges;
	mapping(address => uint256) public accumulatorFee; // gauge -> fee
	mapping(address => uint256) public claimerRewardFee; // gauge -> fee
	mapping(address => uint256) public veSDTFee; // gauge -> fee

	/* ========== EVENTS ========== */
	event Deposited(address _gauge, address _token, uint256 _amount);
	event Withdrawn(address _gauge, address _token, uint256 _amount);
	event Claimed(address _gauge, address _token, uint256 _amount);
	event RewardReceiverSet(address _gauge, address _receiver);
	event VaultToggled(address _vault, bool _newState);
	event GaugeSet(address _gauge, address _token);

	/* ========== MODIFIERS ========== */
	modifier onlyGovernance() {
		require(msg.sender == governance, "!governance");
		_;
	}
	modifier onlyApprovedVault() {
		require(vaults[msg.sender], "!approved vault");
		_;
	}
	modifier onlyGovernanceOrFactory() {
		require(msg.sender == governance || msg.sender == vaultGaugeFactory, "!governance && !factory");
		_;
	}

	/* ========== CONSTRUCTOR ========== */
	constructor(
		ILocker _locker,
		address _governance,
		address _receiver
	) public {
		locker = _locker;
		governance = _governance;
		rewardsReceiver = _receiver;
	}

	/* ========== MUTATIVE FUNCTIONS ========== */
	function deposit(address _token, uint256 _amount) external virtual onlyApprovedVault {}

	function withdraw(address _token, uint256 _amount) external virtual onlyApprovedVault {}

	function claim(address _gauge) external virtual {}

	function toggleVault(address _vault) external virtual onlyGovernanceOrFactory {}

	function setGauge(address _token, address _gauge) external virtual onlyGovernanceOrFactory {}

	function setMultiGauge(address _gauge, address _multiGauge) external virtual onlyGovernanceOrFactory {}
}

interface ILiquidityGauge {
	struct Reward {
		address token;
		address distributor;
		uint256 period_finish;
		uint256 rate;
		uint256 last_update;
		uint256 integral;
	}

	// solhint-disable-next-line
	function deposit_reward_token(address _rewardToken, uint256 _amount) external;

	// solhint-disable-next-line
	function claim_rewards_for(address _user, address _recipient) external;

	// // solhint-disable-next-line
	// function claim_rewards_for(address _user) external;

	// solhint-disable-next-line
	function deposit(uint256 _value, address _addr) external;

	// solhint-disable-next-line
	function reward_tokens(uint256 _i) external view returns (address);

	// solhint-disable-next-line
	function reward_data(address _tokenReward) external view returns (Reward memory);

	function balanceOf(address) external returns (uint256);

	function claimable_reward(address _user, address _reward_token) external view returns (uint256);

	function user_checkpoint(address _user) external returns (bool);

	function commit_transfer_ownership(address) external;
}

interface ISDTDistributor {
	function distribute(address gaugeAddr) external;
}

/// @title BaseAccumulator
/// @notice A contract that defines the functions shared by all accumulators
/// @author StakeDAO
contract BaseAccumulator {
	using SafeERC20 for IERC20;
	/* ========== STATE VARIABLES ========== */
	address public governance;
	address public locker;
	address public tokenReward;
	address public gauge;
	address public sdtDistributor;

	/* ========== EVENTS ========== */

	event SdtDistributorUpdated(address oldDistributor, address newDistributor);
	event GaugeSet(address oldGauge, address newGauge);
	event RewardNotified(address gauge, address tokenReward, uint256 amount);
	event LockerSet(address oldLocker, address newLocker);
	event GovernanceSet(address oldGov, address newGov);
	event TokenRewardSet(address oldTr, address newTr);
	event TokenDeposited(address token, uint256 amount);
	event ERC20Rescued(address token, uint256 amount);

	/* ========== CONSTRUCTOR ========== */
	constructor(address _tokenReward) {
		tokenReward = _tokenReward;
		governance = msg.sender;
	}

	/* ========== MUTATIVE FUNCTIONS ========== */

	/// @notice Notify the reward using an extra token
	/// @param _tokenReward token address to notify
	/// @param _amount amount to notify
	function notifyExtraReward(address _tokenReward, uint256 _amount) external {
		require(msg.sender == governance, "!gov");
		_notifyReward(_tokenReward, _amount);
	}

	/// @notice Notify the reward using all balance of extra token
	/// @param _tokenReward token address to notify
	function notifyAllExtraReward(address _tokenReward) external {
		require(msg.sender == governance, "!gov");
		uint256 amount = IERC20(_tokenReward).balanceOf(address(this));
		_notifyReward(_tokenReward, amount);
	}

	/// @notice Notify the new reward to the LGV4
	/// @param _tokenReward token to notify
	/// @param _amount amount to notify
	function _notifyReward(address _tokenReward, uint256 _amount) internal {
		require(gauge != address(0), "gauge not set");
		require(_amount > 0, "set an amount > 0");
		uint256 balanceBefore = IERC20(_tokenReward).balanceOf(address(this));
		require(balanceBefore >= _amount, "amount not enough");
		if (ILiquidityGauge(gauge).reward_data(_tokenReward).distributor != address(0)) {
			// Distribute SDT
			ISDTDistributor(sdtDistributor).distribute(gauge);

			IERC20(_tokenReward).approve(gauge, _amount);
			ILiquidityGauge(gauge).deposit_reward_token(_tokenReward, _amount);

			uint256 balanceAfter = IERC20(_tokenReward).balanceOf(address(this));

			require(balanceBefore - balanceAfter == _amount, "wrong amount notified");

			emit RewardNotified(gauge, _tokenReward, _amount);
		}
	}

	/// @notice Deposit token into the accumulator
	/// @param _token token to deposit
	/// @param _amount amount to deposit
	function depositToken(address _token, uint256 _amount) external {
		require(_amount > 0, "set an amount > 0");
		IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount);
		emit TokenDeposited(_token, _amount);
	}

	/// @notice Sets gauge for the accumulator which will receive and distribute the rewards
	/// @dev Can be called only by the governance
	/// @param _gauge gauge address
	function setGauge(address _gauge) external {
		require(msg.sender == governance, "!gov");
		require(_gauge != address(0), "can't be zero address");
		emit GaugeSet(gauge, _gauge);
		gauge = _gauge;
	}

	/// @notice Sets SdtDistributor to distribute from the Accumulator SDT Rewards to Gauge.
	/// @dev Can be called only by the governance
	/// @param _sdtDistributor gauge address
	function setSdtDistributor(address _sdtDistributor) external {
		require(msg.sender == governance, "!gov");
		require(_sdtDistributor != address(0), "can't be zero address");

		emit SdtDistributorUpdated(sdtDistributor, _sdtDistributor);
		sdtDistributor = _sdtDistributor;
	}

	/// @notice Allows the governance to set the new governance
	/// @dev Can be called only by the governance
	/// @param _governance governance address
	function setGovernance(address _governance) external {
		require(msg.sender == governance, "!gov");
		require(_governance != address(0), "can't be zero address");
		emit GovernanceSet(governance, _governance);
		governance = _governance;
	}

	/// @notice Allows the governance to set the locker
	/// @dev Can be called only by the governance
	/// @param _locker locker address
	function setLocker(address _locker) external {
		require(msg.sender == governance, "!gov");
		require(_locker != address(0), "can't be zero address");
		emit LockerSet(locker, _locker);
		locker = _locker;
	}

	/// @notice Allows the governance to set the token reward
	/// @dev Can be called only by the governance
	/// @param _tokenReward token reward address
	function setTokenReward(address _tokenReward) external {
		require(msg.sender == governance, "!gov");
		require(_tokenReward != address(0), "can't be zero address");
		emit TokenRewardSet(tokenReward, _tokenReward);
		tokenReward = _tokenReward;
	}

	/// @notice A function that rescue any ERC20 token
	/// @param _token token address
	/// @param _amount amount to rescue
	/// @param _recipient address to send token rescued
	function rescueERC20(
		address _token,
		uint256 _amount,
		address _recipient
	) external {
		require(msg.sender == governance, "!gov");
		require(_amount > 0, "set an amount > 0");
		require(_recipient != address(0), "can't be zero address");
		IERC20(_token).safeTransfer(_recipient, _amount);
		emit ERC20Rescued(_token, _amount);
	}
}

/// @title A contract that accumulates sanUSDC_EUR rewards and notifies them to the LGV4
/// @author StakeDAO
contract AngleAccumulator is BaseAccumulator {
	/* ========== CONSTRUCTOR ========== */
	constructor(address _tokenReward) BaseAccumulator(_tokenReward) {}

	/* ========== MUTATIVE FUNCTIONS ========== */
	/// @notice Claims rewards from the locker and notify an amount to the LGV4
	/// @param _amount amount to notify after the claim
	function claimAndNotify(uint256 _amount) external {
		require(locker != address(0), "locker not set");
		ILocker(locker).claimRewards(tokenReward, address(this));
		_notifyReward(tokenReward, _amount);
	}

	/// @notice Claims rewards from the locker and notify all to the LGV4
	function claimAndNotifyAll() external {
		require(locker != address(0), "locker not set");
		ILocker(locker).claimRewards(tokenReward, address(this));
		uint256 amount = IERC20(tokenReward).balanceOf(address(this));
		_notifyReward(tokenReward, amount);
	}
}

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
	/**
	 * @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;
		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");

		(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");

		(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");

		(bool success, bytes memory returndata) = target.staticcall(data);
		return verifyCallResult(success, returndata, errorMessage);
	}

	/**
	 * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
	 * revert reason using the provided one.
	 *
	 * _Available since v4.3._
	 */
	function verifyCallResult(
		bool success,
		bytes memory returndata,
		string memory errorMessage
	) internal 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

				assembly {
					let returndata_size := mload(returndata)
					revert(add(32, returndata), returndata_size)
				}
			} else {
				revert(errorMessage);
			}
		}
	}
}

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
	/**
	 * @dev Indicates that the contract has been initialized.
	 */
	bool private _initialized;

	/**
	 * @dev Indicates that the contract is in the process of being initialized.
	 */
	bool private _initializing;

	/**
	 * @dev Modifier to protect an initializer function from being invoked twice.
	 */
	modifier initializer() {
		// If the contract is initializing we ignore whether _initialized is set in order to support multiple
		// inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
		// contract may have been reentered.
		require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");

		bool isTopLevelCall = !_initializing;
		if (isTopLevelCall) {
			_initializing = true;
			_initialized = true;
		}

		_;

		if (isTopLevelCall) {
			_initializing = false;
		}
	}

	/**
	 * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
	 * {initializer} modifier, directly or indirectly.
	 */
	modifier onlyInitializing() {
		require(_initializing, "Initializable: contract is not initializing");
		_;
	}

	function _isConstructor() private view returns (bool) {
		return !AddressUpgradeable.isContract(address(this));
	}
}

/**
 * @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 ReentrancyGuardUpgradeable is Initializable {
	// 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;

	function __ReentrancyGuard_init() internal onlyInitializing {
		__ReentrancyGuard_init_unchained();
	}

	function __ReentrancyGuard_init_unchained() internal onlyInitializing {
		_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 making 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;
	}
	uint256[49] private __gap;
}

interface IGaugeController {
	//solhint-disable-next-line
	function gauge_types(address addr) external view returns (int128);

	//solhint-disable-next-line
	function gauge_relative_weight_write(address addr, uint256 timestamp) external returns (uint256);

	//solhint-disable-next-line
	function gauge_relative_weight(address addr) external view returns (uint256);

	//solhint-disable-next-line
	function gauge_relative_weight(address addr, uint256 timestamp) external view returns (uint256);

	//solhint-disable-next-line
	function get_total_weight() external view returns (uint256);

	//solhint-disable-next-line
	function get_gauge_weight(address addr) external view returns (uint256);
}

interface ISdtMiddlemanGauge {
	function notifyReward(address gauge, uint256 amount) external;
}

/// @title IStakingRewardsFunctions
/// @author StakeDAO Core Team
/// @notice Interface for the staking rewards contract that interact with the `RewardsDistributor` contract
interface IStakingRewardsFunctions {
	function notifyRewardAmount(uint256 reward) external;

	function recoverERC20(
		address tokenAddress,
		address to,
		uint256 tokenAmount
	) external;

	function setNewRewardsDistribution(address newRewardsDistribution) external;
}

/// @title IStakingRewards
/// @author StakeDAO Core Team
/// @notice Previous interface with additionnal getters for public variables
interface IStakingRewards is IStakingRewardsFunctions {
	function rewardToken() external view returns (IERC20);
}

interface IMasterchef {
	function deposit(uint256, uint256) external;

	function withdraw(uint256, uint256) external;

	function userInfo(uint256, address) external view returns (uint256, uint256);

	function poolInfo(uint256)
		external
		returns (
			address,
			uint256,
			uint256,
			uint256
		);

	function totalAllocPoint() external view returns (uint256);

	function sdtPerBlock() external view returns (uint256);

	function pendingSdt(uint256, address) external view returns (uint256);
}

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

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

	/**
	 * @dev Initializes the contract setting the deployer as the initial owner.
	 */
	constructor() {
		_transferOwnership(_msgSender());
	}

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

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

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

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

	/**
	 * @dev Transfers ownership of the contract to a new account (`newOwner`).
	 * Internal function without access restriction.
	 */
	function _transferOwnership(address newOwner) internal virtual {
		address oldOwner = _owner;
		_owner = newOwner;
		emit OwnershipTransferred(oldOwner, newOwner);
	}
}

contract MasterchefMasterToken is ERC20, Ownable {
	constructor() ERC20("Masterchef Master Token", "MMT") {
		_mint(msg.sender, 1e18);
	}
}

/**
 * @dev String operations.
 */
library StringsUpgradeable {
	bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

	/**
	 * @dev Converts a `uint256` to its ASCII `string` decimal representation.
	 */
	function toString(uint256 value) internal pure returns (string memory) {
		// Inspired by OraclizeAPI's implementation - MIT licence
		// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

		if (value == 0) {
			return "0";
		}
		uint256 temp = value;
		uint256 digits;
		while (temp != 0) {
			digits++;
			temp /= 10;
		}
		bytes memory buffer = new bytes(digits);
		while (value != 0) {
			digits -= 1;
			buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
			value /= 10;
		}
		return string(buffer);
	}

	/**
	 * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
	 */
	function toHexString(uint256 value) internal pure returns (string memory) {
		if (value == 0) {
			return "0x00";
		}
		uint256 temp = value;
		uint256 length = 0;
		while (temp != 0) {
			length++;
			temp >>= 8;
		}
		return toHexString(value, length);
	}

	/**
	 * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
	 */
	function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
		bytes memory buffer = new bytes(2 * length + 2);
		buffer[0] = "0";
		buffer[1] = "x";
		for (uint256 i = 2 * length + 1; i > 1; --i) {
			buffer[i] = _HEX_SYMBOLS[value & 0xf];
			value >>= 4;
		}
		require(value == 0, "Strings: hex length insufficient");
		return string(buffer);
	}
}

/// @title IAccessControl
/// @author Forked from OpenZeppelin
/// @notice Interface for `AccessControl` contracts
interface IAccessControl {
	function hasRole(bytes32 role, address account) external view returns (bool);

	function getRoleAdmin(bytes32 role) external view returns (bytes32);

	function grantRole(bytes32 role, address account) external;

	function revokeRole(bytes32 role, address account) external;

	function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev This contract is fully forked from OpenZeppelin `AccessControlUpgradeable`.
 * The only difference is the removal of the ERC165 implementation as it's not
 * needed in Angle.
 *
 * Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControlUpgradeable is Initializable, IAccessControl {
	function __AccessControl_init() internal initializer {
		__AccessControl_init_unchained();
	}

	function __AccessControl_init_unchained() internal initializer {}

	struct RoleData {
		mapping(address => bool) members;
		bytes32 adminRole;
	}

	mapping(bytes32 => RoleData) private _roles;

	bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

	/**
	 * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
	 *
	 * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
	 * {RoleAdminChanged} not being emitted signaling this.
	 *
	 * _Available since v3.1._
	 */
	event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

	/**
	 * @dev Emitted when `account` is granted `role`.
	 *
	 * `sender` is the account that originated the contract call, an admin role
	 * bearer except when using {_setupRole}.
	 */
	event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

	/**
	 * @dev Emitted when `account` is revoked `role`.
	 *
	 * `sender` is the account that originated the contract call:
	 *   - if using `revokeRole`, it is the admin role bearer
	 *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
	 */
	event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

	/**
	 * @dev Modifier that checks that an account has a specific role. Reverts
	 * with a standardized message including the required role.
	 *
	 * The format of the revert reason is given by the following regular expression:
	 *
	 *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
	 *
	 * _Available since v4.1._
	 */
	modifier onlyRole(bytes32 role) {
		_checkRole(role, msg.sender);
		_;
	}

	/**
	 * @dev Returns `true` if `account` has been granted `role`.
	 */
	function hasRole(bytes32 role, address account) public view override returns (bool) {
		return _roles[role].members[account];
	}

	/**
	 * @dev Revert with a standard message if `account` is missing `role`.
	 *
	 * The format of the revert reason is given by the following regular expression:
	 *
	 *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
	 */
	function _checkRole(bytes32 role, address account) internal view {
		if (!hasRole(role, account)) {
			revert(
				string(
					abi.encodePacked(
						"AccessControl: account ",
						StringsUpgradeable.toHexString(uint160(account), 20),
						" is missing role ",
						StringsUpgradeable.toHexString(uint256(role), 32)
					)
				)
			);
		}
	}

	/**
	 * @dev Returns the admin role that controls `role`. See {grantRole} and
	 * {revokeRole}.
	 *
	 * To change a role's admin, use {_setRoleAdmin}.
	 */
	function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
		return _roles[role].adminRole;
	}

	/**
	 * @dev Grants `role` to `account`.
	 *
	 * If `account` had not been already granted `role`, emits a {RoleGranted}
	 * event.
	 *
	 * Requirements:
	 *
	 * - the caller must have ``role``'s admin role.
	 */
	function grantRole(bytes32 role, address account) external override onlyRole(getRoleAdmin(role)) {
		_grantRole(role, account);
	}

	/**
	 * @dev Revokes `role` from `account`.
	 *
	 * If `account` had been granted `role`, emits a {RoleRevoked} event.
	 *
	 * Requirements:
	 *
	 * - the caller must have ``role``'s admin role.
	 */
	function revokeRole(bytes32 role, address account) external override onlyRole(getRoleAdmin(role)) {
		_revokeRole(role, account);
	}

	/**
	 * @dev Revokes `role` from the calling account.
	 *
	 * Roles are often managed via {grantRole} and {revokeRole}: this function's
	 * purpose is to provide a mechanism for accounts to lose their privileges
	 * if they are compromised (such as when a trusted device is misplaced).
	 *
	 * If the calling account had been granted `role`, emits a {RoleRevoked}
	 * event.
	 *
	 * Requirements:
	 *
	 * - the caller must be `account`.
	 */
	function renounceRole(bytes32 role, address account) external override {
		require(account == msg.sender, "71");

		_revokeRole(role, account);
	}

	/**
	 * @dev Grants `role` to `account`.
	 *
	 * If `account` had not been already granted `role`, emits a {RoleGranted}
	 * event. Note that unlike {grantRole}, this function doesn't perform any
	 * checks on the calling account.
	 *
	 * [WARNING]
	 * ====
	 * This function should only be called from the constructor when setting
	 * up the initial roles for the system.
	 *
	 * Using this function in any other way is effectively circumventing the admin
	 * system imposed by {AccessControl}.
	 * ====
	 */
	function _setupRole(bytes32 role, address account) internal {
		_grantRole(role, account);
	}

	/**
	 * @dev Sets `adminRole` as ``role``'s admin role.
	 *
	 * Emits a {RoleAdminChanged} event.
	 */
	function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal {
		emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
		_roles[role].adminRole = adminRole;
	}

	function _grantRole(bytes32 role, address account) internal {
		if (!hasRole(role, account)) {
			_roles[role].members[account] = true;
			emit RoleGranted(role, account, msg.sender);
		}
	}

	function _revokeRole(bytes32 role, address account) internal {
		if (hasRole(role, account)) {
			_roles[role].members[account] = false;
			emit RoleRevoked(role, account, msg.sender);
		}
	}

	uint256[49] private __gap;
}

/// @title SdtDistributorEvents
/// @author StakeDAO Core Team
/// @notice All the events used in `SdtDistributor` contract
abstract contract SdtDistributorEvents {
	event DelegateGaugeUpdated(address indexed _gaugeAddr, address indexed _delegateGauge);
	event DistributionsToggled(bool _distributionsOn);
	event GaugeControllerUpdated(address indexed _controller);
	event GaugeToggled(address indexed gaugeAddr, bool newStatus);
	event InterfaceKnownToggled(address indexed _delegateGauge, bool _isInterfaceKnown);
	event RateUpdated(uint256 _newRate);
	event Recovered(address indexed tokenAddress, address indexed to, uint256 amount);
	event RewardDistributed(address indexed gaugeAddr, uint256 sdtDistributed, uint256 lastMasterchefPull);
	event UpdateMiningParameters(uint256 time, uint256 rate, uint256 supply);
}

/// @title SdtDistributorV2
/// @notice Earn from Masterchef SDT and distribute it to gauges
contract SdtDistributorV2 is ReentrancyGuardUpgradeable, AccessControlUpgradeable, SdtDistributorEvents {
	using SafeERC20 for IERC20;

	////////////////////////////////////////////////////////////////
	/// --- CONSTANTS
	///////////////////////////////////////////////////////////////

	/// @notice Accounting
	uint256 public constant BASE_UNIT = 10_000;

	/// @notice Address of the SDT token given as a reward.
	IERC20 public constant rewardToken = IERC20(0x73968b9a57c6E53d41345FD57a6E6ae27d6CDB2F);

	/// @notice Address of the masterchef.
	IMasterchef public constant masterchef = IMasterchef(0xfEA5E213bbD81A8a94D0E1eDB09dBD7CEab61e1c);

	/// @notice Role for governors only.
	bytes32 public constant GOVERNOR_ROLE = keccak256("GOVERNOR_ROLE");
	/// @notice Role for the guardian
	bytes32 public constant GUARDIAN_ROLE = keccak256("GUARDIAN_ROLE");

	////////////////////////////////////////////////////////////////
	/// --- STORAGE SLOTS
	///////////////////////////////////////////////////////////////

	/// @notice Time between SDT Harvest.
	uint256 public timePeriod;

	/// @notice Address of the token that will be deposited in masterchef.
	IERC20 public masterchefToken;

	/// @notice Address of the `GaugeController` contract.
	IGaugeController public controller;

	/// @notice Address responsible for pulling rewards of type >= 2 gauges and distributing it to the
	/// associated contracts if there is not already an address delegated for this specific contract.
	address public delegateGauge;

	/// @notice Whether SDT distribution through this contract is on or no.
	bool public distributionsOn;

	/// @notice Maps the address of a type >= 2 gauge to a delegate address responsible
	/// for giving rewards to the actual gauge.
	mapping(address => address) public delegateGauges;

	/// @notice Maps the address of a gauge to whether it was killed or not
	/// A gauge killed in this contract cannot receive any rewards.
	mapping(address => bool) public killedGauges;

	/// @notice Maps the address of a gauge delegate to whether this delegate supports the `notifyReward` interface
	/// and is therefore built for automation.
	mapping(address => bool) public isInterfaceKnown;

	/// @notice Masterchef PID
	uint256 public masterchefPID;

	/// @notice Timestamp of the last pull from masterchef.
	uint256 public lastMasterchefPull;

	/// @notice Maps the timestamp of pull action to the amount of SDT that pulled.
	mapping(uint256 => uint256) public pulls; // day => SDT amount

	/// @notice Maps the timestamp of last pull to the gauge addresses then keeps the data if particular gauge paid in the last pull.
	mapping(uint256 => mapping(address => bool)) public isGaugePaid;

	/// @notice Incentive for caller.
	uint256 public claimerFee;

	/// @notice Number of days to go through for past distributing.
	uint256 public lookPastDays;

	////////////////////////////////////////////////////////////////
	/// --- INITIALIZATION LOGIC
	///////////////////////////////////////////////////////////////

	/// @notice Initialize function
	/// @param _controller gauge controller to manage votes
	/// @param _governor governor address
	/// @param _guardian guardian address
	/// @param _delegateGauge delegate gauge address
	function initialize(
		address _controller,
		address _governor,
		address _guardian,
		address _delegateGauge
	) external initializer {
		require(_controller != address(0) && _guardian != address(0) && _governor != address(0), "0");

		controller = IGaugeController(_controller);
		delegateGauge = _delegateGauge;

		masterchefToken = IERC20(address(new MasterchefMasterToken()));
		distributionsOn = false;

		timePeriod = 3600 * 24; // One day in seconds
		lookPastDays = 45; // for past 45 days check

		_setRoleAdmin(GOVERNOR_ROLE, GOVERNOR_ROLE);
		_setRoleAdmin(GUARDIAN_ROLE, GOVERNOR_ROLE);

		_setupRole(GUARDIAN_ROLE, _guardian);
		_setupRole(GOVERNOR_ROLE, _governor);
		_setupRole(GUARDIAN_ROLE, _governor);
	}

	/// @custom:oz-upgrades-unsafe-allow constructor
	constructor() initializer {}

	/// @notice Initialize the masterchef depositing the master token
	/// @param _pid pool id to deposit the token
	function initializeMasterchef(uint256 _pid) external onlyRole(GOVERNOR_ROLE) {
		masterchefPID = _pid;
		masterchefToken.approve(address(masterchef), 1e18);
		masterchef.deposit(_pid, 1e18);
	}

	////////////////////////////////////////////////////////////////
	/// --- DISTRIBUTION LOGIC
	///////////////////////////////////////////////////////////////

	/// @notice Distribute SDT to Gauges
	/// @param gaugeAddr Address of the gauge to distribute.
	function distribute(address gaugeAddr) external nonReentrant {
		_distribute(gaugeAddr);
	}

	/// @notice Distribute SDT to Multiple Gauges
	/// @param gaugeAddr Array of addresses of the gauge to distribute.
	function distributeMulti(address[] calldata gaugeAddr) public nonReentrant {
		uint256 length = gaugeAddr.length;
		for (uint256 i; i < length; i++) {
			_distribute(gaugeAddr[i]);
		}
	}

	/// @notice Internal implementation of distribute logic.
	/// @param gaugeAddr Address of the gauge to distribute rewards to
	function _distribute(address gaugeAddr) internal {
		require(distributionsOn, "not allowed");
		int128 gaugeType = controller.gauge_types(gaugeAddr);
		require(gaugeType >= 0, "Unrecognized gauge");

		if (killedGauges[gaugeAddr]) {
			return;
		}

		// Rounded to beginning of the day -> 00:00 UTC
		uint256 roundedTimestamp = (block.timestamp / 1 days) * 1 days;

		uint256 totalDistribute;

		if (block.timestamp > lastMasterchefPull + timePeriod) {
			uint256 sdtBefore = rewardToken.balanceOf(address(this));
			_pullSDT();
			pulls[roundedTimestamp] = rewardToken.balanceOf(address(this)) - sdtBefore;
			lastMasterchefPull = roundedTimestamp;
		}
		// check past n days
		for (uint256 i; i < lookPastDays; i++) {
			uint256 currentTimestamp = roundedTimestamp - (i * 86_400);

			if (pulls[currentTimestamp] > 0) {
				bool isPaid = isGaugePaid[currentTimestamp][gaugeAddr];
				if (isPaid) {
					break;
				}

				// Retrieve the amount pulled from Masterchef at the given timestamp.
				uint256 sdtBalance = pulls[currentTimestamp];
				uint256 gaugeRelativeWeight;

				if (i == 0) {
					// Makes sure the weight is checkpointed. Also returns the weight.
					gaugeRelativeWeight = controller.gauge_relative_weight_write(gaugeAddr, currentTimestamp);
				} else {
					gaugeRelativeWeight = controller.gauge_relative_weight(gaugeAddr, currentTimestamp);
				}

				uint256 sdtDistributed = (sdtBalance * gaugeRelativeWeight) / 1e18;
				totalDistribute += sdtDistributed;
				isGaugePaid[currentTimestamp][gaugeAddr] = true;
			}
		}
		if (totalDistribute > 0) {
			if (gaugeType == 1) {
				rewardToken.safeTransfer(gaugeAddr, totalDistribute);
				IStakingRewards(gaugeAddr).notifyRewardAmount(totalDistribute);
			} else if (gaugeType >= 2) {
				// If it is defined, we use the specific delegate attached to the gauge
				address delegate = delegateGauges[gaugeAddr];
				if (delegate == address(0)) {
					// If not, we check if a delegate common to all gauges with type >= 2 can be used
					delegate = delegateGauge;
				}
				if (delegate != address(0)) {
					// In the case where the gauge has a delegate (specific or not), then rewards are transferred to this gauge
					rewardToken.safeTransfer(delegate, totalDistribute);
					// If this delegate supports a specific interface, then rewards sent are notified through this
					// interface
					if (isInterfaceKnown[delegate]) {
						ISdtMiddlemanGauge(delegate).notifyReward(gaugeAddr, totalDistribute);
					}
				} else {
					rewardToken.safeTransfer(gaugeAddr, totalDistribute);
				}
			} else {
				ILiquidityGauge(gaugeAddr).deposit_reward_token(address(rewardToken), totalDistribute);
			}

			emit RewardDistributed(gaugeAddr, totalDistribute, lastMasterchefPull);
		}
	}

	/// @notice Internal function to pull SDT from the MasterChef
	function _pullSDT() internal {
		masterchef.withdraw(masterchefPID, 0);
	}

	////////////////////////////////////////////////////////////////
	/// --- RESTRICTIVE FUNCTIONS
	///////////////////////////////////////////////////////////////

	/// @notice Sets the distribution state (on/off)
	/// @param _state new distribution state
	function setDistribution(bool _state) external onlyRole(GOVERNOR_ROLE) {
		distributionsOn = _state;
	}

	/// @notice Sets a new gauge controller
	/// @param _controller Address of the new gauge controller
	function setGaugeController(address _controller) external onlyRole(GOVERNOR_ROLE) {
		require(_controller != address(0), "0");
		controller = IGaugeController(_controller);
		emit GaugeControllerUpdated(_controller);
	}

	/// @notice Sets a new delegate gauge for pulling rewards of a type >= 2 gauges or of all type >= 2 gauges
	/// @param gaugeAddr Gauge to change the delegate of
	/// @param _delegateGauge Address of the new gauge delegate related to `gaugeAddr`
	/// @param toggleInterface Whether we should toggle the fact that the `_delegateGauge` is built for automation or not
	/// @dev This function can be used to remove delegating or introduce the pulling of rewards to a given address
	/// @dev If `gaugeAddr` is the zero address, this function updates the delegate gauge common to all gauges with type >= 2
	/// @dev The `toggleInterface` parameter has been added for convenience to save one transaction when adding a gauge delegate
	/// which supports the `notifyReward` interface
	function setDelegateGauge(
		address gaugeAddr,
		address _delegateGauge,
		bool toggleInterface
	) external onlyRole(GOVERNOR_ROLE) {
		if (gaugeAddr != address(0)) {
			delegateGauges[gaugeAddr] = _delegateGauge;
		} else {
			delegateGauge = _delegateGauge;
		}
		emit DelegateGaugeUpdated(gaugeAddr, _delegateGauge);

		if (toggleInterface) {
			_toggleInterfaceKnown(_delegateGauge);
		}
	}

	/// @notice Toggles the status of a gauge to either killed or unkilled
	/// @param gaugeAddr Gauge to toggle the status of
	/// @dev It is impossible to kill a gauge in the `GaugeController` contract, for this reason killing of gauges
	/// takes place in the `SdtDistributor` contract
	/// @dev This means that people could vote for a gauge in the gauge controller contract but that rewards are not going
	/// to be distributed to it in the end: people would need to remove their weights on the gauge killed to end the diminution
	/// in rewards
	/// @dev In the case of a gauge being killed, this function resets the timestamps at which this gauge has been approved and
	/// disapproves the gauge to spend the token
	/// @dev It should be cautiously called by governance as it could result in less SDT overall rewards than initially planned
	/// if people do not remove their voting weights to the killed gauge
	function toggleGauge(address gaugeAddr) external onlyRole(GOVERNOR_ROLE) {
		bool gaugeKilledMem = killedGauges[gaugeAddr];
		if (!gaugeKilledMem) {
			rewardToken.safeApprove(gaugeAddr, 0);
		}
		killedGauges[gaugeAddr] = !gaugeKilledMem;
		emit GaugeToggled(gaugeAddr, !gaugeKilledMem);
	}

	/// @notice Notifies that the interface of a gauge delegate is known or has changed
	/// @param _delegateGauge Address of the gauge to change
	/// @dev Gauge delegates that are built for automation should be toggled
	function toggleInterfaceKnown(address _delegateGauge) external onlyRole(GUARDIAN_ROLE) {
		_toggleInterfaceKnown(_delegateGauge);
	}

	/// @notice Toggles the fact that a gauge delegate can be used for automation or not and therefore supports
	/// the `notifyReward` interface
	/// @param _delegateGauge Address of the gauge to change
	function _toggleInterfaceKnown(address _delegateGauge) internal {
		bool isInterfaceKnownMem = isInterfaceKnown[_delegateGauge];
		isInterfaceKnown[_delegateGauge] = !isInterfaceKnownMem;
		emit InterfaceKnownToggled(_delegateGauge, !isInterfaceKnownMem);
	}

	/// @notice Gives max approvement to the gauge
	/// @param gaugeAddr Address of the gauge
	function approveGauge(address gaugeAddr) external onlyRole(GOVERNOR_ROLE) {
		rewardToken.safeApprove(gaugeAddr, type(uint256).max);
	}

	/// @notice Set the time period to pull SDT from Masterchef
	/// @param _timePeriod new timePeriod value in seconds
	function setTimePeriod(uint256 _timePeriod) external onlyRole(GOVERNOR_ROLE) {
		require(_timePeriod >= 1 days, "TOO_LOW");
		timePeriod = _timePeriod;
	}

	function setClaimerFee(uint256 _newFee) external onlyRole(GOVERNOR_ROLE) {
		require(_newFee <= BASE_UNIT, "TOO_HIGH");
		claimerFee = _newFee;
	}

	/// @notice Set the how many days we should look back for reward distribution
	/// @param _newLookPastDays new value for how many days we should look back
	function setLookPastDays(uint256 _newLookPastDays) external onlyRole(GOVERNOR_ROLE) {
		lookPastDays = _newLookPastDays;
	}

	/// @notice Withdraws ERC20 tokens that could accrue on this contract
	/// @param tokenAddress Address of the ERC20 token to withdraw
	/// @param to Address to transfer to
	/// @param amount Amount to transfer
	/// @dev Added to support recovering LP Rewards and other mistaken tokens
	/// from other systems to be distributed to holders
	/// @dev This function could also be used to recover SDT tokens in case the rate got smaller
	function recoverERC20(
		address tokenAddress,
		address to,
		uint256 amount
	) external onlyRole(GOVERNOR_ROLE) {
		IERC20(tokenAddress).safeTransfer(to, amount);
		emit Recovered(tokenAddress, to, amount);
	}
}

contract AngleStrategy is BaseStrategy {
	using SafeERC20 for IERC20;
	AngleAccumulator public accumulator;
	address public sdtDistributor;
	struct ClaimerReward {
		address rewardToken;
		uint256 amount;
	}
	enum MANAGEFEE {
		PERFFEE,
		VESDTFEE,
		ACCUMULATORFEE,
		CLAIMERREWARD
	}

	/* ========== CONSTRUCTOR ========== */
	constructor(
		ILocker _locker,
		address _governance,
		address _receiver,
		AngleAccumulator _accumulator,
		address _veSDTFeeProxy,
		address _sdtDistributor
	) BaseStrategy(_locker, _governance, _receiver) {
		accumulator = _accumulator;
		veSDTFeeProxy = _veSDTFeeProxy;
		sdtDistributor = _sdtDistributor;
	}

	/* ========== MUTATIVE FUNCTIONS ========== */
	function deposit(address _token, uint256 _amount) public override onlyApprovedVault {
		IERC20(_token).transferFrom(msg.sender, address(locker), _amount);
		address gauge = gauges[_token];
		require(gauge != address(0), "!gauge");
		locker.execute(_token, 0, abi.encodeWithSignature("approve(address,uint256)", gauge, 0));
		locker.execute(_token, 0, abi.encodeWithSignature("approve(address,uint256)", gauge, _amount));

		(bool success, ) = locker.execute(gauge, 0, abi.encodeWithSignature("deposit(uint256)", _amount));
		require(success, "Deposit failed!");
		emit Deposited(gauge, _token, _amount);
	}

	function withdraw(address _token, uint256 _amount) public override onlyApprovedVault {
		uint256 _before = IERC20(_token).balanceOf(address(locker));
		address gauge = gauges[_token];
		require(gauge != address(0), "!gauge");
		(bool success, ) = locker.execute(gauge, 0, abi.encodeWithSignature("withdraw(uint256)", _amount));
		require(success, "Transfer failed!");
		uint256 _after = IERC20(_token).balanceOf(address(locker));

		uint256 _net = _after - _before;
		(success, ) = locker.execute(_token, 0, abi.encodeWithSignature("transfer(address,uint256)", msg.sender, _net));
		require(success, "Transfer failed!");
		emit Withdrawn(gauge, _token, _amount);
	}

	function claim(address _token) external override {
		address gauge = gauges[_token];
		require(gauge != address(0), "!gauge");
		(bool success, ) = locker.execute(gauge, 0, abi.encodeWithSignature("user_checkpoint(address)", address(locker)));
		require(success, "Checkpoint failed!");
		(success, ) = locker.execute(
			gauge,
			0,
			abi.encodeWithSignature("claim_rewards(address,address)", address(locker), address(this))
		);
		require(success, "Claim failed!");
		SdtDistributorV2(sdtDistributor).distribute(multiGauges[gauge]);
		for (uint8 i = 0; i < 8; i++) {
			address rewardToken = ILiquidityGauge(gauge).reward_tokens(i);
			if (rewardToken == address(0)) {
				break;
			}
			uint256 rewardsBalance = IERC20(rewardToken).balanceOf(address(this));
			uint256 multisigFee = (rewardsBalance * perfFee[gauge]) / BASE_FEE;
			uint256 accumulatorPart = (rewardsBalance * accumulatorFee[gauge]) / BASE_FEE;
			uint256 veSDTPart = (rewardsBalance * veSDTFee[gauge]) / BASE_FEE;
			uint256 claimerPart = (rewardsBalance * claimerRewardFee[gauge]) / BASE_FEE;
			IERC20(rewardToken).approve(address(accumulator), accumulatorPart);
			accumulator.depositToken(rewardToken, accumulatorPart);
			IERC20(rewardToken).transfer(rewardsReceiver, multisigFee);
			IERC20(rewardToken).transfer(veSDTFeeProxy, veSDTPart);
			IERC20(rewardToken).transfer(msg.sender, claimerPart);
			uint256 netRewards = rewardsBalance - multisigFee - accumulatorPart - veSDTPart - claimerPart;
			IERC20(rewardToken).approve(multiGauges[gauge], netRewards);
			ILiquidityGauge(multiGauges[gauge]).deposit_reward_token(rewardToken, netRewards);
			emit Claimed(gauge, rewardToken, rewardsBalance);
		}
	}

	function claimerPendingRewards(address _token) external view returns (ClaimerReward[] memory) {
		ClaimerReward[] memory pendings = new ClaimerReward[](8);
		address gauge = gauges[_token];
		for (uint8 i = 0; i < 8; i++) {
			address rewardToken = ILiquidityGauge(gauge).reward_tokens(i);
			if (rewardToken == address(0)) {
				break;
			}
			uint256 rewardsBalance = ILiquidityGauge(gauge).claimable_reward(address(locker), rewardToken);
			uint256 pendingAmount = (rewardsBalance * claimerRewardFee[gauge]) / BASE_FEE;
			ClaimerReward memory pendingReward = ClaimerReward(rewardToken, pendingAmount);
			pendings[i] = pendingReward;
		}
		return pendings;
	}

	function toggleVault(address _vault) external override onlyGovernanceOrFactory {
		vaults[_vault] = !vaults[_vault];
		emit VaultToggled(_vault, vaults[_vault]);
	}

	function setGauge(address _token, address _gauge) external override onlyGovernanceOrFactory {
		gauges[_token] = _gauge;
		emit GaugeSet(_gauge, _token);
	}

	function setMultiGauge(address _gauge, address _multiGauge) external override onlyGovernanceOrFactory {
		multiGauges[_gauge] = _multiGauge;
	}

	function setVeSDTProxy(address _newVeSDTProxy) external onlyGovernance {
		veSDTFeeProxy = _newVeSDTProxy;
	}

	function setAccumulator(address _newAccumulator) external onlyGovernance {
		accumulator = AngleAccumulator(_newAccumulator);
	}

	function setRewardsReceiver(address _newRewardsReceiver) external onlyGovernance {
		rewardsReceiver = _newRewardsReceiver;
	}

	function setGovernance(address _newGovernance) external onlyGovernance {
		governance = _newGovernance;
	}

	function setSdtDistributor(address _newSdtDistributor) external onlyGovernance {
		sdtDistributor = _newSdtDistributor;
	}

	function setVaultGaugeFactory(address _newVaultGaugeFactory) external onlyGovernance {
		require(_newVaultGaugeFactory != address(0), "zero address");
		vaultGaugeFactory = _newVaultGaugeFactory;
	}

	/// @notice function to set new fees
	/// @param _manageFee manageFee
	/// @param _gauge gauge address
	/// @param _newFee new fee to set
	function manageFee(
		MANAGEFEE _manageFee,
		address _gauge,
		uint256 _newFee
	) external onlyGovernanceOrFactory {
		require(_gauge != address(0), "zero address");
		require(_newFee <= BASE_FEE, "fee to high");
		if (_manageFee == MANAGEFEE.PERFFEE) {
			// 0
			perfFee[_gauge] = _newFee;
		} else if (_manageFee == MANAGEFEE.VESDTFEE) {
			// 1
			veSDTFee[_gauge] = _newFee;
		} else if (_manageFee == MANAGEFEE.ACCUMULATORFEE) {
			//2
			accumulatorFee[_gauge] = _newFee;
		} else if (_manageFee == MANAGEFEE.CLAIMERREWARD) {
			// 3
			claimerRewardFee[_gauge] = _newFee;
		}
	}

	/// @notice execute a function
	/// @param to Address to sent the value to
	/// @param value Value to be sent
	/// @param data Call function data
	function execute(
		address to,
		uint256 value,
		bytes calldata data
	) external onlyGovernance returns (bool, bytes memory) {
		(bool success, bytes memory result) = to.call{ value: value }(data);
		return (success, result);
	}
}

contract AngleVaultGUni is ERC20 {
	using SafeERC20 for ERC20;
	using Address for address;

	ERC20 public token;
	address public governance;
	uint256 public withdrawalFee;
	uint256 public keeperFee;
	address public liquidityGauge;
	uint256 public accumulatedFee;
	uint256 public scalingFactor;
	AngleStrategy public angleStrategy;
	uint256 public min;
	uint256 public constant max = 10000;
	event Earn(address _token, uint256 _amount);
	event Deposit(address _depositor, uint256 _amount);
	event Withdraw(address _depositor, uint256 _amount);

	constructor(
		ERC20 _token,
		address _governance,
		string memory name_,
		string memory symbol_,
		AngleStrategy _angleStrategy,
		uint256 _scalingFactor
	) ERC20(name_, symbol_) {
		token = _token;
		governance = _governance;
		min = 10000;
		keeperFee = 10; // %0.1
		angleStrategy = _angleStrategy;
		scalingFactor = _scalingFactor;
	}

	function deposit(
		address _staker,
		uint256 _amount,
		bool _earn
	) public {
		require(address(liquidityGauge) != address(0), "Gauge not yet initialized");
		token.safeTransferFrom(msg.sender, address(this), _amount);
		if (!_earn) {
			uint256 keeperCut = (_amount * keeperFee) / 10000;
			_amount -= keeperCut;
			accumulatedFee += keeperCut;
		} else {
			_amount += accumulatedFee;
			accumulatedFee = 0;
		}
		_mint(address(this), _amount);
		ERC20(address(this)).approve(liquidityGauge, _amount);
		ILiquidityGaugeStrat(liquidityGauge).deposit(_amount, _staker);
		if (_earn) {
			earn();
		}
		emit Deposit(_staker, _amount);
	}

	function withdraw(uint256 _shares) public {
		uint256 userTotalShares = ILiquidityGaugeStrat(liquidityGauge).balanceOf(msg.sender);
		require(_shares <= userTotalShares, "Not enough staked");
		ILiquidityGaugeStrat(liquidityGauge).withdraw(_shares, msg.sender, true);
		_burn(address(this), _shares);
		uint256 tokenBalance = token.balanceOf(address(this)) - accumulatedFee;

		if (_shares > tokenBalance) {
			uint256 amountToWithdraw = ((_shares - tokenBalance) * scalingFactor) / 1e18;
			angleStrategy.withdraw(address(token), amountToWithdraw);
			uint256 scaledUpAmountToWithdraw = (amountToWithdraw * 1e18) / scalingFactor;
			uint256 withdrawFee = (scaledUpAmountToWithdraw * withdrawalFee) / 10000;
			token.safeTransfer(governance, withdrawFee);
			_shares = token.balanceOf(address(this)) - accumulatedFee;
		}

		token.safeTransfer(msg.sender, _shares);
		emit Withdraw(msg.sender, _shares);
	}

	function withdrawAll() external {
		withdraw(balanceOf(msg.sender));
	}

	function setGovernance(address _governance) external {
		require(msg.sender == governance, "!governance");
		governance = _governance;
	}

	function setKeeperFee(uint256 _newFee) external {
		require(msg.sender == governance, "!governance");
		keeperFee = _newFee;
	}

	function setLiquidityGauge(address _liquidityGauge) external {
		require(msg.sender == governance, "!governance");
		liquidityGauge = _liquidityGauge;
	}

	function setAngleStrategy(AngleStrategy _newStrat) external {
		require(msg.sender == governance, "!governance");
		angleStrategy = _newStrat;
	}

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

	function setWithdrawnFee(uint256 _newFee) external {
		require(msg.sender == governance, "!governance");
		withdrawalFee = _newFee;
	}

	function setMin(uint256 _min) external {
		require(msg.sender == governance, "!governance");
		min = _min;
	}

	function setScalingFactor(uint256 _newScalingFactor) external {
		require(msg.sender == governance, "!governance");
		scalingFactor = _newScalingFactor;
	}

	function available() public view returns (uint256) {
		return ((token.balanceOf(address(this)) - accumulatedFee) * min) / max;
	}

	function earn() internal {
		uint256 tokenBalance = available();
		token.approve(address(angleStrategy), 0);
		token.approve(address(angleStrategy), tokenBalance);
		angleStrategy.deposit(address(token), tokenBalance);
		emit Earn(address(token), tokenBalance);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ERC20","name":"_token","type":"address"},{"internalType":"address","name":"_governance","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract AngleStrategy","name":"_angleStrategy","type":"address"},{"internalType":"uint256","name":"_scalingFactor","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_depositor","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_token","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Earn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_depositor","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"accumulatedFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"angleStrategy","outputs":[{"internalType":"contract AngleStrategy","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":"address","name":"_staker","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_earn","type":"bool"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"keeperFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityGauge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract AngleStrategy","name":"_newStrat","type":"address"}],"name":"setAngleStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"setKeeperFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityGauge","type":"address"}],"name":"setLiquidityGauge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"setMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newScalingFactor","type":"uint256"}],"name":"setScalingFactor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"setWithdrawnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"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":"uint256","name":"_shares","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001fb138038062001fb1833981016040819052620000349162000217565b8351849084906200004d906003906020850190620000ba565b50805162000063906004906020840190620000ba565b5050600580546001600160a01b03199081166001600160a01b03998a16179091556006805482169789169790971790965550612710600d55600a600855600c805490951691909516179092555050600b5562000337565b828054620000c890620002cb565b90600052602060002090601f016020900481019282620000ec576000855562000137565b82601f106200010757805160ff191683800117855562000137565b8280016001018555821562000137579182015b82811115620001375782518255916020019190600101906200011a565b506200014592915062000149565b5090565b5b808211156200014557600081556001016200014a565b600082601f8301126200017257600080fd5b81516001600160401b03808211156200018f576200018f62000308565b604051601f8301601f19908116603f01168101908282118183101715620001ba57620001ba62000308565b81604052838152602092508683858801011115620001d757600080fd5b600091505b83821015620001fb5785820183015181830184015290820190620001dc565b838211156200020d5760008385830101525b9695505050505050565b60008060008060008060c087890312156200023157600080fd5b86516200023e816200031e565b602088015190965062000251816200031e565b60408801519095506001600160401b03808211156200026f57600080fd5b6200027d8a838b0162000160565b955060608901519150808211156200029457600080fd5b50620002a389828a0162000160565b9350506080870151620002b6816200031e565b8092505060a087015190509295509295509295565b600181811c90821680620002e057607f821691505b602082108114156200030257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146200033457600080fd5b50565b611c6a80620003476000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80636ac5db191161010f578063a9059cbb116100a2578063f889794511610071578063f889794514610437578063f8ce316414610440578063f9a0be6814610449578063fc0c546a1461045c57600080fd5b8063a9059cbb146103cf578063ab033ea9146103e2578063dd62ed3e146103f5578063ed3437f81461042e57600080fd5b80638bc7e8c4116100de5780638bc7e8c41461039857806395d89b41146103a157806398dfca7f146103a9578063a457c2d7146103bc57600080fd5b80636ac5db191461034b57806370a0823114610354578063853828b61461037d5780638b6e80841461038557600080fd5b8063395093511161018757806348a0d7541161015657806348a0d7541461030a57806349bab13d146103125780635aa6e67514610325578063672abd2d1461033857600080fd5b806339509351146102c85780633edd1128146102db578063422ede42146102ee57806345dc3dd8146102f757600080fd5b806318160ddd116101c357806318160ddd1461027657806323b872dd146102885780632e1a7d4d1461029b578063313ce567146102ae57600080fd5b8063048bf085146101f557806306fdde031461020a578063095ea7b31461022857806313ca406f1461024b575b600080fd5b610208610203366004611936565b61046f565b005b6102126104c4565b60405161021f9190611ac9565b60405180910390f35b61023b6102363660046119cd565b610556565b604051901515815260200161021f565b600c5461025e906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b6002545b60405190815260200161021f565b61023b61029636600461198c565b61056c565b6102086102a9366004611a58565b610618565b6102b66109c1565b60405160ff909116815260200161021f565b61023b6102d63660046119cd565b610a43565b6102086102e93660046119f9565b610a7f565b61027a60085481565b610208610305366004611a58565b610c94565b61027a610cc3565b610208610320366004611936565b610d6d565b60065461025e906001600160a01b031681565b610208610346366004611a58565b610db9565b61027a61271081565b61027a610362366004611936565b6001600160a01b031660009081526020819052604090205490565b610208610de8565b610208610393366004611a58565b610e03565b61027a60075481565b610212610e32565b6102086103b7366004611a58565b610e41565b61023b6103ca3660046119cd565b610e70565b61023b6103dd3660046119cd565b610f09565b6102086103f0366004611936565b610f16565b61027a610403366004611953565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61027a600b5481565b61027a600d5481565b61027a600a5481565b60095461025e906001600160a01b031681565b60055461025e906001600160a01b031681565b6006546001600160a01b031633146104a25760405162461bcd60e51b815260040161049990611afc565b60405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546104d390611bbd565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff90611bbd565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b6000610563338484610f62565b50600192915050565b6000610579848484611087565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610499565b61060b8533858403610f62565b60019150505b9392505050565b6009546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381600087803b15801561065e57600080fd5b505af1158015610672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106969190611a71565b9050808211156106dc5760405162461bcd60e51b8152602060048201526011602482015270139bdd08195b9bdd59da081cdd185ad959607a1b6044820152606401610499565b60095460405162ebf5dd60e01b815260048101849052336024820152600160448201526001600160a01b039091169062ebf5dd90606401600060405180830381600087803b15801561072d57600080fd5b505af1158015610741573d6000803e3d6000fd5b5050505061074f3083611257565b600a546005546040516370a0823160e01b8152306004820152600092916001600160a01b0316906370a082319060240160206040518083038186803b15801561079757600080fd5b505afa1580156107ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107cf9190611a71565b6107d99190611b7a565b90508083111561096b576000670de0b6b3a7640000600b5483866107fd9190611b7a565b6108079190611b5b565b6108119190611b39565b600c5460055460405163f3fef3a360e01b81526001600160a01b03918216600482015260248101849052929350169063f3fef3a390604401600060405180830381600087803b15801561086357600080fd5b505af1158015610877573d6000803e3d6000fd5b505050506000600b5482670de0b6b3a76400006108949190611b5b565b61089e9190611b39565b90506000612710600754836108b39190611b5b565b6108bd9190611b39565b6006546005549192506108dd916001600160a01b039081169116836113a2565b600a546005546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561092357600080fd5b505afa158015610937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095b9190611a71565b6109659190611b7a565b95505050505b600554610982906001600160a01b031633856113a2565b60408051338152602081018590527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436491015b60405180910390a1505050565b6005546040805163313ce56760e01b815290516000926001600160a01b03169163313ce567916004808301926020929190829003018186803b158015610a0657600080fd5b505afa158015610a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3e9190611a8a565b905090565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610563918590610a7a908690611b21565b610f62565b6009546001600160a01b0316610ad75760405162461bcd60e51b815260206004820152601960248201527f4761756765206e6f742079657420696e697469616c697a6564000000000000006044820152606401610499565b600554610aef906001600160a01b0316333085611405565b80610b3d57600061271060085484610b079190611b5b565b610b119190611b39565b9050610b1d8184611b7a565b925080600a6000828254610b319190611b21565b90915550610b52915050565b600a54610b4a9083611b21565b6000600a5591505b610b5c308361143d565b60095460405163095ea7b360e01b81526001600160a01b03909116600482015260248101839052309063095ea7b390604401602060405180830381600087803b158015610ba857600080fd5b505af1158015610bbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be09190611a3b565b50600954604051636e553f6560e01b8152600481018490526001600160a01b03858116602483015290911690636e553f6590604401600060405180830381600087803b158015610c2f57600080fd5b505af1158015610c43573d6000803e3d6000fd5b505050508015610c5557610c5561151c565b604080516001600160a01b0385168152602081018490527fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c91016109b4565b6006546001600160a01b03163314610cbe5760405162461bcd60e51b815260040161049990611afc565b600d55565b600d54600a546005546040516370a0823160e01b815230600482015260009361271093909290916001600160a01b03909116906370a082319060240160206040518083038186803b158015610d1757600080fd5b505afa158015610d2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4f9190611a71565b610d599190611b7a565b610d639190611b5b565b610a3e9190611b39565b6006546001600160a01b03163314610d975760405162461bcd60e51b815260040161049990611afc565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610de35760405162461bcd60e51b815260040161049990611afc565b600b55565b33600090815260208190526040902054610e0190610618565b565b6006546001600160a01b03163314610e2d5760405162461bcd60e51b815260040161049990611afc565b600755565b6060600480546104d390611bbd565b6006546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161049990611afc565b600855565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ef25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610499565b610eff3385858403610f62565b5060019392505050565b6000610563338484611087565b6006546001600160a01b03163314610f405760405162461bcd60e51b815260040161049990611afc565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610fc45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610499565b6001600160a01b0382166110255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610499565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610499565b6001600160a01b03821661114d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610499565b6001600160a01b038316600090815260208190526040902054818110156111c55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610499565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906111fc908490611b21565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161124891815260200190565b60405180910390a35b50505050565b6001600160a01b0382166112b75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610499565b6001600160a01b0382166000908152602081905260409020548181101561132b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610499565b6001600160a01b038316600090815260208190526040812083830390556002805484929061135a908490611b7a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161107a565b505050565b6040516001600160a01b03831660248201526044810182905261139d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526116ec565b6040516001600160a01b03808516602483015283166044820152606481018290526112519085906323b872dd60e01b906084016113ce565b6001600160a01b0382166114935760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610499565b80600260008282546114a59190611b21565b90915550506001600160a01b038216600090815260208190526040812080548392906114d2908490611b21565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000611526610cc3565b600554600c5460405163095ea7b360e01b81526001600160a01b03918216600482015260006024820152929350169063095ea7b390604401602060405180830381600087803b15801561157857600080fd5b505af115801561158c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b09190611a3b565b50600554600c5460405163095ea7b360e01b81526001600160a01b0391821660048201526024810184905291169063095ea7b390604401602060405180830381600087803b15801561160157600080fd5b505af1158015611615573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116399190611a3b565b50600c546005546040516311f9fbc960e21b81526001600160a01b039182166004820152602481018490529116906347e7ef2490604401600060405180830381600087803b15801561168a57600080fd5b505af115801561169e573d6000803e3d6000fd5b5050600554604080516001600160a01b039092168252602082018590527f9b883692663cf2cc636d9eda0392f2c7ff1a3163a5cef27fa1f8bb438ec73ab5935001905060405180910390a150565b6000611741826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166117be9092919063ffffffff16565b80519091501561139d578080602001905181019061175f9190611a3b565b61139d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610499565b60606117cd84846000856117d5565b949350505050565b6060824710156118365760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610499565b843b6118845760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610499565b600080866001600160a01b031685876040516118a09190611aad565b60006040518083038185875af1925050503d80600081146118dd576040519150601f19603f3d011682016040523d82523d6000602084013e6118e2565b606091505b50915091506118f28282866118fd565b979650505050505050565b6060831561190c575081610611565b82511561191c5782518084602001fd5b8160405162461bcd60e51b81526004016104999190611ac9565b60006020828403121561194857600080fd5b813561061181611c0e565b6000806040838503121561196657600080fd5b823561197181611c0e565b9150602083013561198181611c0e565b809150509250929050565b6000806000606084860312156119a157600080fd5b83356119ac81611c0e565b925060208401356119bc81611c0e565b929592945050506040919091013590565b600080604083850312156119e057600080fd5b82356119eb81611c0e565b946020939093013593505050565b600080600060608486031215611a0e57600080fd5b8335611a1981611c0e565b9250602084013591506040840135611a3081611c26565b809150509250925092565b600060208284031215611a4d57600080fd5b815161061181611c26565b600060208284031215611a6a57600080fd5b5035919050565b600060208284031215611a8357600080fd5b5051919050565b600060208284031215611a9c57600080fd5b815160ff8116811461061157600080fd5b60008251611abf818460208701611b91565b9190910192915050565b6020815260008251806020840152611ae8816040850160208701611b91565b601f01601f19169190910160400192915050565b6020808252600b908201526a21676f7665726e616e636560a81b604082015260600190565b60008219821115611b3457611b34611bf8565b500190565b600082611b5657634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611b7557611b75611bf8565b500290565b600082821015611b8c57611b8c611bf8565b500390565b60005b83811015611bac578181015183820152602001611b94565b838111156112515750506000910152565b600181811c90821680611bd157607f821691505b60208210811415611bf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114611c2357600080fd5b50565b8015158114611c2357600080fdfea26469706673582212203ec5dafe1ee818e24ad45e3342277048868178d6351e8531c1bd446703b5434264736f6c63430008070033000000000000000000000000857e0b2ed0e82d5cdeb015e77ebb873c47f995750000000000000000000000000de5199779b43e13b3bec21e91117e18736bc1a800000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000022635427c72e8b0028feae1b5e1957508d9d7caf0000000000000000000000000000000000000000000000000d6b33ecfee1e57a000000000000000000000000000000000000000000000000000000000000001d5374616b652044414f2047556e6941676575722f455448205661756c740000000000000000000000000000000000000000000000000000000000000000000015736447556e6941676575722f4554482d7661756c740000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80636ac5db191161010f578063a9059cbb116100a2578063f889794511610071578063f889794514610437578063f8ce316414610440578063f9a0be6814610449578063fc0c546a1461045c57600080fd5b8063a9059cbb146103cf578063ab033ea9146103e2578063dd62ed3e146103f5578063ed3437f81461042e57600080fd5b80638bc7e8c4116100de5780638bc7e8c41461039857806395d89b41146103a157806398dfca7f146103a9578063a457c2d7146103bc57600080fd5b80636ac5db191461034b57806370a0823114610354578063853828b61461037d5780638b6e80841461038557600080fd5b8063395093511161018757806348a0d7541161015657806348a0d7541461030a57806349bab13d146103125780635aa6e67514610325578063672abd2d1461033857600080fd5b806339509351146102c85780633edd1128146102db578063422ede42146102ee57806345dc3dd8146102f757600080fd5b806318160ddd116101c357806318160ddd1461027657806323b872dd146102885780632e1a7d4d1461029b578063313ce567146102ae57600080fd5b8063048bf085146101f557806306fdde031461020a578063095ea7b31461022857806313ca406f1461024b575b600080fd5b610208610203366004611936565b61046f565b005b6102126104c4565b60405161021f9190611ac9565b60405180910390f35b61023b6102363660046119cd565b610556565b604051901515815260200161021f565b600c5461025e906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b6002545b60405190815260200161021f565b61023b61029636600461198c565b61056c565b6102086102a9366004611a58565b610618565b6102b66109c1565b60405160ff909116815260200161021f565b61023b6102d63660046119cd565b610a43565b6102086102e93660046119f9565b610a7f565b61027a60085481565b610208610305366004611a58565b610c94565b61027a610cc3565b610208610320366004611936565b610d6d565b60065461025e906001600160a01b031681565b610208610346366004611a58565b610db9565b61027a61271081565b61027a610362366004611936565b6001600160a01b031660009081526020819052604090205490565b610208610de8565b610208610393366004611a58565b610e03565b61027a60075481565b610212610e32565b6102086103b7366004611a58565b610e41565b61023b6103ca3660046119cd565b610e70565b61023b6103dd3660046119cd565b610f09565b6102086103f0366004611936565b610f16565b61027a610403366004611953565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61027a600b5481565b61027a600d5481565b61027a600a5481565b60095461025e906001600160a01b031681565b60055461025e906001600160a01b031681565b6006546001600160a01b031633146104a25760405162461bcd60e51b815260040161049990611afc565b60405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546104d390611bbd565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff90611bbd565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b6000610563338484610f62565b50600192915050565b6000610579848484611087565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610499565b61060b8533858403610f62565b60019150505b9392505050565b6009546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381600087803b15801561065e57600080fd5b505af1158015610672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106969190611a71565b9050808211156106dc5760405162461bcd60e51b8152602060048201526011602482015270139bdd08195b9bdd59da081cdd185ad959607a1b6044820152606401610499565b60095460405162ebf5dd60e01b815260048101849052336024820152600160448201526001600160a01b039091169062ebf5dd90606401600060405180830381600087803b15801561072d57600080fd5b505af1158015610741573d6000803e3d6000fd5b5050505061074f3083611257565b600a546005546040516370a0823160e01b8152306004820152600092916001600160a01b0316906370a082319060240160206040518083038186803b15801561079757600080fd5b505afa1580156107ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107cf9190611a71565b6107d99190611b7a565b90508083111561096b576000670de0b6b3a7640000600b5483866107fd9190611b7a565b6108079190611b5b565b6108119190611b39565b600c5460055460405163f3fef3a360e01b81526001600160a01b03918216600482015260248101849052929350169063f3fef3a390604401600060405180830381600087803b15801561086357600080fd5b505af1158015610877573d6000803e3d6000fd5b505050506000600b5482670de0b6b3a76400006108949190611b5b565b61089e9190611b39565b90506000612710600754836108b39190611b5b565b6108bd9190611b39565b6006546005549192506108dd916001600160a01b039081169116836113a2565b600a546005546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561092357600080fd5b505afa158015610937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095b9190611a71565b6109659190611b7a565b95505050505b600554610982906001600160a01b031633856113a2565b60408051338152602081018590527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436491015b60405180910390a1505050565b6005546040805163313ce56760e01b815290516000926001600160a01b03169163313ce567916004808301926020929190829003018186803b158015610a0657600080fd5b505afa158015610a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3e9190611a8a565b905090565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610563918590610a7a908690611b21565b610f62565b6009546001600160a01b0316610ad75760405162461bcd60e51b815260206004820152601960248201527f4761756765206e6f742079657420696e697469616c697a6564000000000000006044820152606401610499565b600554610aef906001600160a01b0316333085611405565b80610b3d57600061271060085484610b079190611b5b565b610b119190611b39565b9050610b1d8184611b7a565b925080600a6000828254610b319190611b21565b90915550610b52915050565b600a54610b4a9083611b21565b6000600a5591505b610b5c308361143d565b60095460405163095ea7b360e01b81526001600160a01b03909116600482015260248101839052309063095ea7b390604401602060405180830381600087803b158015610ba857600080fd5b505af1158015610bbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be09190611a3b565b50600954604051636e553f6560e01b8152600481018490526001600160a01b03858116602483015290911690636e553f6590604401600060405180830381600087803b158015610c2f57600080fd5b505af1158015610c43573d6000803e3d6000fd5b505050508015610c5557610c5561151c565b604080516001600160a01b0385168152602081018490527fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c91016109b4565b6006546001600160a01b03163314610cbe5760405162461bcd60e51b815260040161049990611afc565b600d55565b600d54600a546005546040516370a0823160e01b815230600482015260009361271093909290916001600160a01b03909116906370a082319060240160206040518083038186803b158015610d1757600080fd5b505afa158015610d2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4f9190611a71565b610d599190611b7a565b610d639190611b5b565b610a3e9190611b39565b6006546001600160a01b03163314610d975760405162461bcd60e51b815260040161049990611afc565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610de35760405162461bcd60e51b815260040161049990611afc565b600b55565b33600090815260208190526040902054610e0190610618565b565b6006546001600160a01b03163314610e2d5760405162461bcd60e51b815260040161049990611afc565b600755565b6060600480546104d390611bbd565b6006546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161049990611afc565b600855565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ef25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610499565b610eff3385858403610f62565b5060019392505050565b6000610563338484611087565b6006546001600160a01b03163314610f405760405162461bcd60e51b815260040161049990611afc565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610fc45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610499565b6001600160a01b0382166110255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610499565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610499565b6001600160a01b03821661114d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610499565b6001600160a01b038316600090815260208190526040902054818110156111c55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610499565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906111fc908490611b21565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161124891815260200190565b60405180910390a35b50505050565b6001600160a01b0382166112b75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610499565b6001600160a01b0382166000908152602081905260409020548181101561132b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610499565b6001600160a01b038316600090815260208190526040812083830390556002805484929061135a908490611b7a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161107a565b505050565b6040516001600160a01b03831660248201526044810182905261139d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526116ec565b6040516001600160a01b03808516602483015283166044820152606481018290526112519085906323b872dd60e01b906084016113ce565b6001600160a01b0382166114935760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610499565b80600260008282546114a59190611b21565b90915550506001600160a01b038216600090815260208190526040812080548392906114d2908490611b21565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000611526610cc3565b600554600c5460405163095ea7b360e01b81526001600160a01b03918216600482015260006024820152929350169063095ea7b390604401602060405180830381600087803b15801561157857600080fd5b505af115801561158c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b09190611a3b565b50600554600c5460405163095ea7b360e01b81526001600160a01b0391821660048201526024810184905291169063095ea7b390604401602060405180830381600087803b15801561160157600080fd5b505af1158015611615573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116399190611a3b565b50600c546005546040516311f9fbc960e21b81526001600160a01b039182166004820152602481018490529116906347e7ef2490604401600060405180830381600087803b15801561168a57600080fd5b505af115801561169e573d6000803e3d6000fd5b5050600554604080516001600160a01b039092168252602082018590527f9b883692663cf2cc636d9eda0392f2c7ff1a3163a5cef27fa1f8bb438ec73ab5935001905060405180910390a150565b6000611741826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166117be9092919063ffffffff16565b80519091501561139d578080602001905181019061175f9190611a3b565b61139d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610499565b60606117cd84846000856117d5565b949350505050565b6060824710156118365760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610499565b843b6118845760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610499565b600080866001600160a01b031685876040516118a09190611aad565b60006040518083038185875af1925050503d80600081146118dd576040519150601f19603f3d011682016040523d82523d6000602084013e6118e2565b606091505b50915091506118f28282866118fd565b979650505050505050565b6060831561190c575081610611565b82511561191c5782518084602001fd5b8160405162461bcd60e51b81526004016104999190611ac9565b60006020828403121561194857600080fd5b813561061181611c0e565b6000806040838503121561196657600080fd5b823561197181611c0e565b9150602083013561198181611c0e565b809150509250929050565b6000806000606084860312156119a157600080fd5b83356119ac81611c0e565b925060208401356119bc81611c0e565b929592945050506040919091013590565b600080604083850312156119e057600080fd5b82356119eb81611c0e565b946020939093013593505050565b600080600060608486031215611a0e57600080fd5b8335611a1981611c0e565b9250602084013591506040840135611a3081611c26565b809150509250925092565b600060208284031215611a4d57600080fd5b815161061181611c26565b600060208284031215611a6a57600080fd5b5035919050565b600060208284031215611a8357600080fd5b5051919050565b600060208284031215611a9c57600080fd5b815160ff8116811461061157600080fd5b60008251611abf818460208701611b91565b9190910192915050565b6020815260008251806020840152611ae8816040850160208701611b91565b601f01601f19169190910160400192915050565b6020808252600b908201526a21676f7665726e616e636560a81b604082015260600190565b60008219821115611b3457611b34611bf8565b500190565b600082611b5657634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611b7557611b75611bf8565b500290565b600082821015611b8c57611b8c611bf8565b500390565b60005b83811015611bac578181015183820152602001611b94565b838111156112515750506000910152565b600181811c90821680611bd157607f821691505b60208210811415611bf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114611c2357600080fd5b50565b8015158114611c2357600080fdfea26469706673582212203ec5dafe1ee818e24ad45e3342277048868178d6351e8531c1bd446703b5434264736f6c63430008070033

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

000000000000000000000000857e0b2ed0e82d5cdeb015e77ebb873c47f995750000000000000000000000000de5199779b43e13b3bec21e91117e18736bc1a800000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000022635427c72e8b0028feae1b5e1957508d9d7caf0000000000000000000000000000000000000000000000000d6b33ecfee1e57a000000000000000000000000000000000000000000000000000000000000001d5374616b652044414f2047556e6941676575722f455448205661756c740000000000000000000000000000000000000000000000000000000000000000000015736447556e6941676575722f4554482d7661756c740000000000000000000000

-----Decoded View---------------
Arg [0] : _token (address): 0x857E0B2eD0E82D5cDEB015E77ebB873C47F99575
Arg [1] : _governance (address): 0x0dE5199779b43E13B3Bec21e91117E18736BC1A8
Arg [2] : name_ (string): Stake DAO GUniAgeur/ETH Vault
Arg [3] : symbol_ (string): sdGUniAgeur/ETH-vault
Arg [4] : _angleStrategy (address): 0x22635427C72e8b0028FeAE1B5e1957508d9D7CAF
Arg [5] : _scalingFactor (uint256): 966923637982619002

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000857e0b2ed0e82d5cdeb015e77ebb873c47f99575
Arg [1] : 0000000000000000000000000de5199779b43e13b3bec21e91117e18736bc1a8
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 00000000000000000000000022635427c72e8b0028feae1b5e1957508d9d7caf
Arg [5] : 0000000000000000000000000000000000000000000000000d6b33ecfee1e57a
Arg [6] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [7] : 5374616b652044414f2047556e6941676575722f455448205661756c74000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [9] : 736447556e6941676575722f4554482d7661756c740000000000000000000000


Deployed Bytecode Sourcemap

85189:4116:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88065:156;;;;;;:::i;:::-;;:::i;:::-;;13003:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14957:154;;;;;;:::i;:::-;;:::i;:::-;;;4669:14:1;;4662:22;4644:41;;4632:2;4617:18;14957:154:0;4504:187:1;85495:34:0;;;;;-1:-1:-1;;;;;85495:34:0;;;;;;-1:-1:-1;;;;;3514:32:1;;;3496:51;;3484:2;3469:18;85495:34:0;3350:203:1;14027:99:0;14109:12;;14027:99;;;11902:25:1;;;11890:2;11875:18;14027:99:0;11756:177:1;15551:423:0;;;;;;:::i;:::-;;:::i;86778:924::-;;;;;;:::i;:::-;;:::i;88379:90::-;;;:::i;:::-;;;12749:4:1;12737:17;;;12719:36;;12707:2;12692:18;88379:90:0;12577:184:1;16344:200:0;;;;;;:::i;:::-;;:::i;86112:661::-;;;;;;:::i;:::-;;:::i;85369:24::-;;;;;;88616:112;;;;;;:::i;:::-;;:::i;88896:131::-;;;:::i;88226:148::-;;;;;;:::i;:::-;;:::i;85308:25::-;;;;;-1:-1:-1;;;;;85308:25:0;;;88733:158;;;;;;:::i;:::-;;:::i;85555:35::-;;85585:5;85555:35;;14177:118;;;;;;:::i;:::-;-1:-1:-1;;;;;14272:18:0;14251:7;14272:18;;;;;;;;;;;;14177:118;87707:73;;;:::i;88474:137::-;;;;;;:::i;:::-;;:::i;85337:28::-;;;;;;13198:95;;;:::i;87930:130::-;;;;;;:::i;:::-;;:::i;17002:371::-;;;;;;:::i;:::-;;:::i;14481:160::-;;;;;;:::i;:::-;;:::i;87785:140::-;;;;;;:::i;:::-;;:::i;14692:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14802:18:0;;;14781:7;14802:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14692:142;85463:28;;;;;;85533:18;;;;;;85430:29;;;;;;85397;;;;;-1:-1:-1;;;;;85397:29:0;;;85286:18;;;;;-1:-1:-1;;;;;85286:18:0;;;88065:156;88153:10;;-1:-1:-1;;;;;88153:10:0;88139;:24;88131:48;;;;-1:-1:-1;;;88131:48:0;;;;;;;:::i;:::-;;;;;;;;;88184:14;:32;;-1:-1:-1;;;;;;88184:32:0;-1:-1:-1;;;;;88184:32:0;;;;;;;;;;88065:156::o;13003:91::-;13057:13;13084:5;13077:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13003:91;:::o;14957:154::-;15040:4;15051:39;10978:10;15074:7;15083:6;15051:8;:39::i;:::-;-1:-1:-1;15102:4:0;14957:154;;;;:::o;15551:423::-;15670:4;15681:36;15691:6;15699:9;15710:6;15681:9;:36::i;:::-;-1:-1:-1;;;;;15751:19:0;;15724:24;15751:19;;;:11;:19;;;;;;;;10978:10;15751:33;;;;;;;;15797:26;;;;15789:79;;;;-1:-1:-1;;;15789:79:0;;8101:2:1;15789:79:0;;;8083:21:1;8140:2;8120:18;;;8113:30;8179:34;8159:18;;;8152:62;-1:-1:-1;;;8230:18:1;;;8223:38;8278:19;;15789:79:0;7899:404:1;15789:79:0;15889:57;15898:6;10978:10;15939:6;15920:16;:25;15889:8;:57::i;:::-;15965:4;15958:11;;;15551:423;;;;;;:::o;86778:924::-;86872:14;;86851:58;;-1:-1:-1;;;86851:58:0;;86898:10;86851:58;;;3496:51:1;86825:23:0;;-1:-1:-1;;;;;86872:14:0;;86851:46;;3469:18:1;;86851:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;86825:84;;86933:15;86922:7;:26;;86914:56;;;;-1:-1:-1;;;86914:56:0;;10846:2:1;86914:56:0;;;10828:21:1;10885:2;10865:18;;;10858:30;-1:-1:-1;;;10904:18:1;;;10897:47;10961:18;;86914:56:0;10644:341:1;86914:56:0;86996:14;;86975:72;;-1:-1:-1;;;86975:72:0;;;;;12413:25:1;;;87030:10:0;12454:18:1;;;12447:60;86996:14:0;12523:18:1;;;12516:50;-1:-1:-1;;;;;86996:14:0;;;;86975:45;;12386:18:1;;86975:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87052:29;87066:4;87073:7;87052:5;:29::i;:::-;87142:14;;87109:5;;:30;;-1:-1:-1;;;87109:30:0;;87133:4;87109:30;;;3496:51:1;87086:20:0;;87142:14;-1:-1:-1;;;;;87109:5:0;;:15;;3469:18:1;;87109:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;87086:70;;87177:12;87167:7;:22;87163:450;;;87197:24;87269:4;87252:13;;87236:12;87226:7;:22;;;;:::i;:::-;87225:40;;;;:::i;:::-;87224:49;;;;:::i;:::-;87279:13;;87310:5;;87279:56;;-1:-1:-1;;;87279:56:0;;-1:-1:-1;;;;;87310:5:0;;;87279:56;;;4120:51:1;4187:18;;;4180:34;;;87197:76:0;;-1:-1:-1;87279:13:0;;:22;;4093:18:1;;87279:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87341:32;87404:13;;87377:16;87396:4;87377:23;;;;:::i;:::-;87376:41;;;;:::i;:::-;87341:76;;87423:19;87490:5;87473:13;;87446:24;:40;;;;:::i;:::-;87445:50;;;;:::i;:::-;87520:10;;87501:5;;87423:72;;-1:-1:-1;87501:43:0;;-1:-1:-1;;;;;87501:5:0;;;;87520:10;87423:72;87501:18;:43::i;:::-;87593:14;;87560:5;;:30;;-1:-1:-1;;;87560:30:0;;87584:4;87560:30;;;3496:51:1;-1:-1:-1;;;;;87560:5:0;;;;:15;;3469:18:1;;87560:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;87550:57;;87191:422;;;87163:450;87619:5;;:39;;-1:-1:-1;;;;;87619:5:0;87638:10;87650:7;87619:18;:39::i;:::-;87668:29;;;87677:10;4120:51:1;;4202:2;4187:18;;4180:34;;;87668:29:0;;4093:18:1;87668:29:0;;;;;;;;86820:882;;86778:924;:::o;88379:90::-;88448:5;;:16;;;-1:-1:-1;;;88448:16:0;;;;88429:5;;-1:-1:-1;;;;;88448:5:0;;:14;;:16;;;;;;;;;;;;;;:5;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;88441:23;;88379:90;:::o;16344:200::-;10978:10;16432:4;16475:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16475:34:0;;;;;;;;;;16432:4;;16443:80;;16466:7;;16475:47;;16512:10;;16475:47;:::i;:::-;16443:8;:80::i;86112:661::-;86216:14;;-1:-1:-1;;;;;86216:14:0;86200:75;;;;-1:-1:-1;;;86200:75:0;;8510:2:1;86200:75:0;;;8492:21:1;8549:2;8529:18;;;8522:30;8588:27;8568:18;;;8561:55;8633:18;;86200:75:0;8308:349:1;86200:75:0;86280:5;;:58;;-1:-1:-1;;;;;86280:5:0;86303:10;86323:4;86330:7;86280:22;:58::i;:::-;86348:5;86343:199;;86361:17;86405:5;86392:9;;86382:7;:19;;;;:::i;:::-;86381:29;;;;:::i;:::-;86361:49;-1:-1:-1;86416:20:0;86361:49;86416:20;;:::i;:::-;;;86460:9;86442:14;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;86343:199:0;;-1:-1:-1;;86343:199:0;;86498:14;;86487:25;;;;:::i;:::-;86535:1;86518:14;:18;86487:25;-1:-1:-1;86343:199:0;86546:29;86560:4;86567:7;86546:5;:29::i;:::-;86609:14;;86580:53;;-1:-1:-1;;;86580:53:0;;-1:-1:-1;;;;;86609:14:0;;;86580:53;;;4120:51:1;4187:18;;;4180:34;;;86594:4:0;;86580:28;;4093:18:1;;86580:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;86659:14:0;;86638:62;;-1:-1:-1;;;86638:62:0;;;;;12112:25:1;;;-1:-1:-1;;;;;12173:32:1;;;12153:18;;;12146:60;86659:14:0;;;;86638:44;;12085:18:1;;86638:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86709:5;86705:29;;;86722:6;:4;:6::i;:::-;86743:25;;;-1:-1:-1;;;;;4138:32:1;;4120:51;;4202:2;4187:18;;4180:34;;;86743:25:0;;4093:18:1;86743:25:0;3938:282:1;88616:112:0;88682:10;;-1:-1:-1;;;;;88682:10:0;88668;:24;88660:48;;;;-1:-1:-1;;;88660:48:0;;;;;;;:::i;:::-;88713:3;:10;88616:112::o;88896:131::-;89012:3;;88994:14;;88961:5;;:30;;-1:-1:-1;;;88961:30:0;;88985:4;88961:30;;;3496:51:1;88938:7:0;;85585:5;;89012:3;;88994:14;;-1:-1:-1;;;;;88961:5:0;;;;:15;;3469:18:1;;88961:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;88960:55;;;;:::i;:::-;88959:63;;;;:::i;88226:148::-;88313:10;;-1:-1:-1;;;;;88313:10:0;88299;:24;88291:48;;;;-1:-1:-1;;;88291:48:0;;;;;;;:::i;:::-;88344:13;:25;;-1:-1:-1;;;;;;88344:25:0;-1:-1:-1;;;;;88344:25:0;;;;;;;;;;88226:148::o;88733:158::-;88822:10;;-1:-1:-1;;;;;88822:10:0;88808;:24;88800:48;;;;-1:-1:-1;;;88800:48:0;;;;;;;:::i;:::-;88853:13;:33;88733:158::o;87707:73::-;87763:10;14251:7;14272:18;;;;;;;;;;;87744:31;;86778:924;:::i;87744:31::-;87707:73::o;88474:137::-;88552:10;;-1:-1:-1;;;;;88552:10:0;88538;:24;88530:48;;;;-1:-1:-1;;;88530:48:0;;;;;;;:::i;:::-;88583:13;:23;88474:137::o;13198:95::-;13254:13;13281:7;13274:14;;;;;:::i;87930:130::-;88005:10;;-1:-1:-1;;;;;88005:10:0;87991;:24;87983:48;;;;-1:-1:-1;;;87983:48:0;;;;;;;:::i;:::-;88036:9;:19;87930:130::o;17002:371::-;10978:10;17095:4;17133:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17133:34:0;;;;;;;;;;17180:35;;;;17172:85;;;;-1:-1:-1;;;17172:85:0;;11192:2:1;17172:85:0;;;11174:21:1;11231:2;11211:18;;;11204:30;11270:34;11250:18;;;11243:62;-1:-1:-1;;;11321:18:1;;;11314:35;11366:19;;17172:85:0;10990:401:1;17172:85:0;17278:67;10978:10;17301:7;17329:15;17310:16;:34;17278:8;:67::i;:::-;-1:-1:-1;17364:4:0;;17002:371;-1:-1:-1;;;17002:371:0:o;14481:160::-;14567:4;14578:42;10978:10;14602:9;14613:6;14578:9;:42::i;87785:140::-;87865:10;;-1:-1:-1;;;;;87865:10:0;87851;:24;87843:48;;;;-1:-1:-1;;;87843:48:0;;;;;;;:::i;:::-;87896:10;:24;;-1:-1:-1;;;;;;87896:24:0;-1:-1:-1;;;;;87896:24:0;;;;;;;;;;87785:140::o;20293:332::-;-1:-1:-1;;;;;20402:19:0;;20394:68;;;;-1:-1:-1;;;20394:68:0;;9672:2:1;20394:68:0;;;9654:21:1;9711:2;9691:18;;;9684:30;9750:34;9730:18;;;9723:62;-1:-1:-1;;;9801:18:1;;;9794:34;9845:19;;20394:68:0;9470:400:1;20394:68:0;-1:-1:-1;;;;;20475:21:0;;20467:68;;;;-1:-1:-1;;;20467:68:0;;6884:2:1;20467:68:0;;;6866:21:1;6923:2;6903:18;;;6896:30;6962:34;6942:18;;;6935:62;-1:-1:-1;;;7013:18:1;;;7006:32;7055:19;;20467:68:0;6682:398:1;20467:68:0;-1:-1:-1;;;;;20542:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20588:32;;11902:25:1;;;20588:32:0;;11875:18:1;20588:32:0;;;;;;;;20293:332;;;:::o;17818:640::-;-1:-1:-1;;;;;17931:20:0;;17923:70;;;;-1:-1:-1;;;17923:70:0;;9266:2:1;17923:70:0;;;9248:21:1;9305:2;9285:18;;;9278:30;9344:34;9324:18;;;9317:62;-1:-1:-1;;;9395:18:1;;;9388:35;9440:19;;17923:70:0;9064:401:1;17923:70:0;-1:-1:-1;;;;;18006:23:0;;17998:71;;;;-1:-1:-1;;;17998:71:0;;5737:2:1;17998:71:0;;;5719:21:1;5776:2;5756:18;;;5749:30;5815:34;5795:18;;;5788:62;-1:-1:-1;;;5866:18:1;;;5859:33;5909:19;;17998:71:0;5535:399:1;17998:71:0;-1:-1:-1;;;;;18154:17:0;;18130:21;18154:17;;;;;;;;;;;18184:23;;;;18176:74;;;;-1:-1:-1;;;18176:74:0;;7287:2:1;18176:74:0;;;7269:21:1;7326:2;7306:18;;;7299:30;7365:34;7345:18;;;7338:62;-1:-1:-1;;;7416:18:1;;;7409:36;7462:19;;18176:74:0;7085:402:1;18176:74:0;-1:-1:-1;;;;;18271:17:0;;;:9;:17;;;;;;;;;;;18291:22;;;18271:42;;18323:20;;;;;;;;:30;;18307:6;;18271:9;18323:30;;18307:6;;18323:30;:::i;:::-;;;;;;;;18382:9;-1:-1:-1;;;;;18365:35:0;18374:6;-1:-1:-1;;;;;18365:35:0;;18393:6;18365:35;;;;11902:25:1;;11890:2;11875:18;;11756:177;18365:35:0;;;;;;;;18407:46;17918:540;17818:640;;;:::o;19372:525::-;-1:-1:-1;;;;;19450:21:0;;19442:67;;;;-1:-1:-1;;;19442:67:0;;8864:2:1;19442:67:0;;;8846:21:1;8903:2;8883:18;;;8876:30;8942:34;8922:18;;;8915:62;-1:-1:-1;;;8993:18:1;;;8986:31;9034:19;;19442:67:0;8662:397:1;19442:67:0;-1:-1:-1;;;;;19597:18:0;;19572:22;19597:18;;;;;;;;;;;19628:24;;;;19620:71;;;;-1:-1:-1;;;19620:71:0;;6141:2:1;19620:71:0;;;6123:21:1;6180:2;6160:18;;;6153:30;6219:34;6199:18;;;6192:62;-1:-1:-1;;;6270:18:1;;;6263:32;6312:19;;19620:71:0;5939:398:1;19620:71:0;-1:-1:-1;;;;;19712:18:0;;:9;:18;;;;;;;;;;19733:23;;;19712:44;;19766:12;:22;;19750:6;;19712:9;19766:22;;19750:6;;19766:22;:::i;:::-;;;;-1:-1:-1;;19800:37:0;;11902:25:1;;;19826:1:0;;-1:-1:-1;;;;;19800:37:0;;;;;11890:2:1;11875:18;19800:37:0;11756:177:1;19844:48:0;19437:460;19372:525;;:::o;22473:181::-;22590:58;;-1:-1:-1;;;;;4138:32:1;;22590:58:0;;;4120:51:1;4187:18;;;4180:34;;;22563:86:0;;22583:5;;-1:-1:-1;;;22613:23:0;4093:18:1;;22590:58:0;;;;-1:-1:-1;;22590:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;22590:58:0;-1:-1:-1;;;;;;22590:58:0;;;;;;;;;;22563:19;:86::i;22659:212::-;22797:68;;-1:-1:-1;;;;;3816:15:1;;;22797:68:0;;;3798:34:1;3868:15;;3848:18;;;3841:43;3900:18;;;3893:34;;;22770:96:0;;22790:5;;-1:-1:-1;;;22820:27:0;3733:18:1;;22797:68:0;3558:375:1;18715:360:0;-1:-1:-1;;;;;18793:21:0;;18785:65;;;;-1:-1:-1;;;18785:65:0;;11598:2:1;18785:65:0;;;11580:21:1;11637:2;11617:18;;;11610:30;11676:33;11656:18;;;11649:61;11727:18;;18785:65:0;11396:355:1;18785:65:0;18929:6;18913:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;18940:18:0;;:9;:18;;;;;;;;;;:28;;18962:6;;18940:9;:28;;18962:6;;18940:28;:::i;:::-;;;;-1:-1:-1;;18978:37:0;;11902:25:1;;;-1:-1:-1;;;;;18978:37:0;;;18995:1;;18978:37;;11890:2:1;11875:18;18978:37:0;;;;;;;18715:360;;:::o;89032:270::-;89062:20;89085:11;:9;:11::i;:::-;89101:5;;89123:13;;89101:40;;-1:-1:-1;;;89101:40:0;;-1:-1:-1;;;;;89123:13:0;;;89101:40;;;4120:51:1;89101:5:0;4187:18:1;;;4180:34;89062::0;;-1:-1:-1;89101:5:0;;:13;;4093:18:1;;89101:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;89146:5:0;;89168:13;;89146:51;;-1:-1:-1;;;89146:51:0;;-1:-1:-1;;;;;89168:13:0;;;89146:51;;;4120::1;4187:18;;;4180:34;;;89146:5:0;;;:13;;4093:18:1;;89146:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;89202:13:0;;89232:5;;89202:51;;-1:-1:-1;;;89202:51:0;;-1:-1:-1;;;;;89232:5:0;;;89202:51;;;4120::1;4187:18;;;4180:34;;;89202:13:0;;;:21;;4093:18:1;;89202:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;89276:5:0;;89263:34;;;-1:-1:-1;;;;;89276:5:0;;;4120:51:1;;4202:2;4187:18;;4180:34;;;89263::0;;-1:-1:-1;4093:18:1;;-1:-1:-1;89263:34:0;;;;;;;89057:245;89032:270::o;24740:659::-;25140:23;25166:69;25194:4;25166:69;;;;;;;;;;;;;;;;;25174:5;-1:-1:-1;;;;;25166:27:0;;;:69;;;;;:::i;:::-;25244:17;;25140:95;;-1:-1:-1;25244:21:0;25240:155;;25323:10;25312:30;;;;;;;;;;;;:::i;:::-;25304:85;;;;-1:-1:-1;;;25304:85:0;;10435:2:1;25304:85:0;;;10417:21:1;10474:2;10454:18;;;10447:30;10513:34;10493:18;;;10486:62;-1:-1:-1;;;10564:18:1;;;10557:40;10614:19;;25304:85:0;10233:406:1;3330:199:0;3446:12;3472:52;3494:6;3502:4;3508:1;3511:12;3472:21;:52::i;:::-;3465:59;3330:199;-1:-1:-1;;;;3330:199:0:o;4333:458::-;4476:12;4528:5;4503:21;:30;;4495:81;;;;-1:-1:-1;;;4495:81:0;;7694:2:1;4495:81:0;;;7676:21:1;7733:2;7713:18;;;7706:30;7772:34;7752:18;;;7745:62;-1:-1:-1;;;7823:18:1;;;7816:36;7869:19;;4495:81:0;7492:402:1;4495:81:0;1019:20;;4581:60;;;;-1:-1:-1;;;4581:60:0;;10077:2:1;4581:60:0;;;10059:21:1;10116:2;10096:18;;;10089:30;10155:31;10135:18;;;10128:59;10204:18;;4581:60:0;9875:353:1;4581:60:0;4649:12;4663:23;4690:6;-1:-1:-1;;;;;4690:11:0;4710:5;4718:4;4690:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4648:75;;;;4735:51;4752:7;4761:10;4773:12;4735:16;:51::i;:::-;4728:58;4333:458;-1:-1:-1;;;;;;;4333:458:0:o;6760:547::-;6889:12;6912:7;6908:395;;;-1:-1:-1;6934:10:0;6927:17;;6908:395;7024:17;;:21;7020:278;;7183:10;7177:17;7229:15;7216:10;7212:2;7208:19;7201:44;7020:278;7278:12;7271:20;;-1:-1:-1;;;7271:20:0;;;;;;;;:::i;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:388::-;334:6;342;395:2;383:9;374:7;370:23;366:32;363:52;;;411:1;408;401:12;363:52;450:9;437:23;469:31;494:5;469:31;:::i;:::-;519:5;-1:-1:-1;576:2:1;561:18;;548:32;589:33;548:32;589:33;:::i;:::-;641:7;631:17;;;266:388;;;;;:::o;659:456::-;736:6;744;752;805:2;793:9;784:7;780:23;776:32;773:52;;;821:1;818;811:12;773:52;860:9;847:23;879:31;904:5;879:31;:::i;:::-;929:5;-1:-1:-1;986:2:1;971:18;;958:32;999:33;958:32;999:33;:::i;:::-;659:456;;1051:7;;-1:-1:-1;;;1105:2:1;1090:18;;;;1077:32;;659:456::o;1120:315::-;1188:6;1196;1249:2;1237:9;1228:7;1224:23;1220:32;1217:52;;;1265:1;1262;1255:12;1217:52;1304:9;1291:23;1323:31;1348:5;1323:31;:::i;:::-;1373:5;1425:2;1410:18;;;;1397:32;;-1:-1:-1;;;1120:315:1:o;1440:450::-;1514:6;1522;1530;1583:2;1571:9;1562:7;1558:23;1554:32;1551:52;;;1599:1;1596;1589:12;1551:52;1638:9;1625:23;1657:31;1682:5;1657:31;:::i;:::-;1707:5;-1:-1:-1;1759:2:1;1744:18;;1731:32;;-1:-1:-1;1815:2:1;1800:18;;1787:32;1828:30;1787:32;1828:30;:::i;:::-;1877:7;1867:17;;;1440:450;;;;;:::o;1895:245::-;1962:6;2015:2;2003:9;1994:7;1990:23;1986:32;1983:52;;;2031:1;2028;2021:12;1983:52;2063:9;2057:16;2082:28;2104:5;2082:28;:::i;2419:180::-;2478:6;2531:2;2519:9;2510:7;2506:23;2502:32;2499:52;;;2547:1;2544;2537:12;2499:52;-1:-1:-1;2570:23:1;;2419:180;-1:-1:-1;2419:180:1:o;2604:184::-;2674:6;2727:2;2715:9;2706:7;2702:23;2698:32;2695:52;;;2743:1;2740;2733:12;2695:52;-1:-1:-1;2766:16:1;;2604:184;-1:-1:-1;2604:184:1:o;2793:273::-;2861:6;2914:2;2902:9;2893:7;2889:23;2885:32;2882:52;;;2930:1;2927;2920:12;2882:52;2962:9;2956:16;3012:4;3005:5;3001:16;2994:5;2991:27;2981:55;;3032:1;3029;3022:12;3071:274;3200:3;3238:6;3232:13;3254:53;3300:6;3295:3;3288:4;3280:6;3276:17;3254:53;:::i;:::-;3323:16;;;;;3071:274;-1:-1:-1;;3071:274:1:o;5147:383::-;5296:2;5285:9;5278:21;5259:4;5328:6;5322:13;5371:6;5366:2;5355:9;5351:18;5344:34;5387:66;5446:6;5441:2;5430:9;5426:18;5421:2;5413:6;5409:15;5387:66;:::i;:::-;5514:2;5493:15;-1:-1:-1;;5489:29:1;5474:45;;;;5521:2;5470:54;;5147:383;-1:-1:-1;;5147:383:1:o;6342:335::-;6544:2;6526:21;;;6583:2;6563:18;;;6556:30;-1:-1:-1;;;6617:2:1;6602:18;;6595:41;6668:2;6653:18;;6342:335::o;12766:128::-;12806:3;12837:1;12833:6;12830:1;12827:13;12824:39;;;12843:18;;:::i;:::-;-1:-1:-1;12879:9:1;;12766:128::o;12899:217::-;12939:1;12965;12955:132;;13009:10;13004:3;13000:20;12997:1;12990:31;13044:4;13041:1;13034:15;13072:4;13069:1;13062:15;12955:132;-1:-1:-1;13101:9:1;;12899:217::o;13121:168::-;13161:7;13227:1;13223;13219:6;13215:14;13212:1;13209:21;13204:1;13197:9;13190:17;13186:45;13183:71;;;13234:18;;:::i;:::-;-1:-1:-1;13274:9:1;;13121:168::o;13294:125::-;13334:4;13362:1;13359;13356:8;13353:34;;;13367:18;;:::i;:::-;-1:-1:-1;13404:9:1;;13294:125::o;13424:258::-;13496:1;13506:113;13520:6;13517:1;13514:13;13506:113;;;13596:11;;;13590:18;13577:11;;;13570:39;13542:2;13535:10;13506:113;;;13637:6;13634:1;13631:13;13628:48;;;-1:-1:-1;;13672:1:1;13654:16;;13647:27;13424:258::o;13687:380::-;13766:1;13762:12;;;;13809;;;13830:61;;13884:4;13876:6;13872:17;13862:27;;13830:61;13937:2;13929:6;13926:14;13906:18;13903:38;13900:161;;;13983:10;13978:3;13974:20;13971:1;13964:31;14018:4;14015:1;14008:15;14046:4;14043:1;14036:15;13900:161;;13687:380;;;:::o;14072:127::-;14133:10;14128:3;14124:20;14121:1;14114:31;14164:4;14161:1;14154:15;14188:4;14185:1;14178:15;14204:131;-1:-1:-1;;;;;14279:31:1;;14269:42;;14259:70;;14325:1;14322;14315:12;14259:70;14204:131;:::o;14340:118::-;14426:5;14419:13;14412:21;14405:5;14402:32;14392:60;;14448:1;14445;14438:12

Swarm Source

ipfs://3ec5dafe1ee818e24ad45e3342277048868178d6351e8531c1bd446703b54342
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.