Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RangedMarketMastercopy
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// Inheritance
import "./RangedMarket.sol";
contract RangedMarketMastercopy is RangedMarket {
constructor() {
// Freeze mastercopy on deployment so it can never be initialized with real arguments
initialized = true;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts-4.4.1/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts-4.4.1/token/ERC20/utils/SafeERC20.sol";
// Internal references
import "./RangedPosition.sol";
import "./RangedMarketsAMM.sol";
import "../interfaces/IPositionalMarket.sol";
import "../interfaces/IPositionalMarketManager.sol";
contract RangedMarket {
using SafeERC20 for IERC20;
enum Position {In, Out}
IPositionalMarket public leftMarket;
IPositionalMarket public rightMarket;
struct Positions {
RangedPosition inp;
RangedPosition outp;
}
Positions public positions;
RangedMarketsAMM public rangedMarketsAMM;
bool public resolved = false;
uint finalPrice;
/* ========== CONSTRUCTOR ========== */
bool public initialized = false;
function initialize(
address _leftMarket,
address _rightMarket,
address _in,
address _out,
address _rangedMarketsAMM
) external {
require(!initialized, "Ranged Market already initialized");
initialized = true;
leftMarket = IPositionalMarket(_leftMarket);
rightMarket = IPositionalMarket(_rightMarket);
positions.inp = RangedPosition(_in);
positions.outp = RangedPosition(_out);
rangedMarketsAMM = RangedMarketsAMM(_rangedMarketsAMM);
}
function mint(
uint value,
Position _position,
address minter
) external onlyAMM {
if (value == 0) {
return;
}
_mint(minter, value, _position);
}
function _mint(
address minter,
uint amount,
Position _position
) internal {
if (_position == Position.In) {
positions.inp.mint(minter, amount);
} else {
positions.outp.mint(minter, amount);
}
emit Mint(minter, amount, _position);
}
function burnIn(uint value, address claimant) external onlyAMM {
if (value == 0) {
return;
}
(IPosition up, ) = IPositionalMarket(leftMarket).getOptions();
IERC20(address(up)).safeTransfer(msg.sender, value / 2);
(, IPosition down1) = IPositionalMarket(rightMarket).getOptions();
IERC20(address(down1)).safeTransfer(msg.sender, value / 2);
positions.inp.burn(claimant, value);
emit Burn(claimant, value, Position.In);
}
function burnOut(uint value, address claimant) external onlyAMM {
if (value == 0) {
return;
}
(, IPosition down) = IPositionalMarket(leftMarket).getOptions();
IERC20(address(down)).safeTransfer(msg.sender, value);
(IPosition up1, ) = IPositionalMarket(rightMarket).getOptions();
IERC20(address(up1)).safeTransfer(msg.sender, value);
positions.outp.burn(claimant, value);
emit Burn(claimant, value, Position.Out);
}
function canExercisePositions() external view returns (bool) {
if (!leftMarket.resolved() && !leftMarket.canResolve()) {
return false;
}
if (!rightMarket.resolved() && !rightMarket.canResolve()) {
return false;
}
uint inBalance = positions.inp.balanceOf(msg.sender);
uint outBalance = positions.outp.balanceOf(msg.sender);
if (inBalance == 0 && outBalance == 0) {
return false;
}
return true;
}
function exercisePositions() external {
if (leftMarket.canResolve()) {
IPositionalMarketManager(rangedMarketsAMM.thalesAmm().manager()).resolveMarket(address(leftMarket));
}
if (rightMarket.canResolve()) {
IPositionalMarketManager(rangedMarketsAMM.thalesAmm().manager()).resolveMarket(address(rightMarket));
}
require(leftMarket.resolved() && rightMarket.resolved(), "Left or Right market not resolved yet!");
uint inBalance = positions.inp.balanceOf(msg.sender);
uint outBalance = positions.outp.balanceOf(msg.sender);
require(inBalance != 0 || outBalance != 0, "Nothing to exercise");
if (!resolved) {
resolveMarket();
}
// Each option only needs to be exercised if the account holds any of it.
if (inBalance != 0) {
positions.inp.burn(msg.sender, inBalance);
}
if (outBalance != 0) {
positions.outp.burn(msg.sender, outBalance);
}
Position curResult = Position.Out;
if ((leftMarket.result() == IPositionalMarket.Side.Up) && (rightMarket.result() == IPositionalMarket.Side.Down)) {
curResult = Position.In;
}
// Only pay out the side that won.
uint payout = (curResult == Position.In) ? inBalance : outBalance;
if (payout != 0) {
rangedMarketsAMM.transferSusdTo(
msg.sender,
IPositionalMarketManager(rangedMarketsAMM.thalesAmm().manager()).transformCollateral(payout)
);
}
emit Exercised(msg.sender, payout, curResult);
}
function canResolve() external view returns (bool) {
// The markets must be resolved
if (!leftMarket.resolved() && !leftMarket.canResolve()) {
return false;
}
if (!rightMarket.resolved() && !rightMarket.canResolve()) {
return false;
}
return !resolved;
}
function resolveMarket() public {
// The markets must be resolved
if (leftMarket.canResolve()) {
IPositionalMarketManager(rangedMarketsAMM.thalesAmm().manager()).resolveMarket(address(leftMarket));
}
if (rightMarket.canResolve()) {
IPositionalMarketManager(rangedMarketsAMM.thalesAmm().manager()).resolveMarket(address(rightMarket));
}
require(leftMarket.resolved() && rightMarket.resolved(), "Left or Right market not resolved yet!");
require(!resolved, "Already resolved!");
if (positions.inp.totalSupply() > 0 || positions.outp.totalSupply() > 0) {
leftMarket.exerciseOptions();
rightMarket.exerciseOptions();
}
resolved = true;
if (rangedMarketsAMM.sUSD().balanceOf(address(this)) > 0) {
rangedMarketsAMM.sUSD().transfer(address(rangedMarketsAMM), rangedMarketsAMM.sUSD().balanceOf(address(this)));
}
(, , uint _finalPrice) = leftMarket.getOracleDetails();
finalPrice = _finalPrice;
emit Resolved(result(), finalPrice);
}
function result() public view returns (Position resultToReturn) {
resultToReturn = Position.Out;
if ((leftMarket.result() == IPositionalMarket.Side.Up) && (rightMarket.result() == IPositionalMarket.Side.Down)) {
resultToReturn = Position.In;
}
}
function withdrawCollateral(address recipient) external onlyAMM {
rangedMarketsAMM.sUSD().transfer(recipient, rangedMarketsAMM.sUSD().balanceOf(address(this)));
}
modifier onlyAMM {
require(msg.sender == address(rangedMarketsAMM), "only the AMM may perform these methods");
_;
}
event Mint(address minter, uint amount, Position _position);
event Burn(address burner, uint amount, Position _position);
event Exercised(address exerciser, uint amount, Position _position);
event Resolved(Position winningPosition, uint finalPrice);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// in position collaterized by 0.5 UP on the left leg and 0.5 DOWN on the right leg
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// Inheritance
import "@openzeppelin/contracts-4.4.1/token/ERC20/IERC20.sol";
import "../interfaces/IPosition.sol";
// Internal references
import "./RangedMarket.sol";
contract RangedPosition is IERC20 {
/* ========== STATE VARIABLES ========== */
string public name;
string public symbol;
uint8 public constant decimals = 18;
RangedMarket public rangedMarket;
mapping(address => uint) public override balanceOf;
uint public override totalSupply;
// The argument order is allowance[owner][spender]
mapping(address => mapping(address => uint)) private allowances;
// Enforce a 1 cent minimum amount
uint internal constant _MINIMUM_AMOUNT = 1e16;
address public thalesRangedAMM;
/* ========== CONSTRUCTOR ========== */
bool public initialized = false;
function initialize(
address market,
string calldata _name,
string calldata _symbol,
address _thalesRangedAMM
) external {
require(!initialized, "Ranged Market already initialized");
initialized = true;
rangedMarket = RangedMarket(market);
name = _name;
symbol = _symbol;
thalesRangedAMM = _thalesRangedAMM;
}
function allowance(address owner, address spender) external view override returns (uint256) {
if (spender == thalesRangedAMM) {
return type(uint256).max;
} else {
return allowances[owner][spender];
}
}
function burn(address claimant, uint amount) external onlyRangedMarket {
balanceOf[claimant] = balanceOf[claimant] - amount;
totalSupply = totalSupply - amount;
emit Burned(claimant, amount);
emit Transfer(claimant, address(0), amount);
}
function mint(address minter, uint amount) external onlyRangedMarket {
_requireMinimumAmount(amount);
totalSupply = totalSupply + amount;
balanceOf[minter] = balanceOf[minter] + amount; // Increment rather than assigning since a transfer may have occurred.
emit Mint(minter, amount);
emit Transfer(address(0), minter, amount);
}
/* ---------- ERC20 Functions ---------- */
function _transfer(
address _from,
address _to,
uint _value
) internal returns (bool success) {
require(_to != address(0) && _to != address(this), "Invalid address");
uint fromBalance = balanceOf[_from];
require(_value <= fromBalance, "Insufficient balance");
balanceOf[_from] = fromBalance - _value;
balanceOf[_to] = balanceOf[_to] + _value;
emit Transfer(_from, _to, _value);
return true;
}
function transfer(address _to, uint _value) external override returns (bool success) {
return _transfer(msg.sender, _to, _value);
}
function transferFrom(
address _from,
address _to,
uint _value
) external override returns (bool success) {
if (msg.sender != thalesRangedAMM) {
uint fromAllowance = allowances[_from][msg.sender];
require(_value <= fromAllowance, "Insufficient allowance");
allowances[_from][msg.sender] = fromAllowance - _value;
}
return _transfer(_from, _to, _value);
}
function approve(address _spender, uint _value) external override returns (bool success) {
require(_spender != address(0));
allowances[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
function getBalanceOf(address account) external view returns (uint) {
return balanceOf[account];
}
function getTotalSupply() external view returns (uint) {
return totalSupply;
}
modifier onlyRangedMarket {
require(msg.sender == address(rangedMarket), "only the Ranged Market may perform these methods");
_;
}
function _requireMinimumAmount(uint amount) internal pure returns (uint) {
require(amount >= _MINIMUM_AMOUNT || amount == 0, "Balance < $0.01");
return amount;
}
event Mint(address minter, uint amount);
event Burned(address burner, uint amount);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// external
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "@openzeppelin/contracts-4.4.1/proxy/Clones.sol";
// interfaces
import "../interfaces/IPriceFeed.sol";
import "../interfaces/IThalesAMM.sol";
// internal
import "../utils/proxy/solidity-0.8.0/ProxyReentrancyGuard.sol";
import "../utils/proxy/solidity-0.8.0/ProxyOwned.sol";
import "../utils/proxy/solidity-0.8.0/ProxyPausable.sol";
import "../utils/libraries/AddressSetLib.sol";
import "./RangedPosition.sol";
import "./RangedPosition.sol";
import "./RangedMarket.sol";
import "../interfaces/IPositionalMarket.sol";
import "../interfaces/IStakingThales.sol";
import "../interfaces/IReferrals.sol";
import "../interfaces/ICurveSUSD.sol";
contract RangedMarketsAMM is Initializable, ProxyOwned, ProxyPausable, ProxyReentrancyGuard {
using AddressSetLib for AddressSetLib.AddressSet;
using SafeERC20Upgradeable for IERC20Upgradeable;
uint private constant ONE = 1e18;
uint private constant ONE_PERCENT = 1e16;
IThalesAMM public thalesAmm;
uint public rangedAmmFee;
mapping(address => mapping(address => address)) public createdRangedMarkets;
AddressSetLib.AddressSet internal _knownMarkets;
address public rangedMarketMastercopy;
address public rangedPositionMastercopy;
IERC20Upgradeable public sUSD;
mapping(address => uint) public spentOnMarket;
// IMPORTANT: AMM risks only half or the payout effectively, but it risks the whole amount on price movements
uint public capPerMarket;
uint public minSupportedPrice;
uint public maxSupportedPrice;
address public safeBox;
uint public safeBoxImpact;
uint public minimalDifBetweenStrikes;
IStakingThales public stakingThales;
uint public maximalDifBetweenStrikes;
address public referrals;
uint public referrerFee;
ICurveSUSD public curveSUSD;
address public usdc;
address public usdt;
address public dai;
bool public curveOnrampEnabled;
uint public maxAllowedPegSlippagePercentage;
function initialize(
address _owner,
IThalesAMM _thalesAmm,
uint _rangedAmmFee,
uint _capPerMarket,
IERC20Upgradeable _sUSD,
address _safeBox,
uint _safeBoxImpact
) public initializer {
setOwner(_owner);
initNonReentrant();
thalesAmm = _thalesAmm;
capPerMarket = _capPerMarket;
rangedAmmFee = _rangedAmmFee;
sUSD = _sUSD;
safeBox = _safeBox;
safeBoxImpact = _safeBoxImpact;
sUSD.approve(address(thalesAmm), type(uint256).max);
}
function createRangedMarket(address leftMarket, address rightMarket) external nonReentrant notPaused {
_createRangedMarket(leftMarket, rightMarket);
}
function createRangedMarkets(address[] calldata leftMarkets, address[] calldata rightMarkets)
external
nonReentrant
notPaused
{
require(
leftMarkets.length > 0 && rightMarkets.length == leftMarkets.length,
"Both arrays have to be non-empty and same size"
);
for (uint i = 0; i < leftMarkets.length; i++) {
if (canCreateRangedMarket(leftMarkets[i], rightMarkets[i])) {
_createRangedMarket(leftMarkets[i], rightMarkets[i]);
}
}
}
function canCreateRangedMarket(address leftMarket, address rightMarket) public view returns (bool toReturn) {
if (thalesAmm.isMarketInAMMTrading(leftMarket) && thalesAmm.isMarketInAMMTrading(rightMarket)) {
(uint maturityLeft, ) = IPositionalMarket(leftMarket).times();
(uint maturityRight, ) = IPositionalMarket(rightMarket).times();
(bytes32 leftkey, uint leftstrikePrice, ) = IPositionalMarket(leftMarket).getOracleDetails();
(bytes32 rightkey, uint rightstrikePrice, ) = IPositionalMarket(rightMarket).getOracleDetails();
if ((leftkey == rightkey) && (leftstrikePrice < rightstrikePrice) && (maturityLeft == maturityRight)) {
if (!(((ONE + minimalDifBetweenStrikes * ONE_PERCENT) * leftstrikePrice) / ONE < rightstrikePrice)) {
toReturn = false;
} else if (!(((ONE + maximalDifBetweenStrikes * ONE_PERCENT) * leftstrikePrice) / ONE > rightstrikePrice)) {
toReturn = false;
} else {
toReturn = createdRangedMarkets[leftMarket][rightMarket] == address(0);
}
}
}
}
function availableToBuyFromAMM(RangedMarket rangedMarket, RangedMarket.Position position)
public
view
knownRangedMarket(address(rangedMarket))
returns (uint)
{
uint availableLeft = thalesAmm.availableToBuyFromAMM(
address(rangedMarket.leftMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Down : IThalesAMM.Position.Up
);
uint availableRight = thalesAmm.availableToBuyFromAMM(
address(rangedMarket.rightMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Up : IThalesAMM.Position.Down
);
return availableLeft < availableRight ? availableLeft : availableRight;
}
function buyFromAmmQuote(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount
) public view knownRangedMarket(address(rangedMarket)) returns (uint sUSDPaid) {
(sUSDPaid, , ) = buyFromAmmQuoteDetailed(rangedMarket, position, amount);
uint basePrice = _transformCollateral((sUSDPaid * ONE) / amount, true);
if (basePrice < minSupportedPrice || basePrice >= ONE) {
sUSDPaid = 0;
}
}
function buyFromAmmQuoteDetailed(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount
)
public
view
knownRangedMarket(address(rangedMarket))
returns (
uint quoteWithFees,
uint leftQuote,
uint rightQuote
)
{
amount = position == RangedMarket.Position.Out ? amount : amount / 2;
leftQuote = thalesAmm.buyFromAmmQuote(
address(rangedMarket.leftMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Down : IThalesAMM.Position.Up,
amount
);
rightQuote = thalesAmm.buyFromAmmQuote(
address(rangedMarket.rightMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Up : IThalesAMM.Position.Down,
amount
);
quoteWithFees = _buyFromAmmQuoteWithLeftAndRightQuote(position, amount, leftQuote, rightQuote);
}
function buyFromAmmQuoteWithDifferentCollateral(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount,
address collateral
) public view returns (uint collateralQuote, uint sUSDToPay) {
int128 curveIndex = _mapCollateralToCurveIndex(collateral);
if (curveIndex > 0 && curveOnrampEnabled) {
sUSDToPay = buyFromAmmQuote(rangedMarket, position, amount);
//cant get a quote on how much collateral is needed from curve for sUSD,
//so rather get how much of collateral you get for the sUSD quote and add 0.2% to that
collateralQuote = (curveSUSD.get_dy_underlying(0, curveIndex, sUSDToPay) * (ONE + (ONE_PERCENT / 5))) / ONE;
}
}
function buyFromAMMWithReferrer(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount,
uint expectedPayout,
uint additionalSlippage,
address referrer
) public knownRangedMarket(address(rangedMarket)) nonReentrant notPaused {
if (referrer != address(0)) {
IReferrals(referrals).setReferrer(referrer, msg.sender);
}
_buyFromAMM(rangedMarket, position, amount, expectedPayout, additionalSlippage, true);
}
function buyFromAMMWithDifferentCollateralAndReferrer(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount,
uint expectedPayout,
uint additionalSlippage,
address collateral,
address _referrer
) public nonReentrant notPaused {
if (_referrer != address(0)) {
IReferrals(referrals).setReferrer(_referrer, msg.sender);
}
int128 curveIndex = _mapCollateralToCurveIndex(collateral);
require(curveIndex > 0 && curveOnrampEnabled, "ID1");
(uint collateralQuote, uint susdQuote) = buyFromAmmQuoteWithDifferentCollateral(
rangedMarket,
position,
amount,
collateral
);
uint transformedCollateralForPegCheck = collateral == usdc || collateral == usdt
? collateralQuote * 1e12
: collateralQuote;
require(
maxAllowedPegSlippagePercentage > 0 &&
transformedCollateralForPegCheck >= (susdQuote * (ONE - maxAllowedPegSlippagePercentage)) / ONE,
"ID3"
);
require((collateralQuote * ONE) / expectedPayout <= (ONE + additionalSlippage), "ID2");
IERC20Upgradeable(collateral).safeTransferFrom(msg.sender, address(this), collateralQuote);
curveSUSD.exchange_underlying(curveIndex, 0, collateralQuote, susdQuote);
_buyFromAMM(rangedMarket, position, amount, susdQuote, additionalSlippage, false);
}
function buyFromAMM(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount,
uint expectedPayout,
uint additionalSlippage
) public knownRangedMarket(address(rangedMarket)) nonReentrant notPaused {
_buyFromAMM(rangedMarket, position, amount, expectedPayout, additionalSlippage, true);
}
function _buyFromAmmQuoteWithLeftAndRightQuote(
RangedMarket.Position position,
uint amount,
uint leftQuote,
uint rightQuote
) internal view returns (uint quoteWithFees) {
if (leftQuote > 0 && rightQuote > 0) {
uint summedQuotes = leftQuote + rightQuote;
if (position == RangedMarket.Position.Out) {
quoteWithFees = (summedQuotes * (rangedAmmFee + ONE)) / ONE;
} else {
if (
summedQuotes >
((_transformCollateral(amount, false) - leftQuote) + (_transformCollateral(amount, false) - rightQuote))
) {
uint quoteWithoutFees = summedQuotes -
(_transformCollateral(amount, false) - leftQuote) -
(_transformCollateral(amount, false) - rightQuote);
quoteWithFees = (quoteWithoutFees * (rangedAmmFee + safeBoxImpact + ONE)) / ONE;
}
}
}
}
function _buyFromAMM(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount,
uint expectedPayout,
uint additionalSlippage,
bool sendSUSD
) internal {
require(availableToBuyFromAMM(rangedMarket, position) >= amount, "ID4");
uint sUSDPaid;
address target;
(RangedPosition inp, RangedPosition outp) = rangedMarket.positions();
if (position == RangedMarket.Position.Out) {
target = address(outp);
sUSDPaid = _buyOUT(rangedMarket, amount);
} else {
target = address(inp);
sUSDPaid = _buyIN(rangedMarket, amount);
_handleSafeBoxFeeOnBuy(address(rangedMarket), amount, sUSDPaid);
}
uint basePrice = _transformCollateral((sUSDPaid * ONE) / amount, true);
require(basePrice > minSupportedPrice && basePrice < ONE, "ID5");
require(sUSDPaid > 0 && ((sUSDPaid * ONE) / expectedPayout <= (ONE + additionalSlippage)), "ID2");
if (sendSUSD) {
sUSD.safeTransferFrom(msg.sender, address(this), sUSDPaid);
}
rangedMarket.mint(amount, position, msg.sender);
_handleReferrer(msg.sender, sUSDPaid);
if (address(stakingThales) != address(0)) {
stakingThales.updateVolume(msg.sender, sUSDPaid);
}
emit BoughtFromAmm(msg.sender, address(rangedMarket), position, amount, sUSDPaid, address(sUSD), target);
(bytes32 leftkey, uint leftstrikePrice, ) = IPositionalMarket(rangedMarket.leftMarket()).getOracleDetails();
(, uint rightstrikePrice, ) = IPositionalMarket(rangedMarket.rightMarket()).getOracleDetails();
uint currentAssetPrice = thalesAmm.priceFeed().rateForCurrency(leftkey);
bool inTheMoney = position == RangedMarket.Position.In
? currentAssetPrice >= leftstrikePrice && currentAssetPrice < rightstrikePrice
: currentAssetPrice < leftstrikePrice || currentAssetPrice >= rightstrikePrice;
emit BoughtOptionType(msg.sender, sUSDPaid, inTheMoney);
}
function _buyOUT(RangedMarket rangedMarket, uint amount) internal returns (uint) {
uint paidLeft = thalesAmm.buyFromAMM(
address(rangedMarket.leftMarket()),
IThalesAMM.Position.Down,
amount,
type(uint256).max,
0
);
uint paidRight = thalesAmm.buyFromAMM(
address(rangedMarket.rightMarket()),
IThalesAMM.Position.Up,
amount,
type(uint256).max,
0
);
(, IPosition down) = IPositionalMarket(rangedMarket.leftMarket()).getOptions();
IERC20Upgradeable(address(down)).safeTransfer(address(rangedMarket), amount);
(IPosition up1, ) = IPositionalMarket(rangedMarket.rightMarket()).getOptions();
IERC20Upgradeable(address(up1)).safeTransfer(address(rangedMarket), amount);
return _buyFromAmmQuoteWithLeftAndRightQuote(RangedMarket.Position.Out, amount, paidLeft, paidRight);
}
function _buyIN(RangedMarket rangedMarket, uint amount) internal returns (uint) {
uint paidLeft = thalesAmm.buyFromAMM(
address(rangedMarket.leftMarket()),
IThalesAMM.Position.Up,
amount / 2,
type(uint256).max,
0
);
uint paidRight = thalesAmm.buyFromAMM(
address(rangedMarket.rightMarket()),
IThalesAMM.Position.Down,
amount / 2,
type(uint256).max,
0
);
(IPosition up, ) = IPositionalMarket(rangedMarket.leftMarket()).getOptions();
IERC20Upgradeable(address(up)).safeTransfer(address(rangedMarket), amount / 2);
(, IPosition down1) = IPositionalMarket(rangedMarket.rightMarket()).getOptions();
IERC20Upgradeable(address(down1)).safeTransfer(address(rangedMarket), amount / 2);
return _buyFromAmmQuoteWithLeftAndRightQuote(RangedMarket.Position.In, amount / 2, paidLeft, paidRight);
}
function availableToSellToAMM(RangedMarket rangedMarket, RangedMarket.Position position)
public
view
knownRangedMarket(address(rangedMarket))
returns (uint _available)
{
uint availableLeft = thalesAmm.availableToSellToAMM(
address(rangedMarket.leftMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Down : IThalesAMM.Position.Up
);
uint availableRight = thalesAmm.availableToSellToAMM(
address(rangedMarket.rightMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Up : IThalesAMM.Position.Down
);
_available = availableLeft < availableRight ? availableLeft : availableRight;
if (position == RangedMarket.Position.In) {
_available = _available * 2;
}
}
function sellToAmmQuote(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount
) public view knownRangedMarket(address(rangedMarket)) returns (uint pricePaid) {
(pricePaid, , ) = sellToAmmQuoteDetailed(rangedMarket, position, amount);
}
function sellToAmmQuoteDetailed(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount
)
public
view
knownRangedMarket(address(rangedMarket))
returns (
uint quoteWithFees,
uint leftQuote,
uint rightQuote
)
{
amount = position == RangedMarket.Position.Out ? amount : amount / 2;
leftQuote = thalesAmm.sellToAmmQuote(
address(rangedMarket.leftMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Down : IThalesAMM.Position.Up,
amount
);
rightQuote = thalesAmm.sellToAmmQuote(
address(rangedMarket.rightMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Up : IThalesAMM.Position.Down,
amount
);
quoteWithFees = _sellToAmmQuoteDetailedWithLeftAndRightQuotes(position, amount, leftQuote, rightQuote);
}
function sellToAMM(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount,
uint expectedPayout,
uint additionalSlippage
) public knownRangedMarket(address(rangedMarket)) nonReentrant notPaused {
uint pricePaid;
_handleApprovals(rangedMarket);
if (position == RangedMarket.Position.Out) {
rangedMarket.burnOut(amount, msg.sender);
} else {
rangedMarket.burnIn(amount, msg.sender);
}
pricePaid = _handleSellToAmm(rangedMarket, position, amount);
require(pricePaid > 0 && (expectedPayout * ONE) / pricePaid <= (ONE + additionalSlippage), "ID2");
if (position == RangedMarket.Position.In) {
_handleSafeBoxFeeOnSell(amount, rangedMarket, pricePaid);
}
sUSD.safeTransfer(msg.sender, pricePaid);
_handleReferrer(msg.sender, pricePaid);
if (address(stakingThales) != address(0)) {
stakingThales.updateVolume(msg.sender, pricePaid);
}
(RangedPosition inp, RangedPosition outp) = rangedMarket.positions();
address target = position == RangedMarket.Position.Out ? address(outp) : address(inp);
emit SoldToAMM(msg.sender, address(rangedMarket), position, amount, pricePaid, address(sUSD), target);
}
/// @notice resolveRangedMarketsBatch resolve all markets in the batch
/// @param markets the batch
function resolveRangedMarketsBatch(address[] calldata markets) external {
for (uint i = 0; i < markets.length; i++) {
address market = markets[i];
if (_knownMarkets.contains(market) && !RangedMarket(market).resolved()) {
RangedMarket(market).resolveMarket();
}
}
}
function getPriceImpact(RangedMarket rangedMarket, RangedMarket.Position position) external view returns (int _impact) {
int buyPriceImpactLeft = thalesAmm.buyPriceImpact(
address(rangedMarket.leftMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Down : IThalesAMM.Position.Up,
ONE
);
int buyPriceImpactRight = thalesAmm.buyPriceImpact(
address(rangedMarket.rightMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Up : IThalesAMM.Position.Down,
ONE
);
_impact = buyPriceImpactLeft + buyPriceImpactRight;
if (position == RangedMarket.Position.Out) {
_impact = _impact / 2;
}
}
function _sellToAmmQuoteDetailedWithLeftAndRightQuotes(
RangedMarket.Position position,
uint amount,
uint leftQuote,
uint rightQuote
) internal view returns (uint quoteWithFees) {
if (leftQuote > 0 && rightQuote > 0) {
uint summedQuotes = leftQuote + rightQuote;
if (position == RangedMarket.Position.Out) {
quoteWithFees = (summedQuotes * (ONE - rangedAmmFee)) / ONE;
} else {
uint amountTransformed = _transformCollateral(amount, false);
if (
amountTransformed > leftQuote &&
amountTransformed > rightQuote &&
summedQuotes > ((amountTransformed - leftQuote) + (amountTransformed - rightQuote))
) {
uint quoteWithoutFees = summedQuotes -
((amountTransformed - leftQuote) + (amountTransformed - rightQuote));
quoteWithFees = (quoteWithoutFees * (ONE - rangedAmmFee - safeBoxImpact)) / ONE;
}
}
}
}
function _handleSellToAmm(
RangedMarket rangedMarket,
RangedMarket.Position position,
uint amount
) internal returns (uint) {
uint baseAMMAmount = position == RangedMarket.Position.Out ? amount : amount / 2;
uint sellLeft = thalesAmm.sellToAMM(
address(rangedMarket.leftMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Down : IThalesAMM.Position.Up,
baseAMMAmount,
0,
0
);
uint sellRight = thalesAmm.sellToAMM(
address(rangedMarket.rightMarket()),
position == RangedMarket.Position.Out ? IThalesAMM.Position.Up : IThalesAMM.Position.Down,
baseAMMAmount,
0,
0
);
return _sellToAmmQuoteDetailedWithLeftAndRightQuotes(position, baseAMMAmount, sellLeft, sellRight);
}
function _handleApprovals(RangedMarket rangedMarket) internal {
(IPosition up, IPosition down) = IPositionalMarket(rangedMarket.leftMarket()).getOptions();
(IPosition up1, IPosition down1) = IPositionalMarket(rangedMarket.rightMarket()).getOptions();
IERC20Upgradeable(address(up)).approve(address(thalesAmm), type(uint256).max);
IERC20Upgradeable(address(down)).approve(address(thalesAmm), type(uint256).max);
IERC20Upgradeable(address(up1)).approve(address(thalesAmm), type(uint256).max);
IERC20Upgradeable(address(down1)).approve(address(thalesAmm), type(uint256).max);
}
function _handleReferrer(address buyer, uint sUSDPaid) internal {
if (referrerFee > 0 && referrals != address(0)) {
address referrer = IReferrals(referrals).referrals(buyer);
if (referrer != address(0)) {
uint referrerShare = (sUSDPaid * (ONE + referrerFee)) / ONE - sUSDPaid;
sUSD.transfer(referrer, referrerShare);
emit ReferrerPaid(referrer, buyer, referrerShare, sUSDPaid);
}
}
}
function _mapCollateralToCurveIndex(address collateral) internal view returns (int128) {
if (collateral == dai) {
return 1;
}
if (collateral == usdc) {
return 2;
}
if (collateral == usdt) {
return 3;
}
return 0;
}
function _handleSafeBoxFeeOnBuy(
address rangedMarket,
uint amount,
uint sUSDPaid
) internal {
uint safeBoxShare;
if (safeBoxImpact > 0) {
safeBoxShare = sUSDPaid - ((sUSDPaid * ONE) / (ONE + safeBoxImpact));
sUSD.transfer(safeBox, safeBoxShare);
}
}
function _handleSafeBoxFeeOnSell(
uint amount,
RangedMarket rangedMarket,
uint sUSDPaid
) internal {
uint safeBoxShare = 0;
if (safeBoxImpact > 0) {
safeBoxShare = ((sUSDPaid * ONE) / (ONE - safeBoxImpact)) - sUSDPaid;
sUSD.transfer(safeBox, safeBoxShare);
}
}
function _createRangedMarket(address leftMarket, address rightMarket) internal {
require(canCreateRangedMarket(leftMarket, rightMarket), "Can't create such a ranged market!");
RangedMarket rm = RangedMarket(Clones.clone(rangedMarketMastercopy));
createdRangedMarkets[leftMarket][rightMarket] = address(rm);
RangedPosition inp = RangedPosition(Clones.clone(rangedPositionMastercopy));
inp.initialize(address(rm), "Position IN", "IN", address(this));
RangedPosition outp = RangedPosition(Clones.clone(rangedPositionMastercopy));
outp.initialize(address(rm), "Position OUT", "OUT", address(this));
rm.initialize(leftMarket, rightMarket, address(inp), address(outp), address(this));
_knownMarkets.add(address(rm));
emit RangedMarketCreated(address(rm), leftMarket, rightMarket);
}
function _transformCollateral(uint collateral, bool reverse) internal view returns (uint transformed) {
transformed = reverse
? IPositionalMarketManager(thalesAmm.manager()).reverseTransformCollateral(collateral)
: IPositionalMarketManager(thalesAmm.manager()).transformCollateral(collateral);
}
function transferSusdTo(address receiver, uint amount) external {
require(_knownMarkets.contains(msg.sender), "Not a known ranged market");
sUSD.safeTransfer(receiver, amount);
}
function retrieveSUSDAmount(address payable account, uint amount) external onlyOwner {
sUSD.safeTransfer(account, amount);
}
function setRangedMarketMastercopies(address _rangedMarketMastercopy, address _rangedPositionMastercopy)
external
onlyOwner
{
rangedMarketMastercopy = _rangedMarketMastercopy;
rangedPositionMastercopy = _rangedPositionMastercopy;
}
function setMinMaxSupportedPrice(
uint _minSupportedPrice,
uint _maxSupportedPrice,
uint _minDiffBetweenStrikes,
uint _maxDiffBetweenStrikes
) public onlyOwner {
minSupportedPrice = _minSupportedPrice;
maxSupportedPrice = _maxSupportedPrice;
minimalDifBetweenStrikes = _minDiffBetweenStrikes;
maximalDifBetweenStrikes = _maxDiffBetweenStrikes;
emit SetMinMaxSupportedPrice(minSupportedPrice, maxSupportedPrice);
emit SetMinimalMaximalDifBetweenStrikes(minimalDifBetweenStrikes, maximalDifBetweenStrikes);
}
function setSafeBoxDataAndRangedAMMFee(
address _safeBox,
uint _safeBoxImpact,
uint _rangedAMMFee
) external onlyOwner {
safeBoxImpact = _safeBoxImpact;
safeBox = _safeBox;
emit SafeBoxChanged(_safeBoxImpact, _safeBox);
rangedAmmFee = _rangedAMMFee;
emit SetRangedFee(rangedAmmFee);
}
function setThalesAMMStakingThalesAndReferrals(
address _thalesAMM,
IStakingThales _stakingThales,
address _referrals,
uint _referrerFee
) external onlyOwner {
thalesAmm = IThalesAMM(_thalesAMM);
sUSD.approve(address(thalesAmm), type(uint256).max);
stakingThales = _stakingThales;
referrals = _referrals;
referrerFee = _referrerFee;
}
/// @notice Updates contract parametars
/// @param _curveOnrampEnabled whether AMM supports curve onramp
/// @param _maxAllowedPegSlippagePercentage maximum discount AMM accepts for sUSD purchases
function setCurveSUSD(bool _curveOnrampEnabled, uint _maxAllowedPegSlippagePercentage) external onlyOwner {
curveOnrampEnabled = _curveOnrampEnabled;
maxAllowedPegSlippagePercentage = _maxAllowedPegSlippagePercentage;
}
modifier knownRangedMarket(address market) {
require(_knownMarkets.contains(market), "Not a known ranged market");
_;
}
event SoldToAMM(
address seller,
address market,
RangedMarket.Position position,
uint amount,
uint sUSDPaid,
address susd,
address asset
);
event BoughtFromAmm(
address buyer,
address market,
RangedMarket.Position position,
uint amount,
uint sUSDPaid,
address susd,
address asset
);
event BoughtOptionType(address buyer, uint sUSDPaid, bool inTheMoney);
event RangedMarketCreated(address market, address leftMarket, address rightMarket);
event SafeBoxChanged(uint _safeBoxImpact, address _safeBox);
event SetMinMaxSupportedPrice(uint minSupportedPrice, uint maxSupportedPrice);
event SetMinimalMaximalDifBetweenStrikes(uint minSupportedPrice, uint maxSupportedPrice);
event SetRangedFee(uint rangedAmmFee);
event ReferrerPaid(address refferer, address trader, uint amount, uint volume);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
import "../interfaces/IPositionalMarketManager.sol";
import "../interfaces/IPosition.sol";
import "../interfaces/IPriceFeed.sol";
interface IPositionalMarket {
/* ========== TYPES ========== */
enum Phase {
Trading,
Maturity,
Expiry
}
enum Side {
Up,
Down
}
/* ========== VIEWS / VARIABLES ========== */
function getOptions() external view returns (IPosition up, IPosition down);
function times() external view returns (uint maturity, uint destructino);
function getOracleDetails()
external
view
returns (
bytes32 key,
uint strikePrice,
uint finalPrice
);
function fees() external view returns (uint poolFee, uint creatorFee);
function deposited() external view returns (uint);
function creator() external view returns (address);
function resolved() external view returns (bool);
function phase() external view returns (Phase);
function oraclePrice() external view returns (uint);
function oraclePriceAndTimestamp() external view returns (uint price, uint updatedAt);
function canResolve() external view returns (bool);
function result() external view returns (Side);
function balancesOf(address account) external view returns (uint up, uint down);
function totalSupplies() external view returns (uint up, uint down);
function getMaximumBurnable(address account) external view returns (uint amount);
/* ========== MUTATIVE FUNCTIONS ========== */
function mint(uint value) external;
function exerciseOptions() external returns (uint);
function burnOptions(uint amount) external;
function burnOptionsMaximum() external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
import "../interfaces/IPositionalMarket.sol";
interface IPositionalMarketManager {
/* ========== VIEWS / VARIABLES ========== */
function durations() external view returns (uint expiryDuration, uint maxTimeToMaturity);
function capitalRequirement() external view returns (uint);
function marketCreationEnabled() external view returns (bool);
function onlyAMMMintingAndBurning() external view returns (bool);
function transformCollateral(uint value) external view returns (uint);
function reverseTransformCollateral(uint value) external view returns (uint);
function totalDeposited() external view returns (uint);
function numActiveMarkets() external view returns (uint);
function activeMarkets(uint index, uint pageSize) external view returns (address[] memory);
function numMaturedMarkets() external view returns (uint);
function maturedMarkets(uint index, uint pageSize) external view returns (address[] memory);
function isActiveMarket(address candidate) external view returns (bool);
function isKnownMarket(address candidate) external view returns (bool);
function getThalesAMM() external view returns (address);
/* ========== MUTATIVE FUNCTIONS ========== */
function createMarket(
bytes32 oracleKey,
uint strikePrice,
uint maturity,
uint initialMint // initial sUSD to mint options for,
) external returns (IPositionalMarket);
function resolveMarket(address market) external;
function expireMarkets(address[] calldata market) external;
function transferSusdTo(
address sender,
address receiver,
uint amount
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
import "./IPositionalMarket.sol";
interface IPosition {
/* ========== VIEWS / VARIABLES ========== */
function getBalanceOf(address account) external view returns (uint);
function getTotalSupply() external view returns (uint);
function exerciseWithAmount(address claimant, uint amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IPriceFeed {
// Structs
struct RateAndUpdatedTime {
uint216 rate;
uint40 time;
}
// Mutative functions
function addAggregator(bytes32 currencyKey, address aggregatorAddress) external;
function removeAggregator(bytes32 currencyKey) external;
// Views
function rateForCurrency(bytes32 currencyKey) external view returns (uint);
function rateAndUpdatedTime(bytes32 currencyKey) external view returns (uint rate, uint time);
function getRates() external view returns (uint[] memory);
function getCurrencies() external view returns (bytes32[] memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20Upgradeable.sol";
import "../../../utils/AddressUpgradeable.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20Upgradeable {
using AddressUpgradeable for address;
function safeTransfer(
IERC20Upgradeable token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20Upgradeable token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library MathUpgradeable {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a / b + (a % b == 0 ? 0 : 1);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Context_init_unchained();
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)
pragma solidity ^0.8.0;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
* initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() initializer {}
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
// If the contract is initializing we ignore whether _initialized is set in order to support multiple
// inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
// contract may have been reentered.
require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} modifier, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
function _isConstructor() private view returns (bool) {
return !AddressUpgradeable.isContract(address(this));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMathUpgradeable {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal onlyInitializing {
__Context_init_unchained();
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/Clones.sol)
pragma solidity ^0.8.0;
/**
* @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for
* deploying minimal proxy contracts, also known as "clones".
*
* > To simply and cheaply clone contract functionality in an immutable way, this standard specifies
* > a minimal bytecode implementation that delegates all calls to a known, fixed address.
*
* The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`
* (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the
* deterministic method.
*
* _Available since v3.4._
*/
library Clones {
/**
* @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
*
* This function uses the create opcode, which should never revert.
*/
function clone(address implementation) internal returns (address instance) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
mstore(add(ptr, 0x14), shl(0x60, implementation))
mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)
instance := create(0, ptr, 0x37)
}
require(instance != address(0), "ERC1167: create failed");
}
/**
* @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
*
* This function uses the create2 opcode and a `salt` to deterministically deploy
* the clone. Using the same `implementation` and `salt` multiple time will revert, since
* the clones cannot be deployed twice at the same address.
*/
function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
mstore(add(ptr, 0x14), shl(0x60, implementation))
mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)
instance := create2(0, ptr, 0x37, salt)
}
require(instance != address(0), "ERC1167: create2 failed");
}
/**
* @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
*/
function predictDeterministicAddress(
address implementation,
bytes32 salt,
address deployer
) internal pure returns (address predicted) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
mstore(add(ptr, 0x14), shl(0x60, implementation))
mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000)
mstore(add(ptr, 0x38), shl(0x60, deployer))
mstore(add(ptr, 0x4c), salt)
mstore(add(ptr, 0x6c), keccak256(ptr, 0x37))
predicted := keccak256(add(ptr, 0x37), 0x55)
}
}
/**
* @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
*/
function predictDeterministicAddress(address implementation, bytes32 salt)
internal
view
returns (address predicted)
{
return predictDeterministicAddress(implementation, salt, address(this));
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
import "./IPriceFeed.sol";
interface IThalesAMM {
enum Position {
Up,
Down
}
function manager() external view returns (address);
function availableToBuyFromAMM(address market, Position position) external view returns (uint);
function impliedVolatilityPerAsset(bytes32 oracleKey) external view returns (uint);
function buyFromAmmQuote(
address market,
Position position,
uint amount
) external view returns (uint);
function buyFromAMM(
address market,
Position position,
uint amount,
uint expectedPayout,
uint additionalSlippage
) external returns (uint);
function availableToSellToAMM(address market, Position position) external view returns (uint);
function sellToAmmQuote(
address market,
Position position,
uint amount
) external view returns (uint);
function sellToAMM(
address market,
Position position,
uint amount,
uint expectedPayout,
uint additionalSlippage
) external returns (uint);
function isMarketInAMMTrading(address market) external view returns (bool);
function price(address market, Position position) external view returns (uint);
function buyPriceImpact(
address market,
Position position,
uint amount
) external view returns (int);
function sellPriceImpact(
address market,
Position position,
uint amount
) external view returns (int);
function priceFeed() external view returns (IPriceFeed);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier
* available, which can be aplied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*/
contract ProxyReentrancyGuard {
/// @dev counter to allow mutex lock with only one SSTORE operation
uint256 private _guardCounter;
bool private _initialized;
function initNonReentrant() public {
require(!_initialized, "Already initialized");
_initialized = true;
_guardCounter = 1;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_guardCounter += 1;
uint256 localCounter = _guardCounter;
_;
require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call");
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// Clone of syntetix contract without constructor
contract ProxyOwned {
address public owner;
address public nominatedOwner;
bool private _initialized;
bool private _transferredAtInit;
function setOwner(address _owner) public {
require(_owner != address(0), "Owner address cannot be 0");
require(!_initialized, "Already initialized, use nominateNewOwner");
_initialized = true;
owner = _owner;
emit OwnerChanged(address(0), _owner);
}
function nominateNewOwner(address _owner) external onlyOwner {
nominatedOwner = _owner;
emit OwnerNominated(_owner);
}
function acceptOwnership() external {
require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership");
emit OwnerChanged(owner, nominatedOwner);
owner = nominatedOwner;
nominatedOwner = address(0);
}
function transferOwnershipAtInit(address proxyAddress) external onlyOwner {
require(proxyAddress != address(0), "Invalid address");
require(!_transferredAtInit, "Already transferred");
owner = proxyAddress;
_transferredAtInit = true;
emit OwnerChanged(owner, proxyAddress);
}
modifier onlyOwner {
_onlyOwner();
_;
}
function _onlyOwner() private view {
require(msg.sender == owner, "Only the contract owner may perform this action");
}
event OwnerNominated(address newOwner);
event OwnerChanged(address oldOwner, address newOwner);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// Inheritance
import "./ProxyOwned.sol";
// Clone of syntetix contract without constructor
contract ProxyPausable is ProxyOwned {
uint public lastPauseTime;
bool public paused;
/**
* @notice Change the paused state of the contract
* @dev Only the contract owner may call this.
*/
function setPaused(bool _paused) external onlyOwner {
// Ensure we're actually changing the state before we do anything
if (_paused == paused) {
return;
}
// Set our paused state.
paused = _paused;
// If applicable, set the last pause time.
if (paused) {
lastPauseTime = block.timestamp;
}
// Let everyone know that our pause state has changed.
emit PauseChanged(paused);
}
event PauseChanged(bool isPaused);
modifier notPaused {
require(!paused, "This action cannot be performed while the contract is paused");
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
library AddressSetLib {
struct AddressSet {
address[] elements;
mapping(address => uint) indices;
}
function contains(AddressSet storage set, address candidate) internal view returns (bool) {
if (set.elements.length == 0) {
return false;
}
uint index = set.indices[candidate];
return index != 0 || set.elements[0] == candidate;
}
function getPage(
AddressSet storage set,
uint index,
uint pageSize
) internal view returns (address[] memory) {
// NOTE: This implementation should be converted to slice operators if the compiler is updated to v0.6.0+
uint endIndex = index + pageSize; // The check below that endIndex <= index handles overflow.
// If the page extends past the end of the list, truncate it.
if (endIndex > set.elements.length) {
endIndex = set.elements.length;
}
if (endIndex <= index) {
return new address[](0);
}
uint n = endIndex - index; // We already checked for negative overflow.
address[] memory page = new address[](n);
for (uint i; i < n; i++) {
page[i] = set.elements[i + index];
}
return page;
}
function add(AddressSet storage set, address element) internal {
// Adding to a set is an idempotent operation.
if (!contains(set, element)) {
set.indices[element] = set.elements.length;
set.elements.push(element);
}
}
function remove(AddressSet storage set, address element) internal {
require(contains(set, element), "Element not in set.");
// Replace the removed element with the last element of the list.
uint index = set.indices[element];
uint lastIndex = set.elements.length - 1; // We required that element is in the list, so it is not empty.
if (index != lastIndex) {
// No need to shift the last element if it is the one we want to delete.
address shiftedElement = set.elements[lastIndex];
set.elements[index] = shiftedElement;
set.indices[shiftedElement] = index;
}
set.elements.pop();
delete set.indices[element];
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IStakingThales {
function updateVolume(address account, uint amount) external;
/* ========== VIEWS / VARIABLES ========== */
function totalStakedAmount() external view returns (uint);
function stakedBalanceOf(address account) external view returns (uint);
function currentPeriodRewards() external view returns (uint);
function currentPeriodFees() external view returns (uint);
function getLastPeriodOfClaimedRewards(address account) external view returns (uint);
function getRewardsAvailable(address account) external view returns (uint);
function getRewardFeesAvailable(address account) external view returns (uint);
function getAlreadyClaimedRewards(address account) external view returns (uint);
function getContractRewardFunds() external view returns (uint);
function getContractFeeFunds() external view returns (uint);
function getAMMVolume(address account) external view returns (uint);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IReferrals {
function referrals(address) external view returns (address);
function sportReferrals(address) external view returns (address);
function setReferrer(address, address) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface ICurveSUSD {
function exchange_underlying(
int128 i,
int128 j,
uint256 _dx,
uint256 _min_dy
) external returns (uint256);
function get_dy_underlying(
int128 i,
int128 j,
uint256 _dx
) external view returns (uint256);
// @notice Perform an exchange between two underlying coins
// @param i Index value for the underlying coin to send
// @param j Index valie of the underlying coin to receive
// @param _dx Amount of `i` being exchanged
// @param _min_dy Minimum amount of `j` to receive
// @param _receiver Address that receives `j`
// @return Actual amount of `j` received
// indexes:
// 0 = sUSD 18 dec 0x8c6f28f2F1A3C87F0f938b96d27520d9751ec8d9
// 1= DAI 18 dec 0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1
// 2= USDC 6 dec 0x7F5c764cBc14f9669B88837ca1490cCa17c31607
// 3= USDT 6 dec 0x94b008aA00579c1307B0EF2c499aD98a8ce58e58
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
__Context_init_unchained();
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
uint256[50] private __gap;
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum RangedMarket.Position","name":"_position","type":"uint8"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exerciser","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum RangedMarket.Position","name":"_position","type":"uint8"}],"name":"Exercised","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum RangedMarket.Position","name":"_position","type":"uint8"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum RangedMarket.Position","name":"winningPosition","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"finalPrice","type":"uint256"}],"name":"Resolved","type":"event"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"claimant","type":"address"}],"name":"burnIn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"claimant","type":"address"}],"name":"burnOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canExercisePositions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canResolve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exercisePositions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_leftMarket","type":"address"},{"internalType":"address","name":"_rightMarket","type":"address"},{"internalType":"address","name":"_in","type":"address"},{"internalType":"address","name":"_out","type":"address"},{"internalType":"address","name":"_rangedMarketsAMM","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leftMarket","outputs":[{"internalType":"contract IPositionalMarket","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"enum RangedMarket.Position","name":"_position","type":"uint8"},{"internalType":"address","name":"minter","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"positions","outputs":[{"internalType":"contract RangedPosition","name":"inp","type":"address"},{"internalType":"contract RangedPosition","name":"outp","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rangedMarketsAMM","outputs":[{"internalType":"contract RangedMarketsAMM","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resolveMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resolved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"result","outputs":[{"internalType":"enum RangedMarket.Position","name":"resultToReturn","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rightMarket","outputs":[{"internalType":"contract IPositionalMarket","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526004805460ff60a01b191690556006805460ff1916905534801561002757600080fd5b506006805460ff19166001179055612df7806100446000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638033491c11610097578063ba5b798211610066578063ba5b7982146101f4578063d06a750c1461022e578063f8fdd17c14610236578063fe5072321461024957600080fd5b80638033491c146101b3578063928d300e146101c657806392902ea9146101d9578063ac3791e3146101ec57600080fd5b80632b9b55b3116100d35780632b9b55b31461017a5780633f6fa6551461018257806359f7f7fe14610196578063653721471461019e57600080fd5b8063059692b21461010557806307b00005146101355780631459457a14610148578063158ef93e1461015d575b600080fd5b600054610118906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b600454610118906001600160a01b031681565b61015b610156366004612a54565b61025c565b005b60065461016a9060ff1681565b604051901515815260200161012c565b61015b61032b565b60045461016a90600160a01b900460ff1681565b61016a610e31565b6101a6611194565b60405161012c9190612c5e565b61015b6101c1366004612ba2565b6112f6565b61015b6101d4366004612a1c565b61133a565b600154610118906001600160a01b031681565b61016a61155f565b60025460035461020e916001600160a01b03908116911682565b604080516001600160a01b0393841681529290911660208301520161012c565b61015b6117b2565b61015b610244366004612b7e565b61225b565b61015b610257366004612b7e565b612450565b60065460ff16156102be5760405162461bcd60e51b815260206004820152602160248201527f52616e676564204d61726b657420616c726561647920696e697469616c697a656044820152601960fa1b60648201526084015b60405180910390fd5b6006805460ff19166001908117909155600080546001600160a01b039788166001600160a01b031991821617909155815495871695811695909517905560028054938616938516939093179092556003805491851691841691909117905560048054919093169116179055565b60008054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561037757600080fd5b505afa15801561038b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103af9190612ac4565b156104fd576004805460408051632773edf160e11b815290516001600160a01b0390921692634ee7dbe2928282019260209290829003018186803b1580156103f657600080fd5b505afa15801561040a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042e9190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561046657600080fd5b505afa15801561047a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049e9190612a38565b6000546040516307859f4160e41b81526001600160a01b039182166004820152911690637859f41090602401600060405180830381600087803b1580156104e457600080fd5b505af11580156104f8573d6000803e3d6000fd5b505050505b600160009054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561054b57600080fd5b505afa15801561055f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105839190612ac4565b156106d1576004805460408051632773edf160e11b815290516001600160a01b0390921692634ee7dbe2928282019260209290829003018186803b1580156105ca57600080fd5b505afa1580156105de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106029190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561063a57600080fd5b505afa15801561064e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106729190612a38565b6001546040516307859f4160e41b81526001600160a01b039182166004820152911690637859f41090602401600060405180830381600087803b1580156106b857600080fd5b505af11580156106cc573d6000803e3d6000fd5b505050505b60008054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b15801561071d57600080fd5b505afa158015610731573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107559190612ac4565b80156107e25750600160009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b1580156107aa57600080fd5b505afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e29190612ac4565b6107fe5760405162461bcd60e51b81526004016102b590612d06565b600454600160a01b900460ff161561084c5760405162461bcd60e51b8152602060048201526011602482015270416c7265616479207265736f6c7665642160781b60448201526064016102b5565b600254604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561089157600080fd5b505afa1580156108a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c99190612b66565b118061094f5750600354604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561091557600080fd5b505afa158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d9190612b66565b115b15610a655760008054906101000a90046001600160a01b03166001600160a01b031663851492586040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156109a257600080fd5b505af11580156109b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109da9190612b66565b50600160009054906101000a90046001600160a01b03166001600160a01b031663851492586040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610a2b57600080fd5b505af1158015610a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a639190612b66565b505b6004805460ff60a01b198116600160a01b17825560408051639324cac760e01b815290516000936001600160a01b0390931692639324cac792808201926020929091829003018186803b158015610abb57600080fd5b505afa158015610acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af39190612a38565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610b3457600080fd5b505afa158015610b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6c9190612b66565b1115610d5a576004805460408051639324cac760e01b815290516001600160a01b0390921692639324cac7928282019260209290829003018186803b158015610bb457600080fd5b505afa158015610bc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bec9190612a38565b6004805460408051639324cac760e01b815290516001600160a01b039485169463a9059cbb949316928392639324cac79281830192602092829003018186803b158015610c3857600080fd5b505afa158015610c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c709190612a38565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610cb157600080fd5b505afa158015610cc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce99190612b66565b6040518363ffffffff1660e01b8152600401610d06929190612c21565b602060405180830381600087803b158015610d2057600080fd5b505af1158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d589190612ac4565b505b60008060009054906101000a90046001600160a01b03166001600160a01b03166341bc7b1f6040518163ffffffff1660e01b815260040160606040518083038186803b158015610da957600080fd5b505afa158015610dbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de19190612ae4565b92505050806005819055507fcb06b84a152f7fe5c230b7a607ec296812d6f2656f32720215281f7eefb9a107610e15611194565b600554604051610e26929190612c72565b60405180910390a150565b60008060009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015610e8057600080fd5b505afa158015610e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb89190612ac4565b158015610f46575060008054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0c57600080fd5b505afa158015610f20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f449190612ac4565b155b15610f515750600090565b600160009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015610f9f57600080fd5b505afa158015610fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd79190612ac4565b1580156110675750600160009054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561102d57600080fd5b505afa158015611041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110659190612ac4565b155b156110725750600090565b6002546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156110b657600080fd5b505afa1580156110ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ee9190612b66565b6003546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561113757600080fd5b505afa15801561114b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116f9190612b66565b90508115801561117d575080155b1561118b5760009250505090565b60019250505090565b60016000808054906101000a90046001600160a01b03166001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b1580156111e357600080fd5b505afa1580156111f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121b9190612b4a565b600181111561123a57634e487b7160e01b600052602160045260246000fd5b1480156112ea575060018060009054906101000a90046001600160a01b03166001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b15801561129157600080fd5b505afa1580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c99190612b4a565b60018111156112e857634e487b7160e01b600052602160045260246000fd5b145b156112f3575060005b90565b6004546001600160a01b031633146113205760405162461bcd60e51b81526004016102b590612cc0565b8261132a57505050565b61133581848461263e565b505050565b6004546001600160a01b031633146113645760405162461bcd60e51b81526004016102b590612cc0565b6004805460408051639324cac760e01b815290516001600160a01b0390921692639324cac7928282019260209290829003018186803b1580156113a657600080fd5b505afa1580156113ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113de9190612a38565b6001600160a01b031663a9059cbb82600460009054906101000a90046001600160a01b03166001600160a01b0316639324cac76040518163ffffffff1660e01b815260040160206040518083038186803b15801561143b57600080fd5b505afa15801561144f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114739190612a38565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b1580156114b457600080fd5b505afa1580156114c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ec9190612b66565b6040518363ffffffff1660e01b8152600401611509929190612c21565b602060405180830381600087803b15801561152357600080fd5b505af1158015611537573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155b9190612ac4565b5050565b60008060009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b1580156115ae57600080fd5b505afa1580156115c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e69190612ac4565b158015611674575060008054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561163a57600080fd5b505afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190612ac4565b155b1561167f5750600090565b600160009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b1580156116cd57600080fd5b505afa1580156116e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117059190612ac4565b1580156117955750600160009054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561175b57600080fd5b505afa15801561176f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117939190612ac4565b155b156117a05750600090565b50600454600160a01b900460ff161590565b60008054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b1580156117fe57600080fd5b505afa158015611812573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118369190612ac4565b15611984576004805460408051632773edf160e11b815290516001600160a01b0390921692634ee7dbe2928282019260209290829003018186803b15801561187d57600080fd5b505afa158015611891573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b59190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b1580156118ed57600080fd5b505afa158015611901573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119259190612a38565b6000546040516307859f4160e41b81526001600160a01b039182166004820152911690637859f41090602401600060405180830381600087803b15801561196b57600080fd5b505af115801561197f573d6000803e3d6000fd5b505050505b600160009054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b1580156119d257600080fd5b505afa1580156119e6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0a9190612ac4565b15611b58576004805460408051632773edf160e11b815290516001600160a01b0390921692634ee7dbe2928282019260209290829003018186803b158015611a5157600080fd5b505afa158015611a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a899190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b158015611ac157600080fd5b505afa158015611ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af99190612a38565b6001546040516307859f4160e41b81526001600160a01b039182166004820152911690637859f41090602401600060405180830381600087803b158015611b3f57600080fd5b505af1158015611b53573d6000803e3d6000fd5b505050505b60008054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015611ba457600080fd5b505afa158015611bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdc9190612ac4565b8015611c695750600160009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015611c3157600080fd5b505afa158015611c45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c699190612ac4565b611c855760405162461bcd60e51b81526004016102b590612d06565b6002546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611cc957600080fd5b505afa158015611cdd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d019190612b66565b6003546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b158015611d4a57600080fd5b505afa158015611d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d829190612b66565b905081151580611d9157508015155b611dd35760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20657865726369736560681b60448201526064016102b5565b600454600160a01b900460ff16611dec57611dec61032b565b8115611e5757600254604051632770a7eb60e21b81526001600160a01b0390911690639dc29fac90611e249033908690600401612c21565b600060405180830381600087803b158015611e3e57600080fd5b505af1158015611e52573d6000803e3d6000fd5b505050505b8015611ec257600354604051632770a7eb60e21b81526001600160a01b0390911690639dc29fac90611e8f9033908590600401612c21565b600060405180830381600087803b158015611ea957600080fd5b505af1158015611ebd573d6000803e3d6000fd5b505050505b60016000808054906101000a90046001600160a01b03166001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b158015611f1157600080fd5b505afa158015611f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f499190612b4a565b6001811115611f6857634e487b7160e01b600052602160045260246000fd5b148015612018575060018060009054906101000a90046001600160a01b03166001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b158015611fbf57600080fd5b505afa158015611fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff79190612b4a565b600181111561201657634e487b7160e01b600052602160045260246000fd5b145b15612021575060005b60008082600181111561204457634e487b7160e01b600052602160045260246000fd5b1461204f5782612051565b835b9050801561221a576004805460408051632773edf160e11b815290516001600160a01b0390921692635a4c6dce9233928592634ee7dbe2928282019260209290829003018186803b1580156120a557600080fd5b505afa1580156120b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120dd9190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561211557600080fd5b505afa158015612129573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214d9190612a38565b6001600160a01b031663edc892e1856040518263ffffffff1660e01b815260040161217a91815260200190565b60206040518083038186803b15801561219257600080fd5b505afa1580156121a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ca9190612b66565b6040518363ffffffff1660e01b81526004016121e7929190612c21565b600060405180830381600087803b15801561220157600080fd5b505af1158015612215573d6000803e3d6000fd5b505050505b7fe10723980362293f7a08e5193521f5f556e665690be76404573641b4dd887a0a33828460405161224d93929190612c3a565b60405180910390a150505050565b6004546001600160a01b031633146122855760405162461bcd60e51b81526004016102b590612cc0565b8161228e575050565b600080546040805163661770cb60e11b815281516001600160a01b039093169263cc2ee19692600480840193919291829003018186803b1580156122d157600080fd5b505afa1580156122e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123099190612b11565b50905061232c3361231b600286612d4c565b6001600160a01b0384169190612774565b6001546040805163661770cb60e11b815281516000936001600160a01b03169263cc2ee1969260048082019391829003018186803b15801561236d57600080fd5b505afa158015612381573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a59190612b11565b91506123b890503361231b600287612d4c565b600254604051632770a7eb60e21b81526001600160a01b0390911690639dc29fac906123ea9086908890600401612c21565b600060405180830381600087803b15801561240457600080fd5b505af1158015612418573d6000803e3d6000fd5b505050507f55eee3060c5b26cb8b25640c0ac7284dca63b649106677825a2c7e9566fdc16e8385600060405161224d93929190612c3a565b6004546001600160a01b0316331461247a5760405162461bcd60e51b81526004016102b590612cc0565b81612483575050565b600080546040805163661770cb60e11b815281516001600160a01b039093169263cc2ee19692600480840193919291829003018186803b1580156124c657600080fd5b505afa1580156124da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124fe9190612b11565b915061251690506001600160a01b0382163385612774565b6001546040805163661770cb60e11b815281516000936001600160a01b03169263cc2ee1969260048082019391829003018186803b15801561255757600080fd5b505afa15801561256b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258f9190612b11565b5090506125a66001600160a01b0382163386612774565b600354604051632770a7eb60e21b81526001600160a01b0390911690639dc29fac906125d89086908890600401612c21565b600060405180830381600087803b1580156125f257600080fd5b505af1158015612606573d6000803e3d6000fd5b505050507f55eee3060c5b26cb8b25640c0ac7284dca63b649106677825a2c7e9566fdc16e8385600160405161224d93929190612c3a565b600081600181111561266057634e487b7160e01b600052602160045260246000fd5b14156126cf576002546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906126989086908690600401612c21565b600060405180830381600087803b1580156126b257600080fd5b505af11580156126c6573d6000803e3d6000fd5b50505050612734565b6003546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906127019086908690600401612c21565b600060405180830381600087803b15801561271b57600080fd5b505af115801561272f573d6000803e3d6000fd5b505050505b7f29600984795369456176b31dad545cb35585021faea93dcc568a467a737ad42583838360405161276793929190612c3a565b60405180910390a1505050565b6113358363a9059cbb60e01b8484604051602401612793929190612c21565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152600061281a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128979092919063ffffffff16565b80519091501561133557808060200190518101906128389190612ac4565b6113355760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102b5565b60606128a684846000856128b0565b90505b9392505050565b6060824710156129115760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102b5565b6001600160a01b0385163b6129685760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102b5565b600080866001600160a01b031685876040516129849190612c05565b60006040518083038185875af1925050503d80600081146129c1576040519150601f19603f3d011682016040523d82523d6000602084013e6129c6565b606091505b50915091506129d68282866129e3565b925050505b949350505050565b606083156129f25750816128a9565b825115612a025782518084602001fd5b8160405162461bcd60e51b81526004016102b59190612c8d565b600060208284031215612a2d578081fd5b81356128a981612d9c565b600060208284031215612a49578081fd5b81516128a981612d9c565b600080600080600060a08688031215612a6b578081fd5b8535612a7681612d9c565b94506020860135612a8681612d9c565b93506040860135612a9681612d9c565b92506060860135612aa681612d9c565b91506080860135612ab681612d9c565b809150509295509295909350565b600060208284031215612ad5578081fd5b815180151581146128a9578182fd5b600080600060608486031215612af8578283fd5b8351925060208401519150604084015190509250925092565b60008060408385031215612b23578182fd5b8251612b2e81612d9c565b6020840151909250612b3f81612d9c565b809150509250929050565b600060208284031215612b5b578081fd5b81516128a981612db4565b600060208284031215612b77578081fd5b5051919050565b60008060408385031215612b90578182fd5b823591506020830135612b3f81612d9c565b600080600060608486031215612bb6578283fd5b833592506020840135612bc881612db4565b91506040840135612bd881612d9c565b809150509250925092565b60028110612c0157634e487b7160e01b600052602160045260246000fd5b9052565b60008251612c17818460208701612d6c565b9190910192915050565b6001600160a01b03929092168252602082015260400190565b6001600160a01b038416815260208101839052606081016129db6040830184612be3565b60208101612c6c8284612be3565b92915050565b60408101612c808285612be3565b8260208301529392505050565b6020815260008251806020840152612cac816040850160208701612d6c565b601f01601f19169190910160400192915050565b60208082526026908201527f6f6e6c792074686520414d4d206d617920706572666f726d207468657365206d6040820152656574686f647360d01b606082015260800190565b60208082526026908201527f4c656674206f72205269676874206d61726b6574206e6f74207265736f6c766560408201526564207965742160d01b606082015260800190565b600082612d6757634e487b7160e01b81526012600452602481fd5b500490565b60005b83811015612d87578181015183820152602001612d6f565b83811115612d96576000848401525b50505050565b6001600160a01b0381168114612db157600080fd5b50565b60028110612db157600080fdfea2646970667358221220804b12469b3116819e8eb670e78d379ffd14e4c19d4a5e0039d6dcc0bdae7eeb64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638033491c11610097578063ba5b798211610066578063ba5b7982146101f4578063d06a750c1461022e578063f8fdd17c14610236578063fe5072321461024957600080fd5b80638033491c146101b3578063928d300e146101c657806392902ea9146101d9578063ac3791e3146101ec57600080fd5b80632b9b55b3116100d35780632b9b55b31461017a5780633f6fa6551461018257806359f7f7fe14610196578063653721471461019e57600080fd5b8063059692b21461010557806307b00005146101355780631459457a14610148578063158ef93e1461015d575b600080fd5b600054610118906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b600454610118906001600160a01b031681565b61015b610156366004612a54565b61025c565b005b60065461016a9060ff1681565b604051901515815260200161012c565b61015b61032b565b60045461016a90600160a01b900460ff1681565b61016a610e31565b6101a6611194565b60405161012c9190612c5e565b61015b6101c1366004612ba2565b6112f6565b61015b6101d4366004612a1c565b61133a565b600154610118906001600160a01b031681565b61016a61155f565b60025460035461020e916001600160a01b03908116911682565b604080516001600160a01b0393841681529290911660208301520161012c565b61015b6117b2565b61015b610244366004612b7e565b61225b565b61015b610257366004612b7e565b612450565b60065460ff16156102be5760405162461bcd60e51b815260206004820152602160248201527f52616e676564204d61726b657420616c726561647920696e697469616c697a656044820152601960fa1b60648201526084015b60405180910390fd5b6006805460ff19166001908117909155600080546001600160a01b039788166001600160a01b031991821617909155815495871695811695909517905560028054938616938516939093179092556003805491851691841691909117905560048054919093169116179055565b60008054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561037757600080fd5b505afa15801561038b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103af9190612ac4565b156104fd576004805460408051632773edf160e11b815290516001600160a01b0390921692634ee7dbe2928282019260209290829003018186803b1580156103f657600080fd5b505afa15801561040a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042e9190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561046657600080fd5b505afa15801561047a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049e9190612a38565b6000546040516307859f4160e41b81526001600160a01b039182166004820152911690637859f41090602401600060405180830381600087803b1580156104e457600080fd5b505af11580156104f8573d6000803e3d6000fd5b505050505b600160009054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561054b57600080fd5b505afa15801561055f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105839190612ac4565b156106d1576004805460408051632773edf160e11b815290516001600160a01b0390921692634ee7dbe2928282019260209290829003018186803b1580156105ca57600080fd5b505afa1580156105de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106029190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561063a57600080fd5b505afa15801561064e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106729190612a38565b6001546040516307859f4160e41b81526001600160a01b039182166004820152911690637859f41090602401600060405180830381600087803b1580156106b857600080fd5b505af11580156106cc573d6000803e3d6000fd5b505050505b60008054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b15801561071d57600080fd5b505afa158015610731573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107559190612ac4565b80156107e25750600160009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b1580156107aa57600080fd5b505afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e29190612ac4565b6107fe5760405162461bcd60e51b81526004016102b590612d06565b600454600160a01b900460ff161561084c5760405162461bcd60e51b8152602060048201526011602482015270416c7265616479207265736f6c7665642160781b60448201526064016102b5565b600254604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561089157600080fd5b505afa1580156108a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c99190612b66565b118061094f5750600354604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561091557600080fd5b505afa158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d9190612b66565b115b15610a655760008054906101000a90046001600160a01b03166001600160a01b031663851492586040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156109a257600080fd5b505af11580156109b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109da9190612b66565b50600160009054906101000a90046001600160a01b03166001600160a01b031663851492586040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610a2b57600080fd5b505af1158015610a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a639190612b66565b505b6004805460ff60a01b198116600160a01b17825560408051639324cac760e01b815290516000936001600160a01b0390931692639324cac792808201926020929091829003018186803b158015610abb57600080fd5b505afa158015610acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af39190612a38565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610b3457600080fd5b505afa158015610b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6c9190612b66565b1115610d5a576004805460408051639324cac760e01b815290516001600160a01b0390921692639324cac7928282019260209290829003018186803b158015610bb457600080fd5b505afa158015610bc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bec9190612a38565b6004805460408051639324cac760e01b815290516001600160a01b039485169463a9059cbb949316928392639324cac79281830192602092829003018186803b158015610c3857600080fd5b505afa158015610c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c709190612a38565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610cb157600080fd5b505afa158015610cc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce99190612b66565b6040518363ffffffff1660e01b8152600401610d06929190612c21565b602060405180830381600087803b158015610d2057600080fd5b505af1158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d589190612ac4565b505b60008060009054906101000a90046001600160a01b03166001600160a01b03166341bc7b1f6040518163ffffffff1660e01b815260040160606040518083038186803b158015610da957600080fd5b505afa158015610dbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de19190612ae4565b92505050806005819055507fcb06b84a152f7fe5c230b7a607ec296812d6f2656f32720215281f7eefb9a107610e15611194565b600554604051610e26929190612c72565b60405180910390a150565b60008060009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015610e8057600080fd5b505afa158015610e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb89190612ac4565b158015610f46575060008054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0c57600080fd5b505afa158015610f20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f449190612ac4565b155b15610f515750600090565b600160009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015610f9f57600080fd5b505afa158015610fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd79190612ac4565b1580156110675750600160009054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561102d57600080fd5b505afa158015611041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110659190612ac4565b155b156110725750600090565b6002546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156110b657600080fd5b505afa1580156110ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ee9190612b66565b6003546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561113757600080fd5b505afa15801561114b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116f9190612b66565b90508115801561117d575080155b1561118b5760009250505090565b60019250505090565b60016000808054906101000a90046001600160a01b03166001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b1580156111e357600080fd5b505afa1580156111f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121b9190612b4a565b600181111561123a57634e487b7160e01b600052602160045260246000fd5b1480156112ea575060018060009054906101000a90046001600160a01b03166001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b15801561129157600080fd5b505afa1580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c99190612b4a565b60018111156112e857634e487b7160e01b600052602160045260246000fd5b145b156112f3575060005b90565b6004546001600160a01b031633146113205760405162461bcd60e51b81526004016102b590612cc0565b8261132a57505050565b61133581848461263e565b505050565b6004546001600160a01b031633146113645760405162461bcd60e51b81526004016102b590612cc0565b6004805460408051639324cac760e01b815290516001600160a01b0390921692639324cac7928282019260209290829003018186803b1580156113a657600080fd5b505afa1580156113ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113de9190612a38565b6001600160a01b031663a9059cbb82600460009054906101000a90046001600160a01b03166001600160a01b0316639324cac76040518163ffffffff1660e01b815260040160206040518083038186803b15801561143b57600080fd5b505afa15801561144f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114739190612a38565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b1580156114b457600080fd5b505afa1580156114c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ec9190612b66565b6040518363ffffffff1660e01b8152600401611509929190612c21565b602060405180830381600087803b15801561152357600080fd5b505af1158015611537573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155b9190612ac4565b5050565b60008060009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b1580156115ae57600080fd5b505afa1580156115c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e69190612ac4565b158015611674575060008054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561163a57600080fd5b505afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190612ac4565b155b1561167f5750600090565b600160009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b1580156116cd57600080fd5b505afa1580156116e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117059190612ac4565b1580156117955750600160009054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b15801561175b57600080fd5b505afa15801561176f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117939190612ac4565b155b156117a05750600090565b50600454600160a01b900460ff161590565b60008054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b1580156117fe57600080fd5b505afa158015611812573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118369190612ac4565b15611984576004805460408051632773edf160e11b815290516001600160a01b0390921692634ee7dbe2928282019260209290829003018186803b15801561187d57600080fd5b505afa158015611891573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b59190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b1580156118ed57600080fd5b505afa158015611901573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119259190612a38565b6000546040516307859f4160e41b81526001600160a01b039182166004820152911690637859f41090602401600060405180830381600087803b15801561196b57600080fd5b505af115801561197f573d6000803e3d6000fd5b505050505b600160009054906101000a90046001600160a01b03166001600160a01b031663ac3791e36040518163ffffffff1660e01b815260040160206040518083038186803b1580156119d257600080fd5b505afa1580156119e6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0a9190612ac4565b15611b58576004805460408051632773edf160e11b815290516001600160a01b0390921692634ee7dbe2928282019260209290829003018186803b158015611a5157600080fd5b505afa158015611a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a899190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b158015611ac157600080fd5b505afa158015611ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af99190612a38565b6001546040516307859f4160e41b81526001600160a01b039182166004820152911690637859f41090602401600060405180830381600087803b158015611b3f57600080fd5b505af1158015611b53573d6000803e3d6000fd5b505050505b60008054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015611ba457600080fd5b505afa158015611bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdc9190612ac4565b8015611c695750600160009054906101000a90046001600160a01b03166001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015611c3157600080fd5b505afa158015611c45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c699190612ac4565b611c855760405162461bcd60e51b81526004016102b590612d06565b6002546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611cc957600080fd5b505afa158015611cdd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d019190612b66565b6003546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b158015611d4a57600080fd5b505afa158015611d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d829190612b66565b905081151580611d9157508015155b611dd35760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20657865726369736560681b60448201526064016102b5565b600454600160a01b900460ff16611dec57611dec61032b565b8115611e5757600254604051632770a7eb60e21b81526001600160a01b0390911690639dc29fac90611e249033908690600401612c21565b600060405180830381600087803b158015611e3e57600080fd5b505af1158015611e52573d6000803e3d6000fd5b505050505b8015611ec257600354604051632770a7eb60e21b81526001600160a01b0390911690639dc29fac90611e8f9033908590600401612c21565b600060405180830381600087803b158015611ea957600080fd5b505af1158015611ebd573d6000803e3d6000fd5b505050505b60016000808054906101000a90046001600160a01b03166001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b158015611f1157600080fd5b505afa158015611f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f499190612b4a565b6001811115611f6857634e487b7160e01b600052602160045260246000fd5b148015612018575060018060009054906101000a90046001600160a01b03166001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b158015611fbf57600080fd5b505afa158015611fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff79190612b4a565b600181111561201657634e487b7160e01b600052602160045260246000fd5b145b15612021575060005b60008082600181111561204457634e487b7160e01b600052602160045260246000fd5b1461204f5782612051565b835b9050801561221a576004805460408051632773edf160e11b815290516001600160a01b0390921692635a4c6dce9233928592634ee7dbe2928282019260209290829003018186803b1580156120a557600080fd5b505afa1580156120b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120dd9190612a38565b6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561211557600080fd5b505afa158015612129573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214d9190612a38565b6001600160a01b031663edc892e1856040518263ffffffff1660e01b815260040161217a91815260200190565b60206040518083038186803b15801561219257600080fd5b505afa1580156121a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ca9190612b66565b6040518363ffffffff1660e01b81526004016121e7929190612c21565b600060405180830381600087803b15801561220157600080fd5b505af1158015612215573d6000803e3d6000fd5b505050505b7fe10723980362293f7a08e5193521f5f556e665690be76404573641b4dd887a0a33828460405161224d93929190612c3a565b60405180910390a150505050565b6004546001600160a01b031633146122855760405162461bcd60e51b81526004016102b590612cc0565b8161228e575050565b600080546040805163661770cb60e11b815281516001600160a01b039093169263cc2ee19692600480840193919291829003018186803b1580156122d157600080fd5b505afa1580156122e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123099190612b11565b50905061232c3361231b600286612d4c565b6001600160a01b0384169190612774565b6001546040805163661770cb60e11b815281516000936001600160a01b03169263cc2ee1969260048082019391829003018186803b15801561236d57600080fd5b505afa158015612381573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a59190612b11565b91506123b890503361231b600287612d4c565b600254604051632770a7eb60e21b81526001600160a01b0390911690639dc29fac906123ea9086908890600401612c21565b600060405180830381600087803b15801561240457600080fd5b505af1158015612418573d6000803e3d6000fd5b505050507f55eee3060c5b26cb8b25640c0ac7284dca63b649106677825a2c7e9566fdc16e8385600060405161224d93929190612c3a565b6004546001600160a01b0316331461247a5760405162461bcd60e51b81526004016102b590612cc0565b81612483575050565b600080546040805163661770cb60e11b815281516001600160a01b039093169263cc2ee19692600480840193919291829003018186803b1580156124c657600080fd5b505afa1580156124da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124fe9190612b11565b915061251690506001600160a01b0382163385612774565b6001546040805163661770cb60e11b815281516000936001600160a01b03169263cc2ee1969260048082019391829003018186803b15801561255757600080fd5b505afa15801561256b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258f9190612b11565b5090506125a66001600160a01b0382163386612774565b600354604051632770a7eb60e21b81526001600160a01b0390911690639dc29fac906125d89086908890600401612c21565b600060405180830381600087803b1580156125f257600080fd5b505af1158015612606573d6000803e3d6000fd5b505050507f55eee3060c5b26cb8b25640c0ac7284dca63b649106677825a2c7e9566fdc16e8385600160405161224d93929190612c3a565b600081600181111561266057634e487b7160e01b600052602160045260246000fd5b14156126cf576002546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906126989086908690600401612c21565b600060405180830381600087803b1580156126b257600080fd5b505af11580156126c6573d6000803e3d6000fd5b50505050612734565b6003546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906127019086908690600401612c21565b600060405180830381600087803b15801561271b57600080fd5b505af115801561272f573d6000803e3d6000fd5b505050505b7f29600984795369456176b31dad545cb35585021faea93dcc568a467a737ad42583838360405161276793929190612c3a565b60405180910390a1505050565b6113358363a9059cbb60e01b8484604051602401612793929190612c21565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152600061281a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128979092919063ffffffff16565b80519091501561133557808060200190518101906128389190612ac4565b6113355760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102b5565b60606128a684846000856128b0565b90505b9392505050565b6060824710156129115760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102b5565b6001600160a01b0385163b6129685760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102b5565b600080866001600160a01b031685876040516129849190612c05565b60006040518083038185875af1925050503d80600081146129c1576040519150601f19603f3d011682016040523d82523d6000602084013e6129c6565b606091505b50915091506129d68282866129e3565b925050505b949350505050565b606083156129f25750816128a9565b825115612a025782518084602001fd5b8160405162461bcd60e51b81526004016102b59190612c8d565b600060208284031215612a2d578081fd5b81356128a981612d9c565b600060208284031215612a49578081fd5b81516128a981612d9c565b600080600080600060a08688031215612a6b578081fd5b8535612a7681612d9c565b94506020860135612a8681612d9c565b93506040860135612a9681612d9c565b92506060860135612aa681612d9c565b91506080860135612ab681612d9c565b809150509295509295909350565b600060208284031215612ad5578081fd5b815180151581146128a9578182fd5b600080600060608486031215612af8578283fd5b8351925060208401519150604084015190509250925092565b60008060408385031215612b23578182fd5b8251612b2e81612d9c565b6020840151909250612b3f81612d9c565b809150509250929050565b600060208284031215612b5b578081fd5b81516128a981612db4565b600060208284031215612b77578081fd5b5051919050565b60008060408385031215612b90578182fd5b823591506020830135612b3f81612d9c565b600080600060608486031215612bb6578283fd5b833592506020840135612bc881612db4565b91506040840135612bd881612d9c565b809150509250925092565b60028110612c0157634e487b7160e01b600052602160045260246000fd5b9052565b60008251612c17818460208701612d6c565b9190910192915050565b6001600160a01b03929092168252602082015260400190565b6001600160a01b038416815260208101839052606081016129db6040830184612be3565b60208101612c6c8284612be3565b92915050565b60408101612c808285612be3565b8260208301529392505050565b6020815260008251806020840152612cac816040850160208701612d6c565b601f01601f19169190910160400192915050565b60208082526026908201527f6f6e6c792074686520414d4d206d617920706572666f726d207468657365206d6040820152656574686f647360d01b606082015260800190565b60208082526026908201527f4c656674206f72205269676874206d61726b6574206e6f74207265736f6c766560408201526564207965742160d01b606082015260800190565b600082612d6757634e487b7160e01b81526012600452602481fd5b500490565b60005b83811015612d87578181015183820152602001612d6f565b83811115612d96576000848401525b50505050565b6001600160a01b0381168114612db157600080fd5b50565b60028110612db157600080fdfea2646970667358221220804b12469b3116819e8eb670e78d379ffd14e4c19d4a5e0039d6dcc0bdae7eeb64736f6c63430008040033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.