Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 21674338 | 298 days ago | IN | 0 ETH | 0.00082463 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
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:
SUsds
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0-or-later
/// SUsds.sol
// Copyright (C) 2017, 2018, 2019 dbrock, rain, mrchico
// Copyright (C) 2021 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);
}
interface VatLike {
function hope(address) external;
function suck(address, address, uint256) external;
}
interface UsdsJoinLike {
function vat() external view returns (address);
function usds() external view returns (address);
function exit(address, uint256) external;
}
interface UsdsLike {
function transfer(address, uint256) external;
function transferFrom(address, address, uint256) external;
}
contract SUsds is UUPSUpgradeable {
// --- Storage Variables ---
// Admin
mapping (address => uint256) public wards;
// ERC20
uint256 public totalSupply;
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
mapping (address => uint256) public nonces;
// Savings yield
uint192 public chi; // The Rate Accumulator [ray]
uint64 public rho; // Time of last drip [unix epoch time]
uint256 public ssr; // The USDS Savings Rate [ray]
// --- Constants ---
// ERC20
string public constant name = "Savings USDS";
string public constant symbol = "sUSDS";
string public constant version = "1";
uint8 public constant decimals = 18;
// Math
uint256 private constant RAY = 10 ** 27;
// --- Immutables ---
// EIP712
bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
// Savings yield
UsdsJoinLike public immutable usdsJoin;
VatLike public immutable vat;
UsdsLike public immutable usds;
address public immutable vow;
// --- Events ---
// Admin
event Rely(address indexed usr);
event Deny(address indexed usr);
event File(bytes32 indexed what, uint256 data);
// ERC20
event Approval(address indexed owner, address indexed spender, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
// ERC4626
event Deposit(address indexed sender, address indexed owner, uint256 assets, uint256 shares);
event Withdraw(address indexed sender, address indexed receiver, address indexed owner, uint256 assets, uint256 shares);
// Referral
event Referral(uint16 indexed referral, address indexed owner, uint256 assets, uint256 shares);
// Savings yield
event Drip(uint256 chi, uint256 diff);
// --- Modifiers ---
modifier auth {
require(wards[msg.sender] == 1, "SUsds/not-authorized");
_;
}
// --- Constructor ---
constructor(address usdsJoin_, address vow_) {
_disableInitializers(); // Avoid initializing in the context of the implementation
usdsJoin = UsdsJoinLike(usdsJoin_);
vat = VatLike(UsdsJoinLike(usdsJoin_).vat());
usds = UsdsLike(UsdsJoinLike(usdsJoin_).usds());
vow = vow_;
}
// --- Upgradability ---
function initialize() initializer external {
__UUPSUpgradeable_init();
chi = uint192(RAY);
rho = uint64(block.timestamp);
ssr = RAY;
vat.hope(address(usdsJoin));
wards[msg.sender] = 1;
emit Rely(msg.sender);
}
function _authorizeUpgrade(address newImplementation) internal override auth {}
function getImplementation() external view returns (address) {
return ERC1967Utils.getImplementation();
}
// --- Internals ---
// EIP712
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);
}
// Math
function _rpow(uint256 x, uint256 n) internal pure returns (uint256 z) {
assembly {
switch x case 0 {switch n case 0 {z := RAY} default {z := 0}}
default {
switch mod(n, 2) case 0 { z := RAY } default { z := x }
let half := div(RAY, 2) // for rounding.
for { n := div(n, 2) } n { n := div(n,2) } {
let xx := mul(x, x)
if iszero(eq(div(xx, x), x)) { revert(0,0) }
let xxRound := add(xx, half)
if lt(xxRound, xx) { revert(0,0) }
x := div(xxRound, RAY)
if mod(n,2) {
let zx := mul(z, x)
if and(iszero(iszero(x)), iszero(eq(div(zx, x), z))) { revert(0,0) }
let zxRound := add(zx, half)
if lt(zxRound, zx) { revert(0,0) }
z := div(zxRound, RAY)
}
}
}
}
}
function _divup(uint256 x, uint256 y) internal pure returns (uint256 z) {
// Note: _divup(0,0) will return 0 differing from natural solidity division
unchecked {
z = x != 0 ? ((x - 1) / y) + 1 : 0;
}
}
// --- Admin external functions ---
function rely(address usr) external auth {
wards[usr] = 1;
emit Rely(usr);
}
function deny(address usr) external auth {
wards[usr] = 0;
emit Deny(usr);
}
function file(bytes32 what, uint256 data) external auth {
if (what == "ssr") {
require(data >= RAY, "SUsds/wrong-ssr-value");
require(rho == block.timestamp, "SUsds/chi-not-up-to-date");
ssr = data;
} else revert("SUsds/file-unrecognized-param");
emit File(what, data);
}
// --- Savings Rate Accumulation external/internal function ---
function drip() public returns (uint256 nChi) {
(uint256 chi_, uint256 rho_) = (chi, rho);
uint256 diff;
if (block.timestamp > rho_) {
nChi = _rpow(ssr, block.timestamp - rho_) * chi_ / RAY;
uint256 totalSupply_ = totalSupply;
diff = totalSupply_ * nChi / RAY - totalSupply_ * chi_ / RAY;
vat.suck(address(vow), address(this), diff * RAY);
usdsJoin.exit(address(this), diff);
chi = uint192(nChi); // safe as nChi is limited to maxUint256/RAY (which is < maxUint192)
rho = uint64(block.timestamp);
} else {
nChi = chi_;
}
emit Drip(nChi, diff);
}
// --- ERC20 Mutations ---
function transfer(address to, uint256 value) external returns (bool) {
require(to != address(0) && to != address(this), "SUsds/invalid-address");
uint256 balance = balanceOf[msg.sender];
require(balance >= value, "SUsds/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), "SUsds/invalid-address");
uint256 balance = balanceOf[from];
require(balance >= value, "SUsds/insufficient-balance");
if (from != msg.sender) {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max) {
require(allowed >= value, "SUsds/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 Internal ---
function _mint(uint256 assets, uint256 shares, address receiver) internal {
require(receiver != address(0) && receiver != address(this), "SUsds/invalid-address");
usds.transferFrom(msg.sender, address(this), assets);
unchecked {
balanceOf[receiver] = balanceOf[receiver] + shares; // note: we don't need an overflow check here b/c balanceOf[receiver] <= totalSupply
totalSupply = totalSupply + shares; // note: we don't need an overflow check here b/c shares totalSupply will always be <= usds totalSupply
}
emit Deposit(msg.sender, receiver, assets, shares);
emit Transfer(address(0), receiver, shares);
}
function _burn(uint256 assets, uint256 shares, address receiver, address owner) internal {
uint256 balance = balanceOf[owner];
require(balance >= shares, "SUsds/insufficient-balance");
if (owner != msg.sender) {
uint256 allowed = allowance[owner][msg.sender];
if (allowed != type(uint256).max) {
require(allowed >= shares, "SUsds/insufficient-allowance");
unchecked {
allowance[owner][msg.sender] = allowed - shares;
}
}
}
unchecked {
balanceOf[owner] = balance - shares; // note: we don't need overflow checks b/c require(balance >= shares) and balance <= totalSupply
totalSupply = totalSupply - shares;
}
usds.transfer(receiver, assets);
emit Transfer(owner, address(0), shares);
emit Withdraw(msg.sender, receiver, owner, assets, shares);
}
// --- ERC-4626 ---
function asset() external view returns (address) {
return address(usds);
}
function totalAssets() external view returns (uint256) {
return convertToAssets(totalSupply);
}
function convertToShares(uint256 assets) public view returns (uint256) {
uint256 chi_ = (block.timestamp > rho) ? _rpow(ssr, block.timestamp - rho) * chi / RAY : chi;
return assets * RAY / chi_;
}
function convertToAssets(uint256 shares) public view returns (uint256) {
uint256 chi_ = (block.timestamp > rho) ? _rpow(ssr, block.timestamp - rho) * chi / RAY : chi;
return shares * chi_ / RAY;
}
function maxDeposit(address) external pure returns (uint256) {
return type(uint256).max;
}
function previewDeposit(uint256 assets) external view returns (uint256) {
return convertToShares(assets);
}
function deposit(uint256 assets, address receiver) public returns (uint256 shares) {
shares = assets * RAY / drip();
_mint(assets, shares, receiver);
}
function deposit(uint256 assets, address receiver, uint16 referral) external returns (uint256 shares) {
shares = deposit(assets, receiver);
emit Referral(referral, receiver, assets, shares);
}
function maxMint(address) external pure returns (uint256) {
return type(uint256).max;
}
function previewMint(uint256 shares) external view returns (uint256) {
uint256 chi_ = (block.timestamp > rho) ? _rpow(ssr, block.timestamp - rho) * chi / RAY : chi;
return _divup(shares * chi_, RAY);
}
function mint(uint256 shares, address receiver) public returns (uint256 assets) {
assets = _divup(shares * drip(), RAY);
_mint(assets, shares, receiver);
}
function mint(uint256 shares, address receiver, uint16 referral) external returns (uint256 assets) {
assets = mint(shares, receiver);
emit Referral(referral, receiver, assets, shares);
}
function maxWithdraw(address owner) external view returns (uint256) {
return convertToAssets(balanceOf[owner]);
}
function previewWithdraw(uint256 assets) external view returns (uint256) {
uint256 chi_ = (block.timestamp > rho) ? _rpow(ssr, block.timestamp - rho) * chi / RAY : chi;
return _divup(assets * RAY, chi_);
}
function withdraw(uint256 assets, address receiver, address owner) external returns (uint256 shares) {
shares = _divup(assets * RAY, drip());
_burn(assets, shares, receiver, owner);
}
function maxRedeem(address owner) external view returns (uint256) {
return balanceOf[owner];
}
function previewRedeem(uint256 shares) external view returns (uint256) {
return convertToAssets(shares);
}
function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets) {
assets = shares * drip() / RAY;
_burn(assets, shares, receiver, owner);
}
// --- 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, "SUsds/permit-expired");
require(owner != address(0), "SUsds/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), "SUsds/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/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/"
],
"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":[{"internalType":"address","name":"usdsJoin_","type":"address"},{"internalType":"address","name":"vow_","type":"address"}],"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":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"chi","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"diff","type":"uint256"}],"name":"Drip","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"data","type":"uint256"}],"name":"File","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"referral","type":"uint16"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Referral","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","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":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chi","outputs":[{"internalType":"uint192","name":"","type":"uint192"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"usr","type":"address"}],"name":"deny","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint16","name":"referral","type":"uint16"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"drip","outputs":[{"internalType":"uint256","name":"nChi","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"uint256","name":"data","type":"uint256"}],"name":"file","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":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint16","name":"referral","type":"uint16"}],"name":"mint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"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":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"usr","type":"address"}],"name":"rely","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rho","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ssr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"usds","outputs":[{"internalType":"contract UsdsLike","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdsJoin","outputs":[{"internalType":"contract UsdsJoinLike","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vat","outputs":[{"internalType":"contract VatLike","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vow","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
610120604052306080523480156200001657600080fd5b5060405162002ee438038062002ee483398101604081905262000039916200021d565b620000436200014c565b6001600160a01b03821660a0819052604080516336569e7760e01b815290516336569e77916004808201926020929091908290030181865afa1580156200008e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000b4919062000255565b6001600160a01b031660c0816001600160a01b031681525050816001600160a01b0316634cf282fb6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200010c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000132919062000255565b6001600160a01b0390811660e0521661010052506200027a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156200019d5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001fd5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b80516001600160a01b03811681146200021857600080fd5b919050565b600080604083850312156200023157600080fd5b6200023c8362000200565b91506200024c6020840162000200565b90509250929050565b6000602082840312156200026857600080fd5b620002738262000200565b9392505050565b60805160a05160c05160e05161010051612bdf62000305600039600081816106440152611456015260008181610543015281816105bb01528181611f3101526122f90152600081816104fa01528181611193015261142f015260008181610a0601528181611162015261150c015260008181611cf901528181611d220152611e940152612bdf6000f3fe6080604052600436106102c95760003560e01c806370a0823111610175578063b3d7f6b9116100dc578063c92aecc411610095578063d905777e1161006f578063d905777e14610966578063dd62ed3e1461099c578063ef8b30f7146109d4578063fa1e2e86146109f457600080fd5b8063c92aecc4146108ee578063ce96cb7714610926578063d505accf1461094657600080fd5b8063b3d7f6b914610841578063b460af9414610861578063ba08765214610881578063bf353dbb146108a1578063c63d75b614610567578063c6e6f592146108ce57600080fd5b80639c52a7f11161012e5780639c52a7f1146107865780639f678cca146107a65780639fd5a6cf146107bb578063a9059cbb146107db578063aaf10f42146107fb578063ad3cb1cc1461081057600080fd5b806370a08231146106a65780637ecebe00146106d35780638129fc1c1461070057806394bf804d1461071557806395d89b41146107355780639b8d6d381461076657600080fd5b8063313ce567116102345780634cf282fb116101ed57806354fd4d50116101c757806354fd4d5014610605578063626cb3c51461063257806365fae35e146106665780636e553f651461068657600080fd5b80634cf282fb146105a95780634f1ef286146105dd57806352d1902d146105f057600080fd5b8063313ce567146104ac5780633644e515146104d357806336569e77146104e857806338d52e0f14610534578063402d267d146105675780634cdad5061461058957600080fd5b806318160ddd1161028657806318160ddd146103c157806320aba08b146103d7578063216740a01461041657806323b872dd1461043657806329ae81141461045657806330adf81f1461047857600080fd5b806301e1d114146102ce57806303607ceb146102f657806306fdde031461030c57806307a2d13a14610351578063095ea7b3146103715780630a28a477146103a1575b600080fd5b3480156102da57600080fd5b506102e3610a28565b6040519081526020015b60405180910390f35b34801561030257600080fd5b506102e360065481565b34801561031857600080fd5b506103446040518060400160405280600c81526020016b536176696e6773205553445360a01b81525081565b6040516102ed9190612646565b34801561035d57600080fd5b506102e361036c366004612659565b610a3a565b34801561037d57600080fd5b5061039161038c36600461268e565b610ae7565b60405190151581526020016102ed565b3480156103ad57600080fd5b506102e36103bc366004612659565b610b54565b3480156103cd57600080fd5b506102e360015481565b3480156103e357600080fd5b506005546103fe90600160c01b90046001600160401b031681565b6040516001600160401b0390911681526020016102ed565b34801561042257600080fd5b506102e36104313660046126b8565b610bf3565b34801561044257600080fd5b506103916104513660046126ff565b610c59565b34801561046257600080fd5b5061047661047136600461273b565b610df3565b005b34801561048457600080fd5b506102e37f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b3480156104b857600080fd5b506104c1601281565b60405160ff90911681526020016102ed565b3480156104df57600080fd5b506102e3610f74565b3480156104f457600080fd5b5061051c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ed565b34801561054057600080fd5b507f000000000000000000000000000000000000000000000000000000000000000061051c565b34801561057357600080fd5b506102e361058236600461275d565b5060001990565b34801561059557600080fd5b506102e36105a4366004612659565b610f7f565b3480156105b557600080fd5b5061051c7f000000000000000000000000000000000000000000000000000000000000000081565b6104766105eb36600461281a565b610f8a565b3480156105fc57600080fd5b506102e3610fa9565b34801561061157600080fd5b50610344604051806040016040528060018152602001603160f81b81525081565b34801561063e57600080fd5b5061051c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561067257600080fd5b5061047661068136600461275d565b610fc6565b34801561069257600080fd5b506102e36106a1366004612867565b61103a565b3480156106b257600080fd5b506102e36106c136600461275d565b60026020526000908152604090205481565b3480156106df57600080fd5b506102e36106ee36600461275d565b60046020526000908152604090205481565b34801561070c57600080fd5b50610476611070565b34801561072157600080fd5b506102e3610730366004612867565b611277565b34801561074157600080fd5b5061034460405180604001604052806005815260200164735553445360d81b81525081565b34801561077257600080fd5b506102e36107813660046126b8565b6112ac565b34801561079257600080fd5b506104766107a136600461275d565b611303565b3480156107b257600080fd5b506102e3611376565b3480156107c757600080fd5b506104766107d6366004612893565b6115d9565b3480156107e757600080fd5b506103916107f636600461268e565b6117fb565b34801561080757600080fd5b5061051c6118c2565b34801561081c57600080fd5b50610344604051806040016040528060058152602001640352e302e360dc1b81525081565b34801561084d57600080fd5b506102e361085c366004612659565b6118e3565b34801561086d57600080fd5b506102e361087c366004612904565b611971565b34801561088d57600080fd5b506102e361089c366004612904565b6119a6565b3480156108ad57600080fd5b506102e36108bc36600461275d565b60006020819052908152604090205481565b3480156108da57600080fd5b506102e36108e9366004612659565b6119de565b3480156108fa57600080fd5b5060055461090e906001600160c01b031681565b6040516001600160c01b0390911681526020016102ed565b34801561093257600080fd5b506102e361094136600461275d565b611a75565b34801561095257600080fd5b50610476610961366004612940565b611a97565b34801561097257600080fd5b506102e361098136600461275d565b6001600160a01b031660009081526002602052604090205490565b3480156109a857600080fd5b506102e36109b73660046129b3565b600360209081526000928352604080842090915290825290205481565b3480156109e057600080fd5b506102e36109ef366004612659565b611aee565b348015610a0057600080fd5b5061051c7f000000000000000000000000000000000000000000000000000000000000000081565b6000610a35600154610a3a565b905090565b6005546000908190600160c01b90046001600160401b03164211610a69576005546001600160c01b0316610abe565b600554600654676765c793fa10079d601b1b916001600160c01b03811691610aaa91610aa590600160c01b90046001600160401b0316426129f3565b611af9565b610ab49190612a06565b610abe9190612a33565b9050676765c793fa10079d601b1b610ad68285612a06565b610ae09190612a33565b9392505050565b3360008181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610b429086815260200190565b60405180910390a35060015b92915050565b6005546000908190600160c01b90046001600160401b03164211610b83576005546001600160c01b0316610bd3565b600554600654676765c793fa10079d601b1b916001600160c01b03811691610bbf91610aa590600160c01b90046001600160401b0316426129f3565b610bc99190612a06565b610bd39190612a33565b9050610ae0610bed676765c793fa10079d601b1b85612a06565b82611beb565b6000610bff8484611277565b9050826001600160a01b03168261ffff167fb30a03a0e2a407f18ae0e83491331dc069d1521e292feffb071e61c8f7f406368387604051610c4a929190918252602082015260400190565b60405180910390a39392505050565b60006001600160a01b03831615801590610c7c57506001600160a01b0383163014155b610ca15760405162461bcd60e51b8152600401610c9890612a55565b60405180910390fd5b6001600160a01b03841660009081526002602052604090205482811015610cda5760405162461bcd60e51b8152600401610c9890612a84565b6001600160a01b0385163314610d92576001600160a01b03851660009081526003602090815260408083203384529091529020546000198114610d905783811015610d675760405162461bcd60e51b815260206004820152601c60248201527f53557364732f696e73756666696369656e742d616c6c6f77616e6365000000006044820152606401610c98565b6001600160a01b0386166000908152600360209081526040808320338452909152902084820390555b505b6001600160a01b038086166000818152600260205260408082208786039055928716808252908390208054870190559151600080516020612b8a83398151915290610de09087815260200190565b60405180910390a3506001949350505050565b33600090815260208190526040902054600114610e225760405162461bcd60e51b8152600401610c9890612abb565b816239b9b960e91b03610eee57676765c793fa10079d601b1b811015610e825760405162461bcd60e51b815260206004820152601560248201527453557364732f77726f6e672d7373722d76616c756560581b6044820152606401610c98565b6005546001600160401b03600160c01b909104164214610ee45760405162461bcd60e51b815260206004820152601860248201527f53557364732f6368692d6e6f742d75702d746f2d6461746500000000000000006044820152606401610c98565b6006819055610f36565b60405162461bcd60e51b815260206004820152601d60248201527f53557364732f66696c652d756e7265636f676e697a65642d706172616d0000006044820152606401610c98565b817fe986e40cc8c151830d4f61050f4fb2e4add8567caad2d5f5496f9158e91fe4c782604051610f6891815260200190565b60405180910390a25050565b6000610a3546611c19565b6000610b4e82610a3a565b610f92611cee565b610f9b82611d95565b610fa58282611dc7565b5050565b6000610fb3611e89565b50600080516020612b6a83398151915290565b33600090815260208190526040902054600114610ff55760405162461bcd60e51b8152600401610c9890612abb565b6001600160a01b03811660008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a250565b6000611044611376565b611059676765c793fa10079d601b1b85612a06565b6110639190612a33565b9050610b4e838284611ed2565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156110b55750825b90506000826001600160401b031660011480156110d15750303b155b9050811580156110df575080155b156110fd5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561112757845460ff60401b1916600160401b1785555b61112f61202b565b676765c793fa10079d601b1b600160c01b426001600160401b03160281176005556006556040516328ec8bf160e21b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063a3b22fc490602401600060405180830381600087803b1580156111d757600080fd5b505af11580156111eb573d6000803e3d6000fd5b50503360008181526020819052604080822060019055519193507fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a60925090a2831561127057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b600061129f611284611376565b61128e9085612a06565b676765c793fa10079d601b1b611beb565b9050610b4e818484611ed2565b60006112b8848461103a565b9050826001600160a01b03168261ffff167fb30a03a0e2a407f18ae0e83491331dc069d1521e292feffb071e61c8f7f406368684604051610c4a929190918252602082015260400190565b336000908152602081905260409020546001146113325760405162461bcd60e51b8152600401610c9890612abb565b6001600160a01b038116600081815260208190526040808220829055517f184450df2e323acec0ed3b5c7531b81f9b4cdef7914dfd4c0a4317416bb5251b9190a250565b6005546000906001600160c01b03811690600160c01b90046001600160401b0316824282101561159657676765c793fa10079d601b1b836113bf6006548542610aa591906129f3565b6113c99190612a06565b6113d39190612a33565b600154909450676765c793fa10079d601b1b6113ef8583612a06565b6113f99190612a33565b676765c793fa10079d601b1b61140f8784612a06565b6114199190612a33565b61142391906129f3565b91506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663f24e23eb7f00000000000000000000000000000000000000000000000000000000000000003061148b676765c793fa10079d601b1b87612a06565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b1580156114da57600080fd5b505af11580156114ee573d6000803e3d6000fd5b505060405163ef693bed60e01b8152306004820152602481018590527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316925063ef693bed9150604401600060405180830381600087803b15801561155a57600080fd5b505af115801561156e573d6000803e3d6000fd5b50505050506001600160401b034216600160c01b026001600160c01b0385161760055561159a565b8293505b60408051858152602081018390527fad1e8a53178522eb68a9d94d862bf30c841f709d2115f743eb6b34528751c79f910160405180910390a150505090565b814211156116205760405162461bcd60e51b815260206004820152601460248201527314d55cd91ccbdc195c9b5a5d0b595e1c1a5c995960621b6044820152606401610c98565b6001600160a01b03851661166c5760405162461bcd60e51b815260206004820152601360248201527229aab9b23997b4b73b30b634b216b7bbb732b960691b6044820152606401610c98565b6001600160a01b03851660009081526004602052604081208054600181019091559061169746611c19565b604080517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960208201526001600160a01b03808b169282019290925290881660608201526080810187905260a0810184905260c0810186905260e0016040516020818303038152906040528051906020012060405160200161173092919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050611753878285612033565b6117965760405162461bcd60e51b815260206004820152601460248201527314d55cd91ccbda5b9d985b1a590b5c195c9b5a5d60621b6044820152606401610c98565b6001600160a01b038781166000818152600360209081526040808320948b168084529482529182902089905590518881527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60006001600160a01b0383161580159061181e57506001600160a01b0383163014155b61183a5760405162461bcd60e51b8152600401610c9890612a55565b336000908152600260205260409020548281101561186a5760405162461bcd60e51b8152600401610c9890612a84565b33600081815260026020908152604080832087860390556001600160a01b0388168084529281902080548801905551868152919291600080516020612b8a833981519152910160405180910390a35060019392505050565b6000610a35600080516020612b6a833981519152546001600160a01b031690565b6005546000908190600160c01b90046001600160401b03164211611912576005546001600160c01b0316611962565b600554600654676765c793fa10079d601b1b916001600160c01b0381169161194e91610aa590600160c01b90046001600160401b0316426129f3565b6119589190612a06565b6119629190612a33565b9050610ae061128e8285612a06565b600061199861198b676765c793fa10079d601b1b86612a06565b611993611376565b611beb565b9050610ae0848285856121c3565b6000676765c793fa10079d601b1b6119bc611376565b6119c69086612a06565b6119d09190612a33565b9050610ae0818585856121c3565b6005546000908190600160c01b90046001600160401b03164211611a0d576005546001600160c01b0316611a5d565b600554600654676765c793fa10079d601b1b916001600160c01b03811691611a4991610aa590600160c01b90046001600160401b0316426129f3565b611a539190612a06565b611a5d9190612a33565b905080610ad6676765c793fa10079d601b1b85612a06565b6001600160a01b038116600090815260026020526040812054610b4e90610a3a565b611ae587878787868689604051602001611ad193929190928352602083019190915260f81b6001600160f81b031916604082015260410190565b6040516020818303038152906040526115d9565b50505050505050565b6000610b4e826119de565b6000828015611bc357600183168015611b1457849250611b23565b676765c793fa10079d601b1b92505b506002909204916b019d971e4fe8401e740000005b8315611bbd578485028586820414611b4f57600080fd5b81810181811015611b5f57600080fd5b676765c793fa10079d601b1b90049550506001841615611bb2578483028386820414158615151615611b9057600080fd5b81810181811015611ba057600080fd5b676765c793fa10079d601b1b90049350505b600284049350611b38565b50611be4565b828015611bd35760009250611be2565b676765c793fa10079d601b1b92505b505b5092915050565b600082600003611bfc576000610ae0565b816001840381611c0e57611c0e612a1d565b046001019392505050565b604080518082018252600c81526b536176696e6773205553445360a01b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f7b833ce3d9e5473168246d98a161bea2c6ea238198d3a0a9e9edb9c1eb00b9f9818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101939093523060a0808501919091528251808503909101815260c0909301909152815191012090565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480611d7557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611d69600080516020612b6a833981519152546001600160a01b031690565b6001600160a01b031614155b15611d935760405163703e46dd60e11b815260040160405180910390fd5b565b33600090815260208190526040902054600114611dc45760405162461bcd60e51b8152600401610c9890612abb565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611e21575060408051601f3d908101601f19168201909252611e1e91810190612ae9565b60015b611e4957604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610c98565b600080516020612b6a8339815191528114611e7a57604051632a87526960e21b815260048101829052602401610c98565b611e8483836123d8565b505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611d935760405163703e46dd60e11b815260040160405180910390fd5b6001600160a01b03811615801590611ef357506001600160a01b0381163014155b611f0f5760405162461bcd60e51b8152600401610c9890612a55565b6040516323b872dd60e01b8152336004820152306024820152604481018490527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906323b872dd90606401600060405180830381600087803b158015611f7d57600080fd5b505af1158015611f91573d6000803e3d6000fd5b505050506001600160a01b0381166000818152600260209081526040918290208054860190556001805486019055815186815290810185905233917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a36040518281526001600160a01b03821690600090600080516020612b8a8339815191529060200160405180910390a3505050565b611d9361242e565b600081516041036120d057602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa15801561209e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316876001600160a01b0316036120cc5760019350505050610ae0565b5050505b6001600160a01b0384163b15610ae057600080856001600160a01b03168585604051602401612100929190612b02565b60408051601f198184030181529181526020820180516001600160e01b0316630b135d3f60e11b179052516121359190612b23565b600060405180830381855afa9150503d8060008114612170576040519150601f19603f3d011682016040523d82523d6000602084013e612175565b606091505b5091509150818015612188575080516020145b80156121b957508051630b135d3f60e11b906121ad9083016020908101908401612b3f565b6001600160e01b031916145b9695505050505050565b6001600160a01b038116600090815260026020526040902054838110156121fc5760405162461bcd60e51b8152600401610c9890612a84565b6001600160a01b03821633146122b4576001600160a01b038216600090815260036020908152604080832033845290915290205460001981146122b257848110156122895760405162461bcd60e51b815260206004820152601c60248201527f53557364732f696e73756666696369656e742d616c6c6f77616e6365000000006044820152606401610c98565b6001600160a01b0383166000908152600360209081526040808320338452909152902085820390555b505b6001600160a01b038281166000908152600260205260409081902086840390556001805487900390555163a9059cbb60e01b81528482166004820152602481018790527f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb90604401600060405180830381600087803b15801561233f57600080fd5b505af1158015612353573d6000803e3d6000fd5b5050604051868152600092506001600160a01b0385169150600080516020612b8a8339815191529060200160405180910390a360408051868152602081018690526001600160a01b03808516929086169133917ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db910160405180910390a45050505050565b6123e182612477565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561242657611e8482826124dc565b610fa5612552565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16611d9357604051631afcd79f60e31b815260040160405180910390fd5b806001600160a01b03163b6000036124ad57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610c98565b600080516020612b6a83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516124f99190612b23565b600060405180830381855af49150503d8060008114612534576040519150601f19603f3d011682016040523d82523d6000602084013e612539565b606091505b5091509150612549858383612571565b95945050505050565b3415611d935760405163b398979f60e01b815260040160405180910390fd5b60608261258657612581826125cd565b610ae0565b815115801561259d57506001600160a01b0384163b155b156125c657604051639996b31560e01b81526001600160a01b0385166004820152602401610c98565b5080610ae0565b8051156125dd5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60005b838110156126115781810151838201526020016125f9565b50506000910152565b600081518084526126328160208601602086016125f6565b601f01601f19169290920160200192915050565b602081526000610ae0602083018461261a565b60006020828403121561266b57600080fd5b5035919050565b80356001600160a01b038116811461268957600080fd5b919050565b600080604083850312156126a157600080fd5b6126aa83612672565b946020939093013593505050565b6000806000606084860312156126cd57600080fd5b833592506126dd60208501612672565b9150604084013561ffff811681146126f457600080fd5b809150509250925092565b60008060006060848603121561271457600080fd5b61271d84612672565b925061272b60208501612672565b9150604084013590509250925092565b6000806040838503121561274e57600080fd5b50508035926020909101359150565b60006020828403121561276f57600080fd5b610ae082612672565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261279f57600080fd5b81356001600160401b03808211156127b9576127b9612778565b604051601f8301601f19908116603f011681019082821181831017156127e1576127e1612778565b816040528381528660208588010111156127fa57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561282d57600080fd5b61283683612672565b915060208301356001600160401b0381111561285157600080fd5b61285d8582860161278e565b9150509250929050565b6000806040838503121561287a57600080fd5b8235915061288a60208401612672565b90509250929050565b600080600080600060a086880312156128ab57600080fd5b6128b486612672565b94506128c260208701612672565b9350604086013592506060860135915060808601356001600160401b038111156128eb57600080fd5b6128f78882890161278e565b9150509295509295909350565b60008060006060848603121561291957600080fd5b8335925061292960208501612672565b915061293760408501612672565b90509250925092565b600080600080600080600060e0888a03121561295b57600080fd5b61296488612672565b965061297260208901612672565b95506040880135945060608801359350608088013560ff8116811461299657600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156129c657600080fd5b6129cf83612672565b915061288a60208401612672565b634e487b7160e01b600052601160045260246000fd5b81810381811115610b4e57610b4e6129dd565b8082028115828204841417610b4e57610b4e6129dd565b634e487b7160e01b600052601260045260246000fd5b600082612a5057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526015908201527453557364732f696e76616c69642d6164647265737360581b604082015260600190565b6020808252601a908201527f53557364732f696e73756666696369656e742d62616c616e6365000000000000604082015260600190565b60208082526014908201527314d55cd91ccbdb9bdd0b585d5d1a1bdc9a5e995960621b604082015260600190565b600060208284031215612afb57600080fd5b5051919050565b828152604060208201526000612b1b604083018461261a565b949350505050565b60008251612b358184602087016125f6565b9190910192915050565b600060208284031215612b5157600080fd5b81516001600160e01b031981168114610ae057600080fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220efe51b4da684074b634b858f100541c75822df39c037f225ba038ffe08b7c09d64736f6c634300081500330000000000000000000000003c0f895007ca717aa01c8693e59df1e8c3777feb000000000000000000000000a950524441892a31ebddf91d3ceefa04bf454466
Deployed Bytecode
0x6080604052600436106102c95760003560e01c806370a0823111610175578063b3d7f6b9116100dc578063c92aecc411610095578063d905777e1161006f578063d905777e14610966578063dd62ed3e1461099c578063ef8b30f7146109d4578063fa1e2e86146109f457600080fd5b8063c92aecc4146108ee578063ce96cb7714610926578063d505accf1461094657600080fd5b8063b3d7f6b914610841578063b460af9414610861578063ba08765214610881578063bf353dbb146108a1578063c63d75b614610567578063c6e6f592146108ce57600080fd5b80639c52a7f11161012e5780639c52a7f1146107865780639f678cca146107a65780639fd5a6cf146107bb578063a9059cbb146107db578063aaf10f42146107fb578063ad3cb1cc1461081057600080fd5b806370a08231146106a65780637ecebe00146106d35780638129fc1c1461070057806394bf804d1461071557806395d89b41146107355780639b8d6d381461076657600080fd5b8063313ce567116102345780634cf282fb116101ed57806354fd4d50116101c757806354fd4d5014610605578063626cb3c51461063257806365fae35e146106665780636e553f651461068657600080fd5b80634cf282fb146105a95780634f1ef286146105dd57806352d1902d146105f057600080fd5b8063313ce567146104ac5780633644e515146104d357806336569e77146104e857806338d52e0f14610534578063402d267d146105675780634cdad5061461058957600080fd5b806318160ddd1161028657806318160ddd146103c157806320aba08b146103d7578063216740a01461041657806323b872dd1461043657806329ae81141461045657806330adf81f1461047857600080fd5b806301e1d114146102ce57806303607ceb146102f657806306fdde031461030c57806307a2d13a14610351578063095ea7b3146103715780630a28a477146103a1575b600080fd5b3480156102da57600080fd5b506102e3610a28565b6040519081526020015b60405180910390f35b34801561030257600080fd5b506102e360065481565b34801561031857600080fd5b506103446040518060400160405280600c81526020016b536176696e6773205553445360a01b81525081565b6040516102ed9190612646565b34801561035d57600080fd5b506102e361036c366004612659565b610a3a565b34801561037d57600080fd5b5061039161038c36600461268e565b610ae7565b60405190151581526020016102ed565b3480156103ad57600080fd5b506102e36103bc366004612659565b610b54565b3480156103cd57600080fd5b506102e360015481565b3480156103e357600080fd5b506005546103fe90600160c01b90046001600160401b031681565b6040516001600160401b0390911681526020016102ed565b34801561042257600080fd5b506102e36104313660046126b8565b610bf3565b34801561044257600080fd5b506103916104513660046126ff565b610c59565b34801561046257600080fd5b5061047661047136600461273b565b610df3565b005b34801561048457600080fd5b506102e37f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b3480156104b857600080fd5b506104c1601281565b60405160ff90911681526020016102ed565b3480156104df57600080fd5b506102e3610f74565b3480156104f457600080fd5b5061051c7f00000000000000000000000035d1b3f3d7966a1dfe207aa4514c12a259a0492b81565b6040516001600160a01b0390911681526020016102ed565b34801561054057600080fd5b507f000000000000000000000000dc035d45d973e3ec169d2276ddab16f1e407384f61051c565b34801561057357600080fd5b506102e361058236600461275d565b5060001990565b34801561059557600080fd5b506102e36105a4366004612659565b610f7f565b3480156105b557600080fd5b5061051c7f000000000000000000000000dc035d45d973e3ec169d2276ddab16f1e407384f81565b6104766105eb36600461281a565b610f8a565b3480156105fc57600080fd5b506102e3610fa9565b34801561061157600080fd5b50610344604051806040016040528060018152602001603160f81b81525081565b34801561063e57600080fd5b5061051c7f000000000000000000000000a950524441892a31ebddf91d3ceefa04bf45446681565b34801561067257600080fd5b5061047661068136600461275d565b610fc6565b34801561069257600080fd5b506102e36106a1366004612867565b61103a565b3480156106b257600080fd5b506102e36106c136600461275d565b60026020526000908152604090205481565b3480156106df57600080fd5b506102e36106ee36600461275d565b60046020526000908152604090205481565b34801561070c57600080fd5b50610476611070565b34801561072157600080fd5b506102e3610730366004612867565b611277565b34801561074157600080fd5b5061034460405180604001604052806005815260200164735553445360d81b81525081565b34801561077257600080fd5b506102e36107813660046126b8565b6112ac565b34801561079257600080fd5b506104766107a136600461275d565b611303565b3480156107b257600080fd5b506102e3611376565b3480156107c757600080fd5b506104766107d6366004612893565b6115d9565b3480156107e757600080fd5b506103916107f636600461268e565b6117fb565b34801561080757600080fd5b5061051c6118c2565b34801561081c57600080fd5b50610344604051806040016040528060058152602001640352e302e360dc1b81525081565b34801561084d57600080fd5b506102e361085c366004612659565b6118e3565b34801561086d57600080fd5b506102e361087c366004612904565b611971565b34801561088d57600080fd5b506102e361089c366004612904565b6119a6565b3480156108ad57600080fd5b506102e36108bc36600461275d565b60006020819052908152604090205481565b3480156108da57600080fd5b506102e36108e9366004612659565b6119de565b3480156108fa57600080fd5b5060055461090e906001600160c01b031681565b6040516001600160c01b0390911681526020016102ed565b34801561093257600080fd5b506102e361094136600461275d565b611a75565b34801561095257600080fd5b50610476610961366004612940565b611a97565b34801561097257600080fd5b506102e361098136600461275d565b6001600160a01b031660009081526002602052604090205490565b3480156109a857600080fd5b506102e36109b73660046129b3565b600360209081526000928352604080842090915290825290205481565b3480156109e057600080fd5b506102e36109ef366004612659565b611aee565b348015610a0057600080fd5b5061051c7f0000000000000000000000003c0f895007ca717aa01c8693e59df1e8c3777feb81565b6000610a35600154610a3a565b905090565b6005546000908190600160c01b90046001600160401b03164211610a69576005546001600160c01b0316610abe565b600554600654676765c793fa10079d601b1b916001600160c01b03811691610aaa91610aa590600160c01b90046001600160401b0316426129f3565b611af9565b610ab49190612a06565b610abe9190612a33565b9050676765c793fa10079d601b1b610ad68285612a06565b610ae09190612a33565b9392505050565b3360008181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610b429086815260200190565b60405180910390a35060015b92915050565b6005546000908190600160c01b90046001600160401b03164211610b83576005546001600160c01b0316610bd3565b600554600654676765c793fa10079d601b1b916001600160c01b03811691610bbf91610aa590600160c01b90046001600160401b0316426129f3565b610bc99190612a06565b610bd39190612a33565b9050610ae0610bed676765c793fa10079d601b1b85612a06565b82611beb565b6000610bff8484611277565b9050826001600160a01b03168261ffff167fb30a03a0e2a407f18ae0e83491331dc069d1521e292feffb071e61c8f7f406368387604051610c4a929190918252602082015260400190565b60405180910390a39392505050565b60006001600160a01b03831615801590610c7c57506001600160a01b0383163014155b610ca15760405162461bcd60e51b8152600401610c9890612a55565b60405180910390fd5b6001600160a01b03841660009081526002602052604090205482811015610cda5760405162461bcd60e51b8152600401610c9890612a84565b6001600160a01b0385163314610d92576001600160a01b03851660009081526003602090815260408083203384529091529020546000198114610d905783811015610d675760405162461bcd60e51b815260206004820152601c60248201527f53557364732f696e73756666696369656e742d616c6c6f77616e6365000000006044820152606401610c98565b6001600160a01b0386166000908152600360209081526040808320338452909152902084820390555b505b6001600160a01b038086166000818152600260205260408082208786039055928716808252908390208054870190559151600080516020612b8a83398151915290610de09087815260200190565b60405180910390a3506001949350505050565b33600090815260208190526040902054600114610e225760405162461bcd60e51b8152600401610c9890612abb565b816239b9b960e91b03610eee57676765c793fa10079d601b1b811015610e825760405162461bcd60e51b815260206004820152601560248201527453557364732f77726f6e672d7373722d76616c756560581b6044820152606401610c98565b6005546001600160401b03600160c01b909104164214610ee45760405162461bcd60e51b815260206004820152601860248201527f53557364732f6368692d6e6f742d75702d746f2d6461746500000000000000006044820152606401610c98565b6006819055610f36565b60405162461bcd60e51b815260206004820152601d60248201527f53557364732f66696c652d756e7265636f676e697a65642d706172616d0000006044820152606401610c98565b817fe986e40cc8c151830d4f61050f4fb2e4add8567caad2d5f5496f9158e91fe4c782604051610f6891815260200190565b60405180910390a25050565b6000610a3546611c19565b6000610b4e82610a3a565b610f92611cee565b610f9b82611d95565b610fa58282611dc7565b5050565b6000610fb3611e89565b50600080516020612b6a83398151915290565b33600090815260208190526040902054600114610ff55760405162461bcd60e51b8152600401610c9890612abb565b6001600160a01b03811660008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a250565b6000611044611376565b611059676765c793fa10079d601b1b85612a06565b6110639190612a33565b9050610b4e838284611ed2565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156110b55750825b90506000826001600160401b031660011480156110d15750303b155b9050811580156110df575080155b156110fd5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561112757845460ff60401b1916600160401b1785555b61112f61202b565b676765c793fa10079d601b1b600160c01b426001600160401b03160281176005556006556040516328ec8bf160e21b81527f0000000000000000000000003c0f895007ca717aa01c8693e59df1e8c3777feb6001600160a01b0390811660048301527f00000000000000000000000035d1b3f3d7966a1dfe207aa4514c12a259a0492b169063a3b22fc490602401600060405180830381600087803b1580156111d757600080fd5b505af11580156111eb573d6000803e3d6000fd5b50503360008181526020819052604080822060019055519193507fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a60925090a2831561127057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b600061129f611284611376565b61128e9085612a06565b676765c793fa10079d601b1b611beb565b9050610b4e818484611ed2565b60006112b8848461103a565b9050826001600160a01b03168261ffff167fb30a03a0e2a407f18ae0e83491331dc069d1521e292feffb071e61c8f7f406368684604051610c4a929190918252602082015260400190565b336000908152602081905260409020546001146113325760405162461bcd60e51b8152600401610c9890612abb565b6001600160a01b038116600081815260208190526040808220829055517f184450df2e323acec0ed3b5c7531b81f9b4cdef7914dfd4c0a4317416bb5251b9190a250565b6005546000906001600160c01b03811690600160c01b90046001600160401b0316824282101561159657676765c793fa10079d601b1b836113bf6006548542610aa591906129f3565b6113c99190612a06565b6113d39190612a33565b600154909450676765c793fa10079d601b1b6113ef8583612a06565b6113f99190612a33565b676765c793fa10079d601b1b61140f8784612a06565b6114199190612a33565b61142391906129f3565b91506001600160a01b037f00000000000000000000000035d1b3f3d7966a1dfe207aa4514c12a259a0492b1663f24e23eb7f000000000000000000000000a950524441892a31ebddf91d3ceefa04bf4544663061148b676765c793fa10079d601b1b87612a06565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b1580156114da57600080fd5b505af11580156114ee573d6000803e3d6000fd5b505060405163ef693bed60e01b8152306004820152602481018590527f0000000000000000000000003c0f895007ca717aa01c8693e59df1e8c3777feb6001600160a01b0316925063ef693bed9150604401600060405180830381600087803b15801561155a57600080fd5b505af115801561156e573d6000803e3d6000fd5b50505050506001600160401b034216600160c01b026001600160c01b0385161760055561159a565b8293505b60408051858152602081018390527fad1e8a53178522eb68a9d94d862bf30c841f709d2115f743eb6b34528751c79f910160405180910390a150505090565b814211156116205760405162461bcd60e51b815260206004820152601460248201527314d55cd91ccbdc195c9b5a5d0b595e1c1a5c995960621b6044820152606401610c98565b6001600160a01b03851661166c5760405162461bcd60e51b815260206004820152601360248201527229aab9b23997b4b73b30b634b216b7bbb732b960691b6044820152606401610c98565b6001600160a01b03851660009081526004602052604081208054600181019091559061169746611c19565b604080517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960208201526001600160a01b03808b169282019290925290881660608201526080810187905260a0810184905260c0810186905260e0016040516020818303038152906040528051906020012060405160200161173092919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050611753878285612033565b6117965760405162461bcd60e51b815260206004820152601460248201527314d55cd91ccbda5b9d985b1a590b5c195c9b5a5d60621b6044820152606401610c98565b6001600160a01b038781166000818152600360209081526040808320948b168084529482529182902089905590518881527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60006001600160a01b0383161580159061181e57506001600160a01b0383163014155b61183a5760405162461bcd60e51b8152600401610c9890612a55565b336000908152600260205260409020548281101561186a5760405162461bcd60e51b8152600401610c9890612a84565b33600081815260026020908152604080832087860390556001600160a01b0388168084529281902080548801905551868152919291600080516020612b8a833981519152910160405180910390a35060019392505050565b6000610a35600080516020612b6a833981519152546001600160a01b031690565b6005546000908190600160c01b90046001600160401b03164211611912576005546001600160c01b0316611962565b600554600654676765c793fa10079d601b1b916001600160c01b0381169161194e91610aa590600160c01b90046001600160401b0316426129f3565b6119589190612a06565b6119629190612a33565b9050610ae061128e8285612a06565b600061199861198b676765c793fa10079d601b1b86612a06565b611993611376565b611beb565b9050610ae0848285856121c3565b6000676765c793fa10079d601b1b6119bc611376565b6119c69086612a06565b6119d09190612a33565b9050610ae0818585856121c3565b6005546000908190600160c01b90046001600160401b03164211611a0d576005546001600160c01b0316611a5d565b600554600654676765c793fa10079d601b1b916001600160c01b03811691611a4991610aa590600160c01b90046001600160401b0316426129f3565b611a539190612a06565b611a5d9190612a33565b905080610ad6676765c793fa10079d601b1b85612a06565b6001600160a01b038116600090815260026020526040812054610b4e90610a3a565b611ae587878787868689604051602001611ad193929190928352602083019190915260f81b6001600160f81b031916604082015260410190565b6040516020818303038152906040526115d9565b50505050505050565b6000610b4e826119de565b6000828015611bc357600183168015611b1457849250611b23565b676765c793fa10079d601b1b92505b506002909204916b019d971e4fe8401e740000005b8315611bbd578485028586820414611b4f57600080fd5b81810181811015611b5f57600080fd5b676765c793fa10079d601b1b90049550506001841615611bb2578483028386820414158615151615611b9057600080fd5b81810181811015611ba057600080fd5b676765c793fa10079d601b1b90049350505b600284049350611b38565b50611be4565b828015611bd35760009250611be2565b676765c793fa10079d601b1b92505b505b5092915050565b600082600003611bfc576000610ae0565b816001840381611c0e57611c0e612a1d565b046001019392505050565b604080518082018252600c81526b536176696e6773205553445360a01b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f7b833ce3d9e5473168246d98a161bea2c6ea238198d3a0a9e9edb9c1eb00b9f9818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101939093523060a0808501919091528251808503909101815260c0909301909152815191012090565b306001600160a01b037f0000000000000000000000004e7991e5c547ce825bdeb665ee14a3274f9f61e0161480611d7557507f0000000000000000000000004e7991e5c547ce825bdeb665ee14a3274f9f61e06001600160a01b0316611d69600080516020612b6a833981519152546001600160a01b031690565b6001600160a01b031614155b15611d935760405163703e46dd60e11b815260040160405180910390fd5b565b33600090815260208190526040902054600114611dc45760405162461bcd60e51b8152600401610c9890612abb565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611e21575060408051601f3d908101601f19168201909252611e1e91810190612ae9565b60015b611e4957604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610c98565b600080516020612b6a8339815191528114611e7a57604051632a87526960e21b815260048101829052602401610c98565b611e8483836123d8565b505050565b306001600160a01b037f0000000000000000000000004e7991e5c547ce825bdeb665ee14a3274f9f61e01614611d935760405163703e46dd60e11b815260040160405180910390fd5b6001600160a01b03811615801590611ef357506001600160a01b0381163014155b611f0f5760405162461bcd60e51b8152600401610c9890612a55565b6040516323b872dd60e01b8152336004820152306024820152604481018490527f000000000000000000000000dc035d45d973e3ec169d2276ddab16f1e407384f6001600160a01b0316906323b872dd90606401600060405180830381600087803b158015611f7d57600080fd5b505af1158015611f91573d6000803e3d6000fd5b505050506001600160a01b0381166000818152600260209081526040918290208054860190556001805486019055815186815290810185905233917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a36040518281526001600160a01b03821690600090600080516020612b8a8339815191529060200160405180910390a3505050565b611d9361242e565b600081516041036120d057602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa15801561209e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316876001600160a01b0316036120cc5760019350505050610ae0565b5050505b6001600160a01b0384163b15610ae057600080856001600160a01b03168585604051602401612100929190612b02565b60408051601f198184030181529181526020820180516001600160e01b0316630b135d3f60e11b179052516121359190612b23565b600060405180830381855afa9150503d8060008114612170576040519150601f19603f3d011682016040523d82523d6000602084013e612175565b606091505b5091509150818015612188575080516020145b80156121b957508051630b135d3f60e11b906121ad9083016020908101908401612b3f565b6001600160e01b031916145b9695505050505050565b6001600160a01b038116600090815260026020526040902054838110156121fc5760405162461bcd60e51b8152600401610c9890612a84565b6001600160a01b03821633146122b4576001600160a01b038216600090815260036020908152604080832033845290915290205460001981146122b257848110156122895760405162461bcd60e51b815260206004820152601c60248201527f53557364732f696e73756666696369656e742d616c6c6f77616e6365000000006044820152606401610c98565b6001600160a01b0383166000908152600360209081526040808320338452909152902085820390555b505b6001600160a01b038281166000908152600260205260409081902086840390556001805487900390555163a9059cbb60e01b81528482166004820152602481018790527f000000000000000000000000dc035d45d973e3ec169d2276ddab16f1e407384f9091169063a9059cbb90604401600060405180830381600087803b15801561233f57600080fd5b505af1158015612353573d6000803e3d6000fd5b5050604051868152600092506001600160a01b0385169150600080516020612b8a8339815191529060200160405180910390a360408051868152602081018690526001600160a01b03808516929086169133917ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db910160405180910390a45050505050565b6123e182612477565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561242657611e8482826124dc565b610fa5612552565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16611d9357604051631afcd79f60e31b815260040160405180910390fd5b806001600160a01b03163b6000036124ad57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610c98565b600080516020612b6a83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516124f99190612b23565b600060405180830381855af49150503d8060008114612534576040519150601f19603f3d011682016040523d82523d6000602084013e612539565b606091505b5091509150612549858383612571565b95945050505050565b3415611d935760405163b398979f60e01b815260040160405180910390fd5b60608261258657612581826125cd565b610ae0565b815115801561259d57506001600160a01b0384163b155b156125c657604051639996b31560e01b81526001600160a01b0385166004820152602401610c98565b5080610ae0565b8051156125dd5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60005b838110156126115781810151838201526020016125f9565b50506000910152565b600081518084526126328160208601602086016125f6565b601f01601f19169290920160200192915050565b602081526000610ae0602083018461261a565b60006020828403121561266b57600080fd5b5035919050565b80356001600160a01b038116811461268957600080fd5b919050565b600080604083850312156126a157600080fd5b6126aa83612672565b946020939093013593505050565b6000806000606084860312156126cd57600080fd5b833592506126dd60208501612672565b9150604084013561ffff811681146126f457600080fd5b809150509250925092565b60008060006060848603121561271457600080fd5b61271d84612672565b925061272b60208501612672565b9150604084013590509250925092565b6000806040838503121561274e57600080fd5b50508035926020909101359150565b60006020828403121561276f57600080fd5b610ae082612672565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261279f57600080fd5b81356001600160401b03808211156127b9576127b9612778565b604051601f8301601f19908116603f011681019082821181831017156127e1576127e1612778565b816040528381528660208588010111156127fa57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561282d57600080fd5b61283683612672565b915060208301356001600160401b0381111561285157600080fd5b61285d8582860161278e565b9150509250929050565b6000806040838503121561287a57600080fd5b8235915061288a60208401612672565b90509250929050565b600080600080600060a086880312156128ab57600080fd5b6128b486612672565b94506128c260208701612672565b9350604086013592506060860135915060808601356001600160401b038111156128eb57600080fd5b6128f78882890161278e565b9150509295509295909350565b60008060006060848603121561291957600080fd5b8335925061292960208501612672565b915061293760408501612672565b90509250925092565b600080600080600080600060e0888a03121561295b57600080fd5b61296488612672565b965061297260208901612672565b95506040880135945060608801359350608088013560ff8116811461299657600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156129c657600080fd5b6129cf83612672565b915061288a60208401612672565b634e487b7160e01b600052601160045260246000fd5b81810381811115610b4e57610b4e6129dd565b8082028115828204841417610b4e57610b4e6129dd565b634e487b7160e01b600052601260045260246000fd5b600082612a5057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526015908201527453557364732f696e76616c69642d6164647265737360581b604082015260600190565b6020808252601a908201527f53557364732f696e73756666696369656e742d62616c616e6365000000000000604082015260600190565b60208082526014908201527314d55cd91ccbdb9bdd0b585d5d1a1bdc9a5e995960621b604082015260600190565b600060208284031215612afb57600080fd5b5051919050565b828152604060208201526000612b1b604083018461261a565b949350505050565b60008251612b358184602087016125f6565b9190910192915050565b600060208284031215612b5157600080fd5b81516001600160e01b031981168114610ae057600080fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220efe51b4da684074b634b858f100541c75822df39c037f225ba038ffe08b7c09d64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003c0f895007ca717aa01c8693e59df1e8c3777feb000000000000000000000000a950524441892a31ebddf91d3ceefa04bf454466
-----Decoded View---------------
Arg [0] : usdsJoin_ (address): 0x3C0f895007CA717Aa01c8693e59DF1e8C3777FEB
Arg [1] : vow_ (address): 0xA950524441892A31ebddF91d3cEEFa04Bf454466
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003c0f895007ca717aa01c8693e59df1e8c3777feb
Arg [1] : 000000000000000000000000a950524441892a31ebddf91d3ceefa04bf454466
Deployed Bytecode Sourcemap
1494:14904:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11289:107;;;;;;;;;;;;;:::i;:::-;;;160:25:8;;;148:2;133:18;11289:107:7;;;;;;;;2076:18;;;;;;;;;;;;;;;;2173:49;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2173:49:7;;;;;;;;;;;;:::i;11624:216::-;;;;;;;;;;-1:-1:-1;11624:216:7;;;;;:::i;:::-;;:::i;9275:202::-;;;;;;;;;;-1:-1:-1;9275:202:7;;;;;:::i;:::-;;:::i;:::-;;;1739:14:8;;1732:22;1714:41;;1702:2;1687:18;9275:202:7;1574:187:8;13330:225:7;;;;;;;;;;-1:-1:-1;13330:225:7;;;;;:::i;:::-;;:::i;1642:68::-;;;;;;;;;;;;;;;;2007:18;;;;;;;;;;-1:-1:-1;2007:18:7;;;;-1:-1:-1;;;2007:18:7;;-1:-1:-1;;;;;2007:18:7;;;;;;-1:-1:-1;;;;;1928:31:8;;;1910:50;;1898:2;1883:18;2007::7;1766:200:8;12987:206:7;;;;;;;;;;-1:-1:-1;12987:206:7;;;;;:::i;:::-;;:::i;8367:902::-;;;;;;;;;;-1:-1:-1;8367:902:7;;;;;:::i;:::-;;:::i;6673:335::-;;;;;;;;;;-1:-1:-1;6673:335:7;;;;;:::i;:::-;;:::i;:::-;;2462:137;;;;;;;;;;;;2504:95;2462:137;;2320:37;;;;;;;;;;;;2355:2;2320:37;;;;;3330:4:8;3318:17;;;3300:36;;3288:2;3273:18;2320:37:7;3158:184:8;5002:124:7;;;;;;;;;;;;;:::i;2670:33::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3527:32:8;;;3509:51;;3497:2;3482:18;2670:33:7;3347:219:8;11197:86:7;;;;;;;;;;-1:-1:-1;11271:4:7;11197:86;;11846:102;;;;;;;;;;-1:-1:-1;11846:102:7;;;;;:::i;:::-;-1:-1:-1;;;11924:17:7;11846:102;13882:118;;;;;;;;;;-1:-1:-1;13882:118:7;;;;;:::i;:::-;;:::i;2709:34::-;;;;;;;;;;;;;;;4158:214:1;;;;;;:::i;:::-;;:::i;3705:134::-;;;;;;;;;;;;;:::i;2276:38:7:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2276:38:7;;;;;2749:33;;;;;;;;;;;;;;;6469:96;;;;;;;;;;-1:-1:-1;6469:96:7;;;;;:::i;:::-;;:::i;12079:171::-;;;;;;;;;;-1:-1:-1;12079:171:7;;;;;:::i;:::-;;:::i;1716:66::-;;;;;;;;;;-1:-1:-1;1716:66:7;;;;;:::i;:::-;;;;;;;;;;;;;;1860:63;;;;;;;;;;-1:-1:-1;1860:63:7;;;;;:::i;:::-;;;;;;;;;;;;;;4055:270;;;;;;;;;;;;;:::i;12806:175::-;;;;;;;;;;-1:-1:-1;12806:175:7;;;;;:::i;:::-;;:::i;2228:42::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2228:42:7;;;;;12256:212;;;;;;;;;;-1:-1:-1;12256:212:7;;;;;:::i;:::-;;:::i;6571:96::-;;;;;;;;;;-1:-1:-1;6571:96:7;;;;;:::i;:::-;;:::i;7083:693::-;;;;;;;;;;;;;:::i;15179:945::-;;;;;;;;;;-1:-1:-1;15179:945:7;;;;;:::i;:::-;;:::i;7814:547::-;;;;;;;;;;-1:-1:-1;7814:547:7;;;;;:::i;:::-;;:::i;4416:117::-;;;;;;;;;;;;;:::i;1819:58:1:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1819:58:1;;;;;12579:221:7;;;;;;;;;;-1:-1:-1;12579:221:7;;;;;:::i;:::-;;:::i;13561:203::-;;;;;;;;;;-1:-1:-1;13561:203:7;;;;;:::i;:::-;;:::i;14006:194::-;;;;;;;;;;-1:-1:-1;14006:194:7;;;;;:::i;:::-;;:::i;1582:41::-;;;;;;;;;;-1:-1:-1;1582:41:7;;;;;:::i;:::-;;;;;;;;;;;;;;;11402:216;;;;;;;;;;-1:-1:-1;11402:216:7;;;;;:::i;:::-;;:::i;1950:18::-;;;;;;;;;;-1:-1:-1;1950:18:7;;;;-1:-1:-1;;;;;1950:18:7;;;;;;-1:-1:-1;;;;;6816:32:8;;;6798:51;;6786:2;6771:18;1950::7;6652:203:8;13199:125:7;;;;;;;;;;-1:-1:-1;13199:125:7;;;;;:::i;:::-;;:::i;16130:266::-;;;;;;;;;;-1:-1:-1;16130:266:7;;;;;:::i;:::-;;:::i;13770:106::-;;;;;;;;;;-1:-1:-1;13770:106:7;;;;;:::i;:::-;-1:-1:-1;;;;;13853:16:7;13827:7;13853:16;;;:9;:16;;;;;;;13770:106;1788:66;;;;;;;;;;-1:-1:-1;1788:66:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;11954:119;;;;;;;;;;-1:-1:-1;11954:119:7;;;;;:::i;:::-;;:::i;2626:38::-;;;;;;;;;;;;;;;11289:107;11335:7;11361:28;11377:11;;11361:15;:28::i;:::-;11354:35;;11289:107;:::o;11624:216::-;11739:3;;11686:7;;;;-1:-1:-1;;;11739:3:7;;-1:-1:-1;;;;;11739:3:7;11721:15;:21;11720:77;;11794:3;;-1:-1:-1;;;;;11794:3:7;11720:77;;;11782:3;;11752;;-1:-1:-1;;;2406:8:7;-1:-1:-1;;;;;11782:3:7;;;11746:33;;11757:21;;-1:-1:-1;;;11775:3:7;;-1:-1:-1;;;;;11775:3:7;11757:15;:21;:::i;:::-;11746:5;:33::i;:::-;:39;;;;:::i;:::-;:45;;;;:::i;:::-;11705:92;-1:-1:-1;;;;11814:13:7;11705:92;11814:6;:13;:::i;:::-;:19;;;;:::i;:::-;11807:26;11624:216;-1:-1:-1;;;11624:216:7:o;9275:202::-;9368:10;9342:4;9358:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;9358:30:7;;;;;;;;;;:38;;;9412:36;9342:4;;9358:30;;9412:36;;;;9391:5;160:25:8;;148:2;133:18;;14:177;9412:36:7;;;;;;;;-1:-1:-1;9466:4:7;9275:202;;;;;:::o;13330:225::-;13447:3;;13394:7;;;;-1:-1:-1;;;13447:3:7;;-1:-1:-1;;;;;13447:3:7;13429:15;:21;13428:77;;13502:3;;-1:-1:-1;;;;;13502:3:7;13428:77;;;13490:3;;13460;;-1:-1:-1;;;2406:8:7;-1:-1:-1;;;;;13490:3:7;;;13454:33;;13465:21;;-1:-1:-1;;;13483:3:7;;-1:-1:-1;;;;;13483:3:7;13465:15;:21;:::i;13454:33::-;:39;;;;:::i;:::-;:45;;;;:::i;:::-;13413:92;-1:-1:-1;13522:26:7;13529:12;-1:-1:-1;;;13529:6:7;:12;:::i;:::-;13543:4;13522:6;:26::i;12987:206::-;13070:14;13105:22;13110:6;13118:8;13105:4;:22::i;:::-;13096:31;;13161:8;-1:-1:-1;;;;;13142:44:7;13151:8;13142:44;;;13171:6;13179;13142:44;;;;;;9018:25:8;;;9074:2;9059:18;;9052:34;9006:2;8991:18;;8844:248;13142:44:7;;;;;;;;12987:206;;;;;:::o;8367:902::-;8448:4;-1:-1:-1;;;;;8472:16:7;;;;;;:39;;-1:-1:-1;;;;;;8492:19:7;;8506:4;8492:19;;8472:39;8464:73;;;;-1:-1:-1;;;8464:73:7;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;8565:15:7;;8547;8565;;;:9;:15;;;;;;8598:16;;;;8590:55;;;;-1:-1:-1;;;8590:55:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;8660:18:7;;8668:10;8660:18;8656:345;;-1:-1:-1;;;;;8712:15:7;;8694;8712;;;:9;:15;;;;;;;;8728:10;8712:27;;;;;;;;-1:-1:-1;;8757:28:7;;8753:238;;8824:5;8813:7;:16;;8805:57;;;;-1:-1:-1;;;8805:57:7;;10004:2:8;8805:57:7;;;9986:21:8;10043:2;10023:18;;;10016:30;10082;10062:18;;;10055:58;10130:18;;8805:57:7;9802:352:8;8805:57:7;-1:-1:-1;;;;;8913:15:7;;;;;;:9;:15;;;;;;;;8929:10;8913:27;;;;;;;8943:15;;;8913:45;;8753:238;8680:321;8656:345;-1:-1:-1;;;;;9035:15:7;;;;;;;:9;:15;;;;;;9053;;;9035:33;;9082:13;;;;;;;;;;:22;;;;;;9215:25;;-1:-1:-1;;;;;;;;;;;9215:25:7;;;9063:5;160:25:8;;148:2;133:18;;14:177;9215:25:7;;;;;;;;-1:-1:-1;9258:4:7;;8367:902;-1:-1:-1;;;;8367:902:7:o;6673:335::-;3607:10;3601:5;:17;;;;;;;;;;;3622:1;3601:22;3593:55;;;;-1:-1:-1;;;3593:55:7;;;;;;;:::i;:::-;6743:4:::1;-1:-1:-1::0;;;6743:13:7;6739:231:::1;;-1:-1:-1::0;;;6780:4:7::1;:11;;6772:45;;;::::0;-1:-1:-1;;;6772:45:7;;10710:2:8;6772:45:7::1;::::0;::::1;10692:21:8::0;10749:2;10729:18;;;10722:30;-1:-1:-1;;;10768:18:8;;;10761:51;10829:18;;6772:45:7::1;10508:345:8::0;6772:45:7::1;6839:3;::::0;-1:-1:-1;;;;;;;;6839:3:7;;::::1;;6846:15;6839:22;6831:59;;;::::0;-1:-1:-1;;;6831:59:7;;11060:2:8;6831:59:7::1;::::0;::::1;11042:21:8::0;11099:2;11079:18;;;11072:30;11138:26;11118:18;;;11111:54;11182:18;;6831:59:7::1;10858:348:8::0;6831:59:7::1;6904:3;:10:::0;;;6739:231:::1;;;6931:39;::::0;-1:-1:-1;;;6931:39:7;;11413:2:8;6931:39:7::1;::::0;::::1;11395:21:8::0;11452:2;11432:18;;;11425:30;11491:31;11471:18;;;11464:59;11540:18;;6931:39:7::1;11211:353:8::0;6739:231:7::1;6990:4;6985:16;6996:4;6985:16;;;;160:25:8::0;;148:2;133:18;;14:177;6985:16:7::1;;;;;;;;6673:335:::0;;:::o;5002:124::-;5053:7;5079:40;5105:13;5079:25;:40::i;13882:118::-;13944:7;13970:23;13986:6;13970:15;:23::i;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;6469:96:7:-;3607:10;3601:5;:17;;;;;;;;;;;3622:1;3601:22;3593:55;;;;-1:-1:-1;;;3593:55:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;6520:10:7;::::1;:5;:10:::0;;;::::1;::::0;;;;;;;6533:1:::1;6520:14:::0;;6549:9;::::1;::::0;6520:5;6549:9:::1;6469:96:::0;:::o;12079:171::-;12146:14;12196:6;:4;:6::i;:::-;12181:12;-1:-1:-1;;;12181:6:7;:12;:::i;:::-;:21;;;;:::i;:::-;12172:30;;12212:31;12218:6;12226;12234:8;12212:5;:31::i;4055:270::-;8870:21:0;4302:15;;-1:-1:-1;;;4302:15:0;;;;4301:16;;-1:-1:-1;;;;;4348:14:0;4158:30;4726:16;;:34;;;;;4746:14;4726:34;4706:54;;4770:17;4790:11;-1:-1:-1;;;;;4790:16:0;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;4108:24:7::1;:22;:24::i;:::-;-1:-1:-1::0;;;;;;4184:15:7::1;-1:-1:-1::0;;;;;4171:29:7::1;;::::0;::::1;4143:3;4171:29:::0;4210:3:::1;:9:::0;4229:27:::1;::::0;-1:-1:-1;;;4229:27:7;;4246:8:::1;-1:-1:-1::0;;;;;3527:32:8;;;4229:27:7::1;::::0;::::1;3509:51:8::0;4229:3:7::1;:8;::::0;::::1;::::0;3482:18:8;;4229:27:7::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;4272:10:7::1;4266:5;:17:::0;;;::::1;::::0;;;;;;;4286:1:::1;4266:21:::0;;4302:16;4272:10;;-1:-1:-1;4302:16:7::1;::::0;-1:-1:-1;4266:5:7;4302:16:::1;5070:14:0::0;5066:101;;;5100:23;;-1:-1:-1;;;;5100:23:0;;;5142:14;;-1:-1:-1;1910:50:8;;5142:14:0;;1898:2:8;1883:18;5142:14:0;;;;;;;5066:101;4092:1081;;;;;4055:270:7:o;12806:175::-;12870:14;12905:28;12921:6;:4;:6::i;:::-;12912:15;;:6;:15;:::i;:::-;-1:-1:-1;;;12905:6:7;:28::i;:::-;12896:37;;12943:31;12949:6;12957;12965:8;12943:5;:31::i;12256:212::-;12342:14;12377:25;12385:6;12393:8;12377:7;:25::i;:::-;12368:34;;12436:8;-1:-1:-1;;;;;12417:44:7;12426:8;12417:44;;;12446:6;12454;12417:44;;;;;;9018:25:8;;;9074:2;9059:18;;9052:34;9006:2;8991:18;;8844:248;6571:96:7;3607:10;3601:5;:17;;;;;;;;;;;3622:1;3601:22;3593:55;;;;-1:-1:-1;;;3593:55:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;6622:10:7;::::1;6635:1;6622:10:::0;;;::::1;::::0;;;;;;;:14;;;6651:9;::::1;::::0;6635:1;6651:9:::1;6571:96:::0;:::o;7083:693::-;7171:3;;7115:12;;-1:-1:-1;;;;;7171:3:7;;;-1:-1:-1;;;7176:3:7;;-1:-1:-1;;;;;7176:3:7;7115:12;7216:15;-1:-1:-1;;7212:527:7;;;-1:-1:-1;;;7298:4:7;7261:34;7267:3;;7290:4;7272:15;:22;;;;:::i;7261:34::-;:41;;;;:::i;:::-;:47;;;;:::i;:::-;7345:11;;7254:54;;-1:-1:-1;;;;7405:19:7;7420:4;7345:11;7405:19;:::i;:::-;:25;;;;:::i;:::-;-1:-1:-1;;;7377:19:7;7392:4;7377:12;:19;:::i;:::-;:25;;;;:::i;:::-;:53;;;;:::i;:::-;7370:60;-1:-1:-1;;;;;;7444:3:7;:8;;7461:3;7475:4;7482:10;-1:-1:-1;;;7370:60:7;7482:10;:::i;:::-;7444:49;;-1:-1:-1;;;;;;7444:49:7;;;;;;;-1:-1:-1;;;;;12041:15:8;;;7444:49:7;;;12023:34:8;12093:15;;;;12073:18;;;12066:43;12125:18;;;12118:34;11958:18;;7444:49:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7507:34:7;;-1:-1:-1;;;7507:34:7;;7529:4;7507:34;;;12337:51:8;12404:18;;;12397:34;;;7507:8:7;-1:-1:-1;;;;;7507:13:7;;-1:-1:-1;7507:13:7;;-1:-1:-1;12310:18:8;;7507:34:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;7670:15:7;7657:29;-1:-1:-1;;;7657:29:7;-1:-1:-1;;;;;7555:19:7;;7657:29;7555:3;7657:29;7212:527;;;7724:4;7717:11;;7212:527;7753:16;;;9018:25:8;;;9074:2;9059:18;;9052:34;;;7753:16:7;;8991:18:8;7753:16:7;;;;;;;7129:647;;;7083:693;:::o;15179:945::-;15374:8;15355:15;:27;;15347:60;;;;-1:-1:-1;;;15347:60:7;;12644:2:8;15347:60:7;;;12626:21:8;12683:2;12663:18;;;12656:30;-1:-1:-1;;;12702:18:8;;;12695:50;12762:18;;15347:60:7;12442:344:8;15347:60:7;-1:-1:-1;;;;;15425:19:7;;15417:51;;;;-1:-1:-1;;;15417:51:7;;12993:2:8;15417:51:7;;;12975:21:8;13032:2;13012:18;;;13005:30;-1:-1:-1;;;13051:18:8;;;13044:49;13110:18;;15417:51:7;12791:343:8;15417:51:7;-1:-1:-1;;;;;15522:13:7;;15479;15522;;;:6;:13;;;;;:15;;;;;;;;;15651:40;15677:13;15651:25;:40::i;:::-;15719:205;;;2504:95;15719:205;;;13426:25:8;-1:-1:-1;;;;;13525:15:8;;;13505:18;;;13498:43;;;;13577:15;;;13557:18;;;13550:43;13609:18;;;13602:34;;;13652:19;;;13645:35;;;13696:19;;;13689:35;;;13398:19;;15719:205:7;;;;;;;;;;;;15709:216;;;;;;15589:350;;;;;;;;-1:-1:-1;;;13993:27:8;;14045:1;14036:11;;14029:27;;;;14081:2;14072:12;;14065:28;14118:2;14109:12;;13735:392;15589:350:7;;;;;;;;;;;;;15579:361;;;;;;15550:390;;15959:43;15977:5;15984:6;15992:9;15959:17;:43::i;:::-;15951:76;;;;-1:-1:-1;;;15951:76:7;;14334:2:8;15951:76:7;;;14316:21:8;14373:2;14353:18;;;14346:30;-1:-1:-1;;;14392:18:8;;;14385:50;14452:18;;15951:76:7;14132:344:8;15951:76:7;-1:-1:-1;;;;;16038:16:7;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;16086:31;;160:25:8;;;16086:31:7;;133:18:8;16086:31:7;;;;;;;15337:787;;15179:945;;;;;:::o;7814:547::-;7877:4;-1:-1:-1;;;;;7901:16:7;;;;;;:39;;-1:-1:-1;;;;;;7921:19:7;;7935:4;7921:19;;7901:39;7893:73;;;;-1:-1:-1;;;7893:73:7;;;;;;;:::i;:::-;8004:10;7976:15;7994:21;;;:9;:21;;;;;;8033:16;;;;8025:55;;;;-1:-1:-1;;;8025:55:7;;;;;;;:::i;:::-;8125:10;8115:21;;;;:9;:21;;;;;;;;8139:15;;;8115:39;;-1:-1:-1;;;;;8168:13:7;;;;;;;;;:22;;;;;;8301:31;160:25:8;;;8168:13:7;;8125:10;-1:-1:-1;;;;;;;;;;;8301:31:7;133:18:8;8301:31:7;;;;;;;-1:-1:-1;8350:4:7;;7814:547;-1:-1:-1;;;7814:547:7:o;4416:117::-;4468:7;4494:32;-1:-1:-1;;;;;;;;;;;2035:53:3;-1:-1:-1;;;;;2035:53:3;;1957:138;12579:221:7;12692:3;;12639:7;;;;-1:-1:-1;;;12692:3:7;;-1:-1:-1;;;;;12692:3:7;12674:15;:21;12673:77;;12747:3;;-1:-1:-1;;;;;12747:3:7;12673:77;;;12735:3;;12705;;-1:-1:-1;;;2406:8:7;-1:-1:-1;;;;;12735:3:7;;;12699:33;;12710:21;;-1:-1:-1;;;12728:3:7;;-1:-1:-1;;;;;12728:3:7;12710:15;:21;:::i;12699:33::-;:39;;;;:::i;:::-;:45;;;;:::i;:::-;12658:92;-1:-1:-1;12767:26:7;12774:13;12658:92;12774:6;:13;:::i;13561:203::-;13646:14;13681:28;13688:12;-1:-1:-1;;;13688:6:7;:12;:::i;:::-;13702:6;:4;:6::i;:::-;13681;:28::i;:::-;13672:37;;13719:38;13725:6;13733;13741:8;13751:5;13719;:38::i;14006:194::-;14089:14;-1:-1:-1;;;14133:6:7;:4;:6::i;:::-;14124:15;;:6;:15;:::i;:::-;:21;;;;:::i;:::-;14115:30;;14155:38;14161:6;14169;14177:8;14187:5;14155;:38::i;11402:216::-;11517:3;;11464:7;;;;-1:-1:-1;;;11517:3:7;;-1:-1:-1;;;;;11517:3:7;11499:15;:21;11498:77;;11572:3;;-1:-1:-1;;;;;11572:3:7;11498:77;;;11560:3;;11530;;-1:-1:-1;;;2406:8:7;-1:-1:-1;;;;;11560:3:7;;;11524:33;;11535:21;;-1:-1:-1;;;11553:3:7;;-1:-1:-1;;;;;11553:3:7;11535:15;:21;:::i;11524:33::-;:39;;;;:::i;:::-;:45;;;;:::i;:::-;11483:92;-1:-1:-1;11483:92:7;11592:12;-1:-1:-1;;;11592:6:7;:12;:::i;13199:125::-;-1:-1:-1;;;;;13300:16:7;;13258:7;13300:16;;;:9;:16;;;;;;13284:33;;:15;:33::i;16130:266::-;16323:66;16330:5;16337:7;16346:5;16353:8;16380:1;16383;16386;16363:25;;;;;;;;;14662:19:8;;;14706:2;14697:12;;14690:28;;;;14774:3;14752:16;-1:-1:-1;;;;;;14748:36:8;14743:2;14734:12;;14727:58;14810:2;14801:12;;14481:338;16363:25:7;;;;;;;;;;;;;16323:6;:66::i;:::-;16130:266;;;;;;;:::o;11954:119::-;12017:7;12043:23;12059:6;12043:15;:23::i;5145:1030::-;5205:9;5256:1;5258:52;;;;5356:9;;;5366:19;;;;5401:1;5396:6;;5349:55;;5366:19;-1:-1:-1;;;5375:8:7;;5349:55;-1:-1:-1;5442:1:7;5490:9;;;;5433:11;5479:666;5502:1;5479:666;;;5561:1;5558;5554:9;5609:1;5605;5601:2;5597:10;5594:17;5584:44;;5624:1;5622;5615:11;5584:44;5672:4;5668:2;5664:13;5713:2;5704:7;5701:15;5698:34;;;5728:1;5726;5719:11;5698:34;-1:-1:-1;;;5758:17:7;;;-1:-1:-1;;5799:8:7;;;5796:331;;;5851:1;5848;5844:9;5926:1;5922;5918:2;5914:10;5911:17;5904:25;5899:1;5892:9;5885:17;5881:49;5878:68;;;5942:1;5940;5933:11;5878:68;5994:4;5990:2;5986:13;6039:2;6030:7;6027:15;6024:34;;;6054:1;6052;6045:11;6024:34;-1:-1:-1;;;6088:17:7;;;-1:-1:-1;;5796:331:7;5517:1;5515;5511:8;5506:13;;5479:666;;;5483:18;5249:910;;5258:52;5273:1;5275:17;;;;5307:1;5302:6;;5266:43;;5275:17;-1:-1:-1;;;5283:8:7;;5266:43;;5249:910;;5145:1030;;;;:::o;6181:241::-;6242:9;6375:1;6380;6375:6;:30;;6404:1;6375:30;;;6395:1;6390;6386;:5;6385:11;;;;;:::i;:::-;;6400:1;6384:17;6371:34;6181:241;-1:-1:-1;;;6181:241:7:o;4580:416::-;4860:4;;;;;;;;;;;-1:-1:-1;;;4860:4:7;;;;;4900:7;;;;;;;;;;-1:-1:-1;;;4900:7:7;;;;4703:276;;4731:95;4703:276;;;15083:25:8;4844:22:7;15124:18:8;;;15117:34;4884:25:7;15167:18:8;;;15160:34;15210:18;;;15203:34;;;;4960:4:7;15253:19:8;;;;15246:61;;;;4703:276:7;;;;;;;;;;15055:19:8;;;;4703:276:7;;;4680:309;;;;;;4580: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;4331:79:7:-;3607:10;3601:5;:17;;;;;;;;;;;3622:1;3601:22;3593:55;;;;-1:-1:-1;;;3593:55:7;;;;;;;:::i;:::-;4331: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;;;;;3527:32:8;;6513:60:1;;;3509:51:8;3482:18;;6513:60:1;3347:219:8;6147:437:1;-1:-1:-1;;;;;;;;;;;6245:40:1;;6241:120;;6312:34;;-1:-1:-1;;;6312:34:1;;;;;160:25:8;;;133:18;;6312:34:1;14: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;;;;;;;;;;;9518:685:7;-1:-1:-1;;;;;9610:22:7;;;;;;:51;;-1:-1:-1;;;;;;9636:25:7;;9656:4;9636:25;;9610:51;9602:85;;;;-1:-1:-1;;;9602:85:7;;;;;;;:::i;:::-;9698:52;;-1:-1:-1;;;9698:52:7;;9716:10;9698:52;;;12023:34:8;9736:4:7;12073:18:8;;;12066:43;12125:18;;;12118:34;;;9698:4:7;-1:-1:-1;;;;;9698:17:7;;;;11958:18:8;;9698:52:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;9807:19:7;;;;;;:9;:19;;;;;;;;;;;:28;;9785:50;;-1:-1:-1;9948:11:7;;:20;;9934:34;;10098:45;;9018:25:8;;;9059:18;;;9052:34;;;10106:10:7;;10098:45;;8991:18:8;10098:45:7;;;;;;;10158:38;;160:25:8;;;-1:-1:-1;;;;;10158:38:7;;;10175:1;;-1:-1:-1;;;;;;;;;;;10158:38:7;148:2:8;133:18;10158:38:7;;;;;;;9518:685;;;:::o;2968:67:1:-;6931:20:0;:18;:20::i;14243:930:7:-;14379:10;14405:9;:16;14425:2;14405:22;14401:398;;14563:4;14548:20;;;14542:27;14612:4;14597:20;;;14591:27;14669:4;14654:20;;;14648:27;14717:26;;14443:9;14717:26;;;;;;;;;15734:25:8;;;14640:36:7;;15775:18:8;;;15768:45;;;15829:18;;15822:34;;;15872:18;;;15865:34;;;14542:27:7;;14717:26;;15706:19:8;;14717:26:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14707:36:7;:6;-1:-1:-1;;;;;14707:36:7;;14703:86;;14770:4;14763:11;;;;;;;14703:86;14429:370;;;14401:398;-1:-1:-1;;;;;14813:18:7;;;:22;14809:358;;14852:12;14866:19;14889:6;-1:-1:-1;;;;;14889:17:7;14967:6;14975:9;14924:62;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;14924:62:7;;;;;;;;;;;;;;-1:-1:-1;;;;;14924:62:7;-1:-1:-1;;;14924:62:7;;;14889:111;;;14924:62;14889:111;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14851:149;;;;15023:7;:46;;;;;15050:6;:13;15067:2;15050:19;15023:46;:132;;;;-1:-1:-1;15089:28:7;;-1:-1:-1;;;15121:34:7;15089:28;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;15089:66:7;;15023:132;15014:142;14243:930;-1:-1:-1;;;;;;14243:930:7:o;10209:957::-;-1:-1:-1;;;;;10326:16:7;;10308:15;10326:16;;;:9;:16;;;;;;10360:17;;;;10352:56;;;;-1:-1:-1;;;10352:56:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;10423:19:7;;10432:10;10423:19;10419:350;;-1:-1:-1;;;;;10476:16:7;;10458:15;10476:16;;;:9;:16;;;;;;;;10493:10;10476:28;;;;;;;;-1:-1:-1;;10522:28:7;;10518:241;;10589:6;10578:7;:17;;10570:58;;;;-1:-1:-1;;;10570:58:7;;10004:2:8;10570:58:7;;;9986:21:8;10043:2;10023:18;;;10016:30;10082;10062:18;;;10055:58;10130:18;;10570:58:7;9802:352:8;10570:58:7;-1:-1:-1;;;;;10679:16:7;;;;;;:9;:16;;;;;;;;10696:10;10679:28;;;;;;;10710:16;;;10679:47;;10518:241;10444:325;10419:350;-1:-1:-1;;;;;10803:16:7;;;;;;;:9;:16;;;;;;;10822;;;10803:35;;10968:11;;;:20;;;10949:39;;11009:31;-1:-1:-1;;;11009:31:7;;12355:32:8;;;11009:31:7;;;12337:51:8;12404:18;;;12397:34;;;11009:4:7;:13;;;;;;12310:18:8;;11009:31:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11056:35:7;;160:25:8;;;11080:1:7;;-1:-1:-1;;;;;;11056:35:7;;;-1:-1:-1;;;;;;;;;;;;11056:35:7;148:2:8;133:18;11056:35:7;;;;;;;11106:53;;;9018:25:8;;;9074:2;9059:18;;9052:34;;;-1:-1:-1;;;;;11106:53:7;;;;;;;;11115:10;;11106:53;;8991:18:8;11106:53:7;;;;;;;10298:868;10209:957;;;;:::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;;;;;3527:32:8;;2320:47:3;;;3509:51:8;3482:18;;2320:47:3;3347:219: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;;;;;3527:32:8;;5121:24:5;;;3509:51:8;3482:18;;5121:24:5;3347:219: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;;;;;;;;;;;196:250:8;281:1;291:113;305:6;302:1;299:13;291:113;;;381:11;;;375:18;362:11;;;355:39;327:2;320:10;291:113;;;-1:-1:-1;;438:1:8;420:16;;413:27;196:250::o;451:271::-;493:3;531:5;525:12;558:6;553:3;546:19;574:76;643:6;636:4;631:3;627:14;620:4;613:5;609:16;574:76;:::i;:::-;704:2;683:15;-1:-1:-1;;679:29:8;670:39;;;;711:4;666:50;;451:271;-1:-1:-1;;451:271:8:o;727:220::-;876:2;865:9;858:21;839:4;896:45;937:2;926:9;922:18;914:6;896:45;:::i;952:180::-;1011:6;1064:2;1052:9;1043:7;1039:23;1035:32;1032:52;;;1080:1;1077;1070:12;1032:52;-1:-1:-1;1103:23:8;;952:180;-1:-1:-1;952:180:8:o;1137:173::-;1205:20;;-1:-1:-1;;;;;1254:31:8;;1244:42;;1234:70;;1300:1;1297;1290:12;1234:70;1137:173;;;:::o;1315:254::-;1383:6;1391;1444:2;1432:9;1423:7;1419:23;1415:32;1412:52;;;1460:1;1457;1450:12;1412:52;1483:29;1502:9;1483:29;:::i;:::-;1473:39;1559:2;1544:18;;;;1531:32;;-1:-1:-1;;;1315:254:8:o;1971:414::-;2047:6;2055;2063;2116:2;2104:9;2095:7;2091:23;2087:32;2084:52;;;2132:1;2129;2122:12;2084:52;2168:9;2155:23;2145:33;;2197:38;2231:2;2220:9;2216:18;2197:38;:::i;:::-;2187:48;;2285:2;2274:9;2270:18;2257:32;2329:6;2322:5;2318:18;2311:5;2308:29;2298:57;;2351:1;2348;2341:12;2298:57;2374:5;2364:15;;;1971:414;;;;;:::o;2390:328::-;2467:6;2475;2483;2536:2;2524:9;2515:7;2511:23;2507:32;2504:52;;;2552:1;2549;2542:12;2504:52;2575:29;2594:9;2575:29;:::i;:::-;2565:39;;2623:38;2657:2;2646:9;2642:18;2623:38;:::i;:::-;2613:48;;2708:2;2697:9;2693:18;2680:32;2670:42;;2390:328;;;;;:::o;2723:248::-;2791:6;2799;2852:2;2840:9;2831:7;2827:23;2823:32;2820:52;;;2868:1;2865;2858:12;2820:52;-1:-1:-1;;2891:23:8;;;2961:2;2946:18;;;2933:32;;-1:-1:-1;2723:248:8:o;3779:186::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3930:29;3949:9;3930:29;:::i;4195:127::-;4256:10;4251:3;4247:20;4244:1;4237:31;4287:4;4284:1;4277:15;4311:4;4308:1;4301:15;4327:718;4369:5;4422:3;4415:4;4407:6;4403:17;4399:27;4389:55;;4440:1;4437;4430:12;4389:55;4476:6;4463:20;-1:-1:-1;;;;;4539:2:8;4535;4532:10;4529:36;;;4545:18;;:::i;:::-;4620:2;4614:9;4588:2;4674:13;;-1:-1:-1;;4670:22:8;;;4694:2;4666:31;4662:40;4650:53;;;4718:18;;;4738:22;;;4715:46;4712:72;;;4764:18;;:::i;:::-;4804:10;4800:2;4793:22;4839:2;4831:6;4824:18;4885:3;4878:4;4873:2;4865:6;4861:15;4857:26;4854:35;4851:55;;;4902:1;4899;4892:12;4851:55;4966:2;4959:4;4951:6;4947:17;4940:4;4932:6;4928:17;4915:54;5013:1;5006:4;5001:2;4993:6;4989:15;4985:26;4978:37;5033:6;5024:15;;;;;;4327:718;;;;:::o;5050:394::-;5127:6;5135;5188:2;5176:9;5167:7;5163:23;5159:32;5156:52;;;5204:1;5201;5194:12;5156:52;5227:29;5246:9;5227:29;:::i;:::-;5217:39;;5307:2;5296:9;5292:18;5279:32;-1:-1:-1;;;;;5326:6:8;5323:30;5320:50;;;5366:1;5363;5356:12;5320:50;5389:49;5430:7;5421:6;5410:9;5406:22;5389:49;:::i;:::-;5379:59;;;5050:394;;;;;:::o;5449:254::-;5517:6;5525;5578:2;5566:9;5557:7;5553:23;5549:32;5546:52;;;5594:1;5591;5584:12;5546:52;5630:9;5617:23;5607:33;;5659:38;5693:2;5682:9;5678:18;5659:38;:::i;:::-;5649:48;;5449:254;;;;;:::o;5708:606::-;5812:6;5820;5828;5836;5844;5897:3;5885:9;5876:7;5872:23;5868:33;5865:53;;;5914:1;5911;5904:12;5865:53;5937:29;5956:9;5937:29;:::i;:::-;5927:39;;5985:38;6019:2;6008:9;6004:18;5985:38;:::i;:::-;5975:48;;6070:2;6059:9;6055:18;6042:32;6032:42;;6121:2;6110:9;6106:18;6093:32;6083:42;;6176:3;6165:9;6161:19;6148:33;-1:-1:-1;;;;;6196:6:8;6193:30;6190:50;;;6236:1;6233;6226:12;6190:50;6259:49;6300:7;6291:6;6280:9;6276:22;6259:49;:::i;:::-;6249:59;;;5708:606;;;;;;;;:::o;6319:328::-;6396:6;6404;6412;6465:2;6453:9;6444:7;6440:23;6436:32;6433:52;;;6481:1;6478;6471:12;6433:52;6517:9;6504:23;6494:33;;6546:38;6580:2;6569:9;6565:18;6546:38;:::i;:::-;6536:48;;6603:38;6637:2;6626:9;6622:18;6603:38;:::i;:::-;6593:48;;6319:328;;;;;:::o;6860:693::-;6971:6;6979;6987;6995;7003;7011;7019;7072:3;7060:9;7051:7;7047:23;7043:33;7040:53;;;7089:1;7086;7079:12;7040:53;7112:29;7131:9;7112:29;:::i;:::-;7102:39;;7160:38;7194:2;7183:9;7179:18;7160:38;:::i;:::-;7150:48;;7245:2;7234:9;7230:18;7217:32;7207:42;;7296:2;7285:9;7281:18;7268:32;7258:42;;7350:3;7339:9;7335:19;7322:33;7395:4;7388:5;7384:16;7377:5;7374:27;7364:55;;7415:1;7412;7405:12;7364:55;6860:693;;;;-1:-1:-1;6860:693:8;;;;7438:5;7490:3;7475:19;;7462:33;;-1:-1:-1;7542:3:8;7527:19;;;7514:33;;6860:693;-1:-1:-1;;6860:693:8:o;7558:260::-;7626:6;7634;7687:2;7675:9;7666:7;7662:23;7658:32;7655:52;;;7703:1;7700;7693:12;7655:52;7726:29;7745:9;7726:29;:::i;:::-;7716:39;;7774:38;7808:2;7797:9;7793:18;7774:38;:::i;8052:127::-;8113:10;8108:3;8104:20;8101:1;8094:31;8144:4;8141:1;8134:15;8168:4;8165:1;8158:15;8184:128;8251:9;;;8272:11;;;8269:37;;;8286:18;;:::i;8317:168::-;8390:9;;;8421;;8438:15;;;8432:22;;8418:37;8408:71;;8459:18;;:::i;8490:127::-;8551:10;8546:3;8542:20;8539:1;8532:31;8582:4;8579:1;8572:15;8606:4;8603:1;8596:15;8622:217;8662:1;8688;8678:132;;8732:10;8727:3;8723:20;8720:1;8713:31;8767:4;8764:1;8757:15;8795:4;8792:1;8785:15;8678:132;-1:-1:-1;8824:9:8;;8622:217::o;9097:345::-;9299:2;9281:21;;;9338:2;9318:18;;;9311:30;-1:-1:-1;;;9372:2:8;9357:18;;9350:51;9433:2;9418:18;;9097:345::o;9447:350::-;9649:2;9631:21;;;9688:2;9668:18;;;9661:30;9727:28;9722:2;9707:18;;9700:56;9788:2;9773:18;;9447:350::o;10159:344::-;10361:2;10343:21;;;10400:2;10380:18;;;10373:30;-1:-1:-1;;;10434:2:8;10419:18;;10412:50;10494:2;10479:18;;10159:344::o;15318:184::-;15388:6;15441:2;15429:9;15420:7;15416:23;15412:32;15409:52;;;15457:1;15454;15447:12;15409:52;-1:-1:-1;15480:16:8;;15318:184;-1:-1:-1;15318:184:8:o;15910:289::-;16085:6;16074:9;16067:25;16128:2;16123;16112:9;16108:18;16101:30;16048:4;16148:45;16189:2;16178:9;16174:18;16166:6;16148:45;:::i;:::-;16140:53;15910:289;-1:-1:-1;;;;15910:289:8:o;16204:287::-;16333:3;16371:6;16365:13;16387:66;16446:6;16441:3;16434:4;16426:6;16422:17;16387:66;:::i;:::-;16469:16;;;;;16204:287;-1:-1:-1;;16204:287:8:o;16496:290::-;16565:6;16618:2;16606:9;16597:7;16593:23;16589:32;16586:52;;;16634:1;16631;16624:12;16586:52;16660:16;;-1:-1:-1;;;;;;16705:32:8;;16695:43;;16685:71;;16752:1;16749;16742:12
Swarm Source
ipfs://efe51b4da684074b634b858f100541c75822df39c037f225ba038ffe08b7c09d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
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.