Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RSETH
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-12-11
*/
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.21;
/// @title UtilLib - Utility library
/// @notice Utility functions
library UtilLib {
error ZeroAddressNotAllowed();
/// @dev zero address check modifier
/// @param address_ address to check
function checkNonZeroAddress(address address_) internal pure {
if (address_ == address(0)) revert ZeroAddressNotAllowed();
}
}
library LRTConstants {
//tokens
//rETH token
bytes32 public constant R_ETH_TOKEN = keccak256("R_ETH_TOKEN");
//stETH token
bytes32 public constant ST_ETH_TOKEN = keccak256("ST_ETH_TOKEN");
//cbETH token
bytes32 public constant CB_ETH_TOKEN = keccak256("CB_ETH_TOKEN");
//ETHX token
bytes32 public constant ETHX_TOKEN = keccak256("ETHX_TOKEN");
//contracts
bytes32 public constant LRT_ORACLE = keccak256("LRT_ORACLE");
bytes32 public constant LRT_DEPOSIT_POOL = keccak256("LRT_DEPOSIT_POOL");
bytes32 public constant EIGEN_STRATEGY_MANAGER = keccak256("EIGEN_STRATEGY_MANAGER");
//Roles
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
bytes32 public constant MANAGER = keccak256("MANAGER");
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
}
interface ILRTConfig {
// Errors
error ValueAlreadyInUse();
error AssetAlreadySupported();
error AssetNotSupported();
error CallerNotLRTConfigAdmin();
error CallerNotLRTConfigManager();
error CallerNotLRTConfigAllowedRole(string role);
// Events
event SetToken(bytes32 key, address indexed tokenAddr);
event SetContract(bytes32 key, address indexed contractAddr);
event AddedNewSupportedAsset(address indexed asset, uint256 depositLimit);
event RemovedSupportedAsset(address indexed asset);
event AssetDepositLimitUpdate(address indexed asset, uint256 depositLimit);
event AssetStrategyUpdate(address indexed asset, address indexed strategy);
event SetRSETH(address indexed rsETH);
// methods
function rsETH() external view returns (address);
function assetStrategy(address asset) external view returns (address);
function isSupportedAsset(address asset) external view returns (bool);
function getLSTToken(bytes32 tokenId) external view returns (address);
function getContract(bytes32 contractId) external view returns (address);
function getSupportedAssetList() external view returns (address[] memory);
function depositLimitByAsset(address asset) external view returns (uint256);
}
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @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 {AccessControl-_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 Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @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;
/**
* @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;
/**
* @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;
}
/// @title LRTConfigRoleChecker - LRT Config Role Checker Contract
/// @notice Handles LRT config role checks
abstract contract LRTConfigRoleChecker {
ILRTConfig public lrtConfig;
// events
event UpdatedLRTConfig(address indexed lrtConfig);
// modifiers
modifier onlyRole(bytes32 role) {
if (!IAccessControl(address(lrtConfig)).hasRole(role, msg.sender)) {
string memory roleStr = string(abi.encodePacked(role));
revert ILRTConfig.CallerNotLRTConfigAllowedRole(roleStr);
}
_;
}
modifier onlyLRTManager() {
if (!IAccessControl(address(lrtConfig)).hasRole(LRTConstants.MANAGER, msg.sender)) {
revert ILRTConfig.CallerNotLRTConfigManager();
}
_;
}
modifier onlyLRTAdmin() {
if (!IAccessControl(address(lrtConfig)).hasRole(LRTConstants.DEFAULT_ADMIN_ROLE, msg.sender)) {
revert ILRTConfig.CallerNotLRTConfigAdmin();
}
_;
}
modifier onlySupportedAsset(address asset) {
if (!lrtConfig.isSupportedAsset(asset)) {
revert ILRTConfig.AssetNotSupported();
}
_;
}
// setters
/// @notice Updates the LRT config contract
/// @dev only callable by LRT admin
/// @param lrtConfigAddr the new LRT config contract Address
function updateLRTConfig(address lrtConfigAddr) external virtual onlyLRTAdmin {
UtilLib.checkNonZeroAddress(lrtConfigAddr);
lrtConfig = ILRTConfig(lrtConfigAddr);
emit UpdatedLRTConfig(lrtConfigAddr);
}
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @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 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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
/**
* @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);
}
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
/**
* @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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-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 proxied contracts do not make use of 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.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* 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 prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}
/**
* @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 ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
/**
* @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* 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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
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}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {
__ERC20_init_unchained(name_, symbol_);
}
function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
_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 default value returned by this function, unless
* it's 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:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, 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}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, 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}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, 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) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, 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) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* 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:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, 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;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_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;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - 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 {}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[45] private __gap;
}
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal onlyInitializing {
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
/// @title rsETH token Contract
/// @author Stader Labs
/// @notice The ERC20 contract for the rsETH token
contract RSETH is Initializable, LRTConfigRoleChecker, ERC20Upgradeable, PausableUpgradeable {
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() {
_disableInitializers();
}
/// @dev Initializes the contract
/// @param admin Admin address
/// @param lrtConfigAddr LRT config address
function initialize(address admin, address lrtConfigAddr) external initializer {
UtilLib.checkNonZeroAddress(admin);
UtilLib.checkNonZeroAddress(lrtConfigAddr);
__ERC20_init("rsETH", "rsETH");
__Pausable_init();
lrtConfig = ILRTConfig(lrtConfigAddr);
emit UpdatedLRTConfig(lrtConfigAddr);
}
/// @notice Mints rsETH when called by an authorized caller
/// @param to the account to mint to
/// @param amount the amount of rsETH to mint
function mint(address to, uint256 amount) external onlyRole(LRTConstants.MINTER_ROLE) whenNotPaused {
_mint(to, amount);
}
/// @notice Burns rsETH when called by an authorized caller
/// @param account the account to burn from
/// @param amount the amount of rsETH to burn
function burnFrom(address account, uint256 amount) external onlyRole(LRTConstants.BURNER_ROLE) whenNotPaused {
_burn(account, amount);
}
/// @dev Triggers stopped state.
/// @dev Only callable by LRT config manager. Contract must NOT be paused.
function pause() external onlyLRTManager {
_pause();
}
/// @notice Returns to normal state.
/// @dev Only callable by the rsETH admin. Contract must be paused
function unpause() external onlyLRTAdmin {
_unpause();
}
/// @notice Updates the LRT config contract
/// @dev only callable by the rsETH admin
/// @param _lrtConfig the new LRT config contract
function updateLRTConfig(address _lrtConfig) external override onlyLRTAdmin {
UtilLib.checkNonZeroAddress(_lrtConfig);
lrtConfig = ILRTConfig(_lrtConfig);
emit UpdatedLRTConfig(_lrtConfig);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CallerNotLRTConfigAdmin","type":"error"},{"inputs":[{"internalType":"string","name":"role","type":"string"}],"name":"CallerNotLRTConfigAllowedRole","type":"error"},{"inputs":[],"name":"CallerNotLRTConfigManager","type":"error"},{"inputs":[],"name":"ZeroAddressNotAllowed","type":"error"},{"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":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"lrtConfig","type":"address"}],"name":"UpdatedLRTConfig","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"lrtConfigAddr","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lrtConfig","outputs":[{"internalType":"contract ILRTConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lrtConfig","type":"address"}],"name":"updateLRTConfig","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561000f575f80fd5b5061001861001d565b6100d9565b5f54610100900460ff16156100885760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff908116146100d7575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b611b54806100e65f395ff3fe608060405234801561000f575f80fd5b5060043610610149575f3560e01c8063485cc955116100c757806395d89b411161007d578063a9059cbb11610063578063a9059cbb1461028e578063dd62ed3e146102a1578063f1650a46146102e6575f80fd5b806395d89b4114610273578063a457c2d71461027b575f80fd5b806370a08231116100ad57806370a082311461022357806379cc6790146102585780638456cb591461026b575f80fd5b8063485cc955146102055780635c975abb14610218575f80fd5b806323b872dd1161011c578063395093511161010257806339509351146101d75780633f4ba83a146101ea57806340c10f19146101f2575f80fd5b806323b872dd146101b5578063313ce567146101c8575f80fd5b806306fdde031461014d578063095ea7b31461016b57806315864e0a1461018e57806318160ddd146101a3575b5f80fd5b610155610330565b60405161016291906117a1565b60405180910390f35b61017e610179366004611832565b6103c0565b6040519015158152602001610162565b6101a161019c36600461185a565b6103d9565b005b6035545b604051908152602001610162565b61017e6101c336600461187a565b610528565b60405160128152602001610162565b61017e6101e5366004611832565b61054b565b6101a1610596565b6101a1610200366004611832565b610672565b6101a16102133660046118b3565b6107ab565b60655460ff1661017e565b6101a761023136600461185a565b73ffffffffffffffffffffffffffffffffffffffff165f9081526033602052604090205490565b6101a1610266366004611832565b610a15565b6101a1610afb565b610155610bf3565b61017e610289366004611832565b610c02565b61017e61029c366004611832565b610cb8565b6101a76102af3660046118b3565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260346020908152604080832093909416825291909152205490565b5f5461030b9062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610162565b60606036805461033f906118e4565b80601f016020809104026020016040519081016040528092919081815260200182805461036b906118e4565b80156103b65780601f1061038d576101008083540402835291602001916103b6565b820191905f5260205f20905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b5f336103cd818585610cc5565b60019150505b92915050565b5f80546040517f91d14854000000000000000000000000000000000000000000000000000000008152600481019290925233602483015262010000900473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa158015610451573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104759190611935565b6104ab576040517f164931f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104b481610e43565b5f80547fffffffffffffffffffff0000000000000000000000000000000000000000ffff166201000073ffffffffffffffffffffffffffffffffffffffff841690810291909117825560405190917f9cf19cefd9aab739c33b95716ee3f3f921f219dc6d7aae25e1f9497b3788915091a250565b5f33610535858285610e93565b610540858585610f4f565b506001949350505050565b335f81815260346020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906103cd9082908690610591908790611954565b610cc5565b5f80546040517f91d14854000000000000000000000000000000000000000000000000000000008152600481019290925233602483015262010000900473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa15801561060e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106329190611935565b610668576040517f164931f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610670611175565b565b5f546040517f91d148540000000000000000000000000000000000000000000000000000000081527f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6600482018190523360248301529162010000900473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa15801561070a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072e9190611935565b610794575f8160405160200161074691815260200190565b6040516020818303038152906040529050806040517f2cd5664100000000000000000000000000000000000000000000000000000000815260040161078b91906117a1565b60405180910390fd5b61079c6111f2565b6107a68383611245565b505050565b5f54610100900460ff16158080156107c957505f54600160ff909116105b806107e25750303b1580156107e257505f5460ff166001145b6108545760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161078b565b5f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905580156108b0575f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b6108b983610e43565b6108c282610e43565b6109366040518060400160405280600581526020017f72734554480000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f727345544800000000000000000000000000000000000000000000000000000081525061131f565b61093e6113a5565b5f80547fffffffffffffffffffff0000000000000000000000000000000000000000ffff166201000073ffffffffffffffffffffffffffffffffffffffff851690810291909117825560405190917f9cf19cefd9aab739c33b95716ee3f3f921f219dc6d7aae25e1f9497b3788915091a280156107a6575f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050565b5f546040517f91d148540000000000000000000000000000000000000000000000000000000081527f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848600482018190523360248301529162010000900473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa158015610aad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad19190611935565b610ae9575f8160405160200161074691815260200190565b610af16111f2565b6107a68383611429565b5f546040517f91d148540000000000000000000000000000000000000000000000000000000081527faf290d8680820aad922855f39b306097b20e28774d6c1ad35a20325630c3a02c60048201523360248201526201000090910473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa158015610b91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb59190611935565b610beb576040517f210d9c6600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106706115b9565b60606037805461033f906118e4565b335f81815260346020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610cab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161078b565b6105408286868403610cc5565b5f336103cd818585610f4f565b73ffffffffffffffffffffffffffffffffffffffff8316610d4d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff8216610dd65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8116610e90576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152603460209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f495781811015610f3c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161078b565b610f498484848403610cc5565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610fd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff82166110615760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260336020526040902054818110156110fc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff8085165f8181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111689086815260200190565b60405180910390a3610f49565b61117d611614565b606580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60655460ff16156106705760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161078b565b73ffffffffffffffffffffffffffffffffffffffff82166112a85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161078b565b8060355f8282546112b99190611954565b909155505073ffffffffffffffffffffffffffffffffffffffff82165f818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050565b5f54610100900460ff1661139b5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e67000000000000000000000000000000000000000000606482015260840161078b565b61131b8282611666565b5f54610100900460ff166114215760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e67000000000000000000000000000000000000000000606482015260840161078b565b6106706116fb565b73ffffffffffffffffffffffffffffffffffffffff82166114b25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff82165f908152603360205260409020548181101561154d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff83165f8181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6115c16111f2565b606580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111c83390565b60655460ff166106705760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161078b565b5f54610100900460ff166116e25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e67000000000000000000000000000000000000000000606482015260840161078b565b60366116ee8382611a06565b5060376107a68282611a06565b5f54610100900460ff166117775760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e67000000000000000000000000000000000000000000606482015260840161078b565b606580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b5f6020808352835180828501525f5b818110156117cc578581018301518582016040015282016117b0565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461182d575f80fd5b919050565b5f8060408385031215611843575f80fd5b61184c8361180a565b946020939093013593505050565b5f6020828403121561186a575f80fd5b6118738261180a565b9392505050565b5f805f6060848603121561188c575f80fd5b6118958461180a565b92506118a36020850161180a565b9150604084013590509250925092565b5f80604083850312156118c4575f80fd5b6118cd8361180a565b91506118db6020840161180a565b90509250929050565b600181811c908216806118f857607f821691505b60208210810361192f577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f60208284031215611945575f80fd5b81518015158114611873575f80fd5b808201808211156103d3577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f8211156107a6575f81815260208120601f850160051c810160208610156119df5750805b601f850160051c820191505b818110156119fe578281556001016119eb565b505050505050565b815167ffffffffffffffff811115611a2057611a2061198c565b611a3481611a2e84546118e4565b846119b9565b602080601f831160018114611a86575f8415611a505750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b1785556119fe565b5f858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015611ad257888601518255948401946001909101908401611ab3565b5085821015611b0e57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b0190555056fea2646970667358221220f44ac61edd94ad180c227f7a1d009667c29377eaffde4fe447450d9f635f0ae964736f6c63430008150033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610149575f3560e01c8063485cc955116100c757806395d89b411161007d578063a9059cbb11610063578063a9059cbb1461028e578063dd62ed3e146102a1578063f1650a46146102e6575f80fd5b806395d89b4114610273578063a457c2d71461027b575f80fd5b806370a08231116100ad57806370a082311461022357806379cc6790146102585780638456cb591461026b575f80fd5b8063485cc955146102055780635c975abb14610218575f80fd5b806323b872dd1161011c578063395093511161010257806339509351146101d75780633f4ba83a146101ea57806340c10f19146101f2575f80fd5b806323b872dd146101b5578063313ce567146101c8575f80fd5b806306fdde031461014d578063095ea7b31461016b57806315864e0a1461018e57806318160ddd146101a3575b5f80fd5b610155610330565b60405161016291906117a1565b60405180910390f35b61017e610179366004611832565b6103c0565b6040519015158152602001610162565b6101a161019c36600461185a565b6103d9565b005b6035545b604051908152602001610162565b61017e6101c336600461187a565b610528565b60405160128152602001610162565b61017e6101e5366004611832565b61054b565b6101a1610596565b6101a1610200366004611832565b610672565b6101a16102133660046118b3565b6107ab565b60655460ff1661017e565b6101a761023136600461185a565b73ffffffffffffffffffffffffffffffffffffffff165f9081526033602052604090205490565b6101a1610266366004611832565b610a15565b6101a1610afb565b610155610bf3565b61017e610289366004611832565b610c02565b61017e61029c366004611832565b610cb8565b6101a76102af3660046118b3565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260346020908152604080832093909416825291909152205490565b5f5461030b9062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610162565b60606036805461033f906118e4565b80601f016020809104026020016040519081016040528092919081815260200182805461036b906118e4565b80156103b65780601f1061038d576101008083540402835291602001916103b6565b820191905f5260205f20905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b5f336103cd818585610cc5565b60019150505b92915050565b5f80546040517f91d14854000000000000000000000000000000000000000000000000000000008152600481019290925233602483015262010000900473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa158015610451573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104759190611935565b6104ab576040517f164931f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104b481610e43565b5f80547fffffffffffffffffffff0000000000000000000000000000000000000000ffff166201000073ffffffffffffffffffffffffffffffffffffffff841690810291909117825560405190917f9cf19cefd9aab739c33b95716ee3f3f921f219dc6d7aae25e1f9497b3788915091a250565b5f33610535858285610e93565b610540858585610f4f565b506001949350505050565b335f81815260346020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906103cd9082908690610591908790611954565b610cc5565b5f80546040517f91d14854000000000000000000000000000000000000000000000000000000008152600481019290925233602483015262010000900473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa15801561060e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106329190611935565b610668576040517f164931f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610670611175565b565b5f546040517f91d148540000000000000000000000000000000000000000000000000000000081527f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6600482018190523360248301529162010000900473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa15801561070a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072e9190611935565b610794575f8160405160200161074691815260200190565b6040516020818303038152906040529050806040517f2cd5664100000000000000000000000000000000000000000000000000000000815260040161078b91906117a1565b60405180910390fd5b61079c6111f2565b6107a68383611245565b505050565b5f54610100900460ff16158080156107c957505f54600160ff909116105b806107e25750303b1580156107e257505f5460ff166001145b6108545760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161078b565b5f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905580156108b0575f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b6108b983610e43565b6108c282610e43565b6109366040518060400160405280600581526020017f72734554480000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f727345544800000000000000000000000000000000000000000000000000000081525061131f565b61093e6113a5565b5f80547fffffffffffffffffffff0000000000000000000000000000000000000000ffff166201000073ffffffffffffffffffffffffffffffffffffffff851690810291909117825560405190917f9cf19cefd9aab739c33b95716ee3f3f921f219dc6d7aae25e1f9497b3788915091a280156107a6575f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050565b5f546040517f91d148540000000000000000000000000000000000000000000000000000000081527f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848600482018190523360248301529162010000900473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa158015610aad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad19190611935565b610ae9575f8160405160200161074691815260200190565b610af16111f2565b6107a68383611429565b5f546040517f91d148540000000000000000000000000000000000000000000000000000000081527faf290d8680820aad922855f39b306097b20e28774d6c1ad35a20325630c3a02c60048201523360248201526201000090910473ffffffffffffffffffffffffffffffffffffffff16906391d1485490604401602060405180830381865afa158015610b91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb59190611935565b610beb576040517f210d9c6600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106706115b9565b60606037805461033f906118e4565b335f81815260346020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610cab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161078b565b6105408286868403610cc5565b5f336103cd818585610f4f565b73ffffffffffffffffffffffffffffffffffffffff8316610d4d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff8216610dd65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8116610e90576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152603460209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f495781811015610f3c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161078b565b610f498484848403610cc5565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610fd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff82166110615760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260336020526040902054818110156110fc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff8085165f8181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111689086815260200190565b60405180910390a3610f49565b61117d611614565b606580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60655460ff16156106705760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161078b565b73ffffffffffffffffffffffffffffffffffffffff82166112a85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161078b565b8060355f8282546112b99190611954565b909155505073ffffffffffffffffffffffffffffffffffffffff82165f818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050565b5f54610100900460ff1661139b5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e67000000000000000000000000000000000000000000606482015260840161078b565b61131b8282611666565b5f54610100900460ff166114215760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e67000000000000000000000000000000000000000000606482015260840161078b565b6106706116fb565b73ffffffffffffffffffffffffffffffffffffffff82166114b25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff82165f908152603360205260409020548181101561154d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161078b565b73ffffffffffffffffffffffffffffffffffffffff83165f8181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6115c16111f2565b606580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111c83390565b60655460ff166106705760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161078b565b5f54610100900460ff166116e25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e67000000000000000000000000000000000000000000606482015260840161078b565b60366116ee8382611a06565b5060376107a68282611a06565b5f54610100900460ff166117775760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e67000000000000000000000000000000000000000000606482015260840161078b565b606580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b5f6020808352835180828501525f5b818110156117cc578581018301518582016040015282016117b0565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461182d575f80fd5b919050565b5f8060408385031215611843575f80fd5b61184c8361180a565b946020939093013593505050565b5f6020828403121561186a575f80fd5b6118738261180a565b9392505050565b5f805f6060848603121561188c575f80fd5b6118958461180a565b92506118a36020850161180a565b9150604084013590509250925092565b5f80604083850312156118c4575f80fd5b6118cd8361180a565b91506118db6020840161180a565b90509250929050565b600181811c908216806118f857607f821691505b60208210810361192f577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f60208284031215611945575f80fd5b81518015158114611873575f80fd5b808201808211156103d3577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f8211156107a6575f81815260208120601f850160051c810160208610156119df5750805b601f850160051c820191505b818110156119fe578281556001016119eb565b505050505050565b815167ffffffffffffffff811115611a2057611a2061198c565b611a3481611a2e84546118e4565b846119b9565b602080601f831160018114611a86575f8415611a505750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b1785556119fe565b5f858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015611ad257888601518255948401946001909101908401611ab3565b5085821015611b0e57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b0190555056fea2646970667358221220f44ac61edd94ad180c227f7a1d009667c29377eaffde4fe447450d9f635f0ae964736f6c63430008150033
Deployed Bytecode Sourcemap
44976:2088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30518:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32878:201;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;32878:201:0;1086:187:1;46838:223:0;;;;;;:::i;:::-;;:::i;:::-;;31647:108;31735:12;;31647:108;;;1615:25:1;;;1603:2;1588:18;31647:108:0;1469:177:1;33659:261:0;;;;;;:::i;:::-;;:::i;31489:93::-;;;31572:2;2126:36:1;;2114:2;2099:18;31489:93:0;1984:184:1;34329:238:0;;;;;;:::i;:::-;;:::i;46609:70::-;;;:::i;45834:136::-;;;;;;:::i;:::-;;:::i;45317:351::-;;;;;;:::i;:::-;;:::i;43586:86::-;43657:7;;;;43586:86;;31818:127;;;;;;:::i;:::-;31919:18;;31892:7;31919:18;;;:9;:18;;;;;;;31818:127;46143:150;;;;;;:::i;:::-;;:::i;46419:68::-;;;:::i;30737:104::-;;;:::i;35070:436::-;;;;;;:::i;:::-;;:::i;32151:193::-;;;;;;:::i;:::-;;:::i;32407:151::-;;;;;;:::i;:::-;32523:18;;;;32496:7;32523:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32407:151;5782:27;;;;;;;;;;;;;;;2632:42:1;2620:55;;;2602:74;;2590:2;2575:18;5782:27:0;2438:244:1;30518:100:0;30572:13;30605:5;30598:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30518:100;:::o;32878:201::-;32961:4;27844:10;33017:32;27844:10;33033:7;33042:6;33017:8;:32::i;:::-;33067:4;33060:11;;;32878:201;;;;;:::o;46838:223::-;6480:9;;;6457:87;;;;;;;;3303:25:1;;;;6533:10:0;3344:18:1;;;3337:83;6480:9:0;;;;;;6457:42;;3276:18:1;;6457:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6452:164;;6568:36;;;;;;;;;;;;;;6452:164;46925:39:::1;46953:10;46925:27;:39::i;:::-;46975:9;:34:::0;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;47025:28:::1;::::0;46975:34;;47025:28:::1;::::0;::::1;46838:223:::0;:::o;33659:261::-;33756:4;27844:10;33814:38;33830:4;27844:10;33845:6;33814:15;:38::i;:::-;33863:27;33873:4;33879:2;33883:6;33863:9;:27::i;:::-;-1:-1:-1;33908:4:0;;33659:261;-1:-1:-1;;;;33659:261:0:o;34329:238::-;27844:10;34417:4;32523:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;34417:4;;27844:10;34473:64;;27844:10;;32523:27;;34498:38;;34526:10;;34498:38;:::i;:::-;34473:8;:64::i;46609:70::-;6480:9;;;6457:87;;;;;;;;3303:25:1;;;;6533:10:0;3344:18:1;;;3337:83;6480:9:0;;;;;;6457:42;;3276:18:1;;6457:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6452:164;;6568:36;;;;;;;;;;;;;;6452:164;46661:10:::1;:8;:10::i;:::-;46609:70::o:0;45834:136::-;5980:9;;5957:60;;;;;1252:24;5957:60;;;3303:25:1;;;6006:10:0;3344:18:1;;;3337:83;1252:24:0;5980:9;;;;;;5957:42;;3276:18:1;;5957:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5952:219;;6034:21;6082:4;6065:22;;;;;;4126:19:1;;4170:2;4161:12;;3997:182;6065:22:0;;;;;;;;;;;;;6034:54;;6151:7;6110:49;;;;;;;;;;;:::i;:::-;;;;;;;;5952:219;43191:19:::1;:17;:19::i;:::-;45945:17:::2;45951:2;45955:6;45945:5;:17::i;:::-;45834:136:::0;;;:::o;45317:351::-;23606:19;23629:13;;;;;;23628:14;;23676:34;;;;-1:-1:-1;23694:12:0;;23709:1;23694:12;;;;:16;23676:34;23675:108;;;-1:-1:-1;23755:4:0;12570:19;:23;;;23716:66;;-1:-1:-1;23765:12:0;;;;;:17;23716:66;23653:204;;;;-1:-1:-1;;;23653:204:0;;4386:2:1;23653:204:0;;;4368:21:1;4425:2;4405:18;;;4398:30;4464:34;4444:18;;;4437:62;4535:16;4515:18;;;4508:44;4569:19;;23653:204:0;4184:410:1;23653:204:0;23868:12;:16;;;;23883:1;23868:16;;;23895:67;;;;23930:13;:20;;;;;;;;23895:67;45407:34:::1;45435:5;45407:27;:34::i;:::-;45452:42;45480:13;45452:27;:42::i;:::-;45507:30;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;::::0;:12:::1;:30::i;:::-;45548:17;:15;:17::i;:::-;45576:9;:37:::0;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;45629:31:::1;::::0;45576:37;;45629:31:::1;::::0;::::1;23988:14:::0;23984:102;;;24035:5;24019:21;;;;;;24060:14;;-1:-1:-1;2126:36:1;;24060:14:0;;2114:2:1;2099:18;24060:14:0;;;;;;;23595:498;45317:351;;:::o;46143:150::-;5980:9;;5957:60;;;;;1321:24;5957:60;;;3303:25:1;;;6006:10:0;3344:18:1;;;3337:83;1321:24:0;5980:9;;;;;;5957:42;;3276:18:1;;5957:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5952:219;;6034:21;6082:4;6065:22;;;;;;4126:19:1;;4170:2;4161:12;;3997:182;5952:219:0;43191:19:::1;:17;:19::i;:::-;46263:22:::2;46269:7;46278:6;46263:5;:22::i;46419:68::-:0;6263:9;;6240:76;;;;;1187:20;6240:76;;;3303:25:1;6305:10:0;3344:18:1;;;3337:83;6263:9:0;;;;;;;6240:42;;3276:18:1;;6240:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6235:155;;6340:38;;;;;;;;;;;;;;6235:155;46471:8:::1;:6;:8::i;30737:104::-:0;30793:13;30826:7;30819:14;;;;;:::i;35070:436::-;27844:10;35163:4;32523:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;35163:4;;27844:10;35310:15;35290:16;:35;;35282:85;;;;-1:-1:-1;;;35282:85:0;;5000:2:1;35282:85:0;;;4982:21:1;5039:2;5019:18;;;5012:30;5078:34;5058:18;;;5051:62;5149:7;5129:18;;;5122:35;5174:19;;35282:85:0;4798:401:1;35282:85:0;35403:60;35412:5;35419:7;35447:15;35428:16;:34;35403:8;:60::i;32151:193::-;32230:4;27844:10;32286:28;27844:10;32303:2;32307:6;32286:9;:28::i;39063:346::-;39165:19;;;39157:68;;;;-1:-1:-1;;;39157:68:0;;5406:2:1;39157:68:0;;;5388:21:1;5445:2;5425:18;;;5418:30;5484:34;5464:18;;;5457:62;5555:6;5535:18;;;5528:34;5579:19;;39157:68:0;5204:400:1;39157:68:0;39244:21;;;39236:68;;;;-1:-1:-1;;;39236:68:0;;5811:2:1;39236:68:0;;;5793:21:1;5850:2;5830:18;;;5823:30;5889:34;5869:18;;;5862:62;5960:4;5940:18;;;5933:32;5982:19;;39236:68:0;5609:398:1;39236:68:0;39317:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39369:32;;1615:25:1;;;39369:32:0;;1588:18:1;39369:32:0;;;;;;;39063:346;;;:::o;287:138::-;363:22;;;359:58;;394:23;;;;;;;;;;;;;;359:58;287:138;:::o;39700:419::-;32523:18;;;;39801:24;32523:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;39888:17;39868:37;;39864:248;;39950:6;39930:16;:26;;39922:68;;;;-1:-1:-1;;;39922:68:0;;6214:2:1;39922:68:0;;;6196:21:1;6253:2;6233:18;;;6226:30;6292:31;6272:18;;;6265:59;6341:18;;39922:68:0;6012:353:1;39922:68:0;40034:51;40043:5;40050:7;40078:6;40059:16;:25;40034:8;:51::i;:::-;39790:329;39700:419;;;:::o;35976:806::-;36073:18;;;36065:68;;;;-1:-1:-1;;;36065:68:0;;6572:2:1;36065:68:0;;;6554:21:1;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;6721:7;6701:18;;;6694:35;6746:19;;36065:68:0;6370:401:1;36065:68:0;36152:16;;;36144:64;;;;-1:-1:-1;;;36144:64:0;;6978:2:1;36144:64:0;;;6960:21:1;7017:2;6997:18;;;6990:30;7056:34;7036:18;;;7029:62;7127:5;7107:18;;;7100:33;7150:19;;36144:64:0;6776:399:1;36144:64:0;36294:15;;;36272:19;36294:15;;;:9;:15;;;;;;36328:21;;;;36320:72;;;;-1:-1:-1;;;36320:72:0;;7382:2:1;36320:72:0;;;7364:21:1;7421:2;7401:18;;;7394:30;7460:34;7440:18;;;7433:62;7531:8;7511:18;;;7504:36;7557:19;;36320:72:0;7180:402:1;36320:72:0;36428:15;;;;;;;;:9;:15;;;;;;36446:20;;;36428:38;;36646:13;;;;;;;;;;:23;;;;;;36698:26;;;;;;36460:6;1615:25:1;;1603:2;1588:18;;1469:177;36698:26:0;;;;;;;;36737:37;45834:136;44441:120;43450:16;:14;:16::i;:::-;44500:7:::1;:15:::0;;;::::1;::::0;;44531:22:::1;27844:10:::0;44540:12:::1;44531:22;::::0;2632:42:1;2620:55;;;2602:74;;2590:2;2575:18;44531:22:0::1;;;;;;;44441:120::o:0;43745:108::-;43657:7;;;;43815:9;43807:38;;;;-1:-1:-1;;;43807:38:0;;8020:2:1;43807:38:0;;;8002:21:1;8059:2;8039:18;;;8032:30;8098:18;8078;;;8071:46;8134:18;;43807:38:0;7818:340:1;37069:548:0;37153:21;;;37145:65;;;;-1:-1:-1;;;37145:65:0;;8365:2:1;37145:65:0;;;8347:21:1;8404:2;8384:18;;;8377:30;8443:33;8423:18;;;8416:61;8494:18;;37145:65:0;8163:355:1;37145:65:0;37301:6;37285:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;37456:18:0;;;;;;;:9;:18;;;;;;;;:28;;;;;;37511:37;1615:25:1;;;37511:37:0;;1588:18:1;37511:37:0;;;;;;;37561:48;37069:548;;:::o;30129:149::-;25749:13;;;;;;;25741:69;;;;-1:-1:-1;;;25741:69:0;;8725:2:1;25741:69:0;;;8707:21:1;8764:2;8744:18;;;8737:30;8803:34;8783:18;;;8776:62;8874:13;8854:18;;;8847:41;8905:19;;25741:69:0;8523:407:1;25741:69:0;30232:38:::1;30255:5;30262:7;30232:22;:38::i;42756:99::-:0;25749:13;;;;;;;25741:69;;;;-1:-1:-1;;;25741:69:0;;8725:2:1;25741:69:0;;;8707:21:1;8764:2;8744:18;;;8737:30;8803:34;8783:18;;;8776:62;8874:13;8854:18;;;8847:41;8905:19;;25741:69:0;8523:407:1;25741:69:0;42820:27:::1;:25;:27::i;37950:675::-:0;38034:21;;;38026:67;;;;-1:-1:-1;;;38026:67:0;;9137:2:1;38026:67:0;;;9119:21:1;9176:2;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9286:3;9266:18;;;9259:31;9307:19;;38026:67:0;8935:397:1;38026:67:0;38193:18;;;38168:22;38193:18;;;:9;:18;;;;;;38230:24;;;;38222:71;;;;-1:-1:-1;;;38222:71:0;;9539:2:1;38222:71:0;;;9521:21:1;9578:2;9558:18;;;9551:30;9617:34;9597:18;;;9590:62;9688:4;9668:18;;;9661:32;9710:19;;38222:71:0;9337:398:1;38222:71:0;38329:18;;;;;;;:9;:18;;;;;;;;38350:23;;;38329:44;;38468:12;:22;;;;;;;38519:37;1615:25:1;;;38329:18:0;;;38519:37;;1588:18:1;38519:37:0;;;;;;;45834:136;;;:::o;44182:118::-;43191:19;:17;:19::i;:::-;44242:7:::1;:14:::0;;;::::1;44252:4;44242:14;::::0;;44272:20:::1;44279:12;27844:10:::0;;27764:98;43930:108;43657:7;;;;43989:41;;;;-1:-1:-1;;;43989:41:0;;9942:2:1;43989:41:0;;;9924:21:1;9981:2;9961:18;;;9954:30;10020:22;10000:18;;;9993:50;10060:18;;43989:41:0;9740:344:1;30286:162:0;25749:13;;;;;;;25741:69;;;;-1:-1:-1;;;25741:69:0;;8725:2:1;25741:69:0;;;8707:21:1;8764:2;8744:18;;;8737:30;8803:34;8783:18;;;8776:62;8874:13;8854:18;;;8847:41;8905:19;;25741:69:0;8523:407:1;25741:69:0;30399:5:::1;:13;30407:5:::0;30399;:13:::1;:::i;:::-;-1:-1:-1::0;30423:7:0::1;:17;30433:7:::0;30423;:17:::1;:::i;42863:97::-:0;25749:13;;;;;;;25741:69;;;;-1:-1:-1;;;25741:69:0;;8725:2:1;25741:69:0;;;8707:21:1;8764:2;8744:18;;;8737:30;8803:34;8783:18;;;8776:62;8874:13;8854:18;;;8847:41;8905:19;;25741:69:0;8523:407:1;25741:69:0;42937:7:::1;:15:::0;;;::::1;::::0;;42863:97::o;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1278:186::-;1337:6;1390:2;1378:9;1369:7;1365:23;1361:32;1358:52;;;1406:1;1403;1396:12;1358:52;1429:29;1448:9;1429:29;:::i;:::-;1419:39;1278:186;-1:-1:-1;;;1278:186:1:o;1651:328::-;1728:6;1736;1744;1797:2;1785:9;1776:7;1772:23;1768:32;1765:52;;;1813:1;1810;1803:12;1765:52;1836:29;1855:9;1836:29;:::i;:::-;1826:39;;1884:38;1918:2;1907:9;1903:18;1884:38;:::i;:::-;1874:48;;1969:2;1958:9;1954:18;1941:32;1931:42;;1651:328;;;;;:::o;2173:260::-;2241:6;2249;2302:2;2290:9;2281:7;2277:23;2273:32;2270:52;;;2318:1;2315;2308:12;2270:52;2341:29;2360:9;2341:29;:::i;:::-;2331:39;;2389:38;2423:2;2412:9;2408:18;2389:38;:::i;:::-;2379:48;;2173:260;;;;;:::o;2687:437::-;2766:1;2762:12;;;;2809;;;2830:61;;2884:4;2876:6;2872:17;2862:27;;2830:61;2937:2;2929:6;2926:14;2906:18;2903:38;2900:218;;2974:77;2971:1;2964:88;3075:4;3072:1;3065:15;3103:4;3100:1;3093:15;2900:218;;2687:437;;;:::o;3431:277::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3599:9;3593:16;3652:5;3645:13;3638:21;3631:5;3628:32;3618:60;;3674:1;3671;3664:12;3713:279;3778:9;;;3799:10;;;3796:190;;;3842:77;3839:1;3832:88;3943:4;3940:1;3933:15;3971:4;3968:1;3961:15;10089:184;10141:77;10138:1;10131:88;10238:4;10235:1;10228:15;10262:4;10259:1;10252:15;10404:545;10506:2;10501:3;10498:11;10495:448;;;10542:1;10567:5;10563:2;10556:17;10612:4;10608:2;10598:19;10682:2;10670:10;10666:19;10663:1;10659:27;10653:4;10649:38;10718:4;10706:10;10703:20;10700:47;;;-1:-1:-1;10741:4:1;10700:47;10796:2;10791:3;10787:12;10784:1;10780:20;10774:4;10770:31;10760:41;;10851:82;10869:2;10862:5;10859:13;10851:82;;;10914:17;;;10895:1;10884:13;10851:82;;;10855:3;;;10404:545;;;:::o;11185:1471::-;11311:3;11305:10;11338:18;11330:6;11327:30;11324:56;;;11360:18;;:::i;:::-;11389:97;11479:6;11439:38;11471:4;11465:11;11439:38;:::i;:::-;11433:4;11389:97;:::i;:::-;11541:4;;11605:2;11594:14;;11622:1;11617:782;;;;12443:1;12460:6;12457:89;;;-1:-1:-1;12512:19:1;;;12506:26;12457:89;11091:66;11082:1;11078:11;;;11074:84;11070:89;11060:100;11166:1;11162:11;;;11057:117;12559:81;;11587:1063;;11617:782;10351:1;10344:14;;;10388:4;10375:18;;11665:66;11653:79;;;11830:236;11844:7;11841:1;11838:14;11830:236;;;11933:19;;;11927:26;11912:42;;12025:27;;;;11993:1;11981:14;;;;11860:19;;11830:236;;;11834:3;12094:6;12085:7;12082:19;12079:261;;;12155:19;;;12149:26;12256:66;12238:1;12234:14;;;12250:3;12230:24;12226:97;12222:102;12207:118;12192:134;;12079:261;-1:-1:-1;;;;;12386:1:1;12370:14;;;12366:22;12353:36;;-1:-1:-1;11185:1471:1:o
Swarm Source
ipfs://f44ac61edd94ad180c227f7a1d009667c29377eaffde4fe447450d9f635f0ae9
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.