Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Usds
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0-or-later
/// Usds.sol -- Usds token
// Copyright (C) 2017, 2018, 2019 dbrock, rain, mrchico
// Copyright (C) 2023 Dai Foundation
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
pragma solidity ^0.8.21;
import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
interface IERC1271 {
function isValidSignature(
bytes32,
bytes memory
) external view returns (bytes4);
}
contract Usds is UUPSUpgradeable {
mapping (address => uint256) public wards;
// --- ERC20 Data ---
string public constant name = "USDS Stablecoin";
string public constant symbol = "USDS";
string public constant version = "1";
uint8 public constant decimals = 18;
uint256 public totalSupply;
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
mapping (address => uint256) public nonces;
// --- Events ---
event Rely(address indexed usr);
event Deny(address indexed usr);
event Approval(address indexed owner, address indexed spender, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
// --- EIP712 niceties ---
bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
modifier auth {
require(wards[msg.sender] == 1, "Usds/not-authorized");
_;
}
constructor() {
_disableInitializers(); // Avoid initializing in the context of the implementation
}
// --- Upgradability ---
function initialize() initializer external {
__UUPSUpgradeable_init();
wards[msg.sender] = 1;
emit Rely(msg.sender);
}
function _authorizeUpgrade(address newImplementation) internal override auth {}
function getImplementation() external view returns (address) {
return ERC1967Utils.getImplementation();
}
function _calculateDomainSeparator(uint256 chainId) private view returns (bytes32) {
return keccak256(
abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256(bytes(name)),
keccak256(bytes(version)),
chainId,
address(this)
)
);
}
function DOMAIN_SEPARATOR() external view returns (bytes32) {
return _calculateDomainSeparator(block.chainid);
}
// --- Administration ---
function rely(address usr) external auth {
wards[usr] = 1;
emit Rely(usr);
}
function deny(address usr) external auth {
wards[usr] = 0;
emit Deny(usr);
}
// --- ERC20 Mutations ---
function transfer(address to, uint256 value) external returns (bool) {
require(to != address(0) && to != address(this), "Usds/invalid-address");
uint256 balance = balanceOf[msg.sender];
require(balance >= value, "Usds/insufficient-balance");
unchecked {
balanceOf[msg.sender] = balance - value;
balanceOf[to] += value; // note: we don't need an overflow check here b/c sum of all balances == totalSupply
}
emit Transfer(msg.sender, to, value);
return true;
}
function transferFrom(address from, address to, uint256 value) external returns (bool) {
require(to != address(0) && to != address(this), "Usds/invalid-address");
uint256 balance = balanceOf[from];
require(balance >= value, "Usds/insufficient-balance");
if (from != msg.sender) {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max) {
require(allowed >= value, "Usds/insufficient-allowance");
unchecked {
allowance[from][msg.sender] = allowed - value;
}
}
}
unchecked {
balanceOf[from] = balance - value;
balanceOf[to] += value; // note: we don't need an overflow check here b/c sum of all balances == totalSupply
}
emit Transfer(from, to, value);
return true;
}
function approve(address spender, uint256 value) external returns (bool) {
allowance[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
// --- Mint/Burn ---
function mint(address to, uint256 value) external auth {
require(to != address(0) && to != address(this), "Usds/invalid-address");
unchecked {
balanceOf[to] = balanceOf[to] + value; // note: we don't need an overflow check here b/c balanceOf[to] <= totalSupply and there is an overflow check below
}
totalSupply = totalSupply + value;
emit Transfer(address(0), to, value);
}
function burn(address from, uint256 value) external {
uint256 balance = balanceOf[from];
require(balance >= value, "Usds/insufficient-balance");
if (from != msg.sender) {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max) {
require(allowed >= value, "Usds/insufficient-allowance");
unchecked {
allowance[from][msg.sender] = allowed - value;
}
}
}
unchecked {
balanceOf[from] = balance - value; // note: we don't need overflow checks b/c require(balance >= value) and balance <= totalSupply
totalSupply = totalSupply - value;
}
emit Transfer(from, address(0), value);
}
// --- Approve by signature ---
function _isValidSignature(
address signer,
bytes32 digest,
bytes memory signature
) internal view returns (bool valid) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
if (signer == ecrecover(digest, v, r, s)) {
return true;
}
}
if (signer.code.length > 0) {
(bool success, bytes memory result) = signer.staticcall(
abi.encodeCall(IERC1271.isValidSignature, (digest, signature))
);
valid = (success &&
result.length == 32 &&
abi.decode(result, (bytes4)) == IERC1271.isValidSignature.selector);
}
}
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
bytes memory signature
) public {
require(block.timestamp <= deadline, "Usds/permit-expired");
require(owner != address(0), "Usds/invalid-owner");
uint256 nonce;
unchecked { nonce = nonces[owner]++; }
bytes32 digest =
keccak256(abi.encodePacked(
"\x19\x01",
_calculateDomainSeparator(block.chainid),
keccak256(abi.encode(
PERMIT_TYPEHASH,
owner,
spender,
value,
nonce,
deadline
))
));
require(_isValidSignature(owner, digest, signature), "Usds/invalid-permit");
allowance[owner][spender] = value;
emit Approval(owner, spender, value);
}
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external {
permit(owner, spender, value, deadline, abi.encodePacked(r, s, v));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol)
pragma solidity ^0.8.20;
import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol";
import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol";
import {Initializable} from "./Initializable.sol";
/**
* @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
* {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
*
* A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
* reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
* `UUPSUpgradeable` with a custom implementation of upgrades.
*
* The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
*/
abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable {
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable
address private immutable __self = address(this);
/**
* @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`
* and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,
* while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.
* If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must
* be the empty byte string if no function should be called, making it impossible to invoke the `receive` function
* during an upgrade.
*/
string public constant UPGRADE_INTERFACE_VERSION = "5.0.0";
/**
* @dev The call is from an unauthorized context.
*/
error UUPSUnauthorizedCallContext();
/**
* @dev The storage `slot` is unsupported as a UUID.
*/
error UUPSUnsupportedProxiableUUID(bytes32 slot);
/**
* @dev Check that the execution is being performed through a delegatecall call and that the execution context is
* a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
* for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
* function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
* fail.
*/
modifier onlyProxy() {
_checkProxy();
_;
}
/**
* @dev Check that the execution is not being performed through a delegate call. This allows a function to be
* callable on the implementing contract but not through proxies.
*/
modifier notDelegated() {
_checkNotDelegated();
_;
}
function __UUPSUpgradeable_init() internal onlyInitializing {
}
function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
}
/**
* @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
* implementation. It is used to validate the implementation's compatibility when performing an upgrade.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
*/
function proxiableUUID() external view virtual notDelegated returns (bytes32) {
return ERC1967Utils.IMPLEMENTATION_SLOT;
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
* encoded in `data`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*
* @custom:oz-upgrades-unsafe-allow-reachable delegatecall
*/
function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, data);
}
/**
* @dev Reverts if the execution is not performed via delegatecall or the execution
* context is not of a proxy with an ERC1967-compliant implementation pointing to self.
* See {_onlyProxy}.
*/
function _checkProxy() internal view virtual {
if (
address(this) == __self || // Must be called through delegatecall
ERC1967Utils.getImplementation() != __self // Must be called through an active proxy
) {
revert UUPSUnauthorizedCallContext();
}
}
/**
* @dev Reverts if the execution is performed via delegatecall.
* See {notDelegated}.
*/
function _checkNotDelegated() internal view virtual {
if (address(this) != __self) {
// Must not be called through delegatecall
revert UUPSUnauthorizedCallContext();
}
}
/**
* @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
* {upgradeToAndCall}.
*
* Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
*
* ```solidity
* function _authorizeUpgrade(address) internal onlyOwner {}
* ```
*/
function _authorizeUpgrade(address newImplementation) internal virtual;
/**
* @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.
*
* As a security check, {proxiableUUID} is invoked in the new implementation, and the return value
* is expected to be the implementation slot in ERC1967.
*
* Emits an {IERC1967-Upgraded} event.
*/
function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {
try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {
if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {
revert UUPSUnsupportedProxiableUUID(slot);
}
ERC1967Utils.upgradeToAndCall(newImplementation, data);
} catch {
// The implementation is not UUPS
revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol)
pragma solidity ^0.8.20;
/**
* @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
* proxy whose upgrades are fully controlled by the current implementation.
*/
interface IERC1822Proxiable {
/**
* @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
* address.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy.
*/
function proxiableUUID() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol)
pragma solidity ^0.8.20;
import {IBeacon} from "../beacon/IBeacon.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";
/**
* @dev This abstract contract provides getters and event emitting update functions for
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
*/
library ERC1967Utils {
// We re-declare ERC-1967 events here because they can't be used directly from IERC1967.
// This will be fixed in Solidity 0.8.21. At that point we should remove these events.
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Emitted when the beacon is changed.
*/
event BeaconUpgraded(address indexed beacon);
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev The `implementation` of the proxy is invalid.
*/
error ERC1967InvalidImplementation(address implementation);
/**
* @dev The `admin` of the proxy is invalid.
*/
error ERC1967InvalidAdmin(address admin);
/**
* @dev The `beacon` of the proxy is invalid.
*/
error ERC1967InvalidBeacon(address beacon);
/**
* @dev An upgrade function sees `msg.value > 0` that may be lost.
*/
error ERC1967NonPayable();
/**
* @dev Returns the current implementation address.
*/
function getImplementation() internal view returns (address) {
return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 implementation slot.
*/
function _setImplementation(address newImplementation) private {
if (newImplementation.code.length == 0) {
revert ERC1967InvalidImplementation(newImplementation);
}
StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;
}
/**
* @dev Performs implementation upgrade with additional setup call if data is nonempty.
* This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
* to avoid stuck value in the contract.
*
* Emits an {IERC1967-Upgraded} event.
*/
function upgradeToAndCall(address newImplementation, bytes memory data) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
if (data.length > 0) {
Address.functionDelegateCall(newImplementation, data);
} else {
_checkNonPayable();
}
}
/**
* @dev Storage slot with the admin of the contract.
* This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
/**
* @dev Returns the current admin.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using
* the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
*/
function getAdmin() internal view returns (address) {
return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 admin slot.
*/
function _setAdmin(address newAdmin) private {
if (newAdmin == address(0)) {
revert ERC1967InvalidAdmin(address(0));
}
StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {IERC1967-AdminChanged} event.
*/
function changeAdmin(address newAdmin) internal {
emit AdminChanged(getAdmin(), newAdmin);
_setAdmin(newAdmin);
}
/**
* @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
* This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
/**
* @dev Returns the current beacon.
*/
function getBeacon() internal view returns (address) {
return StorageSlot.getAddressSlot(BEACON_SLOT).value;
}
/**
* @dev Stores a new beacon in the EIP1967 beacon slot.
*/
function _setBeacon(address newBeacon) private {
if (newBeacon.code.length == 0) {
revert ERC1967InvalidBeacon(newBeacon);
}
StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;
address beaconImplementation = IBeacon(newBeacon).implementation();
if (beaconImplementation.code.length == 0) {
revert ERC1967InvalidImplementation(beaconImplementation);
}
}
/**
* @dev Change the beacon and trigger a setup call if data is nonempty.
* This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
* to avoid stuck value in the contract.
*
* Emits an {IERC1967-BeaconUpgraded} event.
*
* CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since
* it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for
* efficiency.
*/
function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {
_setBeacon(newBeacon);
emit BeaconUpgraded(newBeacon);
if (data.length > 0) {
Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
} else {
_checkNonPayable();
}
}
/**
* @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract
* if an upgrade doesn't perform an initialization call.
*/
function _checkNonPayable() private {
if (msg.value > 0) {
revert ERC1967NonPayable();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.20;
/**
* @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 Storage of the initializable contract.
*
* It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
* when using with upgradeable contracts.
*
* @custom:storage-location erc7201:openzeppelin.storage.Initializable
*/
struct InitializableStorage {
/**
* @dev Indicates that the contract has been initialized.
*/
uint64 _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool _initializing;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;
/**
* @dev The contract is already initialized.
*/
error InvalidInitialization();
/**
* @dev The contract is not initializing.
*/
error NotInitializing();
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint64 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 in the context of a constructor an `initializer` may be invoked any
* number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
* production.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
// Cache values to avoid duplicated sloads
bool isTopLevelCall = !$._initializing;
uint64 initialized = $._initialized;
// Allowed calls:
// - initialSetup: the contract is not in the initializing state and no previous version was
// initialized
// - construction: the contract is initialized at version 1 (no reininitialization) and the
// current contract is just being deployed
bool initialSetup = initialized == 0 && isTopLevelCall;
bool construction = initialized == 1 && address(this).code.length == 0;
if (!initialSetup && !construction) {
revert InvalidInitialization();
}
$._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 2**64 - 1 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint64 version) {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing || $._initialized >= version) {
revert InvalidInitialization();
}
$._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() {
_checkInitializing();
_;
}
/**
* @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
*/
function _checkInitializing() internal view virtual {
if (!_isInitializing()) {
revert NotInitializing();
}
}
/**
* @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 {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing) {
revert InvalidInitialization();
}
if ($._initialized != type(uint64).max) {
$._initialized = type(uint64).max;
emit Initialized(type(uint64).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint64) {
return _getInitializableStorage()._initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _getInitializableStorage()._initializing;
}
/**
* @dev Returns a pointer to the storage namespace.
*/
// solhint-disable-next-line var-name-mixedcase
function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
assembly {
$.slot := INITIALIZABLE_STORAGE
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)
pragma solidity ^0.8.20;
/**
* @dev This is the interface that {BeaconProxy} expects of its beacon.
*/
interface IBeacon {
/**
* @dev Must return an address that can be used as a delegate call target.
*
* {UpgradeableBeacon} will check that this address is a contract.
*/
function implementation() external view returns (address);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @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.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @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 or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* 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.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @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`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) 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 FailedInnerCall();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.20;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(newImplementation.code.length > 0);
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}{
"remappings": [
"@openzeppelin/contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/contracts/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"forge-std/=lib/openzeppelin-foundry-upgrades/lib/forge-std/src/",
"ds-test/=lib/openzeppelin-contracts-upgradeable/lib/forge-std/lib/ds-test/src/",
"dss-interfaces/=lib/token-tests/lib/dss-test/lib/dss-interfaces/src/",
"dss-test/=lib/token-tests/lib/dss-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/",
"openzeppelin-foundry-upgrades/=lib/openzeppelin-foundry-upgrades/src/",
"solidity-stringutils/=lib/openzeppelin-foundry-upgrades/lib/solidity-stringutils/",
"token-tests/=lib/token-tests/src/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"evmVersion": "paris",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","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":true,"internalType":"address","name":"usr","type":"address"}],"name":"Deny","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"usr","type":"address"}],"name":"Rely","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"usr","type":"address"}],"name":"deny","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"usr","type":"address"}],"name":"rely","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60a06040523060805234801561001457600080fd5b5061001d610022565b6100d4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100725760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100d15780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b608051611a4b6100fd6000396000818161100a0152818161103301526111a50152611a4b6000f3fe6080604052600436106101665760003560e01c806370a08231116100d15780639fd5a6cf1161008a578063ad3cb1cc11610064578063ad3cb1cc14610483578063bf353dbb146104b4578063d505accf146104e1578063dd62ed3e1461050157600080fd5b80639fd5a6cf14610416578063a9059cbb14610436578063aaf10f421461045657600080fd5b806370a08231146103375780637ecebe00146103645780638129fc1c1461039157806395d89b41146103a65780639c52a7f1146103d65780639dc29fac146103f657600080fd5b80633644e515116101235780633644e5151461028b57806340c10f19146102a05780634f1ef286146102c257806352d1902d146102d557806354fd4d50146102ea57806365fae35e1461031757600080fd5b806306fdde031461016b578063095ea7b3146101bc57806318160ddd146101ec57806323b872dd1461021057806330adf81f14610230578063313ce56714610264575b600080fd5b34801561017757600080fd5b506101a66040518060400160405280600f81526020016e2aa9a2299029ba30b13632b1b7b4b760891b81525081565b6040516101b391906115e9565b60405180910390f35b3480156101c857600080fd5b506101dc6101d7366004611618565b610539565b60405190151581526020016101b3565b3480156101f857600080fd5b5061020260015481565b6040519081526020016101b3565b34801561021c57600080fd5b506101dc61022b366004611642565b6105a6565b34801561023c57600080fd5b506102027f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b34801561027057600080fd5b50610279601281565b60405160ff90911681526020016101b3565b34801561029757600080fd5b50610202610742565b3480156102ac57600080fd5b506102c06102bb366004611618565b610752565b005b6102c06102d0366004611721565b610820565b3480156102e157600080fd5b5061020261083f565b3480156102f657600080fd5b506101a6604051806040016040528060018152602001603160f81b81525081565b34801561032357600080fd5b506102c061033236600461176f565b61085c565b34801561034357600080fd5b5061020261035236600461176f565b60026020526000908152604090205481565b34801561037057600080fd5b5061020261037f36600461176f565b60046020526000908152604090205481565b34801561039d57600080fd5b506102c06108d0565b3480156103b257600080fd5b506101a6604051806040016040528060048152602001635553445360e01b81525081565b3480156103e257600080fd5b506102c06103f136600461176f565b610a17565b34801561040257600080fd5b506102c0610411366004611618565b610a8a565b34801561042257600080fd5b506102c061043136600461178a565b610bc9565b34801561044257600080fd5b506101dc610451366004611618565b610de8565b34801561046257600080fd5b5061046b610eaf565b6040516001600160a01b0390911681526020016101b3565b34801561048f57600080fd5b506101a6604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156104c057600080fd5b506102026104cf36600461176f565b60006020819052908152604090205481565b3480156104ed57600080fd5b506102c06104fc3660046117fc565b610ed0565b34801561050d57600080fd5b5061020261051c36600461186f565b600360209081526000928352604080842090915290825290205481565b3360008181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105949086815260200190565b60405180910390a35060015b92915050565b60006001600160a01b038316158015906105c957506001600160a01b0383163014155b6105ee5760405162461bcd60e51b81526004016105e5906118a2565b60405180910390fd5b6001600160a01b038416600090815260026020526040902054828110156106275760405162461bcd60e51b81526004016105e5906118d0565b6001600160a01b03851633146106df576001600160a01b038516600090815260036020908152604080832033845290915290205460001981146106dd57838110156106b45760405162461bcd60e51b815260206004820152601b60248201527f557364732f696e73756666696369656e742d616c6c6f77616e6365000000000060448201526064016105e5565b6001600160a01b0386166000908152600360209081526040808320338452909152902084820390555b505b6001600160a01b0380861660008181526002602052604080822087860390559287168082529083902080548701905591516000805160206119f68339815191529061072d9087815260200190565b60405180910390a360019150505b9392505050565b600061074d46610f27565b905090565b336000908152602081905260409020546001146107815760405162461bcd60e51b81526004016105e590611907565b6001600160a01b038216158015906107a257506001600160a01b0382163014155b6107be5760405162461bcd60e51b81526004016105e5906118a2565b6001600160a01b03821660009081526002602052604090208054820190556001546107ea908290611934565b6001556040518181526001600160a01b038316906000906000805160206119f68339815191529060200160405180910390a35050565b610828610fff565b610831826110a6565b61083b82826110d8565b5050565b600061084961119a565b506000805160206119d683398151915290565b3360009081526020819052604090205460011461088b5760405162461bcd60e51b81526004016105e590611907565b6001600160a01b03811660008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a250565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff166000811580156109165750825b905060008267ffffffffffffffff1660011480156109335750303b155b905081158015610941575080155b1561095f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561098957845460ff60401b1916600160401b1785555b6109916111e3565b3360008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a28315610a1057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b33600090815260208190526040902054600114610a465760405162461bcd60e51b81526004016105e590611907565b6001600160a01b038116600081815260208190526040808220829055517f184450df2e323acec0ed3b5c7531b81f9b4cdef7914dfd4c0a4317416bb5251b9190a250565b6001600160a01b03821660009081526002602052604090205481811015610ac35760405162461bcd60e51b81526004016105e5906118d0565b6001600160a01b0383163314610b7b576001600160a01b03831660009081526003602090815260408083203384529091529020546000198114610b795782811015610b505760405162461bcd60e51b815260206004820152601b60248201527f557364732f696e73756666696369656e742d616c6c6f77616e6365000000000060448201526064016105e5565b6001600160a01b0384166000908152600360209081526040808320338452909152902083820390555b505b6001600160a01b03831660008181526002602090815260408083208686039055600180548790039055518581529192916000805160206119f6833981519152910160405180910390a3505050565b81421115610c0f5760405162461bcd60e51b8152602060048201526013602482015272155cd91ccbdc195c9b5a5d0b595e1c1a5c9959606a1b60448201526064016105e5565b6001600160a01b038516610c5a5760405162461bcd60e51b81526020600482015260126024820152712ab9b23997b4b73b30b634b216b7bbb732b960711b60448201526064016105e5565b6001600160a01b038516600090815260046020526040812080546001810190915590610c8546610f27565b604080517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960208201526001600160a01b03808b169282019290925290881660608201526080810187905260a0810184905260c0810186905260e00160405160208183030381529060405280519060200120604051602001610d1e92919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050610d418782856111eb565b610d835760405162461bcd60e51b8152602060048201526013602482015272155cd91ccbda5b9d985b1a590b5c195c9b5a5d606a1b60448201526064016105e5565b6001600160a01b038781166000818152600360209081526040808320948b168084529482529182902089905590518881527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60006001600160a01b03831615801590610e0b57506001600160a01b0383163014155b610e275760405162461bcd60e51b81526004016105e5906118a2565b3360009081526002602052604090205482811015610e575760405162461bcd60e51b81526004016105e5906118d0565b33600081815260026020908152604080832087860390556001600160a01b03881680845292819020805488019055518681529192916000805160206119f6833981519152910160405180910390a35060019392505050565b600061074d6000805160206119d6833981519152546001600160a01b031690565b610f1e87878787868689604051602001610f0a93929190928352602083019190915260f81b6001600160f81b031916604082015260410190565b604051602081830303815290604052610bc9565b50505050505050565b604080518082018252600f81526e2aa9a2299029ba30b13632b1b7b4b760891b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f2a23c41011e8e539e4f4084ffc24b3915572c705b02e784a519051e327b59f80818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101939093523060a0808501919091528251808503909101815260c0909301909152815191012090565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061108657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661107a6000805160206119d6833981519152546001600160a01b031690565b6001600160a01b031614155b156110a45760405163703e46dd60e11b815260040160405180910390fd5b565b336000908152602081905260409020546001146110d55760405162461bcd60e51b81526004016105e590611907565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611132575060408051601f3d908101601f1916820190925261112f91810190611955565b60015b61115a57604051634c9c8ce360e01b81526001600160a01b03831660048201526024016105e5565b6000805160206119d6833981519152811461118b57604051632a87526960e21b8152600481018290526024016105e5565b611195838361137b565b505050565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146110a45760405163703e46dd60e11b815260040160405180910390fd5b6110a46113d1565b6000815160410361128857602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa158015611256573d6000803e3d6000fd5b505050602060405103516001600160a01b0316876001600160a01b031603611284576001935050505061073b565b5050505b6001600160a01b0384163b1561073b57600080856001600160a01b031685856040516024016112b892919061196e565b60408051601f198184030181529181526020820180516001600160e01b0316630b135d3f60e11b179052516112ed919061198f565b600060405180830381855afa9150503d8060008114611328576040519150601f19603f3d011682016040523d82523d6000602084013e61132d565b606091505b5091509150818015611340575080516020145b801561137157508051630b135d3f60e11b9061136590830160209081019084016119ab565b6001600160e01b031916145b9695505050505050565b6113848261141a565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156113c957611195828261147f565b61083b6114f5565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166110a457604051631afcd79f60e31b815260040160405180910390fd5b806001600160a01b03163b60000361145057604051634c9c8ce360e01b81526001600160a01b03821660048201526024016105e5565b6000805160206119d683398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161149c919061198f565b600060405180830381855af49150503d80600081146114d7576040519150601f19603f3d011682016040523d82523d6000602084013e6114dc565b606091505b50915091506114ec858383611514565b95945050505050565b34156110a45760405163b398979f60e01b815260040160405180910390fd5b6060826115295761152482611570565b61073b565b815115801561154057506001600160a01b0384163b155b1561156957604051639996b31560e01b81526001600160a01b03851660048201526024016105e5565b508061073b565b8051156115805780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60005b838110156115b457818101518382015260200161159c565b50506000910152565b600081518084526115d5816020860160208601611599565b601f01601f19169290920160200192915050565b60208152600061073b60208301846115bd565b80356001600160a01b038116811461161357600080fd5b919050565b6000806040838503121561162b57600080fd5b611634836115fc565b946020939093013593505050565b60008060006060848603121561165757600080fd5b611660846115fc565b925061166e602085016115fc565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126116a557600080fd5b813567ffffffffffffffff808211156116c0576116c061167e565b604051601f8301601f19908116603f011681019082821181831017156116e8576116e861167e565b8160405283815286602085880101111561170157600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561173457600080fd5b61173d836115fc565b9150602083013567ffffffffffffffff81111561175957600080fd5b61176585828601611694565b9150509250929050565b60006020828403121561178157600080fd5b61073b826115fc565b600080600080600060a086880312156117a257600080fd5b6117ab866115fc565b94506117b9602087016115fc565b93506040860135925060608601359150608086013567ffffffffffffffff8111156117e357600080fd5b6117ef88828901611694565b9150509295509295909350565b600080600080600080600060e0888a03121561181757600080fd5b611820886115fc565b965061182e602089016115fc565b95506040880135945060608801359350608088013560ff8116811461185257600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561188257600080fd5b61188b836115fc565b9150611899602084016115fc565b90509250929050565b602080825260149082015273557364732f696e76616c69642d6164647265737360601b604082015260600190565b60208082526019908201527f557364732f696e73756666696369656e742d62616c616e636500000000000000604082015260600190565b602080825260139082015272155cd91ccbdb9bdd0b585d5d1a1bdc9a5e9959606a1b604082015260600190565b808201808211156105a057634e487b7160e01b600052601160045260246000fd5b60006020828403121561196757600080fd5b5051919050565b82815260406020820152600061198760408301846115bd565b949350505050565b600082516119a1818460208701611599565b9190910192915050565b6000602082840312156119bd57600080fd5b81516001600160e01b03198116811461073b57600080fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220550c7574fb30d9c06964ef3975158dbf0ca17117afe2edf12fee03b5ed7c13c164736f6c63430008150033
Deployed Bytecode
0x6080604052600436106101665760003560e01c806370a08231116100d15780639fd5a6cf1161008a578063ad3cb1cc11610064578063ad3cb1cc14610483578063bf353dbb146104b4578063d505accf146104e1578063dd62ed3e1461050157600080fd5b80639fd5a6cf14610416578063a9059cbb14610436578063aaf10f421461045657600080fd5b806370a08231146103375780637ecebe00146103645780638129fc1c1461039157806395d89b41146103a65780639c52a7f1146103d65780639dc29fac146103f657600080fd5b80633644e515116101235780633644e5151461028b57806340c10f19146102a05780634f1ef286146102c257806352d1902d146102d557806354fd4d50146102ea57806365fae35e1461031757600080fd5b806306fdde031461016b578063095ea7b3146101bc57806318160ddd146101ec57806323b872dd1461021057806330adf81f14610230578063313ce56714610264575b600080fd5b34801561017757600080fd5b506101a66040518060400160405280600f81526020016e2aa9a2299029ba30b13632b1b7b4b760891b81525081565b6040516101b391906115e9565b60405180910390f35b3480156101c857600080fd5b506101dc6101d7366004611618565b610539565b60405190151581526020016101b3565b3480156101f857600080fd5b5061020260015481565b6040519081526020016101b3565b34801561021c57600080fd5b506101dc61022b366004611642565b6105a6565b34801561023c57600080fd5b506102027f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b34801561027057600080fd5b50610279601281565b60405160ff90911681526020016101b3565b34801561029757600080fd5b50610202610742565b3480156102ac57600080fd5b506102c06102bb366004611618565b610752565b005b6102c06102d0366004611721565b610820565b3480156102e157600080fd5b5061020261083f565b3480156102f657600080fd5b506101a6604051806040016040528060018152602001603160f81b81525081565b34801561032357600080fd5b506102c061033236600461176f565b61085c565b34801561034357600080fd5b5061020261035236600461176f565b60026020526000908152604090205481565b34801561037057600080fd5b5061020261037f36600461176f565b60046020526000908152604090205481565b34801561039d57600080fd5b506102c06108d0565b3480156103b257600080fd5b506101a6604051806040016040528060048152602001635553445360e01b81525081565b3480156103e257600080fd5b506102c06103f136600461176f565b610a17565b34801561040257600080fd5b506102c0610411366004611618565b610a8a565b34801561042257600080fd5b506102c061043136600461178a565b610bc9565b34801561044257600080fd5b506101dc610451366004611618565b610de8565b34801561046257600080fd5b5061046b610eaf565b6040516001600160a01b0390911681526020016101b3565b34801561048f57600080fd5b506101a6604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156104c057600080fd5b506102026104cf36600461176f565b60006020819052908152604090205481565b3480156104ed57600080fd5b506102c06104fc3660046117fc565b610ed0565b34801561050d57600080fd5b5061020261051c36600461186f565b600360209081526000928352604080842090915290825290205481565b3360008181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105949086815260200190565b60405180910390a35060015b92915050565b60006001600160a01b038316158015906105c957506001600160a01b0383163014155b6105ee5760405162461bcd60e51b81526004016105e5906118a2565b60405180910390fd5b6001600160a01b038416600090815260026020526040902054828110156106275760405162461bcd60e51b81526004016105e5906118d0565b6001600160a01b03851633146106df576001600160a01b038516600090815260036020908152604080832033845290915290205460001981146106dd57838110156106b45760405162461bcd60e51b815260206004820152601b60248201527f557364732f696e73756666696369656e742d616c6c6f77616e6365000000000060448201526064016105e5565b6001600160a01b0386166000908152600360209081526040808320338452909152902084820390555b505b6001600160a01b0380861660008181526002602052604080822087860390559287168082529083902080548701905591516000805160206119f68339815191529061072d9087815260200190565b60405180910390a360019150505b9392505050565b600061074d46610f27565b905090565b336000908152602081905260409020546001146107815760405162461bcd60e51b81526004016105e590611907565b6001600160a01b038216158015906107a257506001600160a01b0382163014155b6107be5760405162461bcd60e51b81526004016105e5906118a2565b6001600160a01b03821660009081526002602052604090208054820190556001546107ea908290611934565b6001556040518181526001600160a01b038316906000906000805160206119f68339815191529060200160405180910390a35050565b610828610fff565b610831826110a6565b61083b82826110d8565b5050565b600061084961119a565b506000805160206119d683398151915290565b3360009081526020819052604090205460011461088b5760405162461bcd60e51b81526004016105e590611907565b6001600160a01b03811660008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a250565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff166000811580156109165750825b905060008267ffffffffffffffff1660011480156109335750303b155b905081158015610941575080155b1561095f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561098957845460ff60401b1916600160401b1785555b6109916111e3565b3360008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a28315610a1057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b33600090815260208190526040902054600114610a465760405162461bcd60e51b81526004016105e590611907565b6001600160a01b038116600081815260208190526040808220829055517f184450df2e323acec0ed3b5c7531b81f9b4cdef7914dfd4c0a4317416bb5251b9190a250565b6001600160a01b03821660009081526002602052604090205481811015610ac35760405162461bcd60e51b81526004016105e5906118d0565b6001600160a01b0383163314610b7b576001600160a01b03831660009081526003602090815260408083203384529091529020546000198114610b795782811015610b505760405162461bcd60e51b815260206004820152601b60248201527f557364732f696e73756666696369656e742d616c6c6f77616e6365000000000060448201526064016105e5565b6001600160a01b0384166000908152600360209081526040808320338452909152902083820390555b505b6001600160a01b03831660008181526002602090815260408083208686039055600180548790039055518581529192916000805160206119f6833981519152910160405180910390a3505050565b81421115610c0f5760405162461bcd60e51b8152602060048201526013602482015272155cd91ccbdc195c9b5a5d0b595e1c1a5c9959606a1b60448201526064016105e5565b6001600160a01b038516610c5a5760405162461bcd60e51b81526020600482015260126024820152712ab9b23997b4b73b30b634b216b7bbb732b960711b60448201526064016105e5565b6001600160a01b038516600090815260046020526040812080546001810190915590610c8546610f27565b604080517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960208201526001600160a01b03808b169282019290925290881660608201526080810187905260a0810184905260c0810186905260e00160405160208183030381529060405280519060200120604051602001610d1e92919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050610d418782856111eb565b610d835760405162461bcd60e51b8152602060048201526013602482015272155cd91ccbda5b9d985b1a590b5c195c9b5a5d606a1b60448201526064016105e5565b6001600160a01b038781166000818152600360209081526040808320948b168084529482529182902089905590518881527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60006001600160a01b03831615801590610e0b57506001600160a01b0383163014155b610e275760405162461bcd60e51b81526004016105e5906118a2565b3360009081526002602052604090205482811015610e575760405162461bcd60e51b81526004016105e5906118d0565b33600081815260026020908152604080832087860390556001600160a01b03881680845292819020805488019055518681529192916000805160206119f6833981519152910160405180910390a35060019392505050565b600061074d6000805160206119d6833981519152546001600160a01b031690565b610f1e87878787868689604051602001610f0a93929190928352602083019190915260f81b6001600160f81b031916604082015260410190565b604051602081830303815290604052610bc9565b50505050505050565b604080518082018252600f81526e2aa9a2299029ba30b13632b1b7b4b760891b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f2a23c41011e8e539e4f4084ffc24b3915572c705b02e784a519051e327b59f80818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101939093523060a0808501919091528251808503909101815260c0909301909152815191012090565b306001600160a01b037f000000000000000000000000191cd41681a3fe15aa15a0bec415821ce24cad5e16148061108657507f000000000000000000000000191cd41681a3fe15aa15a0bec415821ce24cad5e6001600160a01b031661107a6000805160206119d6833981519152546001600160a01b031690565b6001600160a01b031614155b156110a45760405163703e46dd60e11b815260040160405180910390fd5b565b336000908152602081905260409020546001146110d55760405162461bcd60e51b81526004016105e590611907565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611132575060408051601f3d908101601f1916820190925261112f91810190611955565b60015b61115a57604051634c9c8ce360e01b81526001600160a01b03831660048201526024016105e5565b6000805160206119d6833981519152811461118b57604051632a87526960e21b8152600481018290526024016105e5565b611195838361137b565b505050565b306001600160a01b037f000000000000000000000000191cd41681a3fe15aa15a0bec415821ce24cad5e16146110a45760405163703e46dd60e11b815260040160405180910390fd5b6110a46113d1565b6000815160410361128857602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa158015611256573d6000803e3d6000fd5b505050602060405103516001600160a01b0316876001600160a01b031603611284576001935050505061073b565b5050505b6001600160a01b0384163b1561073b57600080856001600160a01b031685856040516024016112b892919061196e565b60408051601f198184030181529181526020820180516001600160e01b0316630b135d3f60e11b179052516112ed919061198f565b600060405180830381855afa9150503d8060008114611328576040519150601f19603f3d011682016040523d82523d6000602084013e61132d565b606091505b5091509150818015611340575080516020145b801561137157508051630b135d3f60e11b9061136590830160209081019084016119ab565b6001600160e01b031916145b9695505050505050565b6113848261141a565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156113c957611195828261147f565b61083b6114f5565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166110a457604051631afcd79f60e31b815260040160405180910390fd5b806001600160a01b03163b60000361145057604051634c9c8ce360e01b81526001600160a01b03821660048201526024016105e5565b6000805160206119d683398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161149c919061198f565b600060405180830381855af49150503d80600081146114d7576040519150601f19603f3d011682016040523d82523d6000602084013e6114dc565b606091505b50915091506114ec858383611514565b95945050505050565b34156110a45760405163b398979f60e01b815260040160405180910390fd5b6060826115295761152482611570565b61073b565b815115801561154057506001600160a01b0384163b155b1561156957604051639996b31560e01b81526001600160a01b03851660048201526024016105e5565b508061073b565b8051156115805780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60005b838110156115b457818101518382015260200161159c565b50506000910152565b600081518084526115d5816020860160208601611599565b601f01601f19169290920160200192915050565b60208152600061073b60208301846115bd565b80356001600160a01b038116811461161357600080fd5b919050565b6000806040838503121561162b57600080fd5b611634836115fc565b946020939093013593505050565b60008060006060848603121561165757600080fd5b611660846115fc565b925061166e602085016115fc565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126116a557600080fd5b813567ffffffffffffffff808211156116c0576116c061167e565b604051601f8301601f19908116603f011681019082821181831017156116e8576116e861167e565b8160405283815286602085880101111561170157600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561173457600080fd5b61173d836115fc565b9150602083013567ffffffffffffffff81111561175957600080fd5b61176585828601611694565b9150509250929050565b60006020828403121561178157600080fd5b61073b826115fc565b600080600080600060a086880312156117a257600080fd5b6117ab866115fc565b94506117b9602087016115fc565b93506040860135925060608601359150608086013567ffffffffffffffff8111156117e357600080fd5b6117ef88828901611694565b9150509295509295909350565b600080600080600080600060e0888a03121561181757600080fd5b611820886115fc565b965061182e602089016115fc565b95506040880135945060608801359350608088013560ff8116811461185257600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561188257600080fd5b61188b836115fc565b9150611899602084016115fc565b90509250929050565b602080825260149082015273557364732f696e76616c69642d6164647265737360601b604082015260600190565b60208082526019908201527f557364732f696e73756666696369656e742d62616c616e636500000000000000604082015260600190565b602080825260139082015272155cd91ccbdb9bdd0b585d5d1a1bdc9a5e9959606a1b604082015260600190565b808201808211156105a057634e487b7160e01b600052601160045260246000fd5b60006020828403121561196757600080fd5b5051919050565b82815260406020820152600061198760408301846115bd565b949350505050565b600082516119a1818460208701611599565b9190910192915050565b6000602082840312156119bd57600080fd5b81516001600160e01b03198116811461073b57600080fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220550c7574fb30d9c06964ef3975158dbf0ca17117afe2edf12fee03b5ed7c13c164736f6c63430008150033
Deployed Bytecode Sourcemap
1076:7526:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1189:52;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1189:52:7;;;;;;;;;;;;:::i;:::-;;;;;;;;4944:202;;;;;;;;;;-1:-1:-1;4944:202:7;;;;;:::i;:::-;;:::i;:::-;;;1372:14:8;;1365:22;1347:41;;1335:2;1320:18;4944:202:7;1207:187:8;1381:26:7;;;;;;;;;;;;;;;;;;;1545:25:8;;;1533:2;1518:18;1381:26:7;1399:177:8;4039:899:7;;;;;;;;;;-1:-1:-1;4039:899:7;;;;;:::i;:::-;;:::i;1916:137::-;;;;;;;;;;;;1958:95;1916:137;;1338:37;;;;;;;;;;;;1373:2;1338:37;;;;;2268:4:8;2256:17;;;2238:36;;2226:2;2211:18;1338:37:7;2096:184:8;3093:124:7;;;;;;;;;;;;;:::i;5177:431::-;;;;;;;;;;-1:-1:-1;5177:431:7;;;;;:::i;:::-;;:::i;:::-;;4158:214:1;;;;;;:::i;:::-;;:::i;3705:134::-;;;;;;;;;;;;;:::i;1294:38:7:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1294:38:7;;;;;3253:96;;;;;;;;;;-1:-1:-1;3253:96:7;;;;;:::i;:::-;;:::i;1414:66::-;;;;;;;;;;-1:-1:-1;1414:66:7;;;;;:::i;:::-;;;;;;;;;;;;;;1558:63;;;;;;;;;;-1:-1:-1;1558:63:7;;;;;:::i;:::-;;;;;;;;;;;;;;2310:147;;;;;;;;;;;;;:::i;1247:41::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1247:41:7;;;;;3355:96;;;;;;;;;;-1:-1:-1;3355:96:7;;;;;:::i;:::-;;:::i;5614:794::-;;;;;;;;;;-1:-1:-1;5614:794:7;;;;;:::i;:::-;;:::i;7386:942::-;;;;;;;;;;-1:-1:-1;7386:942:7;;;;;:::i;:::-;;:::i;3488:545::-;;;;;;;;;;-1:-1:-1;3488:545:7;;;;;:::i;:::-;;:::i;2548:117::-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;4505:32:8;;;4487:51;;4475:2;4460:18;2548:117:7;4341:203:8;1819:58:1;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1819:58:1;;;;;1115:41:7;;;;;;;;;;-1:-1:-1;1115:41:7;;;;;:::i;:::-;;;;;;;;;;;;;;;8334:266;;;;;;;;;;-1:-1:-1;8334:266:7;;;;;:::i;:::-;;:::i;1486:66::-;;;;;;;;;;-1:-1:-1;1486:66:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;4944:202;5037:10;5011:4;5027:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;5027:30:7;;;;;;;;;;:38;;;5081:36;5011:4;;5027:30;;5081:36;;;;5060:5;1545:25:8;;1533:2;1518:18;;1399:177;5081:36:7;;;;;;;;-1:-1:-1;5135:4:7;4944:202;;;;;:::o;4039:899::-;4120:4;-1:-1:-1;;;;;4144:16:7;;;;;;:39;;-1:-1:-1;;;;;;4164:19:7;;4178:4;4164:19;;4144:39;4136:72;;;;-1:-1:-1;;;4136:72:7;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;4236:15:7;;4218;4236;;;:9;:15;;;;;;4269:16;;;;4261:54;;;;-1:-1:-1;;;4261:54:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;4330:18:7;;4338:10;4330:18;4326:344;;-1:-1:-1;;;;;4382:15:7;;4364;4382;;;:9;:15;;;;;;;;4398:10;4382:27;;;;;;;;-1:-1:-1;;4427:28:7;;4423:237;;4494:5;4483:7;:16;;4475:56;;;;-1:-1:-1;;;4475:56:7;;6417:2:8;4475:56:7;;;6399:21:8;6456:2;6436:18;;;6429:30;6495:29;6475:18;;;6468:57;6542:18;;4475:56:7;6215:351:8;4475:56:7;-1:-1:-1;;;;;4582:15:7;;;;;;:9;:15;;;;;;;;4598:10;4582:27;;;;;;;4612:15;;;4582:45;;4423:237;4350:320;4326:344;-1:-1:-1;;;;;4704:15:7;;;;;;;:9;:15;;;;;;4722;;;4704:33;;4751:13;;;;;;;;;;:22;;;;;;4884:25;;-1:-1:-1;;;;;;;;;;;4884:25:7;;;4732:5;1545:25:8;;1533:2;1518:18;;1399:177;4884:25:7;;;;;;;;4927:4;4920:11;;;4039:899;;;;;;:::o;3093:124::-;3144:7;3170:40;3196:13;3170:25;:40::i;:::-;3163:47;;3093:124;:::o;5177:431::-;2098:10;2092:5;:17;;;;;;;;;;;2113:1;2092:22;2084:54;;;;-1:-1:-1;;;2084:54:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;5250:16:7;::::1;::::0;;::::1;::::0;:39:::1;;-1:-1:-1::0;;;;;;5270:19:7;::::1;5284:4;5270:19;;5250:39;5242:72;;;;-1:-1:-1::0;;;5242:72:7::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5364:13:7;::::1;;::::0;;;:9:::1;:13;::::0;;;;;;:21;::::1;5348:37:::0;;-1:-1:-1;5535:11:7;:19:::1;::::0;5380:5;;5535:19:::1;:::i;:::-;5521:11;:33:::0;5570:31:::1;::::0;1545:25:8;;;-1:-1:-1;;;;;5570:31:7;::::1;::::0;5587:1:::1;::::0;-1:-1:-1;;;;;;;;;;;5570:31:7;1533:2:8;1518:18;5570:31:7::1;;;;;;;5177:431:::0;;:::o;4158:214:1:-;2653:13;:11;:13::i;:::-;4273:36:::1;4291:17;4273;:36::i;:::-;4319:46;4341:17;4360:4;4319:21;:46::i;:::-;4158:214:::0;;:::o;3705:134::-;3774:7;2924:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3705:134:1;:::o;3253:96:7:-;2098:10;2092:5;:17;;;;;;;;;;;2113:1;2092:22;2084:54;;;;-1:-1:-1;;;2084:54:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;3304:10:7;::::1;:5;:10:::0;;;::::1;::::0;;;;;;;3317:1:::1;3304:14:::0;;3333:9;::::1;::::0;3304:5;3333:9:::1;3253:96:::0;:::o;2310:147::-;8870:21:0;4302:15;;-1:-1:-1;;;4302:15:0;;;;4301:16;;4348:14;;4158:30;4726:16;;:34;;;;;4746:14;4726:34;4706:54;;4770:17;4790:11;:16;;4805:1;4790:16;:50;;;;-1:-1:-1;4818:4:0;4810:25;:30;4790:50;4770:70;;4856:12;4855:13;:30;;;;;4873:12;4872:13;4855:30;4851:91;;;4908:23;;-1:-1:-1;;;4908:23:0;;;;;;;;;;;4851:91;4951:18;;-1:-1:-1;;4951:18:0;4968:1;4951:18;;;4979:67;;;;5013:22;;-1:-1:-1;;;;5013:22:0;-1:-1:-1;;;5013:22:0;;;4979:67;2363:24:7::1;:22;:24::i;:::-;2404:10;2398:5;:17:::0;;;::::1;::::0;;;;;;;2418:1:::1;2398:21:::0;;2434:16;::::1;::::0;2398:5;2434:16:::1;5070:14:0::0;5066:101;;;5100:23;;-1:-1:-1;;;;5100:23:0;;;5142:14;;-1:-1:-1;7299:50:8;;5142:14:0;;7287:2:8;7272:18;5142:14:0;;;;;;;5066:101;4092:1081;;;;;2310:147:7:o;3355:96::-;2098:10;2092:5;:17;;;;;;;;;;;2113:1;2092:22;2084:54;;;;-1:-1:-1;;;2084:54:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;3406:10:7;::::1;3419:1;3406:10:::0;;;::::1;::::0;;;;;;;:14;;;3435:9;::::1;::::0;3419:1;3435:9:::1;3355:96:::0;:::o;5614:794::-;-1:-1:-1;;;;;5694:15:7;;5676;5694;;;:9;:15;;;;;;5727:16;;;;5719:54;;;;-1:-1:-1;;;5719:54:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;5788:18:7;;5796:10;5788:18;5784:344;;-1:-1:-1;;;;;5840:15:7;;5822;5840;;;:9;:15;;;;;;;;5856:10;5840:27;;;;;;;;-1:-1:-1;;5885:28:7;;5881:237;;5952:5;5941:7;:16;;5933:56;;;;-1:-1:-1;;;5933:56:7;;6417:2:8;5933:56:7;;;6399:21:8;6456:2;6436:18;;;6429:30;6495:29;6475:18;;;6468:57;6542:18;;5933:56:7;6215:351:8;5933:56:7;-1:-1:-1;;;;;6040:15:7;;;;;;:9;:15;;;;;;;;6056:10;6040:27;;;;;;;6070:15;;;6040:45;;5881:237;5808:320;5784:344;-1:-1:-1;;;;;6162:15:7;;;;;;:9;:15;;;;;;;;6180;;;6162:33;;6323:11;;;:19;;;6305:37;;6368:33;1545:25:8;;;6162:15:7;;;-1:-1:-1;;;;;;;;;;;6368:33:7;1518:18:8;6368:33:7;;;;;;;5666:742;5614:794;;:::o;7386:942::-;7581:8;7562:15;:27;;7554:59;;;;-1:-1:-1;;;7554:59:7;;7562:2:8;7554:59:7;;;7544:21:8;7601:2;7581:18;;;7574:30;-1:-1:-1;;;7620:18:8;;;7613:49;7679:18;;7554:59:7;7360:343:8;7554:59:7;-1:-1:-1;;;;;7631:19:7;;7623:50;;;;-1:-1:-1;;;7623:50:7;;7910:2:8;7623:50:7;;;7892:21:8;7949:2;7929:18;;;7922:30;-1:-1:-1;;;7968:18:8;;;7961:48;8026:18;;7623:50:7;7708:342:8;7623:50:7;-1:-1:-1;;;;;7727:13:7;;7684;7727;;;:6;:13;;;;;:15;;;;;;;;;7856:40;7882:13;7856:25;:40::i;:::-;7924:205;;;1958:95;7924:205;;;8342:25:8;-1:-1:-1;;;;;8441:15:8;;;8421:18;;;8414:43;;;;8493:15;;;8473:18;;;8466:43;8525:18;;;8518:34;;;8568:19;;;8561:35;;;8612:19;;;8605:35;;;8314:19;;7924:205:7;;;;;;;;;;;;7914:216;;;;;;7794:350;;;;;;;;-1:-1:-1;;;8909:27:8;;8961:1;8952:11;;8945:27;;;;8997:2;8988:12;;8981:28;9034:2;9025:12;;8651:392;7794:350:7;;;;;;;;;;;;;7784:361;;;;;;7755:390;;8164:43;8182:5;8189:6;8197:9;8164:17;:43::i;:::-;8156:75;;;;-1:-1:-1;;;8156:75:7;;9250:2:8;8156:75:7;;;9232:21:8;9289:2;9269:18;;;9262:30;-1:-1:-1;;;9308:18:8;;;9301:49;9367:18;;8156:75:7;9048:343:8;8156:75:7;-1:-1:-1;;;;;8242:16:7;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;8290:31;;1545:25:8;;;8290:31:7;;1518:18:8;8290:31:7;;;;;;;7544:784;;7386:942;;;;;:::o;3488:545::-;3551:4;-1:-1:-1;;;;;3575:16:7;;;;;;:39;;-1:-1:-1;;;;;;3595:19:7;;3609:4;3595:19;;3575:39;3567:72;;;;-1:-1:-1;;;3567:72:7;;;;;;;:::i;:::-;3677:10;3649:15;3667:21;;;:9;:21;;;;;;3706:16;;;;3698:54;;;;-1:-1:-1;;;3698:54:7;;;;;;;:::i;:::-;3797:10;3787:21;;;;:9;:21;;;;;;;;3811:15;;;3787:39;;-1:-1:-1;;;;;3840:13:7;;;;;;;;;:22;;;;;;3973:31;1545:25:8;;;3840:13:7;;3797:10;-1:-1:-1;;;;;;;;;;;3973:31:7;1518:18:8;3973:31:7;;;;;;;-1:-1:-1;4022:4:7;;3488:545;-1:-1:-1;;;3488:545:7:o;2548:117::-;2600:7;2626:32;-1:-1:-1;;;;;;;;;;;2035:53:3;-1:-1:-1;;;;;2035:53:3;;1957:138;8334:266:7;8527:66;8534:5;8541:7;8550:5;8557:8;8584:1;8587;8590;8567:25;;;;;;;;;9577:19:8;;;9621:2;9612:12;;9605:28;;;;9689:3;9667:16;-1:-1:-1;;;;;;9663:36:8;9658:2;9649:12;;9642:58;9725:2;9716:12;;9396:338;8567:25:7;;;;;;;;;;;;;8527:6;:66::i;:::-;8334:266;;;;;;;:::o;2671:416::-;2951:4;;;;;;;;;;;-1:-1:-1;;;2951:4:7;;;;;2991:7;;;;;;;;;;-1:-1:-1;;;2991:7:7;;;;2794:276;;2822:95;2794:276;;;9998:25:8;2935:22:7;10039:18:8;;;10032:34;2975:25:7;10082:18:8;;;10075:34;10125:18;;;10118:34;;;;3051:4:7;10168:19:8;;;;10161:61;;;;2794:276:7;;;;;;;;;;9970:19:8;;;;2794:276:7;;;2771:309;;;;;;2671:416::o;4599:312:1:-;4679:4;-1:-1:-1;;;;;4688:6:1;4671:23;;;:120;;;4785:6;-1:-1:-1;;;;;4749:42:1;:32;-1:-1:-1;;;;;;;;;;;2035:53:3;-1:-1:-1;;;;;2035:53:3;;1957:138;4749:32:1;-1:-1:-1;;;;;4749:42:1;;;4671:120;4654:251;;;4865:29;;-1:-1:-1;;;4865:29:1;;;;;;;;;;;4654:251;4599:312::o;2463:79:7:-;2098:10;2092:5;:17;;;;;;;;;;;2113:1;2092:22;2084:54;;;;-1:-1:-1;;;2084:54:7;;;;;;;:::i;:::-;2463:79;:::o;6052:538:1:-;6169:17;-1:-1:-1;;;;;6151:50:1;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6151:52:1;;;;;;;;-1:-1:-1;;6151:52:1;;;;;;;;;;;;:::i;:::-;;;6147:437;;6513:60;;-1:-1:-1;;;6513:60:1;;-1:-1:-1;;;;;4505:32:8;;6513:60:1;;;4487:51:8;4460:18;;6513:60:1;4341:203:8;6147:437:1;-1:-1:-1;;;;;;;;;;;6245:40:1;;6241:120;;6312:34;;-1:-1:-1;;;6312:34:1;;;;;1545:25:8;;;1518:18;;6312:34:1;1399:177:8;6241:120:1;6374:54;6404:17;6423:4;6374:29;:54::i;:::-;6204:235;6052:538;;:::o;5028:213::-;5102:4;-1:-1:-1;;;;;5111:6:1;5094:23;;5090:145;;5195:29;;-1:-1:-1;;;5195:29:1;;;;;;;;;;;2968:67;6931:20:0;:18;:20::i;6450:930:7:-;6586:10;6612:9;:16;6632:2;6612:22;6608:398;;6770:4;6755:20;;;6749:27;6819:4;6804:20;;;6798:27;6876:4;6861:20;;;6855:27;6924:26;;6650:9;6924:26;;;;;;;;;10649:25:8;;;6847:36:7;;10690:18:8;;;10683:45;;;10744:18;;10737:34;;;10787:18;;;10780:34;;;6749:27:7;;6924:26;;10621:19:8;;6924:26:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6914:36:7;:6;-1:-1:-1;;;;;6914:36:7;;6910:86;;6977:4;6970:11;;;;;;;6910:86;6636:370;;;6608:398;-1:-1:-1;;;;;7020:18:7;;;:22;7016:358;;7059:12;7073:19;7096:6;-1:-1:-1;;;;;7096:17:7;7174:6;7182:9;7131:62;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;7131:62:7;;;;;;;;;;;;;;-1:-1:-1;;;;;7131:62:7;-1:-1:-1;;;7131:62:7;;;7096:111;;;7131:62;7096:111;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7058:149;;;;7230:7;:46;;;;;7257:6;:13;7274:2;7257:19;7230:46;:132;;;;-1:-1:-1;7296:28:7;;-1:-1:-1;;;7328:34:7;7296:28;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;7296:66:7;;7230:132;7221:142;6450:930;-1:-1:-1;;;;;;6450:930:7:o;2779:335:3:-;2870:37;2889:17;2870:18;:37::i;:::-;2922:27;;-1:-1:-1;;;;;2922:27:3;;;;;;;;2964:11;;:15;2960:148;;2995:53;3024:17;3043:4;2995:28;:53::i;2960:148::-;3079:18;:16;:18::i;7084:141:0:-;8870:21;8560:40;-1:-1:-1;;;8560:40:0;;;;7146:73;;7191:17;;-1:-1:-1;;;7191:17:0;;;;;;;;;;;2186:281:3;2263:17;-1:-1:-1;;;;;2263:29:3;;2296:1;2263:34;2259:119;;2320:47;;-1:-1:-1;;;2320:47:3;;-1:-1:-1;;;;;4505:32:8;;2320:47:3;;;4487:51:8;4460:18;;2320:47:3;4341:203:8;2259:119:3;-1:-1:-1;;;;;;;;;;;2387:73:3;;-1:-1:-1;;;;;;2387:73:3;-1:-1:-1;;;;;2387:73:3;;;;;;;;;;2186:281::o;4106:253:5:-;4189:12;4214;4228:23;4255:6;-1:-1:-1;;;;;4255:19:5;4275:4;4255:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4213:67;;;;4297:55;4324:6;4332:7;4341:10;4297:26;:55::i;:::-;4290:62;4106:253;-1:-1:-1;;;;;4106:253:5:o;6598:122:3:-;6648:9;:13;6644:70;;6684:19;;-1:-1:-1;;;6684:19:3;;;;;;;;;;;4625:582:5;4769:12;4798:7;4793:408;;4821:19;4829:10;4821:7;:19::i;:::-;4793:408;;;5045:17;;:22;:49;;;;-1:-1:-1;;;;;;5071:18:5;;;:23;5045:49;5041:119;;;5121:24;;-1:-1:-1;;;5121:24:5;;-1:-1:-1;;;;;4505:32:8;;5121:24:5;;;4487:51:8;4460:18;;5121:24:5;4341:203:8;5041:119:5;-1:-1:-1;5180:10:5;5173:17;;5743:516;5874:17;;:21;5870:383;;6102:10;6096:17;6158:15;6145:10;6141:2;6137:19;6130:44;5870:383;6225:17;;-1:-1:-1;;;6225:17:5;;;;;;;;;;;14:250:8;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:8;238:16;;231:27;14:250::o;269:271::-;311:3;349:5;343:12;376:6;371:3;364:19;392:76;461:6;454:4;449:3;445:14;438:4;431:5;427:16;392:76;:::i;:::-;522:2;501:15;-1:-1:-1;;497:29:8;488:39;;;;529:4;484:50;;269:271;-1:-1:-1;;269:271:8:o;545:220::-;694:2;683:9;676:21;657:4;714:45;755:2;744:9;740:18;732:6;714:45;:::i;770:173::-;838:20;;-1:-1:-1;;;;;887:31:8;;877:42;;867:70;;933:1;930;923:12;867:70;770:173;;;:::o;948:254::-;1016:6;1024;1077:2;1065:9;1056:7;1052:23;1048:32;1045:52;;;1093:1;1090;1083:12;1045:52;1116:29;1135:9;1116:29;:::i;:::-;1106:39;1192:2;1177:18;;;;1164:32;;-1:-1:-1;;;948:254:8:o;1581:328::-;1658:6;1666;1674;1727:2;1715:9;1706:7;1702:23;1698:32;1695:52;;;1743:1;1740;1733:12;1695:52;1766:29;1785:9;1766:29;:::i;:::-;1756:39;;1814:38;1848:2;1837:9;1833:18;1814:38;:::i;:::-;1804:48;;1899:2;1888:9;1884:18;1871:32;1861:42;;1581:328;;;;;:::o;2285:127::-;2346:10;2341:3;2337:20;2334:1;2327:31;2377:4;2374:1;2367:15;2401:4;2398:1;2391:15;2417:718;2459:5;2512:3;2505:4;2497:6;2493:17;2489:27;2479:55;;2530:1;2527;2520:12;2479:55;2566:6;2553:20;2592:18;2629:2;2625;2622:10;2619:36;;;2635:18;;:::i;:::-;2710:2;2704:9;2678:2;2764:13;;-1:-1:-1;;2760:22:8;;;2784:2;2756:31;2752:40;2740:53;;;2808:18;;;2828:22;;;2805:46;2802:72;;;2854:18;;:::i;:::-;2894:10;2890:2;2883:22;2929:2;2921:6;2914:18;2975:3;2968:4;2963:2;2955:6;2951:15;2947:26;2944:35;2941:55;;;2992:1;2989;2982:12;2941:55;3056:2;3049:4;3041:6;3037:17;3030:4;3022:6;3018:17;3005:54;3103:1;3096:4;3091:2;3083:6;3079:15;3075:26;3068:37;3123:6;3114:15;;;;;;2417:718;;;;:::o;3140:394::-;3217:6;3225;3278:2;3266:9;3257:7;3253:23;3249:32;3246:52;;;3294:1;3291;3284:12;3246:52;3317:29;3336:9;3317:29;:::i;:::-;3307:39;;3397:2;3386:9;3382:18;3369:32;3424:18;3416:6;3413:30;3410:50;;;3456:1;3453;3446:12;3410:50;3479:49;3520:7;3511:6;3500:9;3496:22;3479:49;:::i;:::-;3469:59;;;3140:394;;;;;:::o;3539:186::-;3598:6;3651:2;3639:9;3630:7;3626:23;3622:32;3619:52;;;3667:1;3664;3657:12;3619:52;3690:29;3709:9;3690:29;:::i;3730:606::-;3834:6;3842;3850;3858;3866;3919:3;3907:9;3898:7;3894:23;3890:33;3887:53;;;3936:1;3933;3926:12;3887:53;3959:29;3978:9;3959:29;:::i;:::-;3949:39;;4007:38;4041:2;4030:9;4026:18;4007:38;:::i;:::-;3997:48;;4092:2;4081:9;4077:18;4064:32;4054:42;;4143:2;4132:9;4128:18;4115:32;4105:42;;4198:3;4187:9;4183:19;4170:33;4226:18;4218:6;4215:30;4212:50;;;4258:1;4255;4248:12;4212:50;4281:49;4322:7;4313:6;4302:9;4298:22;4281:49;:::i;:::-;4271:59;;;3730:606;;;;;;;;:::o;4549:693::-;4660:6;4668;4676;4684;4692;4700;4708;4761:3;4749:9;4740:7;4736:23;4732:33;4729:53;;;4778:1;4775;4768:12;4729:53;4801:29;4820:9;4801:29;:::i;:::-;4791:39;;4849:38;4883:2;4872:9;4868:18;4849:38;:::i;:::-;4839:48;;4934:2;4923:9;4919:18;4906:32;4896:42;;4985:2;4974:9;4970:18;4957:32;4947:42;;5039:3;5028:9;5024:19;5011:33;5084:4;5077:5;5073:16;5066:5;5063:27;5053:55;;5104:1;5101;5094:12;5053:55;4549:693;;;;-1:-1:-1;4549:693:8;;;;5127:5;5179:3;5164:19;;5151:33;;-1:-1:-1;5231:3:8;5216:19;;;5203:33;;4549:693;-1:-1:-1;;4549:693:8:o;5247:260::-;5315:6;5323;5376:2;5364:9;5355:7;5351:23;5347:32;5344:52;;;5392:1;5389;5382:12;5344:52;5415:29;5434:9;5415:29;:::i;:::-;5405:39;;5463:38;5497:2;5486:9;5482:18;5463:38;:::i;:::-;5453:48;;5247:260;;;;;:::o;5512:344::-;5714:2;5696:21;;;5753:2;5733:18;;;5726:30;-1:-1:-1;;;5787:2:8;5772:18;;5765:50;5847:2;5832:18;;5512:344::o;5861:349::-;6063:2;6045:21;;;6102:2;6082:18;;;6075:30;6141:27;6136:2;6121:18;;6114:55;6201:2;6186:18;;5861:349::o;6571:343::-;6773:2;6755:21;;;6812:2;6792:18;;;6785:30;-1:-1:-1;;;6846:2:8;6831:18;;6824:49;6905:2;6890:18;;6571:343::o;6919:222::-;6984:9;;;7005:10;;;7002:133;;;7057:10;7052:3;7048:20;7045:1;7038:31;7092:4;7089:1;7082:15;7120:4;7117:1;7110:15;10233:184;10303:6;10356:2;10344:9;10335:7;10331:23;10327:32;10324:52;;;10372:1;10369;10362:12;10324:52;-1:-1:-1;10395:16:8;;10233:184;-1:-1:-1;10233:184:8:o;10825:289::-;11000:6;10989:9;10982:25;11043:2;11038;11027:9;11023:18;11016:30;10963:4;11063:45;11104:2;11093:9;11089:18;11081:6;11063:45;:::i;:::-;11055:53;10825:289;-1:-1:-1;;;;10825:289:8:o;11119:287::-;11248:3;11286:6;11280:13;11302:66;11361:6;11356:3;11349:4;11341:6;11337:17;11302:66;:::i;:::-;11384:16;;;;;11119:287;-1:-1:-1;;11119:287:8:o;11411:290::-;11480:6;11533:2;11521:9;11512:7;11508:23;11504:32;11501:52;;;11549:1;11546;11539:12;11501:52;11575:16;;-1:-1:-1;;;;;;11620:32:8;;11610:43;;11600:71;;11667:1;11664;11657:12
Swarm Source
ipfs://550c7574fb30d9c06964ef3975158dbf0ca17117afe2edf12fee03b5ed7c13c1
Loading...
Loading
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.