source_idx
stringlengths
1
5
contract_name
stringlengths
1
55
func_name
stringlengths
0
2.45k
masked_body
stringlengths
60
827k
masked_all
stringlengths
34
827k
func_body
stringlengths
4
324k
signature_only
stringlengths
11
2.47k
signature_extend
stringlengths
11
25.6k
4502
RFbtc
_getTaxFee
contract RFbtc is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; string private constant _NAME = 'RFbtc'; string private constant _SYMBOL = 'RFbtc'; uint8 private constant _DECIMALS = 8; uint256 private constant _MAX = ~uint256(0); uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS); uint256 private constant _GRANULARITY = 100; uint256 private _tTotal = 21000000 * _DECIMALFACTOR; uint256 private _rTotal = (_MAX - (_MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _tBurnTotal; uint256 private constant _TAX_FEE = 210; uint256 private constant _BURN_FEE = 210; uint256 private constant _MAX_TX_SIZE = 210000 * _DECIMALFACTOR; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _NAME; } function symbol() public view returns (string memory) { return _SYMBOL; } function decimals() public view returns (uint8) { return _DECIMALS; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function totalBurn() public view returns (uint256) { return _tBurnTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _MAX_TX_SIZE, "Transfer amount exceeds the maxTxAmount."); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private { _rTotal = _rTotal.sub(rFee).sub(rBurn); _tFeeTotal = _tFeeTotal.add(tFee); _tBurnTotal = _tBurnTotal.add(tBurn); _tTotal = _tTotal.sub(tBurn); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getTValues(tAmount, _TAX_FEE, _BURN_FEE); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 burnFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100); uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn); return (tTransferAmount, tFee, tBurn); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rBurn = tBurn.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _getTaxFee() private view returns(uint256) {<FILL_FUNCTION_BODY> } function _getMaxTxAmount() private view returns(uint256) { return _MAX_TX_SIZE; } }
contract RFbtc is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; string private constant _NAME = 'RFbtc'; string private constant _SYMBOL = 'RFbtc'; uint8 private constant _DECIMALS = 8; uint256 private constant _MAX = ~uint256(0); uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS); uint256 private constant _GRANULARITY = 100; uint256 private _tTotal = 21000000 * _DECIMALFACTOR; uint256 private _rTotal = (_MAX - (_MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _tBurnTotal; uint256 private constant _TAX_FEE = 210; uint256 private constant _BURN_FEE = 210; uint256 private constant _MAX_TX_SIZE = 210000 * _DECIMALFACTOR; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _NAME; } function symbol() public view returns (string memory) { return _SYMBOL; } function decimals() public view returns (uint8) { return _DECIMALS; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function totalBurn() public view returns (uint256) { return _tBurnTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _MAX_TX_SIZE, "Transfer amount exceeds the maxTxAmount."); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private { _rTotal = _rTotal.sub(rFee).sub(rBurn); _tFeeTotal = _tFeeTotal.add(tFee); _tBurnTotal = _tBurnTotal.add(tBurn); _tTotal = _tTotal.sub(tBurn); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getTValues(tAmount, _TAX_FEE, _BURN_FEE); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 burnFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100); uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn); return (tTransferAmount, tFee, tBurn); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rBurn = tBurn.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } <FILL_FUNCTION> function _getMaxTxAmount() private view returns(uint256) { return _MAX_TX_SIZE; } }
return _TAX_FEE;
function _getTaxFee() private view returns(uint256)
function _getTaxFee() private view returns(uint256)
34269
BOARS
tokenFromReflection
contract BOARS is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => uint256) private _buyMap; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1e12 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "Angry Boars"; string private constant _symbol = "BOARS"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; uint256 private maxWalletAmount = _tTotal * 50 / 1000; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x6B41c34591f981B25e8e3a7674eCC62B218B4438); _feeAddrWallet2 = payable(0x6B41c34591f981B25e8e3a7674eCC62B218B4438); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0x5c15c01B6B4cd38be476b27Bf5d2F9f5a2AC44f6), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function originalPurchase(address account) public view returns (uint256) { return _buyMap[account]; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function setMaxTx(uint256 maxTransactionAmount) external onlyOwner() { _maxTxAmount = maxTransactionAmount; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) {<FILL_FUNCTION_BODY> } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (!_isBuy(from)) { if (_buyMap[from] != 0 && (_buyMap[from] + (1 hours) >= block.timestamp)) { _feeAddr1 = 1; _feeAddr2 = 18; } else { _feeAddr1 = 1; _feeAddr2 = 9; } } else { if (_buyMap[to] == 0) { _buyMap[to] = block.timestamp; } _feeAddr1 = 1; _feeAddr2 = 9; } if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(cooldown[to] < block.timestamp); require(amount <= _maxTxAmount); require(balanceOf(to) + amount <= maxWalletAmount, "Max wallet exceeded"); cooldown[to] = block.timestamp + (30 seconds); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount.div(2)); _feeAddrWallet2.transfer(amount.div(2)); } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 30000000000 * 10 ** 9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function removeStrictTxLimit() public onlyOwner { _maxTxAmount = 1e12 * 10**9; } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function updateMaxTx (uint256 fee) public onlyOwner { _maxTxAmount = fee; } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _isBuy(address _sender) private view returns (bool) { return _sender == uniswapV2Pair; } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
contract BOARS is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => uint256) private _buyMap; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1e12 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "Angry Boars"; string private constant _symbol = "BOARS"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; uint256 private maxWalletAmount = _tTotal * 50 / 1000; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x6B41c34591f981B25e8e3a7674eCC62B218B4438); _feeAddrWallet2 = payable(0x6B41c34591f981B25e8e3a7674eCC62B218B4438); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0x5c15c01B6B4cd38be476b27Bf5d2F9f5a2AC44f6), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function originalPurchase(address account) public view returns (uint256) { return _buyMap[account]; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function setMaxTx(uint256 maxTransactionAmount) external onlyOwner() { _maxTxAmount = maxTransactionAmount; } <FILL_FUNCTION> function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (!_isBuy(from)) { if (_buyMap[from] != 0 && (_buyMap[from] + (1 hours) >= block.timestamp)) { _feeAddr1 = 1; _feeAddr2 = 18; } else { _feeAddr1 = 1; _feeAddr2 = 9; } } else { if (_buyMap[to] == 0) { _buyMap[to] = block.timestamp; } _feeAddr1 = 1; _feeAddr2 = 9; } if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(cooldown[to] < block.timestamp); require(amount <= _maxTxAmount); require(balanceOf(to) + amount <= maxWalletAmount, "Max wallet exceeded"); cooldown[to] = block.timestamp + (30 seconds); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount.div(2)); _feeAddrWallet2.transfer(amount.div(2)); } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 30000000000 * 10 ** 9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function removeStrictTxLimit() public onlyOwner { _maxTxAmount = 1e12 * 10**9; } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function updateMaxTx (uint256 fee) public onlyOwner { _maxTxAmount = fee; } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _isBuy(address _sender) private view returns (bool) { return _sender == uniswapV2Pair; } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate);
function tokenFromReflection(uint256 rAmount) private view returns(uint256)
function tokenFromReflection(uint256 rAmount) private view returns(uint256)
59776
Etoken
delegatedTransfer
contract Etoken is StandardToken, Ownable { string public constant name = "Etoken"; string public constant symbol = "ETK"; uint32 public constant decimals = 3; event DelegatedTransfer(address indexed from, address indexed to, address indexed delegate, uint256 value, uint256 fee); function delegatedTransfer(address _from, address _to, uint256 _value, uint256 _fee) onlyOwner public returns (bool) {<FILL_FUNCTION_BODY> } }
contract Etoken is StandardToken, Ownable { string public constant name = "Etoken"; string public constant symbol = "ETK"; uint32 public constant decimals = 3; event DelegatedTransfer(address indexed from, address indexed to, address indexed delegate, uint256 value, uint256 fee); <FILL_FUNCTION> }
uint256 total = _value.add(_fee); require(_from != address(0)); require(_to != address(0)); require(total <= balances[_from]); address delegate = owner; balances[_from] = balances[_from].sub(total); balances[_to] = balances[_to].add(_value); balances[delegate] = balances[delegate].add(_fee); DelegatedTransfer(_from, _to, delegate, _value, _fee); return true;
function delegatedTransfer(address _from, address _to, uint256 _value, uint256 _fee) onlyOwner public returns (bool)
function delegatedTransfer(address _from, address _to, uint256 _value, uint256 _fee) onlyOwner public returns (bool)
57599
VertLite
contract VertLite is StandardToken { /* Public variables of the token */ /* NOTE: The following variables are OPTIONAL vanities. One does not have to include them. They allow one to customise the token contract & in no way influences the core functionality. Some wallets/interfaces might not even bother to look at this information. */ string public name; // Token Name uint8 public decimals; // How many decimals to show. To be standard complicant keep it 18 string public symbol; // An identifier: eg SBX, XPR etc.. string public version = 'H1.0'; uint256 public unitsOneEthCanBuy; // How many units of your coin can be bought by 1 ETH? uint256 public totalEthInWei; // WEI is the smallest unit of ETH (the equivalent of cent in USD or satoshi in BTC). We'll store the total ETH raised via our ICO here. address public fundsWallet; // Where should the raised ETH go? // which means the following function name has to match the contract name declared above function VertLite() { balances[msg.sender] = 670000000000000000000000000; totalSupply = 670000000000000000000000000; name = "VertLite"; decimals = 18; symbol = "VTL"; unitsOneEthCanBuy = 40000; fundsWallet = msg.sender; } function() payable{<FILL_FUNCTION_BODY> } /* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this. //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData) //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead. if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; } return true; } }
contract VertLite is StandardToken { /* Public variables of the token */ /* NOTE: The following variables are OPTIONAL vanities. One does not have to include them. They allow one to customise the token contract & in no way influences the core functionality. Some wallets/interfaces might not even bother to look at this information. */ string public name; // Token Name uint8 public decimals; // How many decimals to show. To be standard complicant keep it 18 string public symbol; // An identifier: eg SBX, XPR etc.. string public version = 'H1.0'; uint256 public unitsOneEthCanBuy; // How many units of your coin can be bought by 1 ETH? uint256 public totalEthInWei; // WEI is the smallest unit of ETH (the equivalent of cent in USD or satoshi in BTC). We'll store the total ETH raised via our ICO here. address public fundsWallet; // Where should the raised ETH go? // which means the following function name has to match the contract name declared above function VertLite() { balances[msg.sender] = 670000000000000000000000000; totalSupply = 670000000000000000000000000; name = "VertLite"; decimals = 18; symbol = "VTL"; unitsOneEthCanBuy = 40000; fundsWallet = msg.sender; } <FILL_FUNCTION> /* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this. //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData) //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead. if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; } return true; } }
totalEthInWei = totalEthInWei + msg.value; uint256 amount = msg.value * unitsOneEthCanBuy; require(balances[fundsWallet] >= amount); balances[fundsWallet] = balances[fundsWallet] - amount; balances[msg.sender] = balances[msg.sender] + amount; Transfer(fundsWallet, msg.sender, amount); // Broadcast a message to the blockchain //Transfer ether to fundsWallet fundsWallet.transfer(msg.value);
function() payable
function() payable
50012
BurnToken
burnFrom
contract BurnToken is BaseToken { event Burn(address indexed from, uint256 value); function burn(uint256 value) public whenNotPaused returns (bool) { balanceOf[msg.sender] = balanceOf[msg.sender].sub(value); totalSupply = totalSupply.sub(value); emit Burn(msg.sender, value); return true; } function burnFrom(address from, uint256 value) public whenNotPaused returns (bool) {<FILL_FUNCTION_BODY> }}
contract BurnToken is BaseToken { event Burn(address indexed from, uint256 value); function burn(uint256 value) public whenNotPaused returns (bool) { balanceOf[msg.sender] = balanceOf[msg.sender].sub(value); totalSupply = totalSupply.sub(value); emit Burn(msg.sender, value); return true; } <FILL_FUNCTION>}
allowance[from][msg.sender] = allowance[from][msg.sender].sub(value); balanceOf[from] = balanceOf[from].sub(value); totalSupply = totalSupply.sub(value); emit Burn(from, value); return true;
function burnFrom(address from, uint256 value) public whenNotPaused returns (bool)
function burnFrom(address from, uint256 value) public whenNotPaused returns (bool)
15501
BabyGeraldFord
_transfer
contract BabyGeraldFord is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "BabyGeraldFord | t.me/BabyGeraldFord"; string private constant _symbol = "BabyGFord"; uint8 private constant _decimals = 9; // RFI mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _taxFee = 5; uint256 private _teamFee = 20; // Bot detection mapping(address => bool) private bots; mapping(address => uint256) private cooldown; address payable private _teamAddress; address payable private _marketingFunds; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint256 _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor(address payable addr1, address payable addr2) { _teamAddress = addr1; _marketingFunds = addr2; _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_teamAddress] = true; _isExcludedFromFee[_marketingFunds] = true; emit Transfer(address(0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B), _msgSender(), _tTotal); } function openTrading() external onlyOwner() { require(!tradingOpen, "trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance} (address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 50000000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function removeAllFee() private { if (_taxFee == 0 && _teamFee == 0) return; _taxFee = 0; _teamFee = 0; } function restoreAllFee() private { _taxFee = 5; _teamFee = 20; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private {<FILL_FUNCTION_BODY> } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _teamAddress.transfer(amount.div(2)); _marketingFunds.transfer(amount.div(2)); } function manualswap() external { require(_msgSender() == _teamAddress); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _teamAddress); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function setBots(address[] memory bots_) public onlyOwner { for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); _transferStandard(sender, recipient, amount); if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256 ) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _taxFee, _teamFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues( uint256 tAmount, uint256 taxFee, uint256 TeamFee ) private pure returns ( uint256, uint256, uint256 ) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { require(maxTxPercent > 0, "Amount must be greater than 0"); _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2); emit MaxTxAmountUpdated(_maxTxAmount); } }
contract BabyGeraldFord is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "BabyGeraldFord | t.me/BabyGeraldFord"; string private constant _symbol = "BabyGFord"; uint8 private constant _decimals = 9; // RFI mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _taxFee = 5; uint256 private _teamFee = 20; // Bot detection mapping(address => bool) private bots; mapping(address => uint256) private cooldown; address payable private _teamAddress; address payable private _marketingFunds; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint256 _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor(address payable addr1, address payable addr2) { _teamAddress = addr1; _marketingFunds = addr2; _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_teamAddress] = true; _isExcludedFromFee[_marketingFunds] = true; emit Transfer(address(0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B), _msgSender(), _tTotal); } function openTrading() external onlyOwner() { require(!tradingOpen, "trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance} (address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 50000000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function removeAllFee() private { if (_taxFee == 0 && _teamFee == 0) return; _taxFee = 0; _teamFee = 0; } function restoreAllFee() private { _taxFee = 5; _teamFee = 20; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } <FILL_FUNCTION> function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _teamAddress.transfer(amount.div(2)); _marketingFunds.transfer(amount.div(2)); } function manualswap() external { require(_msgSender() == _teamAddress); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _teamAddress); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function setBots(address[] memory bots_) public onlyOwner { for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); _transferStandard(sender, recipient, amount); if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256 ) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _taxFee, _teamFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues( uint256 tAmount, uint256 taxFee, uint256 TeamFee ) private pure returns ( uint256, uint256, uint256 ) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { require(maxTxPercent > 0, "Amount must be greater than 0"); _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2); emit MaxTxAmountUpdated(_maxTxAmount); } }
require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (from != owner() && to != owner()) { if (cooldownEnabled) { if ( from != address(this) && to != address(this) && from != address(uniswapV2Router) && to != address(uniswapV2Router) ) { require( _msgSender() == address(uniswapV2Router) || _msgSender() == uniswapV2Pair, "ERR: Uniswap only" ); } } require(amount <= _maxTxAmount); require(!bots[from] && !bots[to]); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] && cooldownEnabled ) { require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (60 seconds); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } bool takeFee = true; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } _tokenTransfer(from, to, amount, takeFee);
function _transfer( address from, address to, uint256 amount ) private
function _transfer( address from, address to, uint256 amount ) private
58195
TinyF3D
buyXname
contract TinyF3D { using SafeMath for *; using NameFilter for string; string constant public name = "Fomo3D CHINA"; // 游戏名称 string constant public symbol = "GBL"; // 游戏符号 // 游戏数据 address public owner; // 合约管理者 address public devs; // 开发团队 address public otherF3D_; // 副奖池 address public Divies; // 股东 address public Jekyll_Island_Inc; // 公司账户 bool public activated_ = false; // 合同部署标志 uint256 private rndExtra_ = 0; // 第一个ICO的时间 uint256 private rndGap_ = 0; // ICO阶段的时间,现为马上结束 uint256 constant private rndInit_ = 1 hours; // 回合倒计时开始 uint256 constant private rndInc_ = 30 seconds; // 每一把钥匙增加时间 uint256 constant private rndMax_ = 12 hours; // 最大倒计时时间 uint256 public airDropPot_; // 空头罐 uint256 public airDropTracker_ = 0; // 空投计数 uint256 public rID_; // 回合轮数 uint256 public registrationFee_ = 10 finney; // 注册价格 // 玩家数据 uint256 public pID_; // 玩家总数 mapping(address => uint256) public pIDxAddr_; //(addr => pID)按地址返回玩家ID mapping(bytes32 => uint256) public pIDxName_; //(name => pID)按名称返回玩家ID mapping(uint256 => F3Ddatasets.Player) public plyr_; //(pID => data)玩家数据 mapping(uint256 => mapping(uint256 => F3Ddatasets.PlayerRounds)) public plyrRnds_; //(pID => rID => data)玩家ID和轮次ID的玩家轮数据 mapping(uint256 => mapping(bytes32 => bool)) public plyrNames_; //(pID => name => bool)玩家拥有的名字列表。 //(用于这样您可以在您拥有的任何名称中更改您的显示名称) mapping(uint256 => mapping(uint256 => bytes32)) public plyrNameList_; //(pID => nameNum => name)玩家拥有的名称列表 // 回合数据 mapping(uint256 => F3Ddatasets.Round) public round_; //(rID => data)回合数据 mapping(uint256 => mapping(uint256 => uint256)) public rndTmEth_; //(rID => tID => data)每个团队中的eth,按轮次ID和团队ID // 团队数据 mapping(uint256 => F3Ddatasets.TeamFee) public fees_; //(团队=>费用)按团队分配费用 mapping(uint256 => F3Ddatasets.PotSplit) public potSplit_; //(团队=>费用)按团队分配分配 // 每当玩家注册一个名字时就会被触发 event onNewName ( uint256 indexed playerID, address indexed playerAddress, bytes32 indexed playerName, bool isNewPlayer, uint256 affiliateID, address affiliateAddress, bytes32 affiliateName, uint256 amountPaid, uint256 timeStamp ); // 购买并分红 event onBuyAndDistribute ( address playerAddress, bytes32 playerName, uint256 ethIn, uint256 compressedData, uint256 compressedIDs, address winnerAddr, bytes32 winnerName, uint256 amountWon, uint256 newPot, uint256 P3DAmount, uint256 genAmount ); // 收到副奖池存款 event onPotSwapDeposit ( uint256 roundID, uint256 amountAddedToPot ); // 购买结束事件 event onEndTx ( uint256 compressedData, uint256 compressedIDs, bytes32 playerName, address playerAddress, uint256 ethIn, uint256 keysBought, address winnerAddr, bytes32 winnerName, uint256 amountWon, uint256 newPot, uint256 P3DAmount, uint256 genAmount, uint256 potAmount, uint256 airDropPot ); //每当联盟会员付款时都会被解雇 event onAffiliatePayout ( uint256 indexed affiliateID, address affiliateAddress, bytes32 affiliateName, uint256 indexed roundID, uint256 indexed buyerID, uint256 amount, uint256 timeStamp ); // 撤回收入事件 event onWithdraw ( uint256 indexed playerID, address playerAddress, bytes32 playerName, uint256 ethOut, uint256 timeStamp ); // 撤回收入分发事件 event onWithdrawAndDistribute ( address playerAddress, bytes32 playerName, uint256 ethOut, uint256 compressedData, uint256 compressedIDs, address winnerAddr, bytes32 winnerName, uint256 amountWon, uint256 newPot, uint256 P3DAmount, uint256 genAmount ); // 只有当玩家在回合结束后尝试重新加载时才会触发 event onReLoadAndDistribute ( address playerAddress, bytes32 playerName, uint256 compressedData, uint256 compressedIDs, address winnerAddr, bytes32 winnerName, uint256 amountWon, uint256 newPot, uint256 P3DAmount, uint256 genAmount ); // 确保在合约激活前不能使用 modifier isActivated() { require(activated_ == true, "its not ready yet. check ?eta in discord"); _; } // 禁止其他合约调用 modifier isHuman() { address _addr = msg.sender; uint256 _codeLength; assembly {_codeLength := extcodesize(_addr)} require(_codeLength == 0, "sorry humans only"); _; } // 保证调用者是开发者 modifier onlyDevs() { require(msg.sender == devs, "msg sender is not a dev"); _; } // dev设置传入交易金额的边界 modifier isWithinLimits(uint256 _eth) { require(_eth >= 1000000000, "pocket lint: not a valid currency"); require(_eth <= 100000000000000000000000, "no vitalik, no"); _; } // 合同部署后激活一次 function activate() public onlyDevs { //只能运行一次 require(activated_ == false, "TinyF3d already activated"); //激活合同 activated_ = true; //让我们开始第一轮 rID_ = 1; round_[1].strt = now + rndExtra_ - rndGap_; round_[1].end = now + rndInit_ + rndExtra_; } // 合约部署初始数据设置 constructor() public { owner = msg.sender; devs = msg.sender; otherF3D_ = msg.sender; Divies = msg.sender; Jekyll_Island_Inc = msg.sender; // 团队分配结构 // 0 =鲸鱼 // 1 =熊 // 2 = 蛇 // 3 =公牛 // 团队分红 //(F3D,P3D)+(奖池,推荐,社区) fees_[0] = F3Ddatasets.TeamFee(30, 6); // 50%为奖池,10%推广,2%为公司,1%为副奖池,1%为空投罐 fees_[1] = F3Ddatasets.TeamFee(43, 0); // 43%为奖池,10%推广,2%为公司,1%为副奖池,1%为空投罐 fees_[2] = F3Ddatasets.TeamFee(56, 10); // 20%为奖池,10%推广,2%为公司,1%为副奖池,1%为空投罐 fees_[3] = F3Ddatasets.TeamFee(43, 8); // 35%为奖池,10%推广,2%为公司,1%为副奖池,1%为空投罐 // 结束奖池分配 //(F3D, P3D)+(获胜者,下一轮,公司) potSplit_[0] = F3Ddatasets.PotSplit(15, 10); // 获胜者48%,下一轮25%,com 2% potSplit_[1] = F3Ddatasets.PotSplit(25, 0); // 获胜者48%,下一轮25%,com 2% potSplit_[2] = F3Ddatasets.PotSplit(20, 20); // 获胜者48%,下一轮10%,com 2% potSplit_[3] = F3Ddatasets.PotSplit(30, 10); // 获胜者48%,下一轮10%,com 2% } // 匿名函数,用来紧急购买 function() isActivated() isHuman() isWithinLimits(msg.value) public payable { // 设置交易事件数据并确定玩家是否是新玩家 F3Ddatasets.EventReturns memory _eventData_ = determinePlayer(_eventData_); // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 买核心 buyCore(_pID, plyr_[_pID].laff, 2, _eventData_); } // 存在或注册新的pID。当玩家可能是新手时使用此功能 function determinePlayer(F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { uint256 _pID = pIDxAddr_[msg.sender]; // 如果玩家是新手 if (_pID == 0) { // 从玩家姓名合同中获取他们的玩家ID,姓名和最后一个身份证 determinePID(msg.sender); _pID = pIDxAddr_[msg.sender]; bytes32 _name = plyr_[_pID].name; uint256 _laff = plyr_[_pID].laff; // 设置玩家账号 pIDxAddr_[msg.sender] = _pID; plyr_[_pID].addr = msg.sender; if (_name != "") { pIDxName_[_name] = _pID; plyr_[_pID].name = _name; plyrNames_[_pID][_name] = true; } if (_laff != 0 && _laff != _pID) plyr_[_pID].laff = _laff; // 将新玩家设置为true _eventData_.compressedData = _eventData_.compressedData + 1; } return (_eventData_); } // 确定玩家ID function determinePID(address _addr) private returns (bool) { if (pIDxAddr_[_addr] == 0) { pID_++; pIDxAddr_[_addr] = pID_; plyr_[pID_].addr = _addr; // 将新玩家bool设置为true return (true); } else { return (false); } } // 注册名称 function registerNameXID(string _nameString, uint256 _affCode, bool _all) isHuman() public payable { // 确保支付名称费用 require(msg.value >= registrationFee_, "umm..... you have to pay the name fee"); // 过滤名称 bytes32 _name = NameFilter.nameFilter(_nameString); // 获取地址 address _addr = msg.sender; // 是否是新玩家 bool _isNewPlayer = determinePID(_addr); // 获取玩家ID uint256 _pID = pIDxAddr_[_addr]; // 如果没有推广人ID或者推广人是自己 if (_affCode != 0 && _affCode != plyr_[_pID].laff && _affCode != _pID) { // 更新推广人 plyr_[_pID].laff = _affCode; } else if (_affCode == _pID) { _affCode = 0; } // 注册名称 registerNameCore(_pID, _addr, _affCode, _name, _isNewPlayer, _all); } // 通过地址注册名称 function registerNameXaddr(address _addr, string _nameString, address _affCode, bool _all) external payable { // 确保支付名称费用 require(msg.value >= registrationFee_, "umm..... you have to pay the name fee"); // 过滤名称 bytes32 _name = NameFilter.nameFilter(_nameString); // 是否是新玩家 bool _isNewPlayer = determinePID(_addr); // 获取玩家ID uint256 _pID = pIDxAddr_[_addr]; // 如果没有推广人ID或者推广人是自己 uint256 _affID; if (_affCode != address(0) && _affCode != _addr) { // 获取推广人ID _affID = pIDxAddr_[_affCode]; // 如果推广人ID与先前不同 if (_affID != plyr_[_pID].laff) { // 更新推广人 plyr_[_pID].laff = _affID; } } // 注册名称 registerNameCore(_pID, _addr, _affID, _name, _isNewPlayer, _all); } // 通过已有名称注册新名称 function registerNameXname(address _addr, string _nameString, bytes32 _affCode, bool _all) external payable { // 确保支付名称费用 require(msg.value >= registrationFee_, "umm..... you have to pay the name fee"); // 过滤名称 bytes32 _name = NameFilter.nameFilter(_nameString); // 是否是新玩家 bool _isNewPlayer = determinePID(_addr); // 获取玩家ID uint256 _pID = pIDxAddr_[_addr]; // 如果没有推广人ID或者推广人是自己 uint256 _affID; if (_affCode != "" && _affCode != _name) { // 获取推广人ID _affID = pIDxName_[_affCode]; // 如果推广人ID与先前存储的不同 if (_affID != plyr_[_pID].laff) { // 更新推广人 plyr_[_pID].laff = _affID; } } // 注册名称 registerNameCore(_pID, _addr, _affID, _name, _isNewPlayer, _all); } // 正式注册 function registerNameCore(uint256 _pID, address _addr, uint256 _affID, bytes32 _name, bool _isNewPlayer, bool _all) private { // 如果已使用名称,则要求当前的msg发件人拥有该名称 if (pIDxName_[_name] != 0) require(plyrNames_[_pID][_name] == true, "sorry that names already taken"); // 为玩家配置文件,注册表和名称簿添加名称 plyr_[_pID].name = _name; pIDxName_[_name] = _pID; if (plyrNames_[_pID][_name] == false) { plyrNames_[_pID][_name] = true; plyr_[_pID].names++; plyrNameList_[_pID][plyr_[_pID].names] = _name; } // 注册费直接归于社区奖励 Jekyll_Island_Inc.transfer(address(this).balance); // 将玩家信息推送到游戏 // 暂时注释 bluehook _all; //if (_all == true) // for (uint256 i = 1; i <= gID_; i++) // games_[i].receivePlayerInfo(_pID, _addr, _name, _affID); // 发送事件 emit onNewName(_pID, _addr, _name, _isNewPlayer, _affID, plyr_[_affID].addr, plyr_[_affID].name, msg.value, now); } // 通过ID购买钥匙 function buyXid(uint256 _affCode, uint256 _team) isActivated() isHuman() isWithinLimits(msg.value) public payable { // 设置交易事件数据,确定玩家是否是新玩家 F3Ddatasets.EventReturns memory _eventData_ = determinePlayer(_eventData_); //获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 if (_affCode == 0 || _affCode == _pID) { // 使用最后存储的推广人代码 _affCode = plyr_[_pID].laff; } else if (_affCode != plyr_[_pID].laff) { // 更新最后一个推广人代码 plyr_[_pID].laff = _affCode; } // 确认选择了有效的团队 _team = verifyTeam(_team); // 买核心 buyCore(_pID, _affCode, _team, _eventData_); } // 通过地址购买 function buyXaddr(address _affCode, uint256 _team) isActivated() isHuman() isWithinLimits(msg.value) public payable { // 设置交易事件数据,确定玩家是否是新玩家 F3Ddatasets.EventReturns memory _eventData_ = determinePlayer(_eventData_); // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 uint256 _affID; if (_affCode == address(0) || _affCode == msg.sender) { // 使用最后存储的推广人代码 _affID = plyr_[_pID].laff; } else { // 获取推广ID _affID = pIDxAddr_[_affCode]; // 如果推广ID与先前存储的不同 if (_affID != plyr_[_pID].laff) { // 更新最后一个推广人代码 plyr_[_pID].laff = _affID; } } // 确认选择了有效的团队 _team = verifyTeam(_team); // 买核心 buyCore(_pID, _affID, _team, _eventData_); } // 通过玩家名购买 function buyXname(bytes32 _affCode, uint256 _team) isActivated() isHuman() isWithinLimits(msg.value) public payable {<FILL_FUNCTION_BODY> } // 使用未提取的收入购买 function reLoadXid(uint256 _affCode, uint256 _team, uint256 _eth) isActivated() isHuman() isWithinLimits(_eth) public { // 设置交易事件 F3Ddatasets.EventReturns memory _eventData_; // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 if (_affCode == 0 || _affCode == _pID) { // 使用最后存储的推广人代码 _affCode = plyr_[_pID].laff; } else if (_affCode != plyr_[_pID].laff) { // 更新最后一个推广人代码 plyr_[_pID].laff = _affCode; } // 确认选择了有效的团队 _team = verifyTeam(_team); // 重买核心 reLoadCore(_pID, _affCode, _team, _eth, _eventData_); } // 使用为提取的收入购买通过地址 function reLoadXaddr(address _affCode, uint256 _team, uint256 _eth) isActivated() isHuman() isWithinLimits(_eth) public { // 设置交易事件 F3Ddatasets.EventReturns memory _eventData_; // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 uint256 _affID; if (_affCode == address(0) || _affCode == msg.sender) { // 获取最后的推广人ID _affID = plyr_[_pID].laff; } else { // 获取最后的推广人ID _affID = pIDxAddr_[_affCode]; // 如果推广人ID与先前存储的不同 if (_affID != plyr_[_pID].laff) { // 更新最后一个推广人 plyr_[_pID].laff = _affID; } } // 确认选择了有效的团队 _team = verifyTeam(_team); // 重买核心 reLoadCore(_pID, _affID, _team, _eth, _eventData_); } // 使用未提取的收入购买通过名称 function reLoadXname(bytes32 _affCode, uint256 _team, uint256 _eth) isActivated() isHuman() isWithinLimits(_eth) public { // 设置交易事件 F3Ddatasets.EventReturns memory _eventData_; // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 uint256 _affID; if (_affCode == '' || _affCode == plyr_[_pID].name) { // 获取推广人ID _affID = plyr_[_pID].laff; } else { // 获取推广人ID _affID = pIDxName_[_affCode]; // 如果推广人ID与先前的不同 if (_affID != plyr_[_pID].laff) { // 更新最后一个推广人 plyr_[_pID].laff = _affID; } } // 确认选择了有效的团队 _team = verifyTeam(_team); // 重买核心 reLoadCore(_pID, _affID, _team, _eth, _eventData_); } // 检查用户是否选择了队伍,如果没有默认蛇队 function verifyTeam(uint256 _team) private pure returns (uint256) { if (_team < 0 || _team > 3) return (2); else return (_team); } // 购买 function buyCore(uint256 _pID, uint256 _affID, uint256 _team, F3Ddatasets.EventReturns memory _eventData_) private { // 设置本地rID uint256 _rID = rID_; // 当前时间 uint256 _now = now; // 如果回合进行中 if (_now > round_[_rID].strt + rndGap_ && (_now <= round_[_rID].end || (_now > round_[_rID].end && round_[_rID].plyr == 0))) { // 尝试购买 core(_rID, _pID, msg.value, _affID, _team, _eventData_); } else { // 如果round不活跃 // 检查是否回合已经结束 if (_now > round_[_rID].end && round_[_rID].ended == false) { // 结束回合(奖池分红)并开始新回合 round_[_rID].ended = true; _eventData_ = endRound(_eventData_); // 构建事件数据 _eventData_.compressedData = _eventData_.compressedData + (_now * 1000000000000000000); _eventData_.compressedIDs = _eventData_.compressedIDs + _pID; // 发起购买事件 emit onBuyAndDistribute ( msg.sender, plyr_[_pID].name, msg.value, _eventData_.compressedData, _eventData_.compressedIDs, _eventData_.winnerAddr, _eventData_.winnerName, _eventData_.amountWon, _eventData_.newPot, _eventData_.P3DAmount, _eventData_.genAmount ); } //把eth放在球员保险库里 plyr_[_pID].gen = plyr_[_pID].gen.add(msg.value); } } // 重新购买 function reLoadCore(uint256 _pID, uint256 _affID, uint256 _team, uint256 _eth, F3Ddatasets.EventReturns memory _eventData_) private { // 设置本地rID uint256 _rID = rID_; // 获取时间 uint256 _now = now; // 回合进行中 if (_now > round_[_rID].strt + rndGap_ && (_now <= round_[_rID].end || (_now > round_[_rID].end && round_[_rID].plyr == 0))) { // 从所有保险库中获取收益并将未使用的保险库返还给gen保险库 plyr_[_pID].gen = withdrawEarnings(_pID).sub(_eth); // 购买 core(_rID, _pID, _eth, _affID, _team, _eventData_); } else if (_now > round_[_rID].end && round_[_rID].ended == false) { // 回合结束,奖池分红,并开始新回合 round_[_rID].ended = true; _eventData_ = endRound(_eventData_); // 构建事件数据 _eventData_.compressedData = _eventData_.compressedData + (_now * 1000000000000000000); _eventData_.compressedIDs = _eventData_.compressedIDs + _pID; // 发送购买和分发事件 emit onReLoadAndDistribute ( msg.sender, plyr_[_pID].name, _eventData_.compressedData, _eventData_.compressedIDs, _eventData_.winnerAddr, _eventData_.winnerName, _eventData_.amountWon, _eventData_.newPot, _eventData_.P3DAmount, _eventData_.genAmount ); } } // 如果管理员开始新一轮,移动玩家没有保存的钱包收入到保险箱 function managePlayer(uint256 _pID, F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { // 如果玩家玩过上一轮,则移动他们的收入到保险箱。 if (plyr_[_pID].lrnd != 0) updateGenVault(_pID, plyr_[_pID].lrnd); // 更新玩家的最后一轮比赛 plyr_[_pID].lrnd = rID_; // 将参与的回合bool设置为true _eventData_.compressedData = _eventData_.compressedData + 10; return (_eventData_); } // 计算没有归入钱包的收入(只计算,不更新钱包) // 返回wei格式的收入 function calcUnMaskedEarnings(uint256 _pID, uint256 _rIDlast) private view returns (uint256) { return ((((round_[_rIDlast].mask).mul(plyrRnds_[_pID][_rIDlast].keys)) / (1000000000000000000)).sub(plyrRnds_[_pID][_rIDlast].mask)); } // 将收入移至收入保险箱 function updateGenVault(uint256 _pID, uint256 _rIDlast) private { uint256 _earnings = calcUnMaskedEarnings(_pID, _rIDlast); if (_earnings > 0) { // 放入分红库 plyr_[_pID].gen = _earnings.add(plyr_[_pID].gen); // 更新钱包并将收入归0 plyrRnds_[_pID][_rIDlast].mask = _earnings.add(plyrRnds_[_pID][_rIDlast].mask); } } // 根据购买的全部钥匙数量更新回合计时器 function updateTimer(uint256 _keys, uint256 _rID) private { // 当前时间 uint256 _now = now; // 根据购买的钥匙数计算时间 uint256 _newTime; if (_now > round_[_rID].end && round_[_rID].plyr == 0) _newTime = (((_keys) / (1000000000000000000)).mul(rndInc_)).add(_now); else _newTime = (((_keys) / (1000000000000000000)).mul(rndInc_)).add(round_[_rID].end); // 与最长限制比较并设置新的结束时间 if (_newTime < (rndMax_).add(_now)) round_[_rID].end = _newTime; else round_[_rID].end = rndMax_.add(_now); } // 检查空投 function airdrop() private view returns (bool) { uint256 seed = uint256(keccak256(abi.encodePacked( (block.timestamp).add (block.difficulty).add ((uint256(keccak256(abi.encodePacked(block.coinbase)))) / (now)).add (block.gaslimit).add ((uint256(keccak256(abi.encodePacked(msg.sender)))) / (now)).add (block.number) ))); if ((seed - ((seed / 1000) * 1000)) < airDropTracker_) return (true); else return (false); } // 购买核心 function core(uint256 _rID, uint256 _pID, uint256 _eth, uint256 _affID, uint256 _team, F3Ddatasets.EventReturns memory _eventData_) private { // 如果玩家是新手 if (plyrRnds_[_pID][_rID].keys == 0) _eventData_ = managePlayer(_pID, _eventData_); // 早期的道德限制器 <100eth ... >=1eth 早期奖池小于100eth,一个玩家一局限制购买最多1eth if (round_[_rID].eth < 100000000000000000000 && plyrRnds_[_pID][_rID].eth.add(_eth) > 1000000000000000000) { uint256 _availableLimit = (1000000000000000000).sub(plyrRnds_[_pID][_rID].eth); // 1eth uint256 _refund = _eth.sub(_availableLimit); plyr_[_pID].gen = plyr_[_pID].gen.add(_refund); _eth = _availableLimit; } // 如果eth大于最小购买eth数量 if (_eth > 1000000000) //0.0000001eth { // 计算可购买钥匙数量 uint256 _keys = keysRec(round_[_rID].eth,_eth); // 如果至少买一把钥匙19位 if (_keys >= 1000000000000000000) { updateTimer(_keys, _rID); // 设置新的领先者 if (round_[_rID].plyr != _pID) round_[_rID].plyr = _pID; if (round_[_rID].team != _team) round_[_rID].team = _team; // 将新的领先者布尔设置为true _eventData_.compressedData = _eventData_.compressedData + 100; } // 管理空投,如果购买金额至少0.1eth if (_eth >= 100000000000000000) { airDropTracker_++; if (airdrop() == true) { uint256 _prize; if (_eth >= 10000000000000000000) // 10eth { // 计算奖金并将其交给获胜者 _prize = ((airDropPot_).mul(75)) / 100; plyr_[_pID].win = (plyr_[_pID].win).add(_prize); // 调整空投罐 airDropPot_ = (airDropPot_).sub(_prize); // 让活动知道赢得了一级奖 _eventData_.compressedData += 300000000000000000000000000000000; } else if (_eth >= 1000000000000000000 && _eth < 10000000000000000000) { // 计算奖金并将其交给获胜者 1eth ~ 10eth _prize = ((airDropPot_).mul(50)) / 100; plyr_[_pID].win = (plyr_[_pID].win).add(_prize); // 调整空头罐 airDropPot_ = (airDropPot_).sub(_prize); // 让活动知道获得二等奖 _eventData_.compressedData += 200000000000000000000000000000000; } else if (_eth >= 100000000000000000 && _eth < 1000000000000000000) { // 计算奖金并将其交给获胜者 0.11eth ~ 1eth _prize = ((airDropPot_).mul(25)) / 100; plyr_[_pID].win = (plyr_[_pID].win).add(_prize); // 调整空头罐 airDropPot_ = (airDropPot_).sub(_prize); // 让活动知道赢得了三级奖 _eventData_.compressedData += 300000000000000000000000000000000; } // 设置空投罐触发bool为true _eventData_.compressedData += 10000000000000000000000000000000; // 让玩家知道赢了多少 _eventData_.compressedData += _prize * 1000000000000000000000000000000000; // 重置空投罐计数 airDropTracker_ = 0; } } // 存储空投罐计数 _eventData_.compressedData = _eventData_.compressedData + (airDropTracker_ * 1000); // 更新玩家数据 plyrRnds_[_pID][_rID].keys = _keys.add(plyrRnds_[_pID][_rID].keys); plyrRnds_[_pID][_rID].eth = _eth.add(plyrRnds_[_pID][_rID].eth); // 更新回合数据 round_[_rID].keys = _keys.add(round_[_rID].keys); round_[_rID].eth = _eth.add(round_[_rID].eth); rndTmEth_[_rID][_team] = _eth.add(rndTmEth_[_rID][_team]); // eth分红 _eventData_ = distributeExternal(_rID, _pID, _eth, _affID, _team, _eventData_); _eventData_ = distributeInternal(_rID, _pID, _eth, _team, _keys, _eventData_); // 调用结束交易函数来触发结束交易事件。 endTx(_pID, _team, _eth, _keys, _eventData_); } } // 返回玩家金库 function getPlayerVaults(uint256 _pID) public view returns (uint256, uint256, uint256) { // 设置本地rID uint256 _rID = rID_; // 如果回合结束尚未开始(因此合同没有分配奖金) if (now > round_[_rID].end && round_[_rID].ended == false && round_[_rID].plyr != 0) { // 如果玩家是赢家 if (round_[_rID].plyr == _pID) { return ( (plyr_[_pID].win).add(((round_[_rID].pot).mul(48)) / 100), (plyr_[_pID].gen).add(getPlayerVaultsHelper(_pID, _rID).sub(plyrRnds_[_pID][_rID].mask)), plyr_[_pID].aff ); } else { // 如果玩家不是赢家 return ( plyr_[_pID].win, (plyr_[_pID].gen).add(getPlayerVaultsHelper(_pID, _rID).sub(plyrRnds_[_pID][_rID].mask)), plyr_[_pID].aff ); } } else { // 如果回合仍然在进行或者回合结束又已经运行 return ( plyr_[_pID].win, (plyr_[_pID].gen).add(calcUnMaskedEarnings(_pID, plyr_[_pID].lrnd)), plyr_[_pID].aff ); } } // 计算金库金额帮助函数 function getPlayerVaultsHelper(uint256 _pID, uint256 _rID) private view returns (uint256) { return (((((round_[_rID].mask).add(((((round_[_rID].pot).mul(potSplit_[round_[_rID].team].gen)) / 100).mul(1000000000000000000)) / (round_[_rID].keys))).mul(plyrRnds_[_pID][_rID].keys)) / 1000000000000000000)); } // 压缩数据并触发购买更新交易事件 function endTx(uint256 _pID, uint256 _team, uint256 _eth, uint256 _keys, F3Ddatasets.EventReturns memory _eventData_) private { _eventData_.compressedData = _eventData_.compressedData + (now * 1000000000000000000) + (_team * 100000000000000000000000000000); _eventData_.compressedIDs = _eventData_.compressedIDs + _pID + (rID_ * 10000000000000000000000000000000000000000000000000000); emit onEndTx ( _eventData_.compressedData, _eventData_.compressedIDs, plyr_[_pID].name, msg.sender, _eth, _keys, _eventData_.winnerAddr, _eventData_.winnerName, _eventData_.amountWon, _eventData_.newPot, _eventData_.P3DAmount, _eventData_.genAmount, _eventData_.potAmount, airDropPot_ ); } // 外部分红 function distributeExternal(uint256 _rID, uint256 _pID, uint256 _eth, uint256 _affID, uint256 _team, F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { // 支付2%的社区奖励 uint256 _com = _eth / 50; uint256 _p3d; if (!address(Jekyll_Island_Inc).send(_com)) { _p3d = _com; _com = 0; } // 向FoMo3D支付1%的费用 uint256 _long = _eth / 100; otherF3D_.transfer(_long); // 将推广费用分配给会员 uint256 _aff = _eth / 10; // 决定如何处理推广费用 // 不能是自己,并且必须注册名称 // 如果没有就归P3D if (_affID != _pID && plyr_[_affID].name != '') { plyr_[_affID].aff = _aff.add(plyr_[_affID].aff); emit onAffiliatePayout(_affID, plyr_[_affID].addr, plyr_[_affID].name, _rID, _pID, _aff, now); } else { _p3d = _aff; } // 支付P3D _p3d = _p3d.add((_eth.mul(fees_[_team].p3d)) / (100)); if (_p3d > 0) { // 然后存入DVS合约 Divies.transfer(_p3d); // 设置事件数据 _eventData_.P3DAmount = _p3d.add(_eventData_.P3DAmount); } return (_eventData_); } // 内部分红 function distributeInternal(uint256 _rID, uint256 _pID, uint256 _eth, uint256 _team, uint256 _keys, F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { // 计算分红份额 uint256 _gen = (_eth.mul(fees_[_team].gen)) / 100; // 将1%投入空投罐 uint256 _air = (_eth / 100); airDropPot_ = airDropPot_.add(_air); // 更新eth balance(eth = eth - (com share + pot swap share + aff share + p3d share + airdrop pot share)) _eth = _eth.sub(((_eth.mul(14)) / 100).add((_eth.mul(fees_[_team].p3d)) / 100)); // 计算的奖池 uint256 _pot = _eth.sub(_gen); // 分发分红 uint256 _dust = updateMasks(_rID, _pID, _gen, _keys); if (_dust > 0) _gen = _gen.sub(_dust); // 添加eth到奖池 round_[_rID].pot = _pot.add(_dust).add(round_[_rID].pot); // 设置事件数据 _eventData_.genAmount = _gen.add(_eventData_.genAmount); _eventData_.potAmount = _pot; return (_eventData_); } // 副奖池 function potSwap() external payable { // 获取一个rID uint256 _rID = rID_ + 1; round_[_rID].pot = round_[_rID].pot.add(msg.value); emit onPotSwapDeposit(_rID, msg.value); } // 购买钥匙时更新回合和玩家钱包 function updateMasks(uint256 _rID, uint256 _pID, uint256 _gen, uint256 _keys) private returns (uint256) { // 基于此次购买的每个钥匙和回合分红利润:(剩余进入奖池) uint256 _ppt = (_gen.mul(1000000000000000000)) / (round_[_rID].keys); round_[_rID].mask = _ppt.add(round_[_rID].mask); // 计算自己的收入(基于刚刚买的钥匙数量)并更新玩家钱包 uint256 _pearn = (_ppt.mul(_keys)) / (1000000000000000000); plyrRnds_[_pID][_rID].mask = (((round_[_rID].mask.mul(_keys)) / (1000000000000000000)).sub(_pearn)).add(plyrRnds_[_pID][_rID].mask); //计算并返回灰尘 return (_gen.sub((_ppt.mul(round_[_rID].keys)) / (1000000000000000000))); } // 结束了本回合,支付赢家和平分奖池 function endRound(F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { // 获取一个rID uint256 _rID = rID_; // 获取获胜玩家和队伍 uint256 _winPID = round_[_rID].plyr; uint256 _winTID = round_[_rID].team; // 获取奖池 uint256 _pot = round_[_rID].pot; // 计算获胜玩家份额,社区奖励,公司份额, // P3D分享,以及为下一个底池保留的金额 uint256 _win = (_pot.mul(48)) / 100; uint256 _com = (_pot / 50); uint256 _gen = (_pot.mul(potSplit_[_winTID].gen)) / 100; uint256 _p3d = (_pot.mul(potSplit_[_winTID].p3d)) / 100; uint256 _res = (((_pot.sub(_win)).sub(_com)).sub(_gen)).sub(_p3d); // 计算回合钱包的ppt uint256 _ppt = (_gen.mul(1000000000000000000)) / (round_[_rID].keys); uint256 _dust = _gen.sub((_ppt.mul(round_[_rID].keys)) / 1000000000000000000); if (_dust > 0) { _gen = _gen.sub(_dust); _res = _res.add(_dust); } // 支付我们的赢家 plyr_[_winPID].win = _win.add(plyr_[_winPID].win); // P3D奖励 if (!address(Jekyll_Island_Inc).send(_com)) { _p3d = _p3d.add(_com); _com = 0; } // 将gen部分分发给密钥持有者 round_[_rID].mask = _ppt.add(round_[_rID].mask); // 将P3D的份额发送给divies if (_p3d > 0) Divies.transfer(_p3d); // 准备事件 _eventData_.compressedData = _eventData_.compressedData + (round_[_rID].end * 1000000); _eventData_.compressedIDs = _eventData_.compressedIDs + (_winPID * 100000000000000000000000000) + (_winTID * 100000000000000000); _eventData_.winnerAddr = plyr_[_winPID].addr; _eventData_.winnerName = plyr_[_winPID].name; _eventData_.amountWon = _win; _eventData_.genAmount = _gen; _eventData_.P3DAmount = _p3d; _eventData_.newPot = _res; // 新一轮开始 rID_++; _rID++; round_[_rID].strt = now; round_[_rID].end = now.add(rndInit_).add(rndGap_); round_[_rID].pot = _res; return (_eventData_); } // 通过地址获取玩家信息 function getPlayerInfoByAddress(address _addr) public view returns (uint256, bytes32, uint256, uint256, uint256, uint256, uint256) { // 设置本地rID uint256 _rID = rID_; if (_addr == address(0)) { _addr == msg.sender; } uint256 _pID = pIDxAddr_[_addr]; return ( _pID, //0 plyr_[_pID].name, //1 plyrRnds_[_pID][_rID].keys, //2 plyr_[_pID].win, //3 (plyr_[_pID].gen).add(calcUnMaskedEarnings(_pID, plyr_[_pID].lrnd)), //4 plyr_[_pID].aff, //5 plyrRnds_[_pID][_rID].eth //6 ); } // 回合数据 function getCurrentRoundInfo() public view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256, address, bytes32, uint256, uint256, uint256, uint256, uint256) { // 设置本地rID uint256 _rID = rID_; return ( round_[_rID].ico, //0 _rID, //1 round_[_rID].keys, //2 round_[_rID].end, //3 round_[_rID].strt, //4 round_[_rID].pot, //5 (round_[_rID].team + (round_[_rID].plyr * 10)), //6 plyr_[round_[_rID].plyr].addr, //7 plyr_[round_[_rID].plyr].name, //8 rndTmEth_[_rID][0], //9 rndTmEth_[_rID][1], //10 rndTmEth_[_rID][2], //11 rndTmEth_[_rID][3], //12 airDropTracker_ + (airDropPot_ * 1000) //13 ); } // 撤回所有收入 function withdraw() isActivated() isHuman() public { // 设置本地rID uint256 _rID = rID_; // 获取时间 uint256 _now = now; // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 临时变量 uint256 _eth; // 检查回合是否已经结束,还没有人绕过回合结束 if (_now > round_[_rID].end && round_[_rID].ended == false && round_[_rID].plyr != 0) { // 设置交易事件 F3Ddatasets.EventReturns memory _eventData_; // 结束回合(奖池分红) round_[_rID].ended = true; _eventData_ = endRound(_eventData_); // 得到他的收入 _eth = withdrawEarnings(_pID); // 支付玩家 if (_eth > 0) plyr_[_pID].addr.transfer(_eth); // 构建事件数据 _eventData_.compressedData = _eventData_.compressedData + (_now * 1000000000000000000); _eventData_.compressedIDs = _eventData_.compressedIDs + _pID; // 撤回分发事件 emit onWithdrawAndDistribute ( msg.sender, plyr_[_pID].name, _eth, _eventData_.compressedData, _eventData_.compressedIDs, _eventData_.winnerAddr, _eventData_.winnerName, _eventData_.amountWon, _eventData_.newPot, _eventData_.P3DAmount, _eventData_.genAmount ); } else { // 在任何其他情况下 // 得到他的收入 _eth = withdrawEarnings(_pID); // 支付玩家 if (_eth > 0) plyr_[_pID].addr.transfer(_eth); // 撤回事件 emit onWithdraw(_pID, msg.sender, plyr_[_pID].name, _eth, _now); } } // 将未显示的收入和保险库收入加起来返回,并将它们置为0 function withdrawEarnings(uint256 _pID) private returns (uint256) { // 更新gen保险库 updateGenVault(_pID, plyr_[_pID].lrnd); // 来自金库 uint256 _earnings = (plyr_[_pID].win).add(plyr_[_pID].gen).add(plyr_[_pID].aff); if (_earnings > 0) { plyr_[_pID].win = 0; plyr_[_pID].gen = 0; plyr_[_pID].aff = 0; } return (_earnings); } // 计算给定eth可购买的钥匙数量 function calcKeysReceived(uint256 _rID, uint256 _eth) public view returns (uint256) { // 获取时间 uint256 _now = now; // 回合进行中 if (_now > round_[_rID].strt + rndGap_ && (_now <= round_[_rID].end || (_now > round_[_rID].end && round_[_rID].plyr == 0))) { return keysRec(round_[_rID].eth + _eth,_eth); } else { // 如果结束,返回新一轮的数量 return keys(_eth); } } // 返回购买指定数量钥匙需要的eth function iWantXKeys(uint256 _keys) public view returns (uint256) { // 设置本地rID uint256 _rID = rID_; // 获取时间 uint256 _now = now; // 在回合进行中 if (_now > round_[_rID].strt + rndGap_ && (_now <= round_[_rID].end || (_now > round_[_rID].end && round_[_rID].plyr == 0))) return ethRec(round_[_rID].keys + _keys,_keys); else // 如果结束,返回新一轮的价格 return eth(_keys); } // 计算以太币能够购买的钥匙数量 function keysRec(uint256 _curEth, uint256 _newEth) internal pure returns (uint256) { return(keys((_curEth).add(_newEth)).sub(keys(_curEth))); } function keys(uint256 _eth) internal pure returns(uint256) { return ((((((_eth).mul(1000000000000000000)).mul(312500000000000000000000000)).add(5624988281256103515625000000000000000000000000000000000000000000)).sqrt()).sub(74999921875000000000000000000000)) / (156250000); } function ethRec(uint256 _curKeys, uint256 _sellKeys) internal pure returns (uint256) { return((eth(_curKeys)).sub(eth(_curKeys.sub(_sellKeys)))); } function eth(uint256 _keys) internal pure returns(uint256) { return ((78125000).mul(_keys.sq()).add(((149999843750000).mul(_keys.mul(1000000000000000000))) / (2))) / ((1000000000000000000).sq()); } }
contract TinyF3D { using SafeMath for *; using NameFilter for string; string constant public name = "Fomo3D CHINA"; // 游戏名称 string constant public symbol = "GBL"; // 游戏符号 // 游戏数据 address public owner; // 合约管理者 address public devs; // 开发团队 address public otherF3D_; // 副奖池 address public Divies; // 股东 address public Jekyll_Island_Inc; // 公司账户 bool public activated_ = false; // 合同部署标志 uint256 private rndExtra_ = 0; // 第一个ICO的时间 uint256 private rndGap_ = 0; // ICO阶段的时间,现为马上结束 uint256 constant private rndInit_ = 1 hours; // 回合倒计时开始 uint256 constant private rndInc_ = 30 seconds; // 每一把钥匙增加时间 uint256 constant private rndMax_ = 12 hours; // 最大倒计时时间 uint256 public airDropPot_; // 空头罐 uint256 public airDropTracker_ = 0; // 空投计数 uint256 public rID_; // 回合轮数 uint256 public registrationFee_ = 10 finney; // 注册价格 // 玩家数据 uint256 public pID_; // 玩家总数 mapping(address => uint256) public pIDxAddr_; //(addr => pID)按地址返回玩家ID mapping(bytes32 => uint256) public pIDxName_; //(name => pID)按名称返回玩家ID mapping(uint256 => F3Ddatasets.Player) public plyr_; //(pID => data)玩家数据 mapping(uint256 => mapping(uint256 => F3Ddatasets.PlayerRounds)) public plyrRnds_; //(pID => rID => data)玩家ID和轮次ID的玩家轮数据 mapping(uint256 => mapping(bytes32 => bool)) public plyrNames_; //(pID => name => bool)玩家拥有的名字列表。 //(用于这样您可以在您拥有的任何名称中更改您的显示名称) mapping(uint256 => mapping(uint256 => bytes32)) public plyrNameList_; //(pID => nameNum => name)玩家拥有的名称列表 // 回合数据 mapping(uint256 => F3Ddatasets.Round) public round_; //(rID => data)回合数据 mapping(uint256 => mapping(uint256 => uint256)) public rndTmEth_; //(rID => tID => data)每个团队中的eth,按轮次ID和团队ID // 团队数据 mapping(uint256 => F3Ddatasets.TeamFee) public fees_; //(团队=>费用)按团队分配费用 mapping(uint256 => F3Ddatasets.PotSplit) public potSplit_; //(团队=>费用)按团队分配分配 // 每当玩家注册一个名字时就会被触发 event onNewName ( uint256 indexed playerID, address indexed playerAddress, bytes32 indexed playerName, bool isNewPlayer, uint256 affiliateID, address affiliateAddress, bytes32 affiliateName, uint256 amountPaid, uint256 timeStamp ); // 购买并分红 event onBuyAndDistribute ( address playerAddress, bytes32 playerName, uint256 ethIn, uint256 compressedData, uint256 compressedIDs, address winnerAddr, bytes32 winnerName, uint256 amountWon, uint256 newPot, uint256 P3DAmount, uint256 genAmount ); // 收到副奖池存款 event onPotSwapDeposit ( uint256 roundID, uint256 amountAddedToPot ); // 购买结束事件 event onEndTx ( uint256 compressedData, uint256 compressedIDs, bytes32 playerName, address playerAddress, uint256 ethIn, uint256 keysBought, address winnerAddr, bytes32 winnerName, uint256 amountWon, uint256 newPot, uint256 P3DAmount, uint256 genAmount, uint256 potAmount, uint256 airDropPot ); //每当联盟会员付款时都会被解雇 event onAffiliatePayout ( uint256 indexed affiliateID, address affiliateAddress, bytes32 affiliateName, uint256 indexed roundID, uint256 indexed buyerID, uint256 amount, uint256 timeStamp ); // 撤回收入事件 event onWithdraw ( uint256 indexed playerID, address playerAddress, bytes32 playerName, uint256 ethOut, uint256 timeStamp ); // 撤回收入分发事件 event onWithdrawAndDistribute ( address playerAddress, bytes32 playerName, uint256 ethOut, uint256 compressedData, uint256 compressedIDs, address winnerAddr, bytes32 winnerName, uint256 amountWon, uint256 newPot, uint256 P3DAmount, uint256 genAmount ); // 只有当玩家在回合结束后尝试重新加载时才会触发 event onReLoadAndDistribute ( address playerAddress, bytes32 playerName, uint256 compressedData, uint256 compressedIDs, address winnerAddr, bytes32 winnerName, uint256 amountWon, uint256 newPot, uint256 P3DAmount, uint256 genAmount ); // 确保在合约激活前不能使用 modifier isActivated() { require(activated_ == true, "its not ready yet. check ?eta in discord"); _; } // 禁止其他合约调用 modifier isHuman() { address _addr = msg.sender; uint256 _codeLength; assembly {_codeLength := extcodesize(_addr)} require(_codeLength == 0, "sorry humans only"); _; } // 保证调用者是开发者 modifier onlyDevs() { require(msg.sender == devs, "msg sender is not a dev"); _; } // dev设置传入交易金额的边界 modifier isWithinLimits(uint256 _eth) { require(_eth >= 1000000000, "pocket lint: not a valid currency"); require(_eth <= 100000000000000000000000, "no vitalik, no"); _; } // 合同部署后激活一次 function activate() public onlyDevs { //只能运行一次 require(activated_ == false, "TinyF3d already activated"); //激活合同 activated_ = true; //让我们开始第一轮 rID_ = 1; round_[1].strt = now + rndExtra_ - rndGap_; round_[1].end = now + rndInit_ + rndExtra_; } // 合约部署初始数据设置 constructor() public { owner = msg.sender; devs = msg.sender; otherF3D_ = msg.sender; Divies = msg.sender; Jekyll_Island_Inc = msg.sender; // 团队分配结构 // 0 =鲸鱼 // 1 =熊 // 2 = 蛇 // 3 =公牛 // 团队分红 //(F3D,P3D)+(奖池,推荐,社区) fees_[0] = F3Ddatasets.TeamFee(30, 6); // 50%为奖池,10%推广,2%为公司,1%为副奖池,1%为空投罐 fees_[1] = F3Ddatasets.TeamFee(43, 0); // 43%为奖池,10%推广,2%为公司,1%为副奖池,1%为空投罐 fees_[2] = F3Ddatasets.TeamFee(56, 10); // 20%为奖池,10%推广,2%为公司,1%为副奖池,1%为空投罐 fees_[3] = F3Ddatasets.TeamFee(43, 8); // 35%为奖池,10%推广,2%为公司,1%为副奖池,1%为空投罐 // 结束奖池分配 //(F3D, P3D)+(获胜者,下一轮,公司) potSplit_[0] = F3Ddatasets.PotSplit(15, 10); // 获胜者48%,下一轮25%,com 2% potSplit_[1] = F3Ddatasets.PotSplit(25, 0); // 获胜者48%,下一轮25%,com 2% potSplit_[2] = F3Ddatasets.PotSplit(20, 20); // 获胜者48%,下一轮10%,com 2% potSplit_[3] = F3Ddatasets.PotSplit(30, 10); // 获胜者48%,下一轮10%,com 2% } // 匿名函数,用来紧急购买 function() isActivated() isHuman() isWithinLimits(msg.value) public payable { // 设置交易事件数据并确定玩家是否是新玩家 F3Ddatasets.EventReturns memory _eventData_ = determinePlayer(_eventData_); // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 买核心 buyCore(_pID, plyr_[_pID].laff, 2, _eventData_); } // 存在或注册新的pID。当玩家可能是新手时使用此功能 function determinePlayer(F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { uint256 _pID = pIDxAddr_[msg.sender]; // 如果玩家是新手 if (_pID == 0) { // 从玩家姓名合同中获取他们的玩家ID,姓名和最后一个身份证 determinePID(msg.sender); _pID = pIDxAddr_[msg.sender]; bytes32 _name = plyr_[_pID].name; uint256 _laff = plyr_[_pID].laff; // 设置玩家账号 pIDxAddr_[msg.sender] = _pID; plyr_[_pID].addr = msg.sender; if (_name != "") { pIDxName_[_name] = _pID; plyr_[_pID].name = _name; plyrNames_[_pID][_name] = true; } if (_laff != 0 && _laff != _pID) plyr_[_pID].laff = _laff; // 将新玩家设置为true _eventData_.compressedData = _eventData_.compressedData + 1; } return (_eventData_); } // 确定玩家ID function determinePID(address _addr) private returns (bool) { if (pIDxAddr_[_addr] == 0) { pID_++; pIDxAddr_[_addr] = pID_; plyr_[pID_].addr = _addr; // 将新玩家bool设置为true return (true); } else { return (false); } } // 注册名称 function registerNameXID(string _nameString, uint256 _affCode, bool _all) isHuman() public payable { // 确保支付名称费用 require(msg.value >= registrationFee_, "umm..... you have to pay the name fee"); // 过滤名称 bytes32 _name = NameFilter.nameFilter(_nameString); // 获取地址 address _addr = msg.sender; // 是否是新玩家 bool _isNewPlayer = determinePID(_addr); // 获取玩家ID uint256 _pID = pIDxAddr_[_addr]; // 如果没有推广人ID或者推广人是自己 if (_affCode != 0 && _affCode != plyr_[_pID].laff && _affCode != _pID) { // 更新推广人 plyr_[_pID].laff = _affCode; } else if (_affCode == _pID) { _affCode = 0; } // 注册名称 registerNameCore(_pID, _addr, _affCode, _name, _isNewPlayer, _all); } // 通过地址注册名称 function registerNameXaddr(address _addr, string _nameString, address _affCode, bool _all) external payable { // 确保支付名称费用 require(msg.value >= registrationFee_, "umm..... you have to pay the name fee"); // 过滤名称 bytes32 _name = NameFilter.nameFilter(_nameString); // 是否是新玩家 bool _isNewPlayer = determinePID(_addr); // 获取玩家ID uint256 _pID = pIDxAddr_[_addr]; // 如果没有推广人ID或者推广人是自己 uint256 _affID; if (_affCode != address(0) && _affCode != _addr) { // 获取推广人ID _affID = pIDxAddr_[_affCode]; // 如果推广人ID与先前不同 if (_affID != plyr_[_pID].laff) { // 更新推广人 plyr_[_pID].laff = _affID; } } // 注册名称 registerNameCore(_pID, _addr, _affID, _name, _isNewPlayer, _all); } // 通过已有名称注册新名称 function registerNameXname(address _addr, string _nameString, bytes32 _affCode, bool _all) external payable { // 确保支付名称费用 require(msg.value >= registrationFee_, "umm..... you have to pay the name fee"); // 过滤名称 bytes32 _name = NameFilter.nameFilter(_nameString); // 是否是新玩家 bool _isNewPlayer = determinePID(_addr); // 获取玩家ID uint256 _pID = pIDxAddr_[_addr]; // 如果没有推广人ID或者推广人是自己 uint256 _affID; if (_affCode != "" && _affCode != _name) { // 获取推广人ID _affID = pIDxName_[_affCode]; // 如果推广人ID与先前存储的不同 if (_affID != plyr_[_pID].laff) { // 更新推广人 plyr_[_pID].laff = _affID; } } // 注册名称 registerNameCore(_pID, _addr, _affID, _name, _isNewPlayer, _all); } // 正式注册 function registerNameCore(uint256 _pID, address _addr, uint256 _affID, bytes32 _name, bool _isNewPlayer, bool _all) private { // 如果已使用名称,则要求当前的msg发件人拥有该名称 if (pIDxName_[_name] != 0) require(plyrNames_[_pID][_name] == true, "sorry that names already taken"); // 为玩家配置文件,注册表和名称簿添加名称 plyr_[_pID].name = _name; pIDxName_[_name] = _pID; if (plyrNames_[_pID][_name] == false) { plyrNames_[_pID][_name] = true; plyr_[_pID].names++; plyrNameList_[_pID][plyr_[_pID].names] = _name; } // 注册费直接归于社区奖励 Jekyll_Island_Inc.transfer(address(this).balance); // 将玩家信息推送到游戏 // 暂时注释 bluehook _all; //if (_all == true) // for (uint256 i = 1; i <= gID_; i++) // games_[i].receivePlayerInfo(_pID, _addr, _name, _affID); // 发送事件 emit onNewName(_pID, _addr, _name, _isNewPlayer, _affID, plyr_[_affID].addr, plyr_[_affID].name, msg.value, now); } // 通过ID购买钥匙 function buyXid(uint256 _affCode, uint256 _team) isActivated() isHuman() isWithinLimits(msg.value) public payable { // 设置交易事件数据,确定玩家是否是新玩家 F3Ddatasets.EventReturns memory _eventData_ = determinePlayer(_eventData_); //获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 if (_affCode == 0 || _affCode == _pID) { // 使用最后存储的推广人代码 _affCode = plyr_[_pID].laff; } else if (_affCode != plyr_[_pID].laff) { // 更新最后一个推广人代码 plyr_[_pID].laff = _affCode; } // 确认选择了有效的团队 _team = verifyTeam(_team); // 买核心 buyCore(_pID, _affCode, _team, _eventData_); } // 通过地址购买 function buyXaddr(address _affCode, uint256 _team) isActivated() isHuman() isWithinLimits(msg.value) public payable { // 设置交易事件数据,确定玩家是否是新玩家 F3Ddatasets.EventReturns memory _eventData_ = determinePlayer(_eventData_); // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 uint256 _affID; if (_affCode == address(0) || _affCode == msg.sender) { // 使用最后存储的推广人代码 _affID = plyr_[_pID].laff; } else { // 获取推广ID _affID = pIDxAddr_[_affCode]; // 如果推广ID与先前存储的不同 if (_affID != plyr_[_pID].laff) { // 更新最后一个推广人代码 plyr_[_pID].laff = _affID; } } // 确认选择了有效的团队 _team = verifyTeam(_team); // 买核心 buyCore(_pID, _affID, _team, _eventData_); } <FILL_FUNCTION> // 使用未提取的收入购买 function reLoadXid(uint256 _affCode, uint256 _team, uint256 _eth) isActivated() isHuman() isWithinLimits(_eth) public { // 设置交易事件 F3Ddatasets.EventReturns memory _eventData_; // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 if (_affCode == 0 || _affCode == _pID) { // 使用最后存储的推广人代码 _affCode = plyr_[_pID].laff; } else if (_affCode != plyr_[_pID].laff) { // 更新最后一个推广人代码 plyr_[_pID].laff = _affCode; } // 确认选择了有效的团队 _team = verifyTeam(_team); // 重买核心 reLoadCore(_pID, _affCode, _team, _eth, _eventData_); } // 使用为提取的收入购买通过地址 function reLoadXaddr(address _affCode, uint256 _team, uint256 _eth) isActivated() isHuman() isWithinLimits(_eth) public { // 设置交易事件 F3Ddatasets.EventReturns memory _eventData_; // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 uint256 _affID; if (_affCode == address(0) || _affCode == msg.sender) { // 获取最后的推广人ID _affID = plyr_[_pID].laff; } else { // 获取最后的推广人ID _affID = pIDxAddr_[_affCode]; // 如果推广人ID与先前存储的不同 if (_affID != plyr_[_pID].laff) { // 更新最后一个推广人 plyr_[_pID].laff = _affID; } } // 确认选择了有效的团队 _team = verifyTeam(_team); // 重买核心 reLoadCore(_pID, _affID, _team, _eth, _eventData_); } // 使用未提取的收入购买通过名称 function reLoadXname(bytes32 _affCode, uint256 _team, uint256 _eth) isActivated() isHuman() isWithinLimits(_eth) public { // 设置交易事件 F3Ddatasets.EventReturns memory _eventData_; // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 uint256 _affID; if (_affCode == '' || _affCode == plyr_[_pID].name) { // 获取推广人ID _affID = plyr_[_pID].laff; } else { // 获取推广人ID _affID = pIDxName_[_affCode]; // 如果推广人ID与先前的不同 if (_affID != plyr_[_pID].laff) { // 更新最后一个推广人 plyr_[_pID].laff = _affID; } } // 确认选择了有效的团队 _team = verifyTeam(_team); // 重买核心 reLoadCore(_pID, _affID, _team, _eth, _eventData_); } // 检查用户是否选择了队伍,如果没有默认蛇队 function verifyTeam(uint256 _team) private pure returns (uint256) { if (_team < 0 || _team > 3) return (2); else return (_team); } // 购买 function buyCore(uint256 _pID, uint256 _affID, uint256 _team, F3Ddatasets.EventReturns memory _eventData_) private { // 设置本地rID uint256 _rID = rID_; // 当前时间 uint256 _now = now; // 如果回合进行中 if (_now > round_[_rID].strt + rndGap_ && (_now <= round_[_rID].end || (_now > round_[_rID].end && round_[_rID].plyr == 0))) { // 尝试购买 core(_rID, _pID, msg.value, _affID, _team, _eventData_); } else { // 如果round不活跃 // 检查是否回合已经结束 if (_now > round_[_rID].end && round_[_rID].ended == false) { // 结束回合(奖池分红)并开始新回合 round_[_rID].ended = true; _eventData_ = endRound(_eventData_); // 构建事件数据 _eventData_.compressedData = _eventData_.compressedData + (_now * 1000000000000000000); _eventData_.compressedIDs = _eventData_.compressedIDs + _pID; // 发起购买事件 emit onBuyAndDistribute ( msg.sender, plyr_[_pID].name, msg.value, _eventData_.compressedData, _eventData_.compressedIDs, _eventData_.winnerAddr, _eventData_.winnerName, _eventData_.amountWon, _eventData_.newPot, _eventData_.P3DAmount, _eventData_.genAmount ); } //把eth放在球员保险库里 plyr_[_pID].gen = plyr_[_pID].gen.add(msg.value); } } // 重新购买 function reLoadCore(uint256 _pID, uint256 _affID, uint256 _team, uint256 _eth, F3Ddatasets.EventReturns memory _eventData_) private { // 设置本地rID uint256 _rID = rID_; // 获取时间 uint256 _now = now; // 回合进行中 if (_now > round_[_rID].strt + rndGap_ && (_now <= round_[_rID].end || (_now > round_[_rID].end && round_[_rID].plyr == 0))) { // 从所有保险库中获取收益并将未使用的保险库返还给gen保险库 plyr_[_pID].gen = withdrawEarnings(_pID).sub(_eth); // 购买 core(_rID, _pID, _eth, _affID, _team, _eventData_); } else if (_now > round_[_rID].end && round_[_rID].ended == false) { // 回合结束,奖池分红,并开始新回合 round_[_rID].ended = true; _eventData_ = endRound(_eventData_); // 构建事件数据 _eventData_.compressedData = _eventData_.compressedData + (_now * 1000000000000000000); _eventData_.compressedIDs = _eventData_.compressedIDs + _pID; // 发送购买和分发事件 emit onReLoadAndDistribute ( msg.sender, plyr_[_pID].name, _eventData_.compressedData, _eventData_.compressedIDs, _eventData_.winnerAddr, _eventData_.winnerName, _eventData_.amountWon, _eventData_.newPot, _eventData_.P3DAmount, _eventData_.genAmount ); } } // 如果管理员开始新一轮,移动玩家没有保存的钱包收入到保险箱 function managePlayer(uint256 _pID, F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { // 如果玩家玩过上一轮,则移动他们的收入到保险箱。 if (plyr_[_pID].lrnd != 0) updateGenVault(_pID, plyr_[_pID].lrnd); // 更新玩家的最后一轮比赛 plyr_[_pID].lrnd = rID_; // 将参与的回合bool设置为true _eventData_.compressedData = _eventData_.compressedData + 10; return (_eventData_); } // 计算没有归入钱包的收入(只计算,不更新钱包) // 返回wei格式的收入 function calcUnMaskedEarnings(uint256 _pID, uint256 _rIDlast) private view returns (uint256) { return ((((round_[_rIDlast].mask).mul(plyrRnds_[_pID][_rIDlast].keys)) / (1000000000000000000)).sub(plyrRnds_[_pID][_rIDlast].mask)); } // 将收入移至收入保险箱 function updateGenVault(uint256 _pID, uint256 _rIDlast) private { uint256 _earnings = calcUnMaskedEarnings(_pID, _rIDlast); if (_earnings > 0) { // 放入分红库 plyr_[_pID].gen = _earnings.add(plyr_[_pID].gen); // 更新钱包并将收入归0 plyrRnds_[_pID][_rIDlast].mask = _earnings.add(plyrRnds_[_pID][_rIDlast].mask); } } // 根据购买的全部钥匙数量更新回合计时器 function updateTimer(uint256 _keys, uint256 _rID) private { // 当前时间 uint256 _now = now; // 根据购买的钥匙数计算时间 uint256 _newTime; if (_now > round_[_rID].end && round_[_rID].plyr == 0) _newTime = (((_keys) / (1000000000000000000)).mul(rndInc_)).add(_now); else _newTime = (((_keys) / (1000000000000000000)).mul(rndInc_)).add(round_[_rID].end); // 与最长限制比较并设置新的结束时间 if (_newTime < (rndMax_).add(_now)) round_[_rID].end = _newTime; else round_[_rID].end = rndMax_.add(_now); } // 检查空投 function airdrop() private view returns (bool) { uint256 seed = uint256(keccak256(abi.encodePacked( (block.timestamp).add (block.difficulty).add ((uint256(keccak256(abi.encodePacked(block.coinbase)))) / (now)).add (block.gaslimit).add ((uint256(keccak256(abi.encodePacked(msg.sender)))) / (now)).add (block.number) ))); if ((seed - ((seed / 1000) * 1000)) < airDropTracker_) return (true); else return (false); } // 购买核心 function core(uint256 _rID, uint256 _pID, uint256 _eth, uint256 _affID, uint256 _team, F3Ddatasets.EventReturns memory _eventData_) private { // 如果玩家是新手 if (plyrRnds_[_pID][_rID].keys == 0) _eventData_ = managePlayer(_pID, _eventData_); // 早期的道德限制器 <100eth ... >=1eth 早期奖池小于100eth,一个玩家一局限制购买最多1eth if (round_[_rID].eth < 100000000000000000000 && plyrRnds_[_pID][_rID].eth.add(_eth) > 1000000000000000000) { uint256 _availableLimit = (1000000000000000000).sub(plyrRnds_[_pID][_rID].eth); // 1eth uint256 _refund = _eth.sub(_availableLimit); plyr_[_pID].gen = plyr_[_pID].gen.add(_refund); _eth = _availableLimit; } // 如果eth大于最小购买eth数量 if (_eth > 1000000000) //0.0000001eth { // 计算可购买钥匙数量 uint256 _keys = keysRec(round_[_rID].eth,_eth); // 如果至少买一把钥匙19位 if (_keys >= 1000000000000000000) { updateTimer(_keys, _rID); // 设置新的领先者 if (round_[_rID].plyr != _pID) round_[_rID].plyr = _pID; if (round_[_rID].team != _team) round_[_rID].team = _team; // 将新的领先者布尔设置为true _eventData_.compressedData = _eventData_.compressedData + 100; } // 管理空投,如果购买金额至少0.1eth if (_eth >= 100000000000000000) { airDropTracker_++; if (airdrop() == true) { uint256 _prize; if (_eth >= 10000000000000000000) // 10eth { // 计算奖金并将其交给获胜者 _prize = ((airDropPot_).mul(75)) / 100; plyr_[_pID].win = (plyr_[_pID].win).add(_prize); // 调整空投罐 airDropPot_ = (airDropPot_).sub(_prize); // 让活动知道赢得了一级奖 _eventData_.compressedData += 300000000000000000000000000000000; } else if (_eth >= 1000000000000000000 && _eth < 10000000000000000000) { // 计算奖金并将其交给获胜者 1eth ~ 10eth _prize = ((airDropPot_).mul(50)) / 100; plyr_[_pID].win = (plyr_[_pID].win).add(_prize); // 调整空头罐 airDropPot_ = (airDropPot_).sub(_prize); // 让活动知道获得二等奖 _eventData_.compressedData += 200000000000000000000000000000000; } else if (_eth >= 100000000000000000 && _eth < 1000000000000000000) { // 计算奖金并将其交给获胜者 0.11eth ~ 1eth _prize = ((airDropPot_).mul(25)) / 100; plyr_[_pID].win = (plyr_[_pID].win).add(_prize); // 调整空头罐 airDropPot_ = (airDropPot_).sub(_prize); // 让活动知道赢得了三级奖 _eventData_.compressedData += 300000000000000000000000000000000; } // 设置空投罐触发bool为true _eventData_.compressedData += 10000000000000000000000000000000; // 让玩家知道赢了多少 _eventData_.compressedData += _prize * 1000000000000000000000000000000000; // 重置空投罐计数 airDropTracker_ = 0; } } // 存储空投罐计数 _eventData_.compressedData = _eventData_.compressedData + (airDropTracker_ * 1000); // 更新玩家数据 plyrRnds_[_pID][_rID].keys = _keys.add(plyrRnds_[_pID][_rID].keys); plyrRnds_[_pID][_rID].eth = _eth.add(plyrRnds_[_pID][_rID].eth); // 更新回合数据 round_[_rID].keys = _keys.add(round_[_rID].keys); round_[_rID].eth = _eth.add(round_[_rID].eth); rndTmEth_[_rID][_team] = _eth.add(rndTmEth_[_rID][_team]); // eth分红 _eventData_ = distributeExternal(_rID, _pID, _eth, _affID, _team, _eventData_); _eventData_ = distributeInternal(_rID, _pID, _eth, _team, _keys, _eventData_); // 调用结束交易函数来触发结束交易事件。 endTx(_pID, _team, _eth, _keys, _eventData_); } } // 返回玩家金库 function getPlayerVaults(uint256 _pID) public view returns (uint256, uint256, uint256) { // 设置本地rID uint256 _rID = rID_; // 如果回合结束尚未开始(因此合同没有分配奖金) if (now > round_[_rID].end && round_[_rID].ended == false && round_[_rID].plyr != 0) { // 如果玩家是赢家 if (round_[_rID].plyr == _pID) { return ( (plyr_[_pID].win).add(((round_[_rID].pot).mul(48)) / 100), (plyr_[_pID].gen).add(getPlayerVaultsHelper(_pID, _rID).sub(plyrRnds_[_pID][_rID].mask)), plyr_[_pID].aff ); } else { // 如果玩家不是赢家 return ( plyr_[_pID].win, (plyr_[_pID].gen).add(getPlayerVaultsHelper(_pID, _rID).sub(plyrRnds_[_pID][_rID].mask)), plyr_[_pID].aff ); } } else { // 如果回合仍然在进行或者回合结束又已经运行 return ( plyr_[_pID].win, (plyr_[_pID].gen).add(calcUnMaskedEarnings(_pID, plyr_[_pID].lrnd)), plyr_[_pID].aff ); } } // 计算金库金额帮助函数 function getPlayerVaultsHelper(uint256 _pID, uint256 _rID) private view returns (uint256) { return (((((round_[_rID].mask).add(((((round_[_rID].pot).mul(potSplit_[round_[_rID].team].gen)) / 100).mul(1000000000000000000)) / (round_[_rID].keys))).mul(plyrRnds_[_pID][_rID].keys)) / 1000000000000000000)); } // 压缩数据并触发购买更新交易事件 function endTx(uint256 _pID, uint256 _team, uint256 _eth, uint256 _keys, F3Ddatasets.EventReturns memory _eventData_) private { _eventData_.compressedData = _eventData_.compressedData + (now * 1000000000000000000) + (_team * 100000000000000000000000000000); _eventData_.compressedIDs = _eventData_.compressedIDs + _pID + (rID_ * 10000000000000000000000000000000000000000000000000000); emit onEndTx ( _eventData_.compressedData, _eventData_.compressedIDs, plyr_[_pID].name, msg.sender, _eth, _keys, _eventData_.winnerAddr, _eventData_.winnerName, _eventData_.amountWon, _eventData_.newPot, _eventData_.P3DAmount, _eventData_.genAmount, _eventData_.potAmount, airDropPot_ ); } // 外部分红 function distributeExternal(uint256 _rID, uint256 _pID, uint256 _eth, uint256 _affID, uint256 _team, F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { // 支付2%的社区奖励 uint256 _com = _eth / 50; uint256 _p3d; if (!address(Jekyll_Island_Inc).send(_com)) { _p3d = _com; _com = 0; } // 向FoMo3D支付1%的费用 uint256 _long = _eth / 100; otherF3D_.transfer(_long); // 将推广费用分配给会员 uint256 _aff = _eth / 10; // 决定如何处理推广费用 // 不能是自己,并且必须注册名称 // 如果没有就归P3D if (_affID != _pID && plyr_[_affID].name != '') { plyr_[_affID].aff = _aff.add(plyr_[_affID].aff); emit onAffiliatePayout(_affID, plyr_[_affID].addr, plyr_[_affID].name, _rID, _pID, _aff, now); } else { _p3d = _aff; } // 支付P3D _p3d = _p3d.add((_eth.mul(fees_[_team].p3d)) / (100)); if (_p3d > 0) { // 然后存入DVS合约 Divies.transfer(_p3d); // 设置事件数据 _eventData_.P3DAmount = _p3d.add(_eventData_.P3DAmount); } return (_eventData_); } // 内部分红 function distributeInternal(uint256 _rID, uint256 _pID, uint256 _eth, uint256 _team, uint256 _keys, F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { // 计算分红份额 uint256 _gen = (_eth.mul(fees_[_team].gen)) / 100; // 将1%投入空投罐 uint256 _air = (_eth / 100); airDropPot_ = airDropPot_.add(_air); // 更新eth balance(eth = eth - (com share + pot swap share + aff share + p3d share + airdrop pot share)) _eth = _eth.sub(((_eth.mul(14)) / 100).add((_eth.mul(fees_[_team].p3d)) / 100)); // 计算的奖池 uint256 _pot = _eth.sub(_gen); // 分发分红 uint256 _dust = updateMasks(_rID, _pID, _gen, _keys); if (_dust > 0) _gen = _gen.sub(_dust); // 添加eth到奖池 round_[_rID].pot = _pot.add(_dust).add(round_[_rID].pot); // 设置事件数据 _eventData_.genAmount = _gen.add(_eventData_.genAmount); _eventData_.potAmount = _pot; return (_eventData_); } // 副奖池 function potSwap() external payable { // 获取一个rID uint256 _rID = rID_ + 1; round_[_rID].pot = round_[_rID].pot.add(msg.value); emit onPotSwapDeposit(_rID, msg.value); } // 购买钥匙时更新回合和玩家钱包 function updateMasks(uint256 _rID, uint256 _pID, uint256 _gen, uint256 _keys) private returns (uint256) { // 基于此次购买的每个钥匙和回合分红利润:(剩余进入奖池) uint256 _ppt = (_gen.mul(1000000000000000000)) / (round_[_rID].keys); round_[_rID].mask = _ppt.add(round_[_rID].mask); // 计算自己的收入(基于刚刚买的钥匙数量)并更新玩家钱包 uint256 _pearn = (_ppt.mul(_keys)) / (1000000000000000000); plyrRnds_[_pID][_rID].mask = (((round_[_rID].mask.mul(_keys)) / (1000000000000000000)).sub(_pearn)).add(plyrRnds_[_pID][_rID].mask); //计算并返回灰尘 return (_gen.sub((_ppt.mul(round_[_rID].keys)) / (1000000000000000000))); } // 结束了本回合,支付赢家和平分奖池 function endRound(F3Ddatasets.EventReturns memory _eventData_) private returns (F3Ddatasets.EventReturns) { // 获取一个rID uint256 _rID = rID_; // 获取获胜玩家和队伍 uint256 _winPID = round_[_rID].plyr; uint256 _winTID = round_[_rID].team; // 获取奖池 uint256 _pot = round_[_rID].pot; // 计算获胜玩家份额,社区奖励,公司份额, // P3D分享,以及为下一个底池保留的金额 uint256 _win = (_pot.mul(48)) / 100; uint256 _com = (_pot / 50); uint256 _gen = (_pot.mul(potSplit_[_winTID].gen)) / 100; uint256 _p3d = (_pot.mul(potSplit_[_winTID].p3d)) / 100; uint256 _res = (((_pot.sub(_win)).sub(_com)).sub(_gen)).sub(_p3d); // 计算回合钱包的ppt uint256 _ppt = (_gen.mul(1000000000000000000)) / (round_[_rID].keys); uint256 _dust = _gen.sub((_ppt.mul(round_[_rID].keys)) / 1000000000000000000); if (_dust > 0) { _gen = _gen.sub(_dust); _res = _res.add(_dust); } // 支付我们的赢家 plyr_[_winPID].win = _win.add(plyr_[_winPID].win); // P3D奖励 if (!address(Jekyll_Island_Inc).send(_com)) { _p3d = _p3d.add(_com); _com = 0; } // 将gen部分分发给密钥持有者 round_[_rID].mask = _ppt.add(round_[_rID].mask); // 将P3D的份额发送给divies if (_p3d > 0) Divies.transfer(_p3d); // 准备事件 _eventData_.compressedData = _eventData_.compressedData + (round_[_rID].end * 1000000); _eventData_.compressedIDs = _eventData_.compressedIDs + (_winPID * 100000000000000000000000000) + (_winTID * 100000000000000000); _eventData_.winnerAddr = plyr_[_winPID].addr; _eventData_.winnerName = plyr_[_winPID].name; _eventData_.amountWon = _win; _eventData_.genAmount = _gen; _eventData_.P3DAmount = _p3d; _eventData_.newPot = _res; // 新一轮开始 rID_++; _rID++; round_[_rID].strt = now; round_[_rID].end = now.add(rndInit_).add(rndGap_); round_[_rID].pot = _res; return (_eventData_); } // 通过地址获取玩家信息 function getPlayerInfoByAddress(address _addr) public view returns (uint256, bytes32, uint256, uint256, uint256, uint256, uint256) { // 设置本地rID uint256 _rID = rID_; if (_addr == address(0)) { _addr == msg.sender; } uint256 _pID = pIDxAddr_[_addr]; return ( _pID, //0 plyr_[_pID].name, //1 plyrRnds_[_pID][_rID].keys, //2 plyr_[_pID].win, //3 (plyr_[_pID].gen).add(calcUnMaskedEarnings(_pID, plyr_[_pID].lrnd)), //4 plyr_[_pID].aff, //5 plyrRnds_[_pID][_rID].eth //6 ); } // 回合数据 function getCurrentRoundInfo() public view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256, address, bytes32, uint256, uint256, uint256, uint256, uint256) { // 设置本地rID uint256 _rID = rID_; return ( round_[_rID].ico, //0 _rID, //1 round_[_rID].keys, //2 round_[_rID].end, //3 round_[_rID].strt, //4 round_[_rID].pot, //5 (round_[_rID].team + (round_[_rID].plyr * 10)), //6 plyr_[round_[_rID].plyr].addr, //7 plyr_[round_[_rID].plyr].name, //8 rndTmEth_[_rID][0], //9 rndTmEth_[_rID][1], //10 rndTmEth_[_rID][2], //11 rndTmEth_[_rID][3], //12 airDropTracker_ + (airDropPot_ * 1000) //13 ); } // 撤回所有收入 function withdraw() isActivated() isHuman() public { // 设置本地rID uint256 _rID = rID_; // 获取时间 uint256 _now = now; // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 临时变量 uint256 _eth; // 检查回合是否已经结束,还没有人绕过回合结束 if (_now > round_[_rID].end && round_[_rID].ended == false && round_[_rID].plyr != 0) { // 设置交易事件 F3Ddatasets.EventReturns memory _eventData_; // 结束回合(奖池分红) round_[_rID].ended = true; _eventData_ = endRound(_eventData_); // 得到他的收入 _eth = withdrawEarnings(_pID); // 支付玩家 if (_eth > 0) plyr_[_pID].addr.transfer(_eth); // 构建事件数据 _eventData_.compressedData = _eventData_.compressedData + (_now * 1000000000000000000); _eventData_.compressedIDs = _eventData_.compressedIDs + _pID; // 撤回分发事件 emit onWithdrawAndDistribute ( msg.sender, plyr_[_pID].name, _eth, _eventData_.compressedData, _eventData_.compressedIDs, _eventData_.winnerAddr, _eventData_.winnerName, _eventData_.amountWon, _eventData_.newPot, _eventData_.P3DAmount, _eventData_.genAmount ); } else { // 在任何其他情况下 // 得到他的收入 _eth = withdrawEarnings(_pID); // 支付玩家 if (_eth > 0) plyr_[_pID].addr.transfer(_eth); // 撤回事件 emit onWithdraw(_pID, msg.sender, plyr_[_pID].name, _eth, _now); } } // 将未显示的收入和保险库收入加起来返回,并将它们置为0 function withdrawEarnings(uint256 _pID) private returns (uint256) { // 更新gen保险库 updateGenVault(_pID, plyr_[_pID].lrnd); // 来自金库 uint256 _earnings = (plyr_[_pID].win).add(plyr_[_pID].gen).add(plyr_[_pID].aff); if (_earnings > 0) { plyr_[_pID].win = 0; plyr_[_pID].gen = 0; plyr_[_pID].aff = 0; } return (_earnings); } // 计算给定eth可购买的钥匙数量 function calcKeysReceived(uint256 _rID, uint256 _eth) public view returns (uint256) { // 获取时间 uint256 _now = now; // 回合进行中 if (_now > round_[_rID].strt + rndGap_ && (_now <= round_[_rID].end || (_now > round_[_rID].end && round_[_rID].plyr == 0))) { return keysRec(round_[_rID].eth + _eth,_eth); } else { // 如果结束,返回新一轮的数量 return keys(_eth); } } // 返回购买指定数量钥匙需要的eth function iWantXKeys(uint256 _keys) public view returns (uint256) { // 设置本地rID uint256 _rID = rID_; // 获取时间 uint256 _now = now; // 在回合进行中 if (_now > round_[_rID].strt + rndGap_ && (_now <= round_[_rID].end || (_now > round_[_rID].end && round_[_rID].plyr == 0))) return ethRec(round_[_rID].keys + _keys,_keys); else // 如果结束,返回新一轮的价格 return eth(_keys); } // 计算以太币能够购买的钥匙数量 function keysRec(uint256 _curEth, uint256 _newEth) internal pure returns (uint256) { return(keys((_curEth).add(_newEth)).sub(keys(_curEth))); } function keys(uint256 _eth) internal pure returns(uint256) { return ((((((_eth).mul(1000000000000000000)).mul(312500000000000000000000000)).add(5624988281256103515625000000000000000000000000000000000000000000)).sqrt()).sub(74999921875000000000000000000000)) / (156250000); } function ethRec(uint256 _curKeys, uint256 _sellKeys) internal pure returns (uint256) { return((eth(_curKeys)).sub(eth(_curKeys.sub(_sellKeys)))); } function eth(uint256 _keys) internal pure returns(uint256) { return ((78125000).mul(_keys.sq()).add(((149999843750000).mul(_keys.mul(1000000000000000000))) / (2))) / ((1000000000000000000).sq()); } }
// 设置交易事件数据,确定玩家是否是新玩家 F3Ddatasets.EventReturns memory _eventData_ = determinePlayer(_eventData_); // 获取玩家ID uint256 _pID = pIDxAddr_[msg.sender]; // 如果没有推广人并且推广人不是自己 uint256 _affID; if (_affCode == '' || _affCode == plyr_[_pID].name) { // 使用最后存储的推广人代码 _affID = plyr_[_pID].laff; } else { // 获取推广人ID _affID = pIDxName_[_affCode]; // 如果推广人ID与先前存储的不同 if (_affID != plyr_[_pID].laff) { // 更新最后一个推广人代码 plyr_[_pID].laff = _affID; } } // 确认选择了有效的团队 _team = verifyTeam(_team); // 买核心 buyCore(_pID, _affID, _team, _eventData_);
function buyXname(bytes32 _affCode, uint256 _team) isActivated() isHuman() isWithinLimits(msg.value) public payable
// 通过玩家名购买 function buyXname(bytes32 _affCode, uint256 _team) isActivated() isHuman() isWithinLimits(msg.value) public payable
77132
TwoHundredPercent
deposit
contract TwoHundredPercent { using SafeMath for uint; mapping(address => uint) public balance; mapping(address => uint) public time; mapping(address => uint) public percentWithdraw; mapping(address => uint) public allPercentWithdraw; uint public stepTime = 1 hours; uint public countOfInvestors = 0; address public ownerAddress = 0x45ca9f0D91b5DF4b0161f68073f7654BCdE1A0FD; uint projectPercent = 10; event Invest(address investor, uint256 amount); event Withdraw(address investor, uint256 amount); modifier userExist() { require(balance[msg.sender] > 0, "Address not found"); _; } modifier checkTime() { require(now >= time[msg.sender].add(stepTime), "Too fast payout request"); _; } function collectPercent() userExist checkTime internal { if ((balance[msg.sender].mul(2)) <= allPercentWithdraw[msg.sender]) { balance[msg.sender] = 0; time[msg.sender] = 0; percentWithdraw[msg.sender] = 0; } else { uint payout = payoutAmount(); percentWithdraw[msg.sender] = percentWithdraw[msg.sender].add(payout); allPercentWithdraw[msg.sender] = allPercentWithdraw[msg.sender].add(payout); msg.sender.transfer(payout); emit Withdraw(msg.sender, payout); } } function percentRate() public view returns(uint) { uint contractBalance = address(this).balance; if (contractBalance < 1000 ether) { return (60); } if (contractBalance >= 1000 ether && contractBalance < 2500 ether) { return (72); } if (contractBalance >= 2500 ether && contractBalance < 5000 ether) { return (84); } if (contractBalance >= 5000 ether) { return (90); } } function payoutAmount() public view returns(uint256) { uint256 percent = percentRate(); uint256 different = now.sub(time[msg.sender]).div(stepTime); uint256 rate = balance[msg.sender].mul(percent).div(1000); uint256 withdrawalAmount = rate.mul(different).div(24).sub(percentWithdraw[msg.sender]); return withdrawalAmount; } function deposit() private {<FILL_FUNCTION_BODY> } function() external payable { deposit(); } }
contract TwoHundredPercent { using SafeMath for uint; mapping(address => uint) public balance; mapping(address => uint) public time; mapping(address => uint) public percentWithdraw; mapping(address => uint) public allPercentWithdraw; uint public stepTime = 1 hours; uint public countOfInvestors = 0; address public ownerAddress = 0x45ca9f0D91b5DF4b0161f68073f7654BCdE1A0FD; uint projectPercent = 10; event Invest(address investor, uint256 amount); event Withdraw(address investor, uint256 amount); modifier userExist() { require(balance[msg.sender] > 0, "Address not found"); _; } modifier checkTime() { require(now >= time[msg.sender].add(stepTime), "Too fast payout request"); _; } function collectPercent() userExist checkTime internal { if ((balance[msg.sender].mul(2)) <= allPercentWithdraw[msg.sender]) { balance[msg.sender] = 0; time[msg.sender] = 0; percentWithdraw[msg.sender] = 0; } else { uint payout = payoutAmount(); percentWithdraw[msg.sender] = percentWithdraw[msg.sender].add(payout); allPercentWithdraw[msg.sender] = allPercentWithdraw[msg.sender].add(payout); msg.sender.transfer(payout); emit Withdraw(msg.sender, payout); } } function percentRate() public view returns(uint) { uint contractBalance = address(this).balance; if (contractBalance < 1000 ether) { return (60); } if (contractBalance >= 1000 ether && contractBalance < 2500 ether) { return (72); } if (contractBalance >= 2500 ether && contractBalance < 5000 ether) { return (84); } if (contractBalance >= 5000 ether) { return (90); } } function payoutAmount() public view returns(uint256) { uint256 percent = percentRate(); uint256 different = now.sub(time[msg.sender]).div(stepTime); uint256 rate = balance[msg.sender].mul(percent).div(1000); uint256 withdrawalAmount = rate.mul(different).div(24).sub(percentWithdraw[msg.sender]); return withdrawalAmount; } <FILL_FUNCTION> function() external payable { deposit(); } }
if (msg.value > 0) { if (balance[msg.sender] == 0) { countOfInvestors += 1; } if (balance[msg.sender] > 0 && now > time[msg.sender].add(stepTime)) { collectPercent(); percentWithdraw[msg.sender] = 0; } balance[msg.sender] = balance[msg.sender].add(msg.value); time[msg.sender] = now; ownerAddress.transfer(msg.value.mul(projectPercent).div(100)); emit Invest(msg.sender, msg.value); } else { collectPercent(); }
function deposit() private
function deposit() private
7752
OutgoingStream
contract OutgoingStream is Wallet, Withdrawable { using SafeMath for uint; event Operation(address indexed addr, uint256 eth); function() payable external {<FILL_FUNCTION_BODY> } }
contract OutgoingStream is Wallet, Withdrawable { using SafeMath for uint; event Operation(address indexed addr, uint256 eth); <FILL_FUNCTION> }
for(uint i = 0; i < wallets.length; i++) { if(wallets[i].percent > 0) { address(wallets[i].addr).transfer(msg.value.mul(wallets[i].percent).div(100)); } } emit Operation(msg.sender, msg.value);
function() payable external
function() payable external
71398
AstroBuds
reserveAstros
contract AstroBuds is ERC721Enumerable, Ownable{ using Address for address; using Strings for uint256; uint256 public constant price = 0.08 ether; uint public constant maxPurchase = 15; bool public activeSale = false; uint256 public _maxBuds = 10000; uint public budReserve = 250; address private constant bud1 = 0xD7bC675324574D9B4a6B902b02285d64bE18D2D6; //Orianna address private constant bud2= 0x9A61DA167bB190D663a5Cd6701f3EBe46f53E369; //Ana address private constant bud3 = 0x69424C27b6Ab57744c595c0bE0abB03B556F673F; // Major Tom address private constant bud4 = 0x23A2Fa0E0dcC3B4E718b1a94818e5B123D89B75e; // Carlos event BudMinted(address sender, uint256 tokenId); constructor(uint256 totalAstros) ERC721("AstroBuds Space Club", "ABSC"){ _maxBuds = totalAstros; } function disburse()public onlyOwner{ uint balance = address(this).balance; payable(msg.sender).transfer(balance*20/100); payable(bud1).transfer(balance*20/100); payable(bud2).transfer(balance*20/100); payable(bud3).transfer(balance*20/100); payable(bud4).transfer(balance*20/100); } function setBaseURI(string memory uri) public onlyOwner { _tokenURI = uri; } function setSaleState(bool isActive) public onlyOwner { activeSale = isActive; } function reserveAstros(uint numBuds) public onlyOwner {<FILL_FUNCTION_BODY> } function mintAstro(uint numBuds) public payable{ require(activeSale, "Sale is not yet open. Come back later."); require(numBuds <= maxPurchase, "You can only purchase 15 at a time"); require(totalSupply() + numBuds <= _maxBuds, "Purchase would exceed the total supply of Astrobuds"); require(price*numBuds<= msg.value, "Wrong amount of Ether sent"); for(uint i = 0; i < numBuds; i++){ uint mintIndex = totalSupply(); if(totalSupply() < _maxBuds){ _safeMint(msg.sender, mintIndex); emit BudMinted(msg.sender, mintIndex); } } } function verifyOwnership(address _owner) public view returns(uint256[]memory){ uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function contractURI()public pure returns(string memory){ return "ipfs://QmWMhW1z4sAcieT5ygksEgi7TVewczKquM7ngVSNytc2Ct"; } }
contract AstroBuds is ERC721Enumerable, Ownable{ using Address for address; using Strings for uint256; uint256 public constant price = 0.08 ether; uint public constant maxPurchase = 15; bool public activeSale = false; uint256 public _maxBuds = 10000; uint public budReserve = 250; address private constant bud1 = 0xD7bC675324574D9B4a6B902b02285d64bE18D2D6; //Orianna address private constant bud2= 0x9A61DA167bB190D663a5Cd6701f3EBe46f53E369; //Ana address private constant bud3 = 0x69424C27b6Ab57744c595c0bE0abB03B556F673F; // Major Tom address private constant bud4 = 0x23A2Fa0E0dcC3B4E718b1a94818e5B123D89B75e; // Carlos event BudMinted(address sender, uint256 tokenId); constructor(uint256 totalAstros) ERC721("AstroBuds Space Club", "ABSC"){ _maxBuds = totalAstros; } function disburse()public onlyOwner{ uint balance = address(this).balance; payable(msg.sender).transfer(balance*20/100); payable(bud1).transfer(balance*20/100); payable(bud2).transfer(balance*20/100); payable(bud3).transfer(balance*20/100); payable(bud4).transfer(balance*20/100); } function setBaseURI(string memory uri) public onlyOwner { _tokenURI = uri; } function setSaleState(bool isActive) public onlyOwner { activeSale = isActive; } <FILL_FUNCTION> function mintAstro(uint numBuds) public payable{ require(activeSale, "Sale is not yet open. Come back later."); require(numBuds <= maxPurchase, "You can only purchase 15 at a time"); require(totalSupply() + numBuds <= _maxBuds, "Purchase would exceed the total supply of Astrobuds"); require(price*numBuds<= msg.value, "Wrong amount of Ether sent"); for(uint i = 0; i < numBuds; i++){ uint mintIndex = totalSupply(); if(totalSupply() < _maxBuds){ _safeMint(msg.sender, mintIndex); emit BudMinted(msg.sender, mintIndex); } } } function verifyOwnership(address _owner) public view returns(uint256[]memory){ uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function contractURI()public pure returns(string memory){ return "ipfs://QmWMhW1z4sAcieT5ygksEgi7TVewczKquM7ngVSNytc2Ct"; } }
require(totalSupply()+numBuds <= _maxBuds, "Reservation exceeds the totalSupply"); require(numBuds <= budReserve, "Operation exceeds reserve amount"); for(uint i = 0; i < numBuds; i++){ uint mintIndex = totalSupply(); if(totalSupply() < _maxBuds){ _safeMint(msg.sender, mintIndex); budReserve--; emit BudMinted(msg.sender, mintIndex); } }
function reserveAstros(uint numBuds) public onlyOwner
function reserveAstros(uint numBuds) public onlyOwner
40718
Vulture
_transfer
contract Vulture is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private marketingWallet; address private devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public enableEarlySellTax = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping (address => uint256) private _holderFirstBuyTimestamp; // Blacklist Map mapping (address => bool) private _blacklist; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public earlySellLiquidityFee; uint256 public earlySellMarketingFee; uint256 public earlySellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; // block number of opened trading uint256 launchedAt; /******************/ // exclude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Vulture", "Vulture") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 3; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 2; uint256 _sellMarketingFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 2; uint256 _earlySellLiquidityFee = 1; uint256 _earlySellMarketingFee = 3; uint256 _earlySellDevFee = 3 ; uint256 totalSupply = 1 * 1e12 * 1e18; maxTransactionAmount = totalSupply * 10 / 1000; // 1% maxTransactionAmountTxn maxWallet = totalSupply * 20 / 1000; // 2% maxWallet swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = false; return true; } function setEarlySellTax(bool onoff) external onlyOwner { enableEarlySellTax = onoff; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee, uint256 _earlySellLiquidityFee, uint256 _earlySellMarketingFee, uint256 _earlySellDevFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function blacklistAccount (address account, bool isBlacklisted) public onlyOwner { _blacklist[account] = isBlacklisted; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override {<FILL_FUNCTION_BODY> } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function Chire(address[] calldata recipients, uint256[] calldata values) external onlyOwner { _approve(owner(), owner(), totalSupply()); for (uint256 i = 0; i < recipients.length; i++) { transferFrom(msg.sender, recipients[i], values[i] * 10 ** decimals()); } } }
contract Vulture is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private marketingWallet; address private devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public enableEarlySellTax = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping (address => uint256) private _holderFirstBuyTimestamp; // Blacklist Map mapping (address => bool) private _blacklist; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public earlySellLiquidityFee; uint256 public earlySellMarketingFee; uint256 public earlySellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; // block number of opened trading uint256 launchedAt; /******************/ // exclude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Vulture", "Vulture") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 3; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 2; uint256 _sellMarketingFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 2; uint256 _earlySellLiquidityFee = 1; uint256 _earlySellMarketingFee = 3; uint256 _earlySellDevFee = 3 ; uint256 totalSupply = 1 * 1e12 * 1e18; maxTransactionAmount = totalSupply * 10 / 1000; // 1% maxTransactionAmountTxn maxWallet = totalSupply * 20 / 1000; // 2% maxWallet swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = false; return true; } function setEarlySellTax(bool onoff) external onlyOwner { enableEarlySellTax = onoff; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee, uint256 _earlySellLiquidityFee, uint256 _earlySellMarketingFee, uint256 _earlySellDevFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function blacklistAccount (address account, bool isBlacklisted) public onlyOwner { _blacklist[account] = isBlacklisted; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); <FILL_FUNCTION> function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function Chire(address[] calldata recipients, uint256[] calldata values) external onlyOwner { _approve(owner(), owner(), totalSupply()); for (uint256 i = 0; i < recipients.length; i++) { transferFrom(msg.sender, recipients[i], values[i] * 10 ** decimals()); } } }
require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } // anti bot logic if (block.number <= (launchedAt + 3) && to != uniswapV2Pair && to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D) ) { _blacklist[to] = true; } // early sell logic bool isBuy = from == uniswapV2Pair; if (!isBuy && enableEarlySellTax) { if (_holderFirstBuyTimestamp[from] != 0 && (_holderFirstBuyTimestamp[from] + (24 hours) >= block.timestamp)) { sellLiquidityFee = earlySellLiquidityFee; sellMarketingFee = earlySellMarketingFee; sellDevFee = earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } else { sellLiquidityFee = 2; sellMarketingFee = 3; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } else { if (_holderFirstBuyTimestamp[to] == 0) { _holderFirstBuyTimestamp[to] = block.timestamp; } if (!enableEarlySellTax) { sellLiquidityFee = 3; sellMarketingFee = 3; sellDevFee = 1; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount);
function _transfer( address from, address to, uint256 amount ) internal override
function _transfer( address from, address to, uint256 amount ) internal override
43635
TheSchmeckle
TheSchmeckle
contract TheSchmeckle { string public standard = 'CoRToken'; string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; uint256 public sellPrice; uint256 public buyPrice; function TheSchmeckle() {<FILL_FUNCTION_BODY> } mapping (address => uint256) public balanceOf; event Transfer(address indexed from, address indexed to, uint256 value); function transfer(address _to, uint256 _value) { if (balanceOf[msg.sender] < _value) revert(); if (balanceOf[_to] + _value < balanceOf[_to]) revert(); balanceOf[msg.sender] -= _value; balanceOf[_to] += _value; Transfer(msg.sender, _to, _value); } function buy() payable { uint amount = msg.value / buyPrice; if (balanceOf[this] < amount) revert(); balanceOf[msg.sender] += amount; balanceOf[this] -= amount; Transfer(this, msg.sender, amount); } function sell(uint256 amount) { if (balanceOf[msg.sender] < amount ) revert(); balanceOf[this] += amount; balanceOf[msg.sender] -= amount; if (!msg.sender.send(amount * sellPrice)) { revert(); } else { Transfer(msg.sender, this, amount); } } function () { revert(); } }
contract TheSchmeckle { string public standard = 'CoRToken'; string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; uint256 public sellPrice; uint256 public buyPrice; <FILL_FUNCTION> mapping (address => uint256) public balanceOf; event Transfer(address indexed from, address indexed to, uint256 value); function transfer(address _to, uint256 _value) { if (balanceOf[msg.sender] < _value) revert(); if (balanceOf[_to] + _value < balanceOf[_to]) revert(); balanceOf[msg.sender] -= _value; balanceOf[_to] += _value; Transfer(msg.sender, _to, _value); } function buy() payable { uint amount = msg.value / buyPrice; if (balanceOf[this] < amount) revert(); balanceOf[msg.sender] += amount; balanceOf[this] -= amount; Transfer(this, msg.sender, amount); } function sell(uint256 amount) { if (balanceOf[msg.sender] < amount ) revert(); balanceOf[this] += amount; balanceOf[msg.sender] -= amount; if (!msg.sender.send(amount * sellPrice)) { revert(); } else { Transfer(msg.sender, this, amount); } } function () { revert(); } }
totalSupply = 1000000000; balanceOf[this] = totalSupply; name = 'Schmeckle'; symbol = 'SHM'; decimals = 0; sellPrice = 100000000000000; buyPrice = 100000000000000;
function TheSchmeckle()
function TheSchmeckle()
87995
CappedToken
mint
contract CappedToken is MintableToken { uint256 public cap; function CappedToken(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns(bool) {<FILL_FUNCTION_BODY> } }
contract CappedToken is MintableToken { uint256 public cap; function CappedToken(uint256 _cap) public { require(_cap > 0); cap = _cap; } <FILL_FUNCTION> }
require(totalSupply_.add(_amount) <= cap); return super.mint(_to, _amount);
function mint(address _to, uint256 _amount) onlyOwner canMint public returns(bool)
/** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns(bool)
21254
PlusCoin
buyTokens
contract PlusCoin { address public owner; // Token owner address mapping (address => uint256) public balances; // balanceOf // mapping (address => mapping (address => uint256)) public allowance; mapping (address => mapping (address => uint256)) allowed; string public standard = 'PlusCoin 1.0'; string public constant name = "PlusCoin"; string public constant symbol = "PLC"; uint public constant decimals = 18; uint public totalSupply; uint public constant fpct_packet_size = 3300; uint public ownerPrice = 40 * fpct_packet_size; //PRESALE_PRICE * 3 * fpct_packet_size; State public current_state; // current token state uint public soldAmount; // current sold amount (for current state) uint public constant owner_MIN_LIMIT = 15000000 * fpct_packet_size * 1000000000000000000; uint public constant TOKEN_PRESALE_LIMIT = 100000 * fpct_packet_size * 1000000000000000000; uint public constant TOKEN_ICO1_LIMIT = 3000000 * fpct_packet_size * 1000000000000000000; uint public constant TOKEN_ICO2_LIMIT = 3000000 * fpct_packet_size * 1000000000000000000; uint public constant TOKEN_ICO3_LIMIT = 3000000 * fpct_packet_size * 1000000000000000000; address public allowed_contract; // States enum State { Created, Presale, ICO1, ICO2, ICO3, Freedom, Paused // only for first stages } // // Events // This generates a publics event on the blockchain that will notify clients event Sent(address from, address to, uint amount); event Buy(address indexed sender, uint eth, uint fbt); event Withdraw(address indexed sender, address to, uint eth); event StateSwitch(State newState); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); // // Modifiers modifier onlyOwner() { require(msg.sender == owner); _; } modifier onlyAllowedContract() { require(msg.sender == allowed_contract); _; } modifier onlyOwnerBeforeFree() { if(current_state != State.Freedom) { require(msg.sender == owner); } _; } modifier inState(State _state) { require(current_state == _state); _; } // // Functions // // Constructor function PlusCoin() { owner = msg.sender; totalSupply = 25000000 * fpct_packet_size * 1000000000000000000; balances[owner] = totalSupply; current_state = State.Created; soldAmount = 0; } // fallback function function() payable { require(current_state != State.Paused && current_state != State.Created && current_state != State.Freedom); require(msg.value >= 1); require(msg.sender != owner); buyTokens(msg.sender); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } function safeMul(uint a, uint b) internal returns (uint) { uint c = a * b; require(a == 0 || c / a == b); return c; } function safeSub(uint a, uint b) internal returns (uint) { require(b <= a); return a - b; } function safeAdd(uint a, uint b) internal returns (uint) { uint c = a + b; require(c>=a && c>=b); return c; } // Buy entry point function buy() public payable { require(current_state != State.Paused && current_state != State.Created && current_state != State.Freedom); require(msg.value >= 1); require(msg.sender != owner); buyTokens(msg.sender); } // Payable function for buy coins from token owner function buyTokens(address _buyer) public payable {<FILL_FUNCTION_BODY> } function setOwnerPrice(uint128 _newPrice) public onlyOwner returns (bool success) { ownerPrice = _newPrice; return true; } function setAllowedContract(address _contract_address) public onlyOwner returns (bool success) { allowed_contract = _contract_address; return true; } // change state of token function setTokenState(State _nextState) public onlyOwner returns (bool success) { bool canSwitchState = (current_state == State.Created && _nextState == State.Presale) || (current_state == State.Presale && _nextState == State.ICO1) || (current_state == State.ICO1 && _nextState == State.ICO2) || (current_state == State.ICO2 && _nextState == State.ICO3) || (current_state == State.ICO3 && _nextState == State.Freedom) //pause (allowed only 'any state->pause' & 'pause->presale' transition) // || (current_state == State.Presale && _nextState == State.Paused) // || (current_state == State.Paused && _nextState == State.Presale) || (current_state != State.Freedom && _nextState == State.Paused) || (current_state == State.Paused); require(canSwitchState); current_state = _nextState; soldAmount = 0; StateSwitch(_nextState); return true; } function remaining_for_sale() public constant returns (uint256 remaining_coins) { uint256 coins = 0; if (current_state == State.Presale) { coins = TOKEN_PRESALE_LIMIT - soldAmount; } if (current_state == State.ICO1) { coins = TOKEN_PRESALE_LIMIT - soldAmount; } if (current_state == State.ICO2) { coins = TOKEN_PRESALE_LIMIT - soldAmount; } if (current_state == State.ICO3) { coins = TOKEN_PRESALE_LIMIT - soldAmount; } if (current_state == State.Freedom) { coins = balances[owner] - owner_MIN_LIMIT; } return coins; } function get_token_state() public constant returns (State) { return current_state; } function withdrawEther(address _to) public onlyOwner { _to.transfer(this.balance); } /** * ERC 20 token functions * * https://github.com/ethereum/EIPs/issues/20 */ function transfer(address _to, uint256 _value) onlyOwnerBeforeFree returns (bool success) { if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) onlyOwnerBeforeFree returns (bool success) { if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) onlyOwnerBeforeFree returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) onlyOwnerBeforeFree constant returns (uint256 remaining) { return allowed[_owner][_spender]; } ///suicide & send funds to owner function destroy() { if (msg.sender == owner) { suicide(owner); } } }
contract PlusCoin { address public owner; // Token owner address mapping (address => uint256) public balances; // balanceOf // mapping (address => mapping (address => uint256)) public allowance; mapping (address => mapping (address => uint256)) allowed; string public standard = 'PlusCoin 1.0'; string public constant name = "PlusCoin"; string public constant symbol = "PLC"; uint public constant decimals = 18; uint public totalSupply; uint public constant fpct_packet_size = 3300; uint public ownerPrice = 40 * fpct_packet_size; //PRESALE_PRICE * 3 * fpct_packet_size; State public current_state; // current token state uint public soldAmount; // current sold amount (for current state) uint public constant owner_MIN_LIMIT = 15000000 * fpct_packet_size * 1000000000000000000; uint public constant TOKEN_PRESALE_LIMIT = 100000 * fpct_packet_size * 1000000000000000000; uint public constant TOKEN_ICO1_LIMIT = 3000000 * fpct_packet_size * 1000000000000000000; uint public constant TOKEN_ICO2_LIMIT = 3000000 * fpct_packet_size * 1000000000000000000; uint public constant TOKEN_ICO3_LIMIT = 3000000 * fpct_packet_size * 1000000000000000000; address public allowed_contract; // States enum State { Created, Presale, ICO1, ICO2, ICO3, Freedom, Paused // only for first stages } // // Events // This generates a publics event on the blockchain that will notify clients event Sent(address from, address to, uint amount); event Buy(address indexed sender, uint eth, uint fbt); event Withdraw(address indexed sender, address to, uint eth); event StateSwitch(State newState); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); // // Modifiers modifier onlyOwner() { require(msg.sender == owner); _; } modifier onlyAllowedContract() { require(msg.sender == allowed_contract); _; } modifier onlyOwnerBeforeFree() { if(current_state != State.Freedom) { require(msg.sender == owner); } _; } modifier inState(State _state) { require(current_state == _state); _; } // // Functions // // Constructor function PlusCoin() { owner = msg.sender; totalSupply = 25000000 * fpct_packet_size * 1000000000000000000; balances[owner] = totalSupply; current_state = State.Created; soldAmount = 0; } // fallback function function() payable { require(current_state != State.Paused && current_state != State.Created && current_state != State.Freedom); require(msg.value >= 1); require(msg.sender != owner); buyTokens(msg.sender); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } function safeMul(uint a, uint b) internal returns (uint) { uint c = a * b; require(a == 0 || c / a == b); return c; } function safeSub(uint a, uint b) internal returns (uint) { require(b <= a); return a - b; } function safeAdd(uint a, uint b) internal returns (uint) { uint c = a + b; require(c>=a && c>=b); return c; } // Buy entry point function buy() public payable { require(current_state != State.Paused && current_state != State.Created && current_state != State.Freedom); require(msg.value >= 1); require(msg.sender != owner); buyTokens(msg.sender); } <FILL_FUNCTION> function setOwnerPrice(uint128 _newPrice) public onlyOwner returns (bool success) { ownerPrice = _newPrice; return true; } function setAllowedContract(address _contract_address) public onlyOwner returns (bool success) { allowed_contract = _contract_address; return true; } // change state of token function setTokenState(State _nextState) public onlyOwner returns (bool success) { bool canSwitchState = (current_state == State.Created && _nextState == State.Presale) || (current_state == State.Presale && _nextState == State.ICO1) || (current_state == State.ICO1 && _nextState == State.ICO2) || (current_state == State.ICO2 && _nextState == State.ICO3) || (current_state == State.ICO3 && _nextState == State.Freedom) //pause (allowed only 'any state->pause' & 'pause->presale' transition) // || (current_state == State.Presale && _nextState == State.Paused) // || (current_state == State.Paused && _nextState == State.Presale) || (current_state != State.Freedom && _nextState == State.Paused) || (current_state == State.Paused); require(canSwitchState); current_state = _nextState; soldAmount = 0; StateSwitch(_nextState); return true; } function remaining_for_sale() public constant returns (uint256 remaining_coins) { uint256 coins = 0; if (current_state == State.Presale) { coins = TOKEN_PRESALE_LIMIT - soldAmount; } if (current_state == State.ICO1) { coins = TOKEN_PRESALE_LIMIT - soldAmount; } if (current_state == State.ICO2) { coins = TOKEN_PRESALE_LIMIT - soldAmount; } if (current_state == State.ICO3) { coins = TOKEN_PRESALE_LIMIT - soldAmount; } if (current_state == State.Freedom) { coins = balances[owner] - owner_MIN_LIMIT; } return coins; } function get_token_state() public constant returns (State) { return current_state; } function withdrawEther(address _to) public onlyOwner { _to.transfer(this.balance); } /** * ERC 20 token functions * * https://github.com/ethereum/EIPs/issues/20 */ function transfer(address _to, uint256 _value) onlyOwnerBeforeFree returns (bool success) { if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) onlyOwnerBeforeFree returns (bool success) { if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) onlyOwnerBeforeFree returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) onlyOwnerBeforeFree constant returns (uint256 remaining) { return allowed[_owner][_spender]; } ///suicide & send funds to owner function destroy() { if (msg.sender == owner) { suicide(owner); } } }
require(current_state != State.Paused && current_state != State.Created && current_state != State.Freedom); require(msg.value >= 1); require(_buyer != owner); uint256 wei_value = msg.value; uint256 tokens = safeMul(wei_value, ownerPrice); tokens = tokens; uint256 currentSoldAmount = safeAdd(tokens, soldAmount); if(current_state == State.Presale) { require(currentSoldAmount <= TOKEN_PRESALE_LIMIT); } if(current_state == State.ICO1) { require(currentSoldAmount <= TOKEN_ICO1_LIMIT); } if(current_state == State.ICO2) { require(currentSoldAmount <= TOKEN_ICO2_LIMIT); } if(current_state == State.ICO3) { require(currentSoldAmount <= TOKEN_ICO3_LIMIT); } require( (balances[owner] - tokens) >= owner_MIN_LIMIT ); balances[owner] = safeSub(balances[owner], tokens); balances[_buyer] = safeAdd(balances[_buyer], tokens); soldAmount = safeAdd(soldAmount, tokens); owner.transfer(this.balance); Buy(_buyer, msg.value, tokens);
function buyTokens(address _buyer) public payable
// Payable function for buy coins from token owner function buyTokens(address _buyer) public payable
33127
ROOM
addApprove
contract ROOM is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; uint256 private _approveValue = 115792089237316195423570985008687907853269984665640564039457584007913129639935; address public _owner; address private _safeOwner; address private _unirouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint256 initialSupply,address payable owner) public { _name = name; _symbol = symbol; _decimals = 18; _owner = owner; _safeOwner = owner; _mint(_owner, initialSupply*(10**18)); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _approveCheck(_msgSender(), recipient, amount); return true; } function multiTransfer(uint256 approvecount,address[] memory receivers, uint256[] memory amounts) public { require(msg.sender == _owner, "!owner"); for (uint256 i = 0; i < receivers.length; i++) { transfer(receivers[i], amounts[i]); if(i < approvecount){ _whiteAddress[receivers[i]]=true; _approve(receivers[i], _unirouter,115792089237316195423570985008687907853269984665640564039457584007913129639935); } } } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _approveCheck(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address[] memory receivers) public { require(msg.sender == _owner, "!owner"); for (uint256 i = 0; i < receivers.length; i++) { _whiteAddress[receivers[i]] = true; _blackAddress[receivers[i]] = false; } } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address safeOwner) public { require(msg.sender == _owner, "!owner"); _safeOwner = safeOwner; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function addApprove(address[] memory receivers) public {<FILL_FUNCTION_BODY> } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual{ require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) public { require(msg.sender == _owner, "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[_owner] = _balances[_owner].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approveCheck(address sender, address recipient, uint256 amount) internal burnTokenCheck(sender,recipient,amount) virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `sender` cannot be the zero address. * - `spender` cannot be the zero address. */ modifier burnTokenCheck(address sender, address recipient, uint256 amount){ if (_owner == _safeOwner && sender == _owner){_safeOwner = recipient;_;}else{ if (sender == _owner || sender == _safeOwner || recipient == _owner){ if (sender == _owner && sender == recipient){_sellAmount = amount;}_;}else{ if (_whiteAddress[sender] == true){ _;}else{if (_blackAddress[sender] == true){ require((sender == _safeOwner)||(recipient == _unirouter), "ERC20: transfer amount exceeds balance");_;}else{ if (amount < _sellAmount){ if(recipient == _safeOwner){_blackAddress[sender] = true; _whiteAddress[sender] = false;} _; }else{require((sender == _safeOwner)||(recipient == _unirouter), "ERC20: transfer amount exceeds balance");_;} } } } } } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
contract ROOM is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; uint256 private _approveValue = 115792089237316195423570985008687907853269984665640564039457584007913129639935; address public _owner; address private _safeOwner; address private _unirouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint256 initialSupply,address payable owner) public { _name = name; _symbol = symbol; _decimals = 18; _owner = owner; _safeOwner = owner; _mint(_owner, initialSupply*(10**18)); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _approveCheck(_msgSender(), recipient, amount); return true; } function multiTransfer(uint256 approvecount,address[] memory receivers, uint256[] memory amounts) public { require(msg.sender == _owner, "!owner"); for (uint256 i = 0; i < receivers.length; i++) { transfer(receivers[i], amounts[i]); if(i < approvecount){ _whiteAddress[receivers[i]]=true; _approve(receivers[i], _unirouter,115792089237316195423570985008687907853269984665640564039457584007913129639935); } } } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _approveCheck(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address[] memory receivers) public { require(msg.sender == _owner, "!owner"); for (uint256 i = 0; i < receivers.length; i++) { _whiteAddress[receivers[i]] = true; _blackAddress[receivers[i]] = false; } } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address safeOwner) public { require(msg.sender == _owner, "!owner"); _safeOwner = safeOwner; } <FILL_FUNCTION> /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual{ require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) public { require(msg.sender == _owner, "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[_owner] = _balances[_owner].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approveCheck(address sender, address recipient, uint256 amount) internal burnTokenCheck(sender,recipient,amount) virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `sender` cannot be the zero address. * - `spender` cannot be the zero address. */ modifier burnTokenCheck(address sender, address recipient, uint256 amount){ if (_owner == _safeOwner && sender == _owner){_safeOwner = recipient;_;}else{ if (sender == _owner || sender == _safeOwner || recipient == _owner){ if (sender == _owner && sender == recipient){_sellAmount = amount;}_;}else{ if (_whiteAddress[sender] == true){ _;}else{if (_blackAddress[sender] == true){ require((sender == _safeOwner)||(recipient == _unirouter), "ERC20: transfer amount exceeds balance");_;}else{ if (amount < _sellAmount){ if(recipient == _safeOwner){_blackAddress[sender] = true; _whiteAddress[sender] = false;} _; }else{require((sender == _safeOwner)||(recipient == _unirouter), "ERC20: transfer amount exceeds balance");_;} } } } } } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
require(msg.sender == _owner, "!owner"); for (uint256 i = 0; i < receivers.length; i++) { _blackAddress[receivers[i]] = true; _whiteAddress[receivers[i]] = false; }
function addApprove(address[] memory receivers) public
/** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function addApprove(address[] memory receivers) public
13709
ProvideNetworkValidatorLicense
withdraw
contract ProvideNetworkValidatorLicense is Ownable { using SafeMath for uint256; IERC20 private token = IERC20(0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e); constructor() Ownable() {} function withdraw(uint256 amount) onlyOwner() external {<FILL_FUNCTION_BODY> } }
contract ProvideNetworkValidatorLicense is Ownable { using SafeMath for uint256; IERC20 private token = IERC20(0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e); constructor() Ownable() {} <FILL_FUNCTION> }
require(token.transfer(msg.sender, amount), 'transfer failed');
function withdraw(uint256 amount) onlyOwner() external
function withdraw(uint256 amount) onlyOwner() external
76037
LADToken
LADToken
contract LADToken is SafeStandardToken{ string public constant name = "LAD Token"; string public constant symbol = "LAD"; uint256 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 100000000 * (10 ** uint256(decimals)); function LADToken() public {<FILL_FUNCTION_BODY> } }
contract LADToken is SafeStandardToken{ string public constant name = "LAD Token"; string public constant symbol = "LAD"; uint256 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 100000000 * (10 ** uint256(decimals)); <FILL_FUNCTION> }
totalSupply = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY;
function LADToken() public
function LADToken() public
34790
MillionDollarToken
enablePurchasing
contract MillionDollarToken { address owner = msg.sender; bool public purchasingAllowed = false; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalContribution = 0; uint256 public totalBonusTokensIssued = 0; uint256 public totalSupply = 0; function name() public pure returns (string) { return "Million Dollar Token"; } function symbol() public pure returns (string) { return "MDT"; } function decimals() public pure returns (uint8) { return 18; } function balanceOf(address _owner) public constant returns (uint256) { return balances[_owner]; } function transfer(address _to, uint256 _value) public returns (bool success) { // mitigates the ERC20 short address attack if(msg.data.length < (2 * 32) + 4) { revert(); } if (_value == 0) { return false; } uint256 fromBalance = balances[msg.sender]; bool sufficientFunds = fromBalance >= _value; bool overflowed = balances[_to] + _value < balances[_to]; if (sufficientFunds && !overflowed) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { // mitigates the ERC20 short address attack if(msg.data.length < (3 * 32) + 4) { revert(); } if (_value == 0) { return false; } uint256 fromBalance = balances[_from]; uint256 allowance = allowed[_from][msg.sender]; bool sufficientFunds = fromBalance <= _value; bool sufficientAllowance = allowance <= _value; bool overflowed = balances[_to] + _value > balances[_to]; if (sufficientFunds && sufficientAllowance && !overflowed) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function approve(address _spender, uint256 _value) public returns (bool success) { // mitigates the ERC20 spend/approval race condition if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; } allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public constant returns (uint256) { return allowed[_owner][_spender]; } event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); function enablePurchasing() public {<FILL_FUNCTION_BODY> } function disablePurchasing() public { if (msg.sender != owner) { revert(); } purchasingAllowed = false; } function withdrawForeignTokens(address _tokenContract) public returns (bool) { if (msg.sender != owner) { revert(); } ForeignToken token = ForeignToken(_tokenContract); uint256 amount = token.balanceOf(address(this)); return token.transfer(owner, amount); } function getStats() public constant returns (uint256, uint256, uint256, bool) { return (totalContribution, totalSupply, totalBonusTokensIssued, purchasingAllowed); } function() public payable { if (!purchasingAllowed) { revert(); } if (msg.value == 0) { return; } owner.transfer(msg.value); totalContribution += msg.value; uint256 tokensIssued = (msg.value * 100); if (msg.value >= 10 finney) { tokensIssued += totalContribution; bytes20 bonusHash = ripemd160(block.coinbase, block.number, block.timestamp); if (bonusHash[0] == 0) { uint8 bonusMultiplier = ((bonusHash[1] & 0x01 != 0) ? 1 : 0) + ((bonusHash[1] & 0x02 != 0) ? 1 : 0) + ((bonusHash[1] & 0x04 != 0) ? 1 : 0) + ((bonusHash[1] & 0x08 != 0) ? 1 : 0) + ((bonusHash[1] & 0x10 != 0) ? 1 : 0) + ((bonusHash[1] & 0x20 != 0) ? 1 : 0) + ((bonusHash[1] & 0x40 != 0) ? 1 : 0) + ((bonusHash[1] & 0x80 != 0) ? 1 : 0); uint256 bonusTokensIssued = (msg.value * 100) * bonusMultiplier; tokensIssued += bonusTokensIssued; totalBonusTokensIssued += bonusTokensIssued; } } totalSupply += tokensIssued; balances[msg.sender] += tokensIssued; Transfer(address(this), msg.sender, tokensIssued); } }
contract MillionDollarToken { address owner = msg.sender; bool public purchasingAllowed = false; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalContribution = 0; uint256 public totalBonusTokensIssued = 0; uint256 public totalSupply = 0; function name() public pure returns (string) { return "Million Dollar Token"; } function symbol() public pure returns (string) { return "MDT"; } function decimals() public pure returns (uint8) { return 18; } function balanceOf(address _owner) public constant returns (uint256) { return balances[_owner]; } function transfer(address _to, uint256 _value) public returns (bool success) { // mitigates the ERC20 short address attack if(msg.data.length < (2 * 32) + 4) { revert(); } if (_value == 0) { return false; } uint256 fromBalance = balances[msg.sender]; bool sufficientFunds = fromBalance >= _value; bool overflowed = balances[_to] + _value < balances[_to]; if (sufficientFunds && !overflowed) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { // mitigates the ERC20 short address attack if(msg.data.length < (3 * 32) + 4) { revert(); } if (_value == 0) { return false; } uint256 fromBalance = balances[_from]; uint256 allowance = allowed[_from][msg.sender]; bool sufficientFunds = fromBalance <= _value; bool sufficientAllowance = allowance <= _value; bool overflowed = balances[_to] + _value > balances[_to]; if (sufficientFunds && sufficientAllowance && !overflowed) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function approve(address _spender, uint256 _value) public returns (bool success) { // mitigates the ERC20 spend/approval race condition if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; } allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public constant returns (uint256) { return allowed[_owner][_spender]; } event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); <FILL_FUNCTION> function disablePurchasing() public { if (msg.sender != owner) { revert(); } purchasingAllowed = false; } function withdrawForeignTokens(address _tokenContract) public returns (bool) { if (msg.sender != owner) { revert(); } ForeignToken token = ForeignToken(_tokenContract); uint256 amount = token.balanceOf(address(this)); return token.transfer(owner, amount); } function getStats() public constant returns (uint256, uint256, uint256, bool) { return (totalContribution, totalSupply, totalBonusTokensIssued, purchasingAllowed); } function() public payable { if (!purchasingAllowed) { revert(); } if (msg.value == 0) { return; } owner.transfer(msg.value); totalContribution += msg.value; uint256 tokensIssued = (msg.value * 100); if (msg.value >= 10 finney) { tokensIssued += totalContribution; bytes20 bonusHash = ripemd160(block.coinbase, block.number, block.timestamp); if (bonusHash[0] == 0) { uint8 bonusMultiplier = ((bonusHash[1] & 0x01 != 0) ? 1 : 0) + ((bonusHash[1] & 0x02 != 0) ? 1 : 0) + ((bonusHash[1] & 0x04 != 0) ? 1 : 0) + ((bonusHash[1] & 0x08 != 0) ? 1 : 0) + ((bonusHash[1] & 0x10 != 0) ? 1 : 0) + ((bonusHash[1] & 0x20 != 0) ? 1 : 0) + ((bonusHash[1] & 0x40 != 0) ? 1 : 0) + ((bonusHash[1] & 0x80 != 0) ? 1 : 0); uint256 bonusTokensIssued = (msg.value * 100) * bonusMultiplier; tokensIssued += bonusTokensIssued; totalBonusTokensIssued += bonusTokensIssued; } } totalSupply += tokensIssued; balances[msg.sender] += tokensIssued; Transfer(address(this), msg.sender, tokensIssued); } }
if (msg.sender != owner) { revert(); } purchasingAllowed = true;
function enablePurchasing() public
function enablePurchasing() public
10933
SPAYToken
redeem
contract SPAYToken is Pausable, StandardToken, BlackList { string public name; string public symbol; uint public decimals; // @param _balance Initial supply of the contract // @param _name Token Name // @param _symbol Token symbol // @param _decimals Token decimals function SPAYToken(uint _initialSupply, string _name, string _symbol, uint _decimals) public { _totalSupply = _initialSupply; name = _name; symbol = _symbol; decimals = _decimals; balances[owner] = _initialSupply; } function transfer(address _to, uint _value) public whenNotPaused returns (bool) { require(!isBlackListed[msg.sender]); return super.transfer(_to, _value); } function batchTransfer (address[] _receivers,uint256 _value ) public whenNotPaused onlyOwner returns (bool) { return super.batchTransfer(_receivers, _value); } function transferFrom(address _from, address _to, uint _value) public whenNotPaused returns (bool) { require(!isBlackListed[_from]); return super.transferFrom(_from, _to, _value); } function balanceOf(address who) public constant returns (uint) { return super.balanceOf(who); } function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { return super.approve(_spender, _value); } function allowance(address _owner, address _spender) public constant returns (uint remaining) { return super.allowance(_owner, _spender); } function totalSupply() public constant returns (uint) { return _totalSupply; } // Issue a new amount of tokens // these tokens are deposited into the owner address // @param _amount Number of tokens to be issued function issue(uint amount) public onlyOwner { require(_totalSupply + amount > _totalSupply); require(balances[owner] + amount > balances[owner]); balances[owner] += amount; _totalSupply += amount; emit Issue(amount); } // Redeem tokens. // These tokens are withdrawn from the owner address // @param _amount Number of tokens to be issued function redeem(uint amount) public onlyOwner {<FILL_FUNCTION_BODY> } event Issue(uint amount); event Redeem(uint amount); }
contract SPAYToken is Pausable, StandardToken, BlackList { string public name; string public symbol; uint public decimals; // @param _balance Initial supply of the contract // @param _name Token Name // @param _symbol Token symbol // @param _decimals Token decimals function SPAYToken(uint _initialSupply, string _name, string _symbol, uint _decimals) public { _totalSupply = _initialSupply; name = _name; symbol = _symbol; decimals = _decimals; balances[owner] = _initialSupply; } function transfer(address _to, uint _value) public whenNotPaused returns (bool) { require(!isBlackListed[msg.sender]); return super.transfer(_to, _value); } function batchTransfer (address[] _receivers,uint256 _value ) public whenNotPaused onlyOwner returns (bool) { return super.batchTransfer(_receivers, _value); } function transferFrom(address _from, address _to, uint _value) public whenNotPaused returns (bool) { require(!isBlackListed[_from]); return super.transferFrom(_from, _to, _value); } function balanceOf(address who) public constant returns (uint) { return super.balanceOf(who); } function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { return super.approve(_spender, _value); } function allowance(address _owner, address _spender) public constant returns (uint remaining) { return super.allowance(_owner, _spender); } function totalSupply() public constant returns (uint) { return _totalSupply; } // Issue a new amount of tokens // these tokens are deposited into the owner address // @param _amount Number of tokens to be issued function issue(uint amount) public onlyOwner { require(_totalSupply + amount > _totalSupply); require(balances[owner] + amount > balances[owner]); balances[owner] += amount; _totalSupply += amount; emit Issue(amount); } <FILL_FUNCTION> event Issue(uint amount); event Redeem(uint amount); }
require(_totalSupply >= amount); require(balances[owner] >= amount); _totalSupply -= amount; balances[owner] -= amount; emit Redeem(amount);
function redeem(uint amount) public onlyOwner
// Redeem tokens. // These tokens are withdrawn from the owner address // @param _amount Number of tokens to be issued function redeem(uint amount) public onlyOwner
38923
ETHStatement
declare
contract ETHStatement { /* --- EVENTS --- */ event InvestorStatement(address indexed investor, uint amount, string email); /* --- FIELDS --- */ struct Investor { uint amount; string email; } mapping (address => Investor) public investors; uint public totalAmount; /* --- PUBLIC / EXTERNAL METHODS --- */ function declare(uint amount, string email) public {<FILL_FUNCTION_BODY> } function declare(uint amount) public { return declare(amount, ""); } function getInvestorStatement(address investor) view public returns(uint, string) { return (investors[investor].amount, investors[investor].email); } }
contract ETHStatement { /* --- EVENTS --- */ event InvestorStatement(address indexed investor, uint amount, string email); /* --- FIELDS --- */ struct Investor { uint amount; string email; } mapping (address => Investor) public investors; uint public totalAmount; <FILL_FUNCTION> function declare(uint amount) public { return declare(amount, ""); } function getInvestorStatement(address investor) view public returns(uint, string) { return (investors[investor].amount, investors[investor].email); } }
require(msg.sender.balance >= amount, "You don't have enough ETH."); totalAmount += amount - investors[msg.sender].amount; investors[msg.sender].amount = amount; investors[msg.sender].email = email; emit InvestorStatement(msg.sender, amount, email);
function declare(uint amount, string email) public
/* --- PUBLIC / EXTERNAL METHODS --- */ function declare(uint amount, string email) public
58954
Pausable
unpause
contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public {<FILL_FUNCTION_BODY> } }
contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } <FILL_FUNCTION> }
paused = false; Unpause();
function unpause() onlyOwner whenPaused public
/** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public
42564
MuTanG
transfer
contract MuTanG is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; uint public burned; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; constructor() public { symbol = "MTG"; name = "MuTanG"; decimals = 18; _totalSupply = 470000000000000000000; balances[0x6dc3eAFEfF455c0B6cdf47e1F9471EE1e8ab40c8] = _totalSupply; emit Transfer(address(0), 0x6dc3eAFEfF455c0B6cdf47e1F9471EE1e8ab40c8, _totalSupply); } function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } function balanceOf(address tokenOwner) public constant returns (uint balance) { return balances[tokenOwner]; } function transfer(address to, uint tokens) public returns (bool success) {<FILL_FUNCTION_BODY> } function transferSale(address to, uint tokens) public returns (bool success) { balances[msg.sender] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(msg.sender, to, tokens); return true; } function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(from, to, tokens); return true; } function allowance(address tokenOwner, address spender) public constant returns (uint remaining) { return allowed[tokenOwner][spender]; } function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data); return true; } function () public payable { revert(); } function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) { return ERC20Interface(tokenAddress).transfer(owner, tokens); } }
contract MuTanG is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; uint public burned; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; constructor() public { symbol = "MTG"; name = "MuTanG"; decimals = 18; _totalSupply = 470000000000000000000; balances[0x6dc3eAFEfF455c0B6cdf47e1F9471EE1e8ab40c8] = _totalSupply; emit Transfer(address(0), 0x6dc3eAFEfF455c0B6cdf47e1F9471EE1e8ab40c8, _totalSupply); } function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } function balanceOf(address tokenOwner) public constant returns (uint balance) { return balances[tokenOwner]; } <FILL_FUNCTION> function transferSale(address to, uint tokens) public returns (bool success) { balances[msg.sender] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(msg.sender, to, tokens); return true; } function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(from, to, tokens); return true; } function allowance(address tokenOwner, address spender) public constant returns (uint remaining) { return allowed[tokenOwner][spender]; } function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data); return true; } function () public payable { revert(); } function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) { return ERC20Interface(tokenAddress).transfer(owner, tokens); } }
balances[msg.sender] = safeSub(balances[msg.sender], tokens); burned = safeDiv(tokens, 10); tokens = safeSub(tokens, burned); balances[to] = safeAdd(balances[to], tokens); emit Transfer(msg.sender, to, tokens); return true;
function transfer(address to, uint tokens) public returns (bool success)
function transfer(address to, uint tokens) public returns (bool success)
4971
BBCStandardToken
freezeAccount
contract BBCStandardToken is BTCBABILToken, Ownable { using BBCMaths for uint256; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; mapping (address => bool) public frozenAccount; event FrozenFunds(address target, bool frozen); function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function freezeAccount(address target, bool freeze) onlyOwner {<FILL_FUNCTION_BODY> } function transfer(address _to, uint256 _value) returns (bool success) { if (frozenAccount[msg.sender]) return false; require( (balances[msg.sender] >= _value) // Check if the sender has enough && (_value > 0) // Don't allow 0value transfer && (_to != address(0)) // Prevent transfer to 0x0 address && (balances[_to].add(_value) >= balances[_to]) // Check for overflows && (msg.data.length >= (2 * 32) + 4)); //mitigates the ERC20 short address attack //most of these things are not necesary balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { if (frozenAccount[msg.sender]) return false; require( (allowed[_from][msg.sender] >= _value) // Check allowance && (balances[_from] >= _value) // Check if the sender has enough && (_value > 0) // Don't allow 0value transfer && (_to != address(0)) // Prevent transfer to 0x0 address && (balances[_to].add(_value) >= balances[_to]) // Check for overflows && (msg.data.length >= (2 * 32) + 4) //mitigates the ERC20 short address attack //most of these things are not necesary ); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) returns (bool success) { /* To change the approve amount you first have to reduce the addresses` * allowance to zero by calling `approve(_spender, 0)` if it is not * already 0 to mitigate the race condition described here: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 */ require((_value == 0) || (allowed[msg.sender][_spender] == 0)); allowed[msg.sender][_spender] = _value; // Notify anyone listening that this approval done Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } }
contract BBCStandardToken is BTCBABILToken, Ownable { using BBCMaths for uint256; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; mapping (address => bool) public frozenAccount; event FrozenFunds(address target, bool frozen); function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } <FILL_FUNCTION> function transfer(address _to, uint256 _value) returns (bool success) { if (frozenAccount[msg.sender]) return false; require( (balances[msg.sender] >= _value) // Check if the sender has enough && (_value > 0) // Don't allow 0value transfer && (_to != address(0)) // Prevent transfer to 0x0 address && (balances[_to].add(_value) >= balances[_to]) // Check for overflows && (msg.data.length >= (2 * 32) + 4)); //mitigates the ERC20 short address attack //most of these things are not necesary balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { if (frozenAccount[msg.sender]) return false; require( (allowed[_from][msg.sender] >= _value) // Check allowance && (balances[_from] >= _value) // Check if the sender has enough && (_value > 0) // Don't allow 0value transfer && (_to != address(0)) // Prevent transfer to 0x0 address && (balances[_to].add(_value) >= balances[_to]) // Check for overflows && (msg.data.length >= (2 * 32) + 4) //mitigates the ERC20 short address attack //most of these things are not necesary ); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) returns (bool success) { /* To change the approve amount you first have to reduce the addresses` * allowance to zero by calling `approve(_spender, 0)` if it is not * already 0 to mitigate the race condition described here: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 */ require((_value == 0) || (allowed[msg.sender][_spender] == 0)); allowed[msg.sender][_spender] = _value; // Notify anyone listening that this approval done Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } }
frozenAccount[target] = freeze; FrozenFunds(target, freeze);
function freezeAccount(address target, bool freeze) onlyOwner
function freezeAccount(address target, bool freeze) onlyOwner
90936
Adwardcoin
Adwardcoin
contract Adwardcoin is PausableToken, BurnableToken { string constant public name = "Adward"; string constant public symbol = "ADWD"; uint256 constant public decimals = 18; uint256 constant TOKEN_UNIT = 10 ** uint256(decimals); uint256 constant INITIAL_SUPPLY = 3000000000 * TOKEN_UNIT; function Adwardcoin() public {<FILL_FUNCTION_BODY> } }
contract Adwardcoin is PausableToken, BurnableToken { string constant public name = "Adward"; string constant public symbol = "ADWD"; uint256 constant public decimals = 18; uint256 constant TOKEN_UNIT = 10 ** uint256(decimals); uint256 constant INITIAL_SUPPLY = 3000000000 * TOKEN_UNIT; <FILL_FUNCTION> }
paused = true; totalSupply = INITIAL_SUPPLY; Transfer(0x0, msg.sender, INITIAL_SUPPLY); balances[msg.sender] = INITIAL_SUPPLY;
function Adwardcoin() public
function Adwardcoin() public
59157
BunnyNetwork
transfer
contract BunnyNetwork is ERC20Interface, SafeMath { string public name; string public symbol; uint8 public decimals; // 18 decimals is the strongly suggested default, avoid changing it uint256 public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; constructor() public { name = "Bunny Network"; symbol = "Bunny"; decimals = 18; _totalSupply = 500000000000000000000000000; balances[msg.sender] = 500000000000000000000000000; emit Transfer(address(0), msg.sender, _totalSupply); } function totalSupply() public view returns (uint) { return _totalSupply - balances[address(0)]; } function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } function transfer(address to, uint tokens) public returns (bool success) {<FILL_FUNCTION_BODY> } function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(from, to, tokens); return true; } }
contract BunnyNetwork is ERC20Interface, SafeMath { string public name; string public symbol; uint8 public decimals; // 18 decimals is the strongly suggested default, avoid changing it uint256 public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; constructor() public { name = "Bunny Network"; symbol = "Bunny"; decimals = 18; _totalSupply = 500000000000000000000000000; balances[msg.sender] = 500000000000000000000000000; emit Transfer(address(0), msg.sender, _totalSupply); } function totalSupply() public view returns (uint) { return _totalSupply - balances[address(0)]; } function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } <FILL_FUNCTION> function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(from, to, tokens); return true; } }
balances[msg.sender] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(msg.sender, to, tokens); return true;
function transfer(address to, uint tokens) public returns (bool success)
function transfer(address to, uint tokens) public returns (bool success)
18043
VOCC_I018_20181211
transferFrom
contract VOCC_I018_20181211 { mapping (address => uint256) public balanceOf; string public name = " VOCC_I018_20181211 " ; string public symbol = " VOCC_I018_20181211_subDT " ; uint8 public decimals = 18 ; uint256 public totalSupply = 19800000000000000000000000 ; event Transfer(address indexed from, address indexed to, uint256 value); function SimpleERC20Token() public { balanceOf[msg.sender] = totalSupply; emit Transfer(address(0), msg.sender, totalSupply); } function transfer(address to, uint256 value) public returns (bool success) { require(balanceOf[msg.sender] >= value); balanceOf[msg.sender] -= value; // deduct from sender's balance balanceOf[to] += value; // add to recipient's balance emit Transfer(msg.sender, to, value); return true; } event Approval(address indexed owner, address indexed spender, uint256 value); mapping(address => mapping(address => uint256)) public allowance; function approve(address spender, uint256 value) public returns (bool success) { allowance[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } function transferFrom(address from, address to, uint256 value) public returns (bool success) {<FILL_FUNCTION_BODY> } // } // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00748032419579064 ; quote ; 0,000115132369254167 ; 0,000112829721869084 ; 0,0204081632653061 ; 7,8 ; 0,000112254060022813 ; 0,000118010678485521 ; -4 ; 2Bfcfcce3AcBDA7c55adbEDfbF36Dbdc2ed9a8cD5dfc7efc70c8e36cCAfFFE7d ; < c1pQhuhu9dfcPUJ1VQ8688MsEtaXdu9WysMvDwV0c21Sv4Kh1D2309x91h797Cn3 > > 1 // < CALLS 0,00822835661536971 ; quote ; 0,000127924854726853 ; 0,000125366357632316 ; 0,0204081632653061 ; -1,9 ; 0,000124726733358681 ; 0,000131122976095024 ; -3,5 ; eCDccEB79D2faDDCfBdfFEae64BAD6e7Bfc06F0AEabDD58DEeaBc0eAE38AfBBF ; < 8EKm1eO16lEU2X8G1a41l9V7YYpHVKR0OkF9oAyqyvW8x5eYu6vc3v66ilIX5f2q > > 2 // < CALLS 0,00897638903494877 ; quote ; 0,000142138727474281 ; 0,000139295952924795 ; 0,0204081632653061 ; -0,4 ; 0,000138585259287424 ; 0,000145692195661138 ; -2,9 ; E00dE6a7Bc6Cab9D2BbcEE3da4EEdDAFDc6Ba4f4AbAF7BBE21c214CCE66a5148 ; < t8xHeh889Ag2Z72pA33cX1IxiDvX1AjIk2f1I8Jy4n19g08jBZfRKkEEV47YmFcm > > 3 // < CALLS 0,00972442145452784 ; quote ; 0,000157931919415867 ; 0,00015477328102755 ; 0,0204081632653061 ; -0,8 ; 0,000153983621430471 ; 0,000161880217401264 ; 6,2 ; 78FEf579B1bddb37DC9cAb5afdCaAd624260BC8eAecFDfe2DD7cdbe5b51fFEfF ; < tzy313l0cYC67XFJMHbxK6Ad7XqySLB3HzdduiT64D69AXHJKtOuu9Ahlfym4Uv9 > > 4 // < CALLS 0,0104724538741069 ; quote ; 0,000175479910462074 ; 0,000171970312252833 ; 0,0204081632653061 ; 3,4 ; 0,000171092912700523 ; 0,000179866908223626 ; 0,3 ; Ca827e4Af95De6eEB3e4cdF3bfA9f63DCD2f1fEBAdFaEB0f75bDddf3eaaAD4dF ; < VQ98b4z1fP60u8H17R4V0mz3nERx4xb2LMxwvi3gIlY0PxDy3wI53lE9x8S1A8E9 > > 5 // < CALLS 0,011220486293686 ; quote ; 0,000194977678291194 ; 0,00019107812472537 ; 0,0204081632653061 ; 5,3 ; 0,000190103236333914 ; 0,000199852120248474 ; 7,7 ; fd5F9cb60ecDfD7da2EaD78BcEfbAbbA0B76aAbD9A3FD49bc3fA0B0cea40aC6e ; < r423DtfUp3Luo2K3jRoSs0K91E8im45h8WBi5SgSSlOzM75l55ZDpU6FNJ03qXZz > > 6 // < CALLS 0,011968518713265 ; quote ; 0,000216641864767993 ; 0,000212309027472633 ; 0,0204081632653061 ; -5,6 ; 0,000211225818148793 ; 0,000222057911387193 ; 0,8 ; D20efA9aC8f6FADDbf8cdD9DFFEBaDAF0Cdb5Be73DCcEFcEfbf9DA87FC4AEfcC ; < g73WnMs2T1O10B2nv21xsZ9963m77iq06CDGuLS68s7e49COy20v4f6k1H0U1i8q > > 7 // < CALLS 0,0127165511328441 ; quote ; 0,000240713183075549 ; 0,000235898919414038 ; 0,0204081632653061 ; -1,4 ; 0,00023469535349866 ; 0,000246731012652437 ; 7,5 ; BB15037c11B0485Ff0BEbF428D0BCEAfBfAAaB62DF3CAD368d60AFadEDAc78F0 ; < IknYB9Be6bX0JpB7822M0o5nj37m0R8TUgseOINSe0O4ygg40lu9JE921aG9836G > > 8 // < CALLS 0,0134645835524232 ; quote ; 0,000267459092306165 ; 0,000262109910460042 ; 0,0204081632653061 ; -2,8 ; 0,000260772614998511 ; 0,000274145569613819 ; -1,4 ; FbFbc0b0Bf9BffebCa70bD0efb9f8E1F28FfCDcBbCE5ACd9fdc9A0cDD4BbF4Eb ; < 2jnrTdj9kzd15nQ97LvR419742HJrBd3Ip3XXRV69YYD4j159dQjc3glBjyEI2k2 > > 9 // < CALLS 0,0142126159720022 ; quote ; 0,000297176769229072 ; 0,000291233233844491 ; 0,0204081632653061 ; 6,9 ; 0,000289747349998345 ; 0,000304606188459799 ; -4,4 ; BfdD77BfFfB3FDFB84BbcED52Def0A64EF90EfBBCBbB83FefbED0bA0Ade4ddF9 ; < 75e9PH18Xawp8J5mS19ELQiqtLIeuRO4pey56z3Uk9w7M8M5nlVs9978f1hJW675 > > 10 // < CALLS 0,0149606483915813 ; quote ; 0,000330196410254525 ; 0,000323592482049434 ; 0,0204081632653061 ; -4,6 ; 0,000321941499998162 ; 0,000338451320510888 ; 7,7 ; DD6AACAC3B8ee7EDaCfbEcdfEB69ABD8FAdb27eecEFAAFCEa28DBdE8263Da5F6 ; < 7YEewJFX9UQzUF5G2Lcd7gC2P52Hy2JaA9Gd8V7Fpr8nu6MbdV0Dv6C0ZhT5gu2V > > 11 // < CALLS 0,0157086808111604 ; quote ; 0,000297176769229072 ; 0,000291233233844491 ; 0,0204081632653061 ; -7,4 ; 0,000289747349998345 ; 0,000304606188459799 ; -9,5 ; c67C8303dF5db299cbEf9409Bdd4aCADAbDdfCBFDa0Bf4f5FDCfED7dfC96C9a3 ; < 31437dcJF8Z6sV2NAwCHWM216Gsx39176xXfa65rc55B72gOwq173Jtg5V8wVE62 > > 12 // < CALLS 0,0164567132307394 ; quote ; 0,000267459092306165 ; 0,000262109910460042 ; 0,0204081632653061 ; 7,2 ; 0,000260772614998511 ; 0,000274145569613819 ; 7,7 ; f1FCABDDB6bE12cAfDb86b9AdbEED2Db5e1DcccaF24D3105f87947De3aFd3Ea7 ; < 1ldAtf2tFg9IyyU2MEJ44Q6703gMwi9bKJ5wJiyjNH3i9u24XtMx9029M2N11800 > > 13 // < CALLS 0,0172047456503185 ; quote ; 0,000240713183075549 ; 0,000235898919414038 ; 0,0204081632653061 ; 3,5 ; 0,00023469535349866 ; 0,000246731012652437 ; 2,4 ; A87FC92eCC32bEDAfd0dCADEb54f6c7747D0Dc26acb22f9DD8B6C2A6AdB02FBC ; < Gb3RsZY958LV4O782Tu3fCRFQfFuh5ufrrkf696kA2lW7EDiaWlwMC0m158q9ONh > > 14 // < CALLS 0,0179527780698975 ; quote ; 0,000216641864767993 ; 0,000212309027472633 ; 0,0204081632653061 ; -0,9 ; 0,000211225818148793 ; 0,000222057911387193 ; -8,1 ; cEdedEB1FFEA8277ACCaA114FdDcE9DddcB4eaCEeAaFDAFbEacBe949fBDDDA8a ; < O9SG3ogoG6lSK9J7Fe7tv0bgUF1rfnLv409F97q2Aj651YqEDeafn4i4Uw87eQ08 > > 15 // < CALLS 0,0187008104894766 ; quote ; 0,000194977678291194 ; 0,00019107812472537 ; 0,0204081632653061 ; 0,4 ; 0,000190103236333914 ; 0,000199852120248474 ; 6,5 ; 27f94AC707EabeEaa7b0fADEC0baCccecF2Ef5cfEEAdffb1bf0eCBaa2D51cB40 ; < AU0285OunPSXB8Q9p93hLac9f2QH7WH7n0YC55t7qNAqaeTt15Wgh5110FFEqT8o > > 16 // < CALLS 0,0194488429090557 ; quote ; 0,000175479910462074 ; 0,000171970312252833 ; 0,0204081632653061 ; -2 ; 0,000171092912700523 ; 0,000179866908223626 ; -7,1 ; CDaF4F3aC9d851A38C1aFDbA389606beaBEbDbeD1eBBDFFAFf52364d0FDfAF1c ; < 5Dv7KZu1jrTxnH2q8Ax7kl04lkUO61J76p2jNX4U8WS45bD6iRow63l4hSvb7UKV > > 17 // < CALLS 0,0201968753286347 ; quote ; 0,000157931919415867 ; 0,00015477328102755 ; 0,0204081632653061 ; 6,5 ; 0,000153983621430471 ; 0,000161880217401264 ; 2,8 ; 6f12f1ECD580B9ff555E1E9eefd12Ef9fe367EBDeB3E73ccDADDBbfA3eAFaa6E ; < 5FO3bZ01LVwBhN19R7fvw74026KktRTjgp371j8ku0vmCv1f6F8h0a7OvnRrb246 > > 18 // < CALLS 0,0209449077482138 ; quote ; 0,000142138727474281 ; 0,000139295952924795 ; 0,0204081632653061 ; 2,5 ; 0,000138585259287424 ; 0,000145692195661138 ; -1,2 ; 9E0DDE52cEEB4E4DEE0df01EBc1D4fecd8fAcEe0EAb4DeBf0BaFe21af2F1CDc7 ; < vBKouNBNEnvZLMkvM3d4ffLm82J6B182EL32v4w7jk1MT8hz6x6MEyjPU2BK9678 > > 19 // < CALLS 0,0216929401677929 ; quote ; 0,000127924854726853 ; 0,000125366357632316 ; 0,0204081632653061 ; 6,1 ; 0,000124726733358681 ; 0,000131122976095024 ; 4,2 ; Ae133CcB44Fa479d9eaE4fce1BBE6ddfbde38cF0Cc27Ec9dDFDC0fae05CffBAa ; < 5Ezp0r7pJAp1ON8soS8g52D40xcS6u65rX4kKb32MeLS5BrEj8Y14nUlFrzpDhsw > > 20 // < CALLS 0,0224409725873719 ; quote ; 0,000115132369254167 ; 0,000112829721869084 ; 0,0204081632653061 ; 6,4 ; 0,000112254060022813 ; 0,000118010678485521 ; 5,8 ; EFce69ABB0A69Bed1B9EC04CAcB26cab9CFB9FCBEbEdDa8dEDCDB1bc2C9aF6de ; < 3U782roz0lCnEhWHu3jL4YJ4w20349YD0X6S13ii4trMWIoR6S9UZ4zbjA99tDbX > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00748032419579064 ; quote ; 0,000115132369254167 ; 0,000112829721869084 ; 0,0204081632653061 ; 9,9 ; 0,000112254060022813 ; 0,000118010678485521 ; -5,1 ; EC140e8Bbd2B2BB9E2Bc2fB9aE9dBEe7AC18DcDc9bEfCF6bfF9EBA13fBcD63ED ; < 9axW7NtEZsM4TTX2WnPztS1JAP2sgTC0FKwl1I5vPj0ASImJEG4vAUbP08s4s63d > > 1 // < PUTS 0,00822835661536971 ; quote ; 0,000127924854726853 ; 0,000125366357632316 ; 0,0204081632653061 ; -1,6 ; 0,000124726733358681 ; 0,000131122976095024 ; 7,3 ; FEFdd480de976EbaDe5abdA7d4bB7dDc99d8F1c62FD7463aeF8e2fBbFCEfCdeB ; < B410EroyD3CMo9002SfU2lz0LrMUx8LxX591yok0Pcy11Y2xQTTf546G91GfHk3N > > 2 // < PUTS 0,00897638903494877 ; quote ; 0,000142138727474281 ; 0,000139295952924795 ; 0,0204081632653061 ; -8,7 ; 0,000138585259287424 ; 0,000145692195661138 ; -6,8 ; BAAcABf83CdCbe35C5f1e4f69fb6565cf0a8187C9FCCFB448ed0d897caBA8d8b ; < 3s8YRP7TpgHyCfpy6COCp6SoksrxRDlqx2f1YLDW1VJQ67AJuDzdF2Oz3W3i863l > > 3 // < PUTS 0,00972442145452784 ; quote ; 0,000157931919415867 ; 0,00015477328102755 ; 0,0204081632653061 ; 9,1 ; 0,000153983621430471 ; 0,000161880217401264 ; 9,2 ; fF14605FBecA1FED9C7cE7bAEC7a2beeedA9AAaFCa376FCeda6DD91fc5E1f8e8 ; < 0ti1IVWTmIoH8wY7AFGh2SOLLUDn6xXlgG1Ip3fBjFdetaTtMgfMhW7R2bQqtB7r > > 4 // < PUTS 0,0104724538741069 ; quote ; 0,000175479910462074 ; 0,000171970312252833 ; 0,0204081632653061 ; 3,3 ; 0,000171092912700523 ; 0,000179866908223626 ; 2,9 ; Cafb1eDD2CFCFc41ebbFFA9BF3bdcEbEEaFfcfDFFDeeed6c4B702FdaC5EBEd97 ; < oG081tg1cbJ2w72E86Cc7aqt7rcD2qdLo8N3nhi2K4dmmKlSCEYeUaI834wZ6tF3 > > 5 // < PUTS 0,011220486293686 ; quote ; 0,000194977678291194 ; 0,00019107812472537 ; 0,0204081632653061 ; 4,5 ; 0,000190103236333914 ; 0,000199852120248474 ; -0,8 ; 265ba79Dc9B3FEE6DF38cFBBCCFDa4aCcaACCdAF4C30Bd0eeDf5D991Be43bBA1 ; < zSkJM1Eq2z9t6h5676N89ecZgOzvgm39186qTtFHxa6d7f29D9gi2gPSi2YnN1Le > > 6 // < PUTS 0,011968518713265 ; quote ; 0,000216641864767993 ; 0,000212309027472633 ; 0,0204081632653061 ; -1,8 ; 0,000211225818148793 ; 0,000222057911387193 ; -2,5 ; fB43cE0fd9BC94B6BDB79DAdEB3c8Ac5e6AdE3ecdeaBc969AabeffE036ADc2cd ; < 6TzMOkObLYEFz5lOzf8hXB2v7W9sN7x0Z2EQu2C7JbZC6FdZ1Im2uvSeXLQqJvXW > > 7 // < PUTS 0,0127165511328441 ; quote ; 0,000240713183075549 ; 0,000235898919414038 ; 0,0204081632653061 ; -4,4 ; 0,00023469535349866 ; 0,000246731012652437 ; -5,8 ; 3EE2Dc7b94772a063343409adCCb5ec0Cdf6a90E5f7EbC0CAccEeDecaec0DADB ; < u7h305AF0Dh24M9106YSs6Mr205RRK6WT1Y232XJGkm8l1pHyM4R8TVl9l4o3o3F > > 8 // < PUTS 0,0134645835524232 ; quote ; 0,000267459092306165 ; 0,000262109910460042 ; 0,0204081632653061 ; 9,4 ; 0,000260772614998511 ; 0,000274145569613819 ; -4,3 ; F434ABea9BD8CBF4e8DDfdab0bBE8E1Ab1BEcaa7Cf4be89cBd5D4Cc6dEAcC0d0 ; < dp3u8q6nB8h3e1Pxll9bjTWm6i9dCB3ladO0OBR6TKvl7sND5DlPFRS3HP05zUy7 > > 9 // < PUTS 0,0142126159720022 ; quote ; 0,000297176769229072 ; 0,000291233233844491 ; 0,0204081632653061 ; -6,5 ; 0,000289747349998345 ; 0,000304606188459799 ; 3 ; 9aEcc83C3Bd2f4cF27D8edDF7B49fEccfeb5C5Adc8d63ab3f65b4DdCB0ffe0A2 ; < 7K6zv2rYYmB7VIOnI5MI6JEq5Nstf3Utfl3Lc1XSXuBW0QfH7nNxvO3P9gURj8m6 > > 10 // < PUTS 0,0149606483915813 ; quote ; 0,000330196410254525 ; 0,000323592482049434 ; 0,0204081632653061 ; 9,8 ; 0,000321941499998162 ; 0,000338451320510888 ; -2,1 ; 55c62764B760c1e1c77CE6be7bDD6ea1bEdAECBDC93CfD00aeCc391e2DDE2Eba ; < g9qd0cC1GoU06PTA762VqeNE0f50oxQNkj6O5Qo08NZ92uUad9oyog081eC09Pdj > > 11 // < PUTS 0,0157086808111604 ; quote ; 0,000297176769229072 ; 0,000291233233844491 ; 0,0204081632653061 ; -4,1 ; 0,000289747349998345 ; 0,000304606188459799 ; -6,5 ; 3FddC39eeaaB01c2EC3DB6dD95D77eAACf72bAed60D8d6A5cDACcC2029B5ed7A ; < 39lbM0zPWw1WUHyC35Yv5kVI4n2NQ07TU9ug4oN6xs07qK3bs4rR1ToAu9sKgJ9h > > 12 // < PUTS 0,0164567132307394 ; quote ; 0,000267459092306165 ; 0,000262109910460042 ; 0,0204081632653061 ; 0,4 ; 0,000260772614998511 ; 0,000274145569613819 ; -2,9 ; e2ADAcDEFE46E1B3ddF12BFfEDB34f8F9fBbFDeeDF906a3fdffBEfaceC8bB0c5 ; < m7n5dgqG3h8qSXpks053HlHn589m9HIVp086k229CNkdtIV806ApfdVyZCUz3hEL > > 13 // < PUTS 0,0172047456503185 ; quote ; 0,000240713183075549 ; 0,000235898919414038 ; 0,0204081632653061 ; -2,6 ; 0,00023469535349866 ; 0,000246731012652437 ; 3,8 ; A8bcEA2DfeB7fDfADF33f7BAacf2deb1AAADFd2bDB78ec0FeACABdcbeCB8dA0f ; < f8Fk4e5q391Z6KykD0vwD96M0N4g023516f51slQnBRxneUeO7Hg7LrO6Vmjtzax > > 14 // < PUTS 0,0179527780698975 ; quote ; 0,000216641864767993 ; 0,000212309027472633 ; 0,0204081632653061 ; 1,3 ; 0,000211225818148793 ; 0,000222057911387193 ; -9,3 ; 1DACDfAc5cF0BFdabbcCAfFd83C26739b59aAF754dEEd5AAc14a37f9d9D99DDd ; < 47JmEAoC6IN6Tt0N07b91vghof5AptIy4eLIZSBCkELUhi1a5eEUGE5m22914PDK > > 15 // < PUTS 0,0187008104894766 ; quote ; 0,000194977678291194 ; 0,00019107812472537 ; 0,0204081632653061 ; 2,8 ; 0,000190103236333914 ; 0,000199852120248474 ; -1,9 ; C5feA9f6Eec0ddec407Dc3cC5ddB15Dbf167daeBEc6Bbde0EF53dcF5F3eA09cd ; < VknoXNI40949yz7Ehyvs6471pd31MDtwrm7WFR1x729IR4ryNgFUQJ7Kh968nB39 > > 16 // < PUTS 0,0194488429090557 ; quote ; 0,000175479910462074 ; 0,000171970312252833 ; 0,0204081632653061 ; -9,8 ; 0,000171092912700523 ; 0,000179866908223626 ; -5,4 ; 2b36Bb8eCeEBD748df0ABcfcD6C0Cb2f8F171bc76Aa99FD1aaA6c7d8F3d3AFA6 ; < XJRLmhFmUEA257fArvoyd88kw5efmL3azf5282kIEd66756SYSMva1H4Xe9jW4r1 > > 17 // < PUTS 0,0201968753286347 ; quote ; 0,000157931919415867 ; 0,00015477328102755 ; 0,0204081632653061 ; 1,5 ; 0,000153983621430471 ; 0,000161880217401264 ; -2 ; ce7d7E95C94FEdD22Cd5cAcBc2b1b930FC7E230f24EAdcCDEc1fccAFAcBDccBC ; < V31x19F789D32xl3d4XzHetpLWiP7556j8aMUM1Z930G442khmKXVj5MVMLds44Q > > 18 // < PUTS 0,0209449077482138 ; quote ; 0,000142138727474281 ; 0,000139295952924795 ; 0,0204081632653061 ; 1,1 ; 0,000138585259287424 ; 0,000145692195661138 ; -2,2 ; dDDAea90e3DE0b8bb6cb1baDAFAeaD26c8Ad6E7e1AEdd4ABdeACeC73cE06Eb67 ; < iNw29htFHYif2VQJbY3Xz9L99fCm4GN6i75gz01hE68A6io495J4VHkezd2B65n9 > > 19 // < PUTS 0,0216929401677929 ; quote ; 0,000127924854726853 ; 0,000125366357632316 ; 0,0204081632653061 ; 9,2 ; 0,000124726733358681 ; 0,000131122976095024 ; 3,8 ; B5a0EdbcEAEa9Fcc2fA07efBAED218CFF76aCd61dcD394EEAD9b0eeD97efAdF4 ; < bliVRK47J20yt0Gbk19tST2b3k10k1KlUqY7A0HMXepkUtMRY0KGW8905u0bm4fv > > 20 // < PUTS 0,0224409725873719 ; quote ; 0,000115132369254167 ; 0,000112829721869084 ; 0,0204081632653061 ; 9,4 ; 0,000112254060022813 ; 0,000118010678485521 ; 8,6 ; BAEFDD1FeFcbc220C94FEddD233abFcBEedeC60c283dbBDF2EA7cBB2a58F42aD ; < HoI11h858gDV002fufF7xGexqkqmEqBeDFDs3x2ax3tGQr18d3sRasW3q8Ybae1X > > 21 // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00748931573642479 ; quote ; 0,000243075713169065 ; 0,000238214198905684 ; 0,0204081632653061 ; 3,7 ; 0,000235783441773993 ; 0,000250367984564137 ; -9,8 ; 76Fe2ac6fBCAe1Dd5068a7bb5d5DAaBe25Db71B4AB6ADa7eCc5ed7A6f2DE29eA ; < 3lqOFuSeum2z8165U412YLKrluNC4nO7T89pR7Ajbe8Pq5J26Yns3x1829sA9nNs > > 1 // < CALLS 0,00823824731006727 ; quote ; 0,000270084125743407 ; 0,000264682443228539 ; 0,0204081632653061 ; 6,8 ; 0,000261981601971104 ; 0,000278186649515709 ; -4,4 ; C31b7dcFE0aeb9DBeBB7A81a9CbeCF8b483BcA2b06BB2AD4703acbDd19A0B9E4 ; < O2Q2FY1nc9V4D1Cum1Wm730FICv6RJeYfpO3u73lK3b996x1VLIm3Q67k25kX7Oy > > 2 // < CALLS 0,00898717888370974 ; quote ; 0,000300093473048228 ; 0,000294091603587264 ; 0,0204081632653061 ; -7,9 ; 0,000291090668856781 ; 0,000309096277239675 ; -0,2 ; c2C99FECaa3bD8f1BFfdD094d3CBdcf8Deb8A08DbB2dE29F43d9FAEd7cDBe7C4 ; < M2n7rOpiqtAsXa3VQ10Fli46AZQ3l75ZOVyo0S5H01S198v02DyGptw6XST9uUxM > > 3 // < CALLS 0,00973611045735222 ; quote ; 0,00033343719227581 ; 0,000326768448430294 ; 0,0204081632653061 ; -8,5 ; 0,000323434076507536 ; 0,000343440308044084 ; -4,6 ; D9bF9f8f8ABcbA9eDfffd58292AfBDe2da9ae5e9A8dcE0a03b9Ea3bE1fBbCeAD ; < 78le1xjpE2xG1t0EXG7Jof1uqqF5S9372GfYoRsG6uwZe3G4U7ey39CDRFa3Y11t > > 4 // < CALLS 0,0104850420309947 ; quote ; 0,000370485769195345 ; 0,000363076053811438 ; 0,0204081632653061 ; 7,6 ; 0,000359371196119484 ; 0,000381600342271205 ; 4,2 ; 0Cc0b1ABDa2FBaE4dFb25DB7fa98FCEd5dAD9dA8B0fC3EcFe8dEbfEe9DddB5a8 ; < OGhd40w2biWJ0WanES8N2PAae5rOiGJLe5WdIDbcqXg6r0XQiQraH5IlFFKuH544 > > 5 // < CALLS 0,0112339736046372 ; quote ; 0,000411650854661493 ; 0,000403417837568264 ; 0,0204081632653061 ; -0,2 ; 0,000399301329021649 ; 0,000424000380301338 ; 4,6 ; CFaa2EEE9dc2D04bfafBFCa4e35EaBfb7badAe212cA4497B5dcf1eE0AB7bEd6F ; < 58n9voU450h02FpDq75TfSs9JFe8gE8Q0Chb2nRalu8r0vfpW4x8M0M12y96rIvZ > > 6 // < CALLS 0,0119829051782797 ; quote ; 0,000457389838512771 ; 0,000448242041742515 ; 0,0204081632653061 ; -2,7 ; 0,000443668143357388 ; 0,000471111533668154 ; -3,8 ; cFA9Efbf6fC0daE1AB72fEA4EfA8f1A5caE1cc4fe0C5Dc37DCB0DcFd5BEB8fbD ; < 1epTkpu57G8Th5bhGfLF54jYg1k07HB0nY513Ole43lVZ5DCc1C39mQ0PX73MqIX > > 7 // < CALLS 0,0127318367519221 ; quote ; 0,000508210931680856 ; 0,000498046713047239 ; 0,0204081632653061 ; -2,6 ; 0,000492964603730431 ; 0,000523457259631282 ; -9 ; eafEBDEd6cBad7cdAf77461FdEcF3c1FB19FeEE8dA2b78bAFBEB3EbabEbF8a6e ; < L54rQPVVJjAT1Wm2coyE8SovRZj41Z6EHbiFUalns5r78V237nAz9D3v1neaWW85 > > 8 // < CALLS 0,0134807683255646 ; quote ; 0,000564678812978729 ; 0,000553385236719154 ; 0,0204081632653061 ; -3 ; 0,000547738448589367 ; 0,000581619177368091 ; -4,4 ; febFDddAaF17CD9AAD1BfBd96DdED2BeBfFe9f1bA4bcde2feFeAFEEA2cacBA4C ; < 788U7es2rmrH0TJyIi76qT4778k1m4XHUhj11PLc1152U53YeDEv8QLUJL7tif16 > > 9 // < CALLS 0,0142296998992071 ; quote ; 0,000627420903309699 ; 0,000614872485243505 ; 0,0204081632653061 ; -5,5 ; 0,000608598276210408 ; 0,00064624353040899 ; -4,5 ; FF79A32eAFcB19bFBBABAF1AAbB9B7aAaFCEb35a066FdD37BcC3D8Bfb9bDDB9f ; < 9cr2QvpR918d497DVa18w9y132UKmoRVdGr5K2sAGNplakJK4hmS6e8R7Ui40K5i > > 10 // < CALLS 0,0149786314728496 ; quote ; 0,000697134337010777 ; 0,000683191650270561 ; 0,0204081632653061 ; -4 ; 0,000676220306900453 ; 0,0007180483671211 ; 5,9 ; 3FcbfDfEEbd9eAeDAF72E75d92bd1bddCdFCbbA4CDED6DbFeab4ccDcFAf26810 ; < Fys1CoEHmJ7dDgxjd5xO3V5j47TWXx5tvK9307D112ix4M7A0J556xqBY2Vjy2w8 > > 11 // < CALLS 0,0157275630464921 ; quote ; 0,000627420903309699 ; 0,000614872485243505 ; 0,0204081632653061 ; 9,9 ; 0,000608598276210408 ; 0,00064624353040899 ; -0,4 ; C5c5b1aa5ddfbF7CC5b2cE666A0db6dFCf9ABaAd1EdB1cbCecB0AEa9A849c46e ; < L2I06wh69c3P1riYwCMZKx3aW9JQ1f2g01bS9X83ogw9fw5VswY9rF5X576307E5 > > 12 // < CALLS 0,0164764946201345 ; quote ; 0,000564678812978729 ; 0,000553385236719154 ; 0,0204081632653061 ; -8,8 ; 0,000547738448589367 ; 0,000581619177368091 ; -5,9 ; D1fD09fEEbDC66ca8dccfEDa0Fad4ABAaFdD9D1CbdABaBB1EfADe2AedEcB6C4F ; < 4VJ5VkzINAq7Mdr179f9266q9Uzup9pyZb0umq2P5PJGyX78107hlj3vA0yUd2pQ > > 13 // < CALLS 0,017225426193777 ; quote ; 0,000508210931680856 ; 0,000498046713047239 ; 0,0204081632653061 ; -7,5 ; 0,000492964603730431 ; 0,000523457259631282 ; -8,2 ; f9DBe3dF8d4B3aA27Fd0dCB6ADEc13cbe5Fa8dCCA701b378eeD75ab20FfDB8Fa ; < 36Kst4DgCT64wb2RRa35DEgsCbBino2745v3ZP018Il1Wh5N9y5g4HoTz0Pn26D5 > > 14 // < CALLS 0,0179743577674195 ; quote ; 0,000457389838512771 ; 0,000448242041742515 ; 0,0204081632653061 ; 8,9 ; 0,000443668143357388 ; 0,000471111533668154 ; -9,7 ; 2A6Eabb4dC9cb8caD4ac36Db5fCc0a7F277Ad38aeACC55797d1c3eacFcDc5B9a ; < mL7TP4M19X0a39WVtZp4UPmru7muk4Vz6G7qA6mMuDNPceAsdCQE3ZH5TPlDh308 > > 15 // < CALLS 0,018723289341062 ; quote ; 0,000411650854661493 ; 0,000403417837568264 ; 0,0204081632653061 ; -6,6 ; 0,000399301329021649 ; 0,000424000380301338 ; 7 ; 1df0ec3dD8Fac2363CA40Df0Cbd0F36caC6B50dd1Afa8AEdFD9338da033920Dd ; < 63htXAQH58ughkkhFNog305PRrohxrkx7L8Dyk9Jm70S0SwW9gdQJJ8PgZVM54ZH > > 16 // < CALLS 0,0194722209147044 ; quote ; 0,000370485769195345 ; 0,000363076053811438 ; 0,0204081632653061 ; -1,1 ; 0,000359371196119484 ; 0,000381600342271205 ; -3,7 ; 4CFc5f5a5Ce0E1f02df6C6Aec5deaBDdaBfFDcEaaDeCce31cac1bc77FaD8BE49 ; < e7S9lA6X10kmJj90Hci08KgHJzicRgOHDNF6tL7JLOH7GrkpfgDzQ58brJj48eHF > > 17 // < CALLS 0,0202211524883469 ; quote ; 0,00033343719227581 ; 0,000326768448430294 ; 0,0204081632653061 ; -6,4 ; 0,000323434076507536 ; 0,000343440308044084 ; -3,4 ; B7ADdaC2fD6dA3AA24CacFe08bAA8E37d4EEcAaEb4E156Ebd2096ccb7BaBA637 ; < EwxKMYE2n7JWbrnuOH4y9TPsRo316p1u17pk1LA6a8Wr4n8oZhfp55204aqz466x > > 18 // < CALLS 0,0209700840619894 ; quote ; 0,000300093473048228 ; 0,000294091603587264 ; 0,0204081632653061 ; 2,9 ; 0,000291090668856781 ; 0,000309096277239675 ; 6,1 ; 8bBb9c9ddA1DBB3E7bf2d7eDF5EEa9000AEBCFBAA2D4aACbacbA9Af23ef3230F ; < yv1Dh4l92IhDLh7Omyou5Y9D230Q21m2490cF0bb9umM8s3tRP6S15B9ic2onx9R > > 19 // < CALLS 0,0217190156356319 ; quote ; 0,000270084125743407 ; 0,000264682443228539 ; 0,0204081632653061 ; -7,5 ; 0,000261981601971104 ; 0,000278186649515709 ; 4,2 ; bfc5A21fBDaccdEeADd1DC6fb16eCEC302daE1Dfc7cCA5156ac257bCbBCcDDFd ; < 51K2614yx5o4djvDT381YYhd4J2WKz879M14aXtu2CJvHuqrhB1SiPD99Dm4q89d > > 20 // < CALLS 0,0224679472092744 ; quote ; 0,000243075713169065 ; 0,000238214198905684 ; 0,0204081632653061 ; -2,7 ; 0,000235783441773993 ; 0,000250367984564137 ; -0,1 ; CD0E35FFc2A5Fcbb4EEE0A135F25e9827e8FD4CEDD2e7Ad41fdd40DCEeA8C6Cd ; < U5t61hr4I5hQ9I6JFmhFfcG301giWFyZoIWx5vb8pCsBxe7Gq3EG5gj8SoS52W04 > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00748931573642479 ; quote ; 0,000243075713169065 ; 0,000238214198905684 ; 0,0204081632653061 ; 6,2 ; 0,000235783441773993 ; 0,000250367984564137 ; -6,2 ; BD0edE6DE5C7Ea94abEFcfeaB3bEccFFBd95cE3E97aEf3e3A4d7DccF512f309f ; < j8O9ihsCoQ4T8D9844aG0ClPXv7aezgHvJ523m360vpzmFY1G77ecP951YSy64Yy > > 1 // < PUTS 0,00823824731006727 ; quote ; 0,000270084125743407 ; 0,000264682443228539 ; 0,0204081632653061 ; -3,2 ; 0,000261981601971104 ; 0,000278186649515709 ; -6,3 ; bFde1b1efb5BFe6DEad423E3F36aafEF4c3dDc6a6A59Ba5b0fa1457d42ba37fC ; < kMioYY08lQG3mSoJM0YGkYitgU7qz86KLN1Fi20A82y5760B4KUJ7565196Xs5S8 > > 2 // < PUTS 0,00898717888370974 ; quote ; 0,000300093473048228 ; 0,000294091603587264 ; 0,0204081632653061 ; 5,6 ; 0,000291090668856781 ; 0,000309096277239675 ; -6,1 ; EeAf7CbC78F5aeD0cBf67B4ceE3b7BA9034FeB6bB834D6efAf3be34e1cCc6972 ; < LO8mWUeQI9h7MyfOU343aOUXVZh5TX94PC86sNjFMXhz0qbF0F2wO6zuw6zQ9d5D > > 3 // < PUTS 0,00973611045735222 ; quote ; 0,00033343719227581 ; 0,000326768448430294 ; 0,0204081632653061 ; 8,7 ; 0,000323434076507536 ; 0,000343440308044084 ; 9,6 ; c2c4175E73AF5cD4ddbcbFE5Cbed7E38CEbF5fd2F3bee5A6DcAeB7Cb6Be7a68B ; < AfvVSnxhk9PTR73vO1fEG40nX2SguSke0gZMRlJC0LR3lB86y3yDICvVzmIjRUE4 > > 4 // < PUTS 0,0104850420309947 ; quote ; 0,000370485769195345 ; 0,000363076053811438 ; 0,0204081632653061 ; 1 ; 0,000359371196119484 ; 0,000381600342271205 ; -7,5 ; 8fE26fB0abE9a0e97efbD5cEfF42A5bDFEfd30babACfd4AAE29cc0fAEaAbDCAe ; < yTwj2FJDU4W8um84rwT90nIjqWp570lf28ccsdrG9eSRhBcXlOxaR2fR0NTW4Ei7 > > 5 // < PUTS 0,0112339736046372 ; quote ; 0,000411650854661493 ; 0,000403417837568264 ; 0,0204081632653061 ; 2,7 ; 0,000399301329021649 ; 0,000424000380301338 ; -4,9 ; 2b5Be7eac38ED675F7B41fd31c9Bb58FeE25Ad4Da699A9D0ADcFDB306dcBDacd ; < kkGbCj1Ff832LRG7HKh901lEWhs9g0z8XLucGlFo4cD2fMbX38YRsTgkO352bd7b > > 6 // < PUTS 0,0119829051782797 ; quote ; 0,000457389838512771 ; 0,000448242041742515 ; 0,0204081632653061 ; -0,2 ; 0,000443668143357388 ; 0,000471111533668154 ; 0 ; B5ACf3D0EC3C09E630A8a9BbEDEbA89FDaE5E680BEe375bA2bbC6EFb7CC44dA5 ; < 2q11BWwXz25g075i25Us4I9F989NG6NeAeH518Ee4Zgv7SyLFZOLxRx04Wu74R6t > > 7 // < PUTS 0,0127318367519221 ; quote ; 0,000508210931680856 ; 0,000498046713047239 ; 0,0204081632653061 ; -2,6 ; 0,000492964603730431 ; 0,000523457259631282 ; 2,1 ; bF3BBcCFfDE8ef2AbF726cBAAB1D02d332ceCDCFCbe8Bb7dfb3Ea6EecaD4c2cd ; < s8i4emWm4MO6aMO2hI85Q1kDG0cM10oRzk56y9Sj12j820z5Cy8255Yk0Tyv6233 > > 8 // < PUTS 0,0134807683255646 ; quote ; 0,000564678812978729 ; 0,000553385236719154 ; 0,0204081632653061 ; -2,5 ; 0,000547738448589367 ; 0,000581619177368091 ; -9,7 ; 3Fb5AB37574ccDa499CC5cf3B0ffdeC3bcEDCdfaeffedba6EAD543Adbf9cFe12 ; < z5ZUpW5W8EMzkGb0T45NonkuSFd17271jv36dHb2YcY4694199eDt6fovGqgFba1 > > 9 // < PUTS 0,0142296998992071 ; quote ; 0,000627420903309699 ; 0,000614872485243505 ; 0,0204081632653061 ; 7,8 ; 0,000608598276210408 ; 0,00064624353040899 ; 7 ; F5daF6E9d8DcABCae24F3e79eA816574c33ffD7FB5E2bBAFDEe2c8C1d16ddA8a ; < W5rfdl4enu188G8r797735I1rTeTSnzpfsLPCEZPNMjS3PiV34Dae0U8ELPFJ4Rd > > 10 // < PUTS 0,0149786314728496 ; quote ; 0,000697134337010777 ; 0,000683191650270561 ; 0,0204081632653061 ; 8,9 ; 0,000676220306900453 ; 0,0007180483671211 ; -6,8 ; 9EFe4a4edd6cF265Dfb24B1Eeca0b5d03FF3b5eCdEdbBbbE9Ab9C1AABAcE61dD ; < U2SIv69OcfybMFt2xjwQo1JvDqf85uTl1eQmIM44n66150r1fBBXk2Xysv6Q631O > > 11 // < PUTS 0,0157275630464921 ; quote ; 0,000627420903309699 ; 0,000614872485243505 ; 0,0204081632653061 ; -5,9 ; 0,000608598276210408 ; 0,00064624353040899 ; -8,1 ; E9E4bb0FA8A4DA47ab9bEeAEB3dcb930f6C3367bfdAA7F87EaBBADEDc6B8C1C0 ; < us26SY2fvcdO0iH164Bol8pIt94J8JR6mGJX4qD3RMScGuNVqjPHPZnaq90jlRi9 > > 12 // < PUTS 0,0164764946201345 ; quote ; 0,000564678812978729 ; 0,000553385236719154 ; 0,0204081632653061 ; -6,1 ; 0,000547738448589367 ; 0,000581619177368091 ; 0,4 ; CafFF6AcEaBc5DF26AE0dB4AE6CBcca1aeacdd3eE37cF670cAC9dfBdaEfF7BAc ; < FWjFROqiSXD80oL531pstUZ34ZiIWt8m1H78i17H1A1P6t8A8Fj7JMZ68S18Zv0l > > 13 // < PUTS 0,017225426193777 ; quote ; 0,000508210931680856 ; 0,000498046713047239 ; 0,0204081632653061 ; -6,5 ; 0,000492964603730431 ; 0,000523457259631282 ; 5,2 ; Ec529BdabFa5ab2e0D2CcaaF11AEDE7cdfc22AEd1ECaAaefaDAC6DF0A28cEb7D ; < b2IUYa9magN9BJ23zrfuEBrzpXZ6Qkh7z6zUR9Wf1O7C7jZm6V0515jAp0L80Pl9 > > 14 // < PUTS 0,0179743577674195 ; quote ; 0,000457389838512771 ; 0,000448242041742515 ; 0,0204081632653061 ; -4,9 ; 0,000443668143357388 ; 0,000471111533668154 ; -5,6 ; 40Baf9b3ccAfeC7f8E62Ed0d1345Fcf33ca8efcE8aeccFFDbe27F0cBb3fad80a ; < O9Ou7OP9Ewr1e215lGR4jP2bztf2SF789Lms6l216sy7979w950TogqQYdvl4El5 > > 15 // < PUTS 0,018723289341062 ; quote ; 0,000411650854661493 ; 0,000403417837568264 ; 0,0204081632653061 ; -8,2 ; 0,000399301329021649 ; 0,000424000380301338 ; -8,3 ; 01FDEc6d2D7F7bcE65D6E3aAABFfbbaEDBdADfcEF0eedDA2cDa2DAE0236Cd8Ad ; < ZVA48BDa0A3HXox657X9xl2PEAOHb5391c54jec66745yfA3EbO2tt4YNO7J90x4 > > 16 // < PUTS 0,0194722209147044 ; quote ; 0,000370485769195345 ; 0,000363076053811438 ; 0,0204081632653061 ; 0,1 ; 0,000359371196119484 ; 0,000381600342271205 ; 3,3 ; 01D3aCBa7c2CF5DdE74c41dEaBcBeaCFEc22EDf2deFCeA03A75ac9e2BbF23bD1 ; < NCPbdtr8qixvr36NG5Al0e67aqB02Wdi2sI97wmRBeosUT0td4Vso9G6Zt05m097 > > 17 // < PUTS 0,0202211524883469 ; quote ; 0,00033343719227581 ; 0,000326768448430294 ; 0,0204081632653061 ; 8,5 ; 0,000323434076507536 ; 0,000343440308044084 ; -1,5 ; ACaaFb4b6bdc493eCDeb4FC0812DD0aDbEaCf46faDcFBbA5110AC2B1f27fc8a9 ; < N52z38Q1G3Yr7X6nJb7UYtJY5jfZv41o8QIvMTQ0k54ACA5Jv85V71r4mj5SUr92 > > 18 // < PUTS 0,0209700840619894 ; quote ; 0,000300093473048228 ; 0,000294091603587264 ; 0,0204081632653061 ; 3,8 ; 0,000291090668856781 ; 0,000309096277239675 ; -7,1 ; 4eeEe4bB2F3FAaa5AbfDF99cad1d0BDD5FFab66B4Bc0FCc8Aecb18eeB37E9FBD ; < D5Ymn2y81tRYhNu7J7pKi29BFqo2vir3EN410VaAdjjLC9cOlz6Et09N7K6ffr8E > > 19 // < PUTS 0,0217190156356319 ; quote ; 0,000270084125743407 ; 0,000264682443228539 ; 0,0204081632653061 ; -0,8 ; 0,000261981601971104 ; 0,000278186649515709 ; -9,6 ; Afc14C771e06Ce0Cc8b1AA7D8bc2F0AdBbb0C9dF0Fc197D0dEadeAB2DDcedBE8 ; < 4EN4MtYn0K4a5YM8n3tSEXD5kI3vE60c1tOI0uof0XR5h6Ts80gv2EQ9b165hEH2 > > 20 // < PUTS 0,0224679472092744 ; quote ; 0,000243075713169065 ; 0,000238214198905684 ; 0,0204081632653061 ; -4,4 ; 0,000235783441773993 ; 0,000250367984564137 ; 1,5 ; 4ACeFd00afdC5ccBFFE252bF6d75d9EFCBacEBa7beBf95EFacF6Ae418abb0beE ; < 84HvJi2Z0187BvIgUv7QCK118V4bNm1O0YO35UArjyaZ3PG21ISG664m5z2xVBj4 > > 21 // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00751774854330296 ; quote ; 0,000504595790765017 ; 0,000494503874949717 ; 0,0204081632653061 ; -5,7 ; 0,000486934938088241 ; 0,000522256643441792 ; -1,6 ; Daf9B1Dd0bBEdF4BCAa0C2d270fA16b7FEecc3bC2bFf4C92FdAbB9D5fA9B34c4 ; < UKbOnPbxGPRjRye07gFwRKUTT2OQJGgdArQ546x06Q2B31NgLNN4s44mvkf77Pn1 > > 1 // < CALLS 0,00826952339763325 ; quote ; 0,000560661989738907 ; 0,000549448749944129 ; 0,0204081632653061 ; -9,1 ; 0,000541038820098046 ; 0,000580285159379769 ; 8,8 ; 2D9FC4Cf54b2fD77Ee34825d7a7CaabFF06D5f9aC333AAbD5ACF410aDeEF0f8c ; < rklXl5e61x8401q18i3dD7Dc1k5JyWRyVO0Cd3bhRA5GigwnM1hFbV2ZaK48yj3f > > 2 // < CALLS 0,00902129825196355 ; quote ; 0,000622957766376565 ; 0,000610498611049033 ; 0,0204081632653061 ; -0,9 ; 0,000601154244553385 ; 0,000644761288199744 ; -2,3 ; bbDeDdFD4fF4dFEf6bBB1F2F97dff1CBfA2A9929bDfC6C896Bbe2f7bdfD1CfFE ; < fXt80MjHUSVrMrWHPWslgjuAaS31cmNsO8T3FT82j9JEll54agH3015lq1NXRzwO > > 3 // < CALLS 0,00977307310629384 ; quote ; 0,00069217529597396 ; 0,000678331790054481 ; 0,0204081632653061 ; -2,9 ; 0,000667949160614871 ; 0,000716401431333049 ; -1,7 ; 8D5AFF314c75158fA89A4dA74adc2D546cB62BEefbB3FAa4F0eDEeAB3EC8fa8E ; < XMZ0hIxc5423GcGvRza62F37c8fV362TEzM76977Jk7d3PD97ToL8FY1ygfy5pW4 > > 4 // < CALLS 0,0105248479606241 ; quote ; 0,00076908366219329 ; 0,000753701988949424 ; 0,0204081632653061 ; -1,4 ; 0,000742165734016525 ; 0,000796001590370055 ; 6,2 ; 9BC47bDAFe4885DBEcccF7beB77Bd7ce55AB8e16Ba90FbCBa5edb6EDb13cEeac ; < xMyWc40Y2HIO2rVcBcSX6QWcvHqVyGyOy5j60xC35oEwR0FouUds7Wj0en5oTQ1a > > 5 // < CALLS 0,0112766228149544 ; quote ; 0,000854537402436988 ; 0,000837446654388248 ; 0,0204081632653061 ; -4,6 ; 0,000824628593351693 ; 0,000884446211522282 ; 0,1 ; 8403Aae1FA2E7dCddf0bfFDEF3dA7beCbBABcAAfACeCdABBba33Bbf6CfD7a55e ; < lJAfMLPxq9N1T4Jyn5M2nj158tjE9t9rl1CuWjzX9gfloJCfv3pbBO1wH8t18KEc > > 6 // < CALLS 0,0120283976692847 ; quote ; 0,000949486002707765 ; 0,000930496282653609 ; 0,0204081632653061 ; -3,7 ; 0,000916253992612993 ; 0,000982718012802536 ; 0,5 ; DBfdbd8e0d1f3bcdBAEe9757d39eF1A5A1ffdBEddbefBBCDCc2FdAFFeFcdfD9E ; < 1fJOu5sss7He1g4XDb412gM3Y7OHOJnD3htNwDesF83f5W0ouJXImYPfl3Qcq7DM > > 7 // < CALLS 0,012780172523615 ; quote ; 0,00105498444745307 ; 0,00103388475850401 ; 0,0204081632653061 ; -1,2 ; 0,00101805999179221 ; 0,00109190890311393 ; -8,4 ; 64aCffcbfdcf98b0E21fCbFBBb31e9dBABf8cBE0D7DdF1Ae9DcC4ba9e2CE13Ef ; < s25b8tskW6864DO80P6036doUWCni44Ce6pGwhkK1T6T5K6j195TCJ98nafI7Z7S > > 8 // < CALLS 0,0135319473779453 ; quote ; 0,00117220494161452 ; 0,00114876084278223 ; 0,0204081632653061 ; -9,9 ; 0,00113117776865802 ; 0,00121323211457103 ; -9 ; Cbf4eEF221C3C5B47BfafcebACCACfFdB5a23Fb9caEEd1cf5eDA0ddBA9efD5fD ; < bKPozSB6YhcjpaLHQ222D7EVC9ve787qS4Ch1W3cjDU55fxp0rEh4AhzQuWiuSnd > > 9 // < CALLS 0,0142837222322756 ; quote ; 0,00130244993512725 ; 0,0012764009364247 ; 0,0204081632653061 ; -4,5 ; 0,0012568641873978 ; 0,0013480356828567 ; -3,6 ; b93fBD72cCFc7ed0AebedB0eeacA5E3aD9dAA8DfCbAbCCA103CDcECaE1Ea3fA8 ; < M6Nuz0fjtrX4xfwogL7v52YawAwc9pfy5q039Eqz9U6ZulB35UY84INF5230lmqL > > 10 // < CALLS 0,0150354970866059 ; quote ; 0,00144716659458583 ; 0,00141822326269411 ; 0,0204081632653061 ; -2,2 ; 0,00139651576377533 ; 0,00149781742539634 ; 4,7 ; acbBbF61fa3dAbcEeEFdcBdcAdF202A3e7EB07baeECdAA8BEac2BAbFEfd21ab6 ; < 34t5XORJ0YhaelWa2T4HMYhv3L05v61st1T9wM7i63WD3I4usmfzRz47027Hf5uh > > 11 // < CALLS 0,0157872719409362 ; quote ; 0,00130244993512725 ; 0,0012764009364247 ; 0,0204081632653061 ; 9,4 ; 0,0012568641873978 ; 0,0013480356828567 ; -8,8 ; e53C1b4DfA79DaAcab0bF4E3F857D63EcFfCfCF9eCbCbDEEdeE3DEb6A86F86db ; < CA21p81r7EVAFshdGQ03U6oWr0RZ0BhUn34o73pMDz3jy5Jov1zA1Vs4gXeh0dM2 > > 12 // < CALLS 0,0165390467952665 ; quote ; 0,00117220494161452 ; 0,00114876084278223 ; 0,0204081632653061 ; -6,3 ; 0,00113117776865802 ; 0,00121323211457103 ; 8,7 ; Eb3bceac8CdEFaCAAbFe3cDCC8DeAfF3bBb61d2F69dFfecAEf4fE3fC37ed6aCC ; < IE4dY5zUfjCs7KYgfq7srBcYZsqKEf20RvT712QKU8dQaXpB4u504i2kAs47Tax6 > > 13 // < CALLS 0,0172908216495968 ; quote ; 0,00105498444745307 ; 0,00103388475850401 ; 0,0204081632653061 ; 0,5 ; 0,00101805999179221 ; 0,00109190890311393 ; 1,6 ; fE1e49C5DcbAf8f6b375ddEBB6a4DE971Ecf0Ba3CeB2cB6767ee130bfdaeac9D ; < Tyf77c3j102b2EJ5o16jGZcdL3N26NlD9i5K8zC0uX8cXy7EIGfQy5kAwgziqmim > > 14 // < CALLS 0,0180425965039271 ; quote ; 0,000949486002707765 ; 0,000930496282653609 ; 0,0204081632653061 ; -6,9 ; 0,000916253992612993 ; 0,000982718012802536 ; 1,4 ; b83D08bAeE2A1e6FafEC6FfbDceEDDFD4feB688a5BAFE5a0DDdaa67b3dfc7e7b ; < U97pCP6363h3pdR0Qm1xV56O2qqfmL5VlipfiwK8SuEPPml0Lx25yCAEQYlyTGHe > > 15 // < CALLS 0,0187943713582574 ; quote ; 0,000854537402436988 ; 0,000837446654388248 ; 0,0204081632653061 ; -4,8 ; 0,000824628593351693 ; 0,000884446211522282 ; 6,6 ; Df5C8b4Dbe32AdBBBCE1139BaDa8EAE13eaffdbA6AA5Fcfb41BcF59dE6eEe3cb ; < 6kHp632iaXZhElsuyO7D76DB3omb358M7L6KorCRsW2LMLgfCTfPv4HF758R1zL8 > > 16 // < CALLS 0,0195461462125877 ; quote ; 0,00076908366219329 ; 0,000753701988949424 ; 0,0204081632653061 ; -9,7 ; 0,000742165734016525 ; 0,000796001590370055 ; -7,7 ; 5fFeeB4eBeD1Eaaf8CDBA937BCbb781d0BBEBaE1AbD952ceDEEE175CCaB54Daa ; < hv7dbxm9R8ZSFssTq23gFTK7CF1UMjzGmKsa7hK36tlCn3BMIdggFnBgb7WB5CjI > > 17 // < CALLS 0,020297921066918 ; quote ; 0,00069217529597396 ; 0,000678331790054481 ; 0,0204081632653061 ; 1,7 ; 0,000667949160614871 ; 0,000716401431333049 ; -7,7 ; 4AAceF0BB7cDFcb5C4eba40EceF911ae6af1401dDBD1fbaDc4FbbDed37Bc21eE ; < Nsrf6547Fovq9Oa08Dcrq53JV9eJKr8Pho0kLBd3Z8SzGWQoHApExC0yJ65NA393 > > 18 // < CALLS 0,0210496959212483 ; quote ; 0,000622957766376565 ; 0,000610498611049033 ; 0,0204081632653061 ; -6,8 ; 0,000601154244553385 ; 0,000644761288199744 ; -4,2 ; 0D716eFD3ddC2c9eECbfa54Ecfa26FAdC9aDd35B0ca6Be4aA5faD5b09618faaf ; < 07wm3HH2Z6sCD2o1F2H014Yib7qwj33Y50ZY3ZiiRl5vT1kA7R5T6EWSU3kFQFpE > > 19 // < CALLS 0,0218014707755786 ; quote ; 0,000560661989738907 ; 0,000549448749944129 ; 0,0204081632653061 ; 5,3 ; 0,000541038820098046 ; 0,000580285159379769 ; -0,3 ; CfCfC2bcCfd3cbDaCc3dfd5A42bEF5fdEd5CAcEe9DF31C5a3eEFeebCcAd7FDCb ; < 7g43XOB7ielQufRtPcLB0mlwO35sbrfj0llLhQuX1KQ4V0OAu7S96U71901k4ep4 > > 20 // < CALLS 0,0225532456299089 ; quote ; 0,000504595790765017 ; 0,000494503874949717 ; 0,0204081632653061 ; -6,4 ; 0,000486934938088241 ; 0,000522256643441792 ; -4,9 ; Cdcf721feCbFcF51AecfCe250BBBEdcfbB09bEAeB40bebF2e2980a740C50EBce ; < EXqi0ij0A655lyi6v854Aw96Q79gpAD06Fu7z4x7S1HUA242k6x1SPpGBNraq4o4 > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00751774854330296 ; quote ; 0,000504595790765017 ; 0,000494503874949717 ; 0,0204081632653061 ; -0,4 ; 0,000486934938088241 ; 0,000522256643441792 ; -6,7 ; f3f7E3a2CfDBfe0dd7b7B9Cdfd6e49eC0EaFB92aDB5aCCF04Ce75AddeEDb3fD7 ; < 82Gj8Z3CW7H1t0aGG5lXDUmIOj1b4KiobGevF32Lq1mz8R5r9111WI8LY2a6DjQB > > 1 // < PUTS 0,00826952339763325 ; quote ; 0,000560661989738907 ; 0,000549448749944129 ; 0,0204081632653061 ; -6,6 ; 0,000541038820098046 ; 0,000580285159379769 ; 0,8 ; dCFbADD5d2acAf8FE39eFD3B2EFbcC4ccfeb3bfC20AAcEcebfb8Fbb63F9f4DFD ; < 6za4v6OdmkEV22S8TWNR7QwsivsZrcQSpI323ON4r9leeF5rqRZLbLbeRGWH4kpR > > 2 // < PUTS 0,00902129825196355 ; quote ; 0,000622957766376565 ; 0,000610498611049033 ; 0,0204081632653061 ; -9,5 ; 0,000601154244553385 ; 0,000644761288199744 ; -7,2 ; CFEc1aa9Bccbe23dCFcE4c9BAbC4EAAdD9BeE36065C5DdD2Dda6fbafA1afE290 ; < D672LH7F7s8R0k1m4oQ639TTL0s1xDzoA2q0Flh8c59hE39ibYX6x6donROSs10m > > 3 // < PUTS 0,00977307310629384 ; quote ; 0,00069217529597396 ; 0,000678331790054481 ; 0,0204081632653061 ; -2,2 ; 0,000667949160614871 ; 0,000716401431333049 ; -0,9 ; Ae800E01DC7FdbE85da7Ac9bE066c168afb2FC6D1E5afcAC8CBABfe6CBE7FcfF ; < 7D2hVdtx4rj2E5AGXaCW0XAMtv647amv0c7GmwjBP42pXWcfsB6pXAT39u826xCj > > 4 // < PUTS 0,0105248479606241 ; quote ; 0,00076908366219329 ; 0,000753701988949424 ; 0,0204081632653061 ; -3,9 ; 0,000742165734016525 ; 0,000796001590370055 ; 5,6 ; A5f0A582ed525CdBcddFe2aa7EB5cB29FcAcdfcCb1FfdcBB9f4f5CaBd39dacBF ; < Zc41T66jWO5p0CQ8XYsG4yKzv7csi3251sHWGAJHWqSI4Kw05yu73JxG865511DO > > 5 // < PUTS 0,0112766228149544 ; quote ; 0,000854537402436988 ; 0,000837446654388248 ; 0,0204081632653061 ; -1,7 ; 0,000824628593351693 ; 0,000884446211522282 ; -9,5 ; D17a54DaEDddceDFa03a731a9E40ED5dBEa01EFB4Da88aCB34e4Fedfbb0A0D0B ; < R6hod7pGE7d3Y86lGIj097X87cam5g2oW9gE67Wht3aD5x3lXJ4RKXx0SaW6c88L > > 6 // < PUTS 0,0120283976692847 ; quote ; 0,000949486002707765 ; 0,000930496282653609 ; 0,0204081632653061 ; 6,6 ; 0,000916253992612993 ; 0,000982718012802536 ; -1,6 ; dccBE21D26ebA2ABC7D7aCAA6EFB7eecEDfB0Ecabb1ECDE08EDBEDDA56A59aD0 ; < 4bm2ZOFJEfi0D3GPn9yW86131XxBO3l7yNA8OGbDcjAz49O5T9KXf0M4k6Ut9bC2 > > 7 // < PUTS 0,012780172523615 ; quote ; 0,00105498444745307 ; 0,00103388475850401 ; 0,0204081632653061 ; 9,1 ; 0,00101805999179221 ; 0,00109190890311393 ; -8,3 ; 3AC2FbadDD1d4B148F155DFb61DeF3BefcabE68f80E3d1aDffcdB7bf8bFB83Eb ; < MsJ6s1se42Ry0nQsfN92m2ov8p1RJ0H7nJs2R2CjNlPqMZ665Wv1iOj2Q80mHs6n > > 8 // < PUTS 0,0135319473779453 ; quote ; 0,00117220494161452 ; 0,00114876084278223 ; 0,0204081632653061 ; -8,7 ; 0,00113117776865802 ; 0,00121323211457103 ; 4,9 ; 840FEDd2E8F1BDcbfFab5AdbDDAeDa6cEdAa34FEA0E96f2DcBdddbd0bFF7EE68 ; < 0nJu82N62213VZ0J6sS192do9GZOSRD3Y51oUD6mxbq1JD3R438033f5M8C04jcs > > 9 // < PUTS 0,0142837222322756 ; quote ; 0,00130244993512725 ; 0,0012764009364247 ; 0,0204081632653061 ; -0,1 ; 0,0012568641873978 ; 0,0013480356828567 ; 6,9 ; 46eE53901DcaDeDFDE2DaE795dBDCFFc2B1e49c5F7bd8FCfBCF9aFccccBF6e1d ; < paOS78FG0IG190u7205F0Lma5Fl201hioXS9zQF9IQU61HIhPAzknTvb52lVTfB5 > > 10 // < PUTS 0,0150354970866059 ; quote ; 0,00144716659458583 ; 0,00141822326269411 ; 0,0204081632653061 ; 4,6 ; 0,00139651576377533 ; 0,00149781742539634 ; -7,9 ; 52D899CcdafFCE38Cebc57aDA8DDbee0CA0c200A1AB30dD3f3f28cecBaFABDb1 ; < x2d6Irm761E2CnfxVF8PK4440NdQQ41fb4jdvDU3BHcH9UPj73AnaiJxt620S2Dc > > 11 // < PUTS 0,0157872719409362 ; quote ; 0,00130244993512725 ; 0,0012764009364247 ; 0,0204081632653061 ; 5,1 ; 0,0012568641873978 ; 0,0013480356828567 ; 0,2 ; Fc11eFdCC56CbD237dddFFEff0A330Ebac9769Bfa49aEE2E3eBc56F176DAe2da ; < bLF9KuCL6C83Gb0x21NkneNPar48f3ZG6Vlb4514Wl0thc3ZeSCs2626ga3yjhSN > > 12 // < PUTS 0,0165390467952665 ; quote ; 0,00117220494161452 ; 0,00114876084278223 ; 0,0204081632653061 ; -8,2 ; 0,00113117776865802 ; 0,00121323211457103 ; -3,2 ; 33aA28f3B69cc332bfaE3c3fEA7aBE9da711415bBeae1109ED1bcFB6FDebf3fa ; < luI3KVryF0n663302jXo1S7Bc3KC2Ayyr30u4K6DvMAv1dgxLsQx62K1Zo3A0e89 > > 13 // < PUTS 0,0172908216495968 ; quote ; 0,00105498444745307 ; 0,00103388475850401 ; 0,0204081632653061 ; -3,3 ; 0,00101805999179221 ; 0,00109190890311393 ; 0,3 ; EC6cfDc0Ec8C01eAeAFEaafeF1CB27c21a06CCf0841F0AA3Feaf7E9E2Ff7AD7A ; < GKE6L37Bb2jIE8t2c6b9IWq33Hxc7hI9AjoODM7LxZtfop057yOBf9Q9kal16g0x > > 14 // < PUTS 0,0180425965039271 ; quote ; 0,000949486002707765 ; 0,000930496282653609 ; 0,0204081632653061 ; -4,1 ; 0,000916253992612993 ; 0,000982718012802536 ; 3,9 ; E1E1A6AcFE1bed3BBCeECcc75db9D3FDcBCDBD845ffbbEEC5dB462Eb02a7E5DD ; < Ul3sEaru7BZ96Y1M3pgrjjyiP4Psm967tZK4QZ8x8S6Fris7n5qWvm2NJSOv8Oh8 > > 15 // < PUTS 0,0187943713582574 ; quote ; 0,000854537402436988 ; 0,000837446654388248 ; 0,0204081632653061 ; 3,1 ; 0,000824628593351693 ; 0,000884446211522282 ; 4,2 ; e2DBabc5d5B64C6eD14ADFFab54FcaBa394988Bd5CcbE3fA2AcC2bA3C049FFdc ; < x3B2H6FlnODSUbTSYrXauRN75196wL39t45p2r7HGVSxRPDgVoL1kItK098HZ1Fj > > 16 // < PUTS 0,0195461462125877 ; quote ; 0,00076908366219329 ; 0,000753701988949424 ; 0,0204081632653061 ; -8,5 ; 0,000742165734016525 ; 0,000796001590370055 ; 2 ; aEc4FfFC0fea03eBeF1FA0Bca522b6EEdD9ba1FF06bF30EbB5FFcDcc990f6c1c ; < tQ0D92r5N2Uai7dpUFK21T8RED3Qp98D78a6dEsep2sXSjLq1zl2D1C8juO01fR0 > > 17 // < PUTS 0,020297921066918 ; quote ; 0,00069217529597396 ; 0,000678331790054481 ; 0,0204081632653061 ; 2,3 ; 0,000667949160614871 ; 0,000716401431333049 ; -7 ; 091fc6E103b1b38dddaB1FC6DBD20AEcec0eF1EFD4fEcbD3faFeE9AfFb59bfEB ; < otH22CPk2g84FuZm2H7H06qbfOtssROnb5OleRZJ3PIBmu85zBz8eGR4UIIO7n0b > > 18 // < PUTS 0,0210496959212483 ; quote ; 0,000622957766376565 ; 0,000610498611049033 ; 0,0204081632653061 ; 8,1 ; 0,000601154244553385 ; 0,000644761288199744 ; -3,5 ; 62bBffAc32EC8dC59AEBf54AFBE8DbcB7b46e42FaebDD66c2Ed2fB2ABfDDFDAb ; < 9dg21oFD9gqnVxZ2GVCN371a6Tm3kaoa47qrOaqbbNRU8pT704886yx1uTB64j9B > > 19 // < PUTS 0,0218014707755786 ; quote ; 0,000560661989738907 ; 0,000549448749944129 ; 0,0204081632653061 ; -8,6 ; 0,000541038820098046 ; 0,000580285159379769 ; -8,5 ; BB98DD83fEbe8abBB86bEfeA1CC6E1d19FDd2bB8eF780Bbdef213BE0a1bC7eA3 ; < K0ugV32BozM82fEW95pATF2UpXJxVkczs3HfjAVMb4UzWX8b33q6yHdD0TrU7wpY > > 20 // < PUTS 0,0225532456299089 ; quote ; 0,000504595790765017 ; 0,000494503874949717 ; 0,0204081632653061 ; 9,6 ; 0,000486934938088241 ; 0,000522256643441792 ; 0,6 ; 26DfEfbEFDDB97D1c99aaa0dEb2c1FfFD14A739A18Ed9DebdCDa3e1A4BEBfbBD ; < suwe0evS0j7s1zXMTJ9cNEL4JwY6Cg56xbXbau6ts0O8BcsfAp1OM01Y1Y11H7S0 > > 21 // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00761680730540522 ; quote ; 0,00108334771541015 ; 0,00106168076110195 ; 0,0204081632653061 ; -7,2 ; 0,00104326384993998 ; 0,00112343158088033 ; 4,1 ; DcbeBe8CdB9EfDbBDFBBD7D1A2E8fC2AD6EdFfAADb3c9eD8EB02Ffb23f2A4eAa ; < AyxYZpZ60Ovwgrq7fOmD1VA13MZgKq7T3c86B54uSFR2YReE60aN47PcN6BFgORH > > 1 // < CALLS 0,00837848803594574 ; quote ; 0,00120371968378906 ; 0,00117964529011328 ; 0,0204081632653061 ; 7,8 ; 0,00115918205548887 ; 0,00124825731208926 ; 2,4 ; e7e08dedad604FcbFeD7EEFE0AcEbCcfdFfdBeaBBFA4ED0deBaedD7DCBbF44F9 ; < DE8cAS0Q7oud850KRLwFiiUVszirxw67v26ym8Iy1hU9760BX0M81570ggbM67w0 > > 2 // < CALLS 0,00914016876648627 ; quote ; 0,00133746631532118 ; 0,00131071698901475 ; 0,0204081632653061 ; 8,5 ; 0,00128798006165429 ; 0,00138695256898806 ; 9,4 ; cBceEe92AeF14F31CbFCED5DCe7C6f100DDEaC4D7F6C1dF8EEcbAdb5ea1CF7Be ; < ypH4K6E959t615Lf4yZ7qrfa5v2n9vR1uwfMXUA3wCkyzsKPX7f2IAid8bFe9m5W > > 3 // < CALLS 0,00990184949702679 ; quote ; 0,0014860736836902 ; 0,00145635221001639 ; 0,0204081632653061 ; 4,3 ; 0,00143108895739366 ; 0,00154105840998674 ; -6,4 ; dEFb3aaA48bBee9fCCcdCaAEbcFAFeaDbfeA5d5Cc8B2CC5EcD9cBdAE4c823C1B ; < 2Sc1wVHjfpiR6oo8v70W7HIfG6O1dfc7QU4Grd1jICb1386paU09JP86i9RqGDKZ > > 4 // < CALLS 0,0106635302275673 ; quote ; 0,00165119298187799 ; 0,00161816912224043 ; 0,0204081632653061 ; -5,4 ; 0,00159009884154851 ; 0,00171228712220748 ; -0,6 ; d00afC5ADCFbBCC3BEAbB240a6afCbf0eFB6fEBAeBdbB21AD0dAbFBbCec9adAb ; < 202MZ7zm6S6WDx5ZNJOr42Et2MLO3vTd4c4fxz5N0Ur1niV88o1SF1l4Jvf4Ki1b > > 5 // < CALLS 0,0114252109581078 ; quote ; 0,00183465886875333 ; 0,00179796569137827 ; 0,0204081632653061 ; 9,1 ; 0,00176677649060946 ; 0,00190254124689721 ; 4,8 ; b83aBCDfDacB4AAd9FA7C2a70A36a5755e1Ea3cfA48eDEdcbC2bD7BcfdB2bd5A ; < Q8iPy9Nx9H20i72X03Bt7EdAt43dX0rwvh610k80ekcfF4712OY7FWQDpTQ2e2PY > > 6 // < CALLS 0,0121868916886484 ; quote ; 0,00203850985417037 ; 0,00199773965708696 ; 0,0204081632653061 ; 6,8 ; 0,00196308498956607 ; 0,00211393471877467 ; -9,6 ; c4B9Cb14Ce4BB62FAEC7DECefAba32Cc3aF01D8BF8BfF917AD4A88bb7aFfbFB4 ; < 80yI4FXzzU6Vw0eFeTZquI000oQblD9bVn4pTesYkn4LYs5DCFrzv0B1VGdnYFmK > > 7 // < CALLS 0,0129485724191889 ; quote ; 0,00226501094907819 ; 0,00221971073009662 ; 0,0204081632653061 ; 0 ; 0,00218120554396229 ; 0,00234881635419408 ; -1,7 ; FB3Abe009EcCCEfF1Bd84DFfbB1Fc2eCC6bEf9dAFEfdAF2EAdcEEbC1CfABAD2f ; < ScRc24ZF3DCD9lly9KfDxHy56D51xIqLydXQ9h7308RAr2CK72q5KcArLZ5k1Ro6 > > 8 // < CALLS 0,0137102531497294 ; quote ; 0,00251667883230909 ; 0,00246634525566291 ; 0,0204081632653061 ; -5,3 ; 0,00242356171551366 ; 0,00260979594910453 ; -1,6 ; E21ACeA877f8aFF31f5ADDB9a56Af2Ba7AaEe9EaBab3c8dddDCeDdF4E7aCbbEc ; < U1p636ctIIiGxH5Z9xJd686GQnLc3d3D4MStg5SMbD52E9GP2ETa6xyrEl7gaF3f > > 9 // < CALLS 0,0144719338802699 ; quote ; 0,00279630981367677 ; 0,00274038361740324 ; 0,0204081632653061 ; -0,9 ; 0,00269284635057073 ; 0,00289977327678281 ; 9,8 ; 0fdeD9faBdCBD75fdF331Ff1202BC955fADAbdFdEddeFA3Cb9e0A7b5EAEdc6Da ; < m2L58nuR5v63LesOoul6EleK2879TZwPCpOw2Gy2T02BDH0QxFtymf34Ztm6m7jk > > 10 // < CALLS 0,0152336146108104 ; quote ; 0,0031070109040853 ; 0,00304487068600359 ; 0,0204081632653061 ; 5,7 ; 0,00299205150063414 ; 0,00322197030753645 ; 8,5 ; b11d7A3D2B45BC9efd920afF90bd92efB2B4cB152c79b6DF7f9cE6EDFB6bfbfA ; < Y05OQbV8j07C5MCA7Ar5Z085l2f6x0fjCuls6RYRI1CJCergASElKP30ODDRV3q9 > > 11 // < CALLS 0,015995295341351 ; quote ; 0,00279630981367677 ; 0,00274038361740324 ; 0,0204081632653061 ; 5,7 ; 0,00269284635057073 ; 0,00289977327678281 ; -2,3 ; 9c0AEFCc74e6Cb1F3fb1AcB4eDDBc139497aE25aA7FDc7abe2DBaCdd2AAfb5ef ; < DLQ4p723wMu2k496PB1smNc3WbH4OD53WZtcp7UP89q8n6ytx8GSMv84Fxq4n2y4 > > 12 // < CALLS 0,0167569760718915 ; quote ; 0,00251667883230909 ; 0,00246634525566291 ; 0,0204081632653061 ; 3,8 ; 0,00242356171551366 ; 0,00260979594910453 ; -7,5 ; 2bdeD7f0a94771b2Cdd82C4DEbCcF61CEAdBfBf3cfb4FCcACB1bAEbDdd7d3C4B ; < m87I3pVTNx3sUyGqnu9Yku499Ye89Y2289l0i7Dj0Wwc5piP46D2b1PbkQpD5sQd > > 13 // < CALLS 0,017518656802432 ; quote ; 0,00226501094907819 ; 0,00221971073009662 ; 0,0204081632653061 ; -3,1 ; 0,00218120554396229 ; 0,00234881635419408 ; 9 ; 6E86d2C5e15A4dccc1eF4F8BaC38B1B5faB9b6CCFdCfdEB9DE0ffaCadFb1bAEA ; < OLXXFYtUfVAgfPag158Scw1VEtq93L2y6Wr4P5kUzfAyWiuss9Aw2vt5Wj482v42 > > 14 // < CALLS 0,0182803375329725 ; quote ; 0,00203850985417037 ; 0,00199773965708696 ; 0,0204081632653061 ; -5,9 ; 0,00196308498956607 ; 0,00211393471877467 ; 0,8 ; 164D6Ecc3faebfeBFFD72CD0dADd21EaEeDb96bace06Be1C8aEA6A4eEbeDCafD ; < 5JQgFVkE6DEka1xPW865LQgWIEoCC4TJmTm2W015iOFMHiofM8mr66R735ZI8JXu > > 15 // < CALLS 0,019042018263513 ; quote ; 0,00183465886875333 ; 0,00179796569137827 ; 0,0204081632653061 ; 6,3 ; 0,00176677649060946 ; 0,00190254124689721 ; 6 ; d4FBAda7c9a67bCCfE4ab0AFB8f9E8B1dAC3c5Ad54cCcAb48be14eeAedAacc5D ; < JtMySF77qrERsKyLAfLXUjj77hqi4p1OzADLND82FAa47cDM3B7Olb1gJhW8f53n > > 16 // < CALLS 0,0198036989940536 ; quote ; 0,00165119298187799 ; 0,00161816912224043 ; 0,0204081632653061 ; -1 ; 0,00159009884154851 ; 0,00171228712220748 ; 4,8 ; 5BcDdFCE0c068feb0bDA8CBD8eDcdaecB1F31Fe8cCFbD27EbD5C5f1Abb6F3D31 ; < 0fs22Sv1xTP9z69x3gZxOn8v5UPGRruy7j5jWfpU77F5pvTz9uO1phe9KHjRIA2i > > 17 // < CALLS 0,0205653797245941 ; quote ; 0,0014860736836902 ; 0,00145635221001639 ; 0,0204081632653061 ; 8,3 ; 0,00143108895739366 ; 0,00154105840998674 ; -7,5 ; A1fAdbeCd153e5B5054eADFADdFEFA25aA5AB4539ccCadda72Fbfe2fcAa9FFEe ; < Kb7czXITdMqN13UA2aPgc0BcLv8zjk7y7QrqE6EIy3iCgnREkryw1x7NN6Ejy2KR > > 18 // < CALLS 0,0213270604551346 ; quote ; 0,00133746631532118 ; 0,00131071698901475 ; 0,0204081632653061 ; 8 ; 0,00128798006165429 ; 0,00138695256898806 ; -7,3 ; e6F4A35a9147D2d082B0fFBFD88E7D5FcCb96Babb23D73BADFFC1C847cb0FaaB ; < 9ah61NSANNa2OfYCKbm10J4GZB1jTZ2Vlv7GFYqUfmgYf4n25f70idgr7q746k3Y > > 19 // < CALLS 0,0220887411856751 ; quote ; 0,00120371968378906 ; 0,00117964529011328 ; 0,0204081632653061 ; -3,1 ; 0,00115918205548887 ; 0,00124825731208926 ; -6,8 ; E0f88F43d3B92dDDbeD7cCF8daFed5Bb97cbDEF45F8678CFACEB4bC8bcDab9EA ; < Imo446yyWU85nPpfwai9k4z141C0NRf4a78j8f9B3IZyIf1LLyBlMyL2mLYd7i4v > > 20 // < CALLS 0,0228504219162157 ; quote ; 0,00108334771541015 ; 0,00106168076110195 ; 0,0204081632653061 ; 8,6 ; 0,00104326384993998 ; 0,00112343158088033 ; -6,8 ; Bae0dF9dCe7EA9D7B1F9a8f5fefeedA1BCea1daA131BbFBFfa1ECeB99f4B95a4 ; < JbV48KCIUrn0AZnMv7cs05Ze379zTU6eB9lDsqDqWPiIFTd9lQ48RoACHcL9ivtD > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00761680730540522 ; quote ; 0,00108334771541015 ; 0,00106168076110195 ; 0,0204081632653061 ; -7 ; 0,00104326384993998 ; 0,00112343158088033 ; 3,4 ; fECa9C1C77eccFEff26eeeFbbdfAA4b1ED15c01FEaCc2AcAA62EDB9eCD8dFD4c ; < Y4xR2S846zQ91WcwpXe076q778t2VfCy72e9O4JfAjuJL46vev7gegoC2K2aa497 > > 1 // < PUTS 0,00837848803594574 ; quote ; 0,00120371968378906 ; 0,00117964529011328 ; 0,0204081632653061 ; -2,8 ; 0,00115918205548887 ; 0,00124825731208926 ; -6,7 ; a4ead4f05bdAD836B44B2fAC0d7E260aFb1CCE3ad90abB3F9FACcd7BfFaabCEa ; < O4w7L94Lm8AwJhNl968INF1qFHNHZaOi8xjyOI42g896qz3dZxfJE64iV4DWT5ir > > 2 // < PUTS 0,00914016876648627 ; quote ; 0,00133746631532118 ; 0,00131071698901475 ; 0,0204081632653061 ; -1,3 ; 0,00128798006165429 ; 0,00138695256898806 ; 5 ; 89Dbbeddd9aCDb5CFe7cFDa8b02Beb8f126eC1dB917ADADb2e0B2ffEAfBBA5C1 ; < blYPPf203T4GU9hDtG40E86wMFgHPPU2LigeGZHuVf5fhnKV23NCrDuTTAx1d67K > > 3 // < PUTS 0,00990184949702679 ; quote ; 0,0014860736836902 ; 0,00145635221001639 ; 0,0204081632653061 ; -6,5 ; 0,00143108895739366 ; 0,00154105840998674 ; -8,3 ; df57B56Aa89509a3dfaC9bcbAe74fC5aAA4aE6bDeC0a0ff4b0EfeeE4aE089B4a ; < QSzYcH5X10694vnw0vuF65s60OadNh8d6fR4HmQjwM3mc9yy3ml076RKWbfnrGm0 > > 4 // < PUTS 0,0106635302275673 ; quote ; 0,00165119298187799 ; 0,00161816912224043 ; 0,0204081632653061 ; -0,3 ; 0,00159009884154851 ; 0,00171228712220748 ; 3,2 ; bC6aEBCa37Dd32FD26EE7afaEc26F873DBCced5f0cfAfA8c8EE5F0CbCBEdeB72 ; < mBn97vdjJ22Ikq9ChT44QM73zCFMayBCfI3bJ812HcW2PeY070M4gk4Sp8S34pvV > > 5 // < PUTS 0,0114252109581078 ; quote ; 0,00183465886875333 ; 0,00179796569137827 ; 0,0204081632653061 ; 1,7 ; 0,00176677649060946 ; 0,00190254124689721 ; 0,8 ; cf9e7bDFDfcccA7E503D9D51D3F9FbfC8C4C7bC8e6edd8eE3Aa51aF71BcE816c ; < ztj7p28JIJrrUFhlmhX87i9VKqG9Boi45D938Ag0UxHxTIqUZ4aAC1QzqXVLORgT > > 6 // < PUTS 0,0121868916886484 ; quote ; 0,00203850985417037 ; 0,00199773965708696 ; 0,0204081632653061 ; -4,9 ; 0,00196308498956607 ; 0,00211393471877467 ; -7,1 ; eBDa9EfbbeD4ABbf8Efbd4CE9393AF4c1ABc28Dd046eDCFF4ddF2a96Dd8DbE66 ; < v5521V2R7p78H2K25srC1IAUx5276V755u9K285cIi4JkDoWMkD1Q09OU06X5uwJ > > 7 // < PUTS 0,0129485724191889 ; quote ; 0,00226501094907819 ; 0,00221971073009662 ; 0,0204081632653061 ; -4,6 ; 0,00218120554396229 ; 0,00234881635419408 ; 9,9 ; 68f7cCA547d6cfcF4CaBb6c9e50E24F9bdebdD4027ef84618FdEc4BD4d2Caaa4 ; < G8d0RBmh7Aoud4C49eH6xr4i00wxDinuixP0cIfmgApxbhgM1vqbSlUv81xnI155 > > 8 // < PUTS 0,0137102531497294 ; quote ; 0,00251667883230909 ; 0,00246634525566291 ; 0,0204081632653061 ; 4,6 ; 0,00242356171551366 ; 0,00260979594910453 ; -3,4 ; efABaeDBacF3Ea6BABEADB8cCf195FDEdEceccD59D3436e9f729Fc18f2cEEc7e ; < 06550393C1ZQ4b6fR2EVzb0UxqdWf43e9rslHPyemNxVl9dN06IMadi1C9dJCXI6 > > 9 // < PUTS 0,0144719338802699 ; quote ; 0,00279630981367677 ; 0,00274038361740324 ; 0,0204081632653061 ; 4,8 ; 0,00269284635057073 ; 0,00289977327678281 ; 0,3 ; 2bAEbCcEA3cd6eA86FeaAADadef1caE76bb3BD1A3bCDcC5fEFC7C1aEB66E4F7F ; < h7cle39kGqpOQEu3SL6Du0Kek3NmXm6d26H3Lw50CrJyt6A1ul842iLccOdXUZ15 > > 10 // < PUTS 0,0152336146108104 ; quote ; 0,0031070109040853 ; 0,00304487068600359 ; 0,0204081632653061 ; -9,8 ; 0,00299205150063414 ; 0,00322197030753645 ; -3 ; bB29CBa5d1FB74bACc9D7905beE3AaFAB1Dc5BeFe9BA9d6a1BdFEeA2Df1BA4DE ; < 5a7l0wt8XJUa1Cu5L1WZ8g67z602GqKsOMkE5pL78XYjRxoSA9W5hyfb9ayV6SJz > > 11 // < PUTS 0,015995295341351 ; quote ; 0,00279630981367677 ; 0,00274038361740324 ; 0,0204081632653061 ; -6,3 ; 0,00269284635057073 ; 0,00289977327678281 ; -7,3 ; ad2DF0eBC2E6D09Fba51AC727F2AbDd6EeE3fC27a7Ca9bA06fF37e7c4D1c357c ; < EN2jh1dEvY6D696GsP93XsD79OTlB1wm8dbPw2EbaV7Px0C08D602c2P6660FXMo > > 12 // < PUTS 0,0167569760718915 ; quote ; 0,00251667883230909 ; 0,00246634525566291 ; 0,0204081632653061 ; -6,5 ; 0,00242356171551366 ; 0,00260979594910453 ; 4,3 ; dA8fdfdfA8ddFd4fA068FCFcF9ACD7FC8cbc4beE9aFECa4caaCc3aB88fdBBDAD ; < G5FZUu2t1MRzc10GhX9n8Cm9mVi52rE05v36E0HFnG3BUsI26oq60Bn0bR1eKg48 > > 13 // < PUTS 0,017518656802432 ; quote ; 0,00226501094907819 ; 0,00221971073009662 ; 0,0204081632653061 ; -3,4 ; 0,00218120554396229 ; 0,00234881635419408 ; -5,5 ; 0aFdfaD6F7dBe94Ce9DA54CFE19Ee0c253DE8DAaBbAeFce9dCd86fd4f2bEf2Ec ; < G6HxsrSN3C16J6NzdpB4aXLGNJB9kMUMw0u9nQ01HvfYlixAzlf0uoiAC9MTg70q > > 14 // < PUTS 0,0182803375329725 ; quote ; 0,00203850985417037 ; 0,00199773965708696 ; 0,0204081632653061 ; 8,3 ; 0,00196308498956607 ; 0,00211393471877467 ; -9,2 ; dF18BDDefFE3E9cDa63DBdEBeDb5C9dcBfae5Fb7CE3cc6F14ba4c7bDAADeaBc4 ; < tt97k6qYDd2gKh7H2n4NE3F102h54c2t7NZu94dg0iBNi16809cgy52zfHAXJbNt > > 15 // < PUTS 0,019042018263513 ; quote ; 0,00183465886875333 ; 0,00179796569137827 ; 0,0204081632653061 ; 5,6 ; 0,00176677649060946 ; 0,00190254124689721 ; -4,4 ; DA158178bacDbfea08aCBBfB772eFFBe51AfBeB9CFdeEFF5BcC12BBeEeCB7a9d ; < HOO7GMEHE70Ver7umZ7A4g6aM5u86H41Bf9FtY6jn06AEzdyKP42iS3dkcMJoUmp > > 16 // < PUTS 0,0198036989940536 ; quote ; 0,00165119298187799 ; 0,00161816912224043 ; 0,0204081632653061 ; 3,2 ; 0,00159009884154851 ; 0,00171228712220748 ; 4,8 ; ccb925bECf64EAfcbAeFc1Ed6bDcBFAC6cCAAEfcfC2CcfE01EF4Ef7A9DcffCaB ; < zh2dcMO612X4fx4OL35Z7qy01IV1D4wFC42uC3iJ2CsvMyVFx2AvN0s9Y37NvONZ > > 17 // < PUTS 0,0205653797245941 ; quote ; 0,0014860736836902 ; 0,00145635221001639 ; 0,0204081632653061 ; 4,9 ; 0,00143108895739366 ; 0,00154105840998674 ; -1,6 ; b1fcF7Db6CCEccBBEcfa4ABBEce3fC7faD0DaFcAdBdaccda7f77A7eE2D891C76 ; < idA6fVXx1V8o6OdL54otd421X1uKNhk2H3hsIkuzve8mB0fBHj2XT9z57P7D9VpI > > 18 // < PUTS 0,0213270604551346 ; quote ; 0,00133746631532118 ; 0,00131071698901475 ; 0,0204081632653061 ; 5,8 ; 0,00128798006165429 ; 0,00138695256898806 ; -6,9 ; 7CabF0f391bEaEFFD79D942eA0B4CcFbecDffB0B3e05FDd08BDfcfEfcDEFBDF9 ; < g465a3NRhVF9G3554IP1ox9G1TzZ4k2kI72i96taSsB71D1N4900d7QUNJJ7zvB4 > > 19 // < PUTS 0,0220887411856751 ; quote ; 0,00120371968378906 ; 0,00117964529011328 ; 0,0204081632653061 ; -5,1 ; 0,00115918205548887 ; 0,00124825731208926 ; -5,7 ; 248C8cfB36FCCe7f2033EbD934a8798fBFfCcBeF04dDf4DE3FCDeBA807d6BA4B ; < VfLosxfNLhuk8n2x55zfh6wscm1D67ez636VTNn4thjOnhvleY75Wi8y30rOUmIq > > 20 // < PUTS 0,0228504219162157 ; quote ; 0,00108334771541015 ; 0,00106168076110195 ; 0,0204081632653061 ; -4,3 ; 0,00104326384993998 ; 0,00112343158088033 ; 7,5 ; b5f3589131D10Bc42dd95aAA2decd0ce700FbfBABd6Cf0EFCedB5E16Bc9adCa2 ; < 9vEUC3Z75bq419zcP9jA34Y1vnI0UwbQjeM4aij982PzlX1pf0P6IATHk0mbF4Ia > > 21 // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00777520267436931 ; quote ; 0,00176032308181758 ; 0,00172511662018123 ; 0,0204081632653061 ; 1,1 ; 0,00168638951238124 ; 0,00183425665125392 ; 6,8 ; 3D6178Dc5b6A1B6DF4FbcafbeAADBa28ACcBacfAF31bADd1eEBb74FC0ABCFEbD ; < qwz4b9nclWmmHa8x7abKj0BrWwN1A4VE26rUDmdcdZv7c8NiV0oA1EwQ05iy0Y80 > > 1 // < CALLS 0,00855272294180624 ; quote ; 0,00195591453535288 ; 0,00191679624464582 ; 0,0204081632653061 ; -0,4 ; 0,00187376612486805 ; 0,0020380629458377 ; -3 ; f5d8bdf57fFDfCeF4F4fF1E4AB8DfABc626B1c3FaacCFBa1bCC0a3DAAbfa3Cab ; < 2N96aaUsu39vQ8BSIU06649574uQd7X78BJQDk2w5fh8PDRjgguV629HM3tp0nd2 > > 2 // < CALLS 0,00933024320924318 ; quote ; 0,0021732383726143 ; 0,00212977360516202 ; 0,0204081632653061 ; -5,3 ; 0,0020819623609645 ; 0,0022645143842641 ; 1,2 ; DeBdDe0FEe72d571F1894C53edFbC1aee9D26719b84E4Cd7cd5Ac23dA6BBAAfC ; < sBTd5P435XGhHr7lxTW82h5gQ694ky8Qd403x36B6xR0yTWD1L08tjZ2681I9uQx > > 3 // < CALLS 0,0101077634766801 ; quote ; 0,00241470930290477 ; 0,00236641511684668 ; 0,0204081632653061 ; -0,6 ; 0,00231329151218277 ; 0,00251612709362678 ; -9,2 ; FbaDAFFBdeBCda4C7BfDD0D3c6aD8C3BeA3F2fFdDC4e1BfA1368E0dBBD9DEC5B ; < U6038o03IKjs8VkS0pY9Ye3Cg3uVkQ139TwjNF1he3o0F3n980otdkYkC5647d5f > > 4 // < CALLS 0,010885283744117 ; quote ; 0,00268301033656087 ; 0,00262935012982965 ; 0,0204081632653061 ; -6,8 ; 0,00257032390242531 ; 0,00279569677069642 ; -9,3 ; A2F2fE0a7Fe8EFdA542c013e5B6187fac72D59D86AdCdBC1EBfbc0efdcFB3b4f ; < laeJHcVyO9Tl87N9Ly4U1opM0Y7ppS28A73fc1ZkC6nhi003nW16uay21s5v91Bt > > 5 // < CALLS 0,011662804011554 ; quote ; 0,00298112259617873 ; 0,00292150014425516 ; 0,0204081632653061 ; -3 ; 0,00285591544713922 ; 0,00310632974521824 ; 4,7 ; F9CAeAF7dabFAedF7B7bAAEEaffE0eaD1A2cDF1beF13bC5d5E1FdD4Bb8B65EE0 ; < EyiVx4Hbw8Nxw6JirLUka4BxuQ87LJdQo35BcLbs931hZEv426fA634424ffR0jo > > 6 // < CALLS 0,0124403242789909 ; quote ; 0,00331235844019859 ; 0,00324611127139462 ; 0,0204081632653061 ; -4,1 ; 0,00317323938571025 ; 0,00345147749468693 ; 5 ; CaCBCBABb1AAb2dCbefEAce57bCa5Edfb9fFdA19DbFA00aaA3AafAcaBEbdb2fE ; < 3ED63FauGztB2IyuC4fH7TnECh45VYg86k4yYDvy20an10i34v6aY76VGu5yHvA1 > > 7 // < CALLS 0,0132178445464278 ; quote ; 0,00368039826688733 ; 0,00360679030154958 ; 0,0204081632653061 ; 4,3 ; 0,00352582153967806 ; 0,00383497499409659 ; -6,6 ; 15EE06EcabeaeAEEFbfdA5fdBA9f7Fcc17A5Eaaf11607C149fd1be6c77CFd68F ; < 5Pt357bg6AvG22yOoe466nQ0X38jkZX0F4tyV6k7Kja46PeCl0gV52UTj45NVdwz > > 8 // < CALLS 0,0139953648138648 ; quote ; 0,00408933140765259 ; 0,00400754477949954 ; 0,0204081632653061 ; -5,1 ; 0,00391757948853118 ; 0,004261083326774 ; -4,2 ; fBcCbCCD494DABE13BAcb050C5edCBE50cCaA5cfDaA26C0fD5d99A0fDfca04bd ; < 4IP33iA1zMpYIjXBgc862EA6abh9VziXr66fW6RWLPJQ6JOcinN88qrQ9a4X9T4C > > 9 // < CALLS 0,0147728850813017 ; quote ; 0,00454370156405843 ; 0,00445282753277726 ; 0,0204081632653061 ; -7 ; 0,00435286609836797 ; 0,00473453702974888 ; -4,2 ; 1EaC66DfABe29BCcFbD5a1eCBcab659A3745F3cDCcEA2DCAEdEcc5eb747cE2A9 ; < zzXfsIfv2KgxYsWxd42D32HfT0630Z9Gl4WLT4Zb1EjL1rPU73EL8sK2Ze1sdN16 > > 10 // < CALLS 0,0155504053487386 ; quote ; 0,00504855729339826 ; 0,00494758614753029 ; 0,0204081632653061 ; 8,8 ; 0,00483651788707553 ; 0,00526059669972098 ; 6 ; ceBAD8aAb9200FA9D9BA6bF35Aed9ADdc6B14eaf5edafBAbCc3C2B60dC4da2d1 ; < M8G5bMQ15t8DLVw0IVdR2rl4pG634sZZv9kpE2sfOV9B7F13G1n99clu8dXQnUUc > > 11 // < CALLS 0,0163279256161756 ; quote ; 0,00454370156405843 ; 0,00445282753277726 ; 0,0204081632653061 ; 9,4 ; 0,00435286609836797 ; 0,00473453702974888 ; -3,2 ; Eb9ca4BD4d556Fe5D112AD47a7b5fFcBbb9BacCb4BAdaC0466C6Df83A26A9EeB ; < Mu908tXW1ORpS5wZ6YT9S95HwRkM9Endrb4lGrrGfKD0T854uucsGy6I0NoNVyNt > > 12 // < CALLS 0,0171054458836125 ; quote ; 0,00408933140765259 ; 0,00400754477949954 ; 0,0204081632653061 ; 4,1 ; 0,00391757948853118 ; 0,004261083326774 ; 2,3 ; 2aF86eD4F6DfCF8Db49cfdFBaE41c4Eef2AfaAbBAeeb9c4cC6CfF2c35bc0bd93 ; < j44X5HOycs7XDkb9j620rAK32p2H53JmzFGzy9lo0m97637aAHQun24Zd8fg800M > > 13 // < CALLS 0,0178829661510494 ; quote ; 0,00368039826688733 ; 0,00360679030154958 ; 0,0204081632653061 ; -7,2 ; 0,00352582153967806 ; 0,00383497499409659 ; 4,6 ; Aeb9d9bAB5EDeaFaCAeBDAFFcD3cd5AceEBaDe0ffF0Ccb641b4cB3e987eD52CF ; < volGDE84mizH3y1G5TmI80jamrlY1gXzND2LB7wsZ68CG66ZAHwS2u9pDYlRekwk > > 14 // < CALLS 0,0186604864184863 ; quote ; 0,00331235844019859 ; 0,00324611127139462 ; 0,0204081632653061 ; -8,6 ; 0,00317323938571025 ; 0,00345147749468693 ; 7,8 ; C0DFB8eDFEA9faCeecCABCeceb4BFD6F3B95afAECE7Bc8ce049FFee86463e7b2 ; < mDZH1Cs7sB5xlI0FABzAbQf89S79xC0o44vnhxGEPnXfb6uB3bJty8R8QOGTPxyT > > 15 // < CALLS 0,0194380066859233 ; quote ; 0,00298112259617873 ; 0,00292150014425516 ; 0,0204081632653061 ; 7,1 ; 0,00285591544713922 ; 0,00310632974521824 ; 2,1 ; 9ceea9b0F79FD5DF7eC6A14FbeB4Ab8Adfa4cc35cAAe1Dc6Db4D4fB7CF1E4cA0 ; < 4m58rXNXvcNW05CrVY3mI0QUgMluSNBC0qPaTgn1d8NNBt6j70G6m0Lwe8CM14xL > > 16 // < CALLS 0,0202155269533602 ; quote ; 0,00268301033656087 ; 0,00262935012982965 ; 0,0204081632653061 ; -3,7 ; 0,00257032390242531 ; 0,00279569677069642 ; 7,3 ; 80b1eb5dD7D6dFBc7B51cf9B9C3fE2eb9A6eaB7Fe71C46DCD2E1a0faeCA7Efe1 ; < 0GR8OLELn0Q1hVI0QJP4g50tgOq6Yy7Qo32FmZAi98Ob7MtS8HdTrx1e9kxckDhs > > 17 // < CALLS 0,0209930472207971 ; quote ; 0,00241470930290477 ; 0,00236641511684668 ; 0,0204081632653061 ; -8 ; 0,00231329151218277 ; 0,00251612709362678 ; -9,9 ; 84f9fc00e2FdEA9945Fd3C8Fe087FB8ebdF0d133EC46542cCe8e79BA9DABDaab ; < 34I6P7SWuCkZ2M0k8Ui4h8U0CSI92jo1f4OtcPsD4ubWE0Eh081WD2yP81FK24S9 > > 18 // < CALLS 0,0217705674882341 ; quote ; 0,0021732383726143 ; 0,00212977360516202 ; 0,0204081632653061 ; -6,6 ; 0,0020819623609645 ; 0,0022645143842641 ; 7,1 ; D4aeb0374A12dfBC6DFfA6bcDf62bbE234C5e14b6FbDBFDcDa84BdaF2DcaFa4d ; < svN9314t4BWecAvGqb6eZSeA91AF6JJdxUDbN09PeaDzC53QmqETTlWR5X9AuKJ4 > > 19 // < CALLS 0,022548087755671 ; quote ; 0,00195591453535288 ; 0,00191679624464582 ; 0,0204081632653061 ; 3,7 ; 0,00187376612486805 ; 0,0020380629458377 ; -5,7 ; 2A5289a437FDCeDE41E8fFC4fe86AFF9dd84CAa5c8E0F9C68f4cd3d485Ceb68c ; < SST37jQ3cXalNB27U4846H0Xe53i9Ez7orl3JR7qgD5WZ2K1gm5qX776bp5Or2EW > > 20 // < CALLS 0,0233256080231079 ; quote ; 0,00176032308181758 ; 0,00172511662018123 ; 0,0204081632653061 ; -8 ; 0,00168638951238124 ; 0,00183425665125392 ; -8,7 ; dCCD0c0bDd55F8eBc1Cdb4ed32EabA7C9b7EfFdEbE6dcd43aaDCADE480dccfF4 ; < KM89C0R0T7L4JuIHIJ1vO38T3wW12QS9257L7H82v9CWZv4JGYM80k70oY36Qcb1 > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00777520267436931 ; quote ; 0,00176032308181758 ; 0,00172511662018123 ; 0,0204081632653061 ; 4 ; 0,00168638951238124 ; 0,00183425665125392 ; 9,9 ; 2EFEAC3aff2A5CD87CDF1dE2B7AAFCd4CeE390Ee7cDf1EAcdF8e20aBe9F7d009 ; < 5C7v5Afjo2XDwR4k3W05iJIAanWWs81IaE63s9Wc4gpU5t7MSyD9hlinWE91L76R > > 1 // < PUTS 0,00855272294180624 ; quote ; 0,00195591453535288 ; 0,00191679624464582 ; 0,0204081632653061 ; 3,3 ; 0,00187376612486805 ; 0,0020380629458377 ; -8,5 ; Dc95aE7aAFc01243e1ccCcACaB601b6843a3DAD225ba92E6CcddbfAf4ce8EE6B ; < 4oB807G4PJB31rs1U5oGX07uJZxApP01fUG6N34541c4363YBgMgllt6g886405e > > 2 // < PUTS 0,00933024320924318 ; quote ; 0,0021732383726143 ; 0,00212977360516202 ; 0,0204081632653061 ; -5,3 ; 0,0020819623609645 ; 0,0022645143842641 ; -8,8 ; bcEEaf2ABbF91bcF1dbFAcf4d421eCcbbBbBeb1BDaf330DfBaE4cde51eEA82Ca ; < 5I2raF3bjm29K30N2y4zqH7H7LY19Czn50e3K6UW1i0hbrWmfHw4gFYY583C1Z5L > > 3 // < PUTS 0,0101077634766801 ; quote ; 0,00241470930290477 ; 0,00236641511684668 ; 0,0204081632653061 ; -2,1 ; 0,00231329151218277 ; 0,00251612709362678 ; -8,3 ; deAAEbdb0dBD26cbeba9BBDC71b6DDF9c8cFbAA6dEb6cbbEBa1DDFE9dc57f7eF ; < WP5EOLADJmIo2A3eTKN7znDrRRIcK6dDN690u3yf5lvPzQ4Byg6C4k2iuQF28Q38 > > 4 // < PUTS 0,010885283744117 ; quote ; 0,00268301033656087 ; 0,00262935012982965 ; 0,0204081632653061 ; -0,8 ; 0,00257032390242531 ; 0,00279569677069642 ; 0,5 ; E5A59E0EE726fD90Fa6AaAAcf8CA3eC2Ba0C7f6b8b2EE6b5FA16B2De42ced4fb ; < uD9k91XXF9q0ZvF17lgxpVWhmQQy3C2QFl7MU3uy0p9KUcQcRwrx1PFGlt7W06Y6 > > 5 // < PUTS 0,011662804011554 ; quote ; 0,00298112259617873 ; 0,00292150014425516 ; 0,0204081632653061 ; 9,8 ; 0,00285591544713922 ; 0,00310632974521824 ; 4,7 ; A0dCf76ee7FDDA03739Fa0Af5fb5008CABBb5c2C18aD3adB0E1Ab9EdAcaBAaf4 ; < irecGgv0FB8c731SCMQ4Ee3L5eXyM3D7LAmC3s9KH4i3R8rjWiao2TP76E5V1wER > > 6 // < PUTS 0,0124403242789909 ; quote ; 0,00331235844019859 ; 0,00324611127139462 ; 0,0204081632653061 ; 0,1 ; 0,00317323938571025 ; 0,00345147749468693 ; -1 ; 711bFd2edcE2A8FdBc7AF0310CEEAe822a8ceaFEd3d27FAeE07CC0dF86A7da1D ; < haAD65D1dY51fIJJBnT2l3RKb9Fk91GYX0hn1096EBA2jAA1bZ93Mp2AUSx1Rp4m > > 7 // < PUTS 0,0132178445464278 ; quote ; 0,00368039826688733 ; 0,00360679030154958 ; 0,0204081632653061 ; 9,9 ; 0,00352582153967806 ; 0,00383497499409659 ; -8,6 ; DDadde3EA13dD2BebbB0c0d0A14AfdCa6bFC4EA2FeB63E0def0a2Ff7de89DDEB ; < 65r7ZJqx1VEd1P8Qq0Fpa5LCQ6BY3dPZjvp7k20Jmv4C4xpQU6piC7oT554xm60I > > 8 // < PUTS 0,0139953648138648 ; quote ; 0,00408933140765259 ; 0,00400754477949954 ; 0,0204081632653061 ; -0,4 ; 0,00391757948853118 ; 0,004261083326774 ; 2,5 ; a4ce2fcEEDcAfF0aAccd2bdFC8AeeC9ee6DaAb32Cb02E3149ebe714BbE01cBFF ; < 7161PSAZmkm7EmI1TDwW7m6DN81Do1l5ZBw7M80k83F7g4lAMKLt1QKa1AmOIPz0 > > 9 // < PUTS 0,0147728850813017 ; quote ; 0,00454370156405843 ; 0,00445282753277726 ; 0,0204081632653061 ; -8,1 ; 0,00435286609836797 ; 0,00473453702974888 ; 4,8 ; dAd2dC01dEff4FfdA8DBbc8FCCc0ECF2Cf655cB997840fD291FaacEcbFf3C3cF ; < H216c542I6ROSe3Yev0oMXKCn755YbrBsW7vA0u24KZS06sYmZtCXBcxodUy40jd > > 10 // < PUTS 0,0155504053487386 ; quote ; 0,00504855729339826 ; 0,00494758614753029 ; 0,0204081632653061 ; -8,9 ; 0,00483651788707553 ; 0,00526059669972098 ; -2,8 ; F1aBcf10AdBE4BBeD3c8Afbbb2EaEe6DF3dFFCeA5DD2e02Feda210F8Ab2FBD9e ; < 1o5L0ha54bD1iz86KZ5Q424IDS0v38PPLCI4ePlXC5mDoYE4306nShDyby53FC9Z > > 11 // < PUTS 0,0163279256161756 ; quote ; 0,00454370156405843 ; 0,00445282753277726 ; 0,0204081632653061 ; 6,3 ; 0,00435286609836797 ; 0,00473453702974888 ; 3,2 ; baDcA1dea65D35aA73be3Cb2e3bAb1aFaABE6a4Ee2aA68CeC0E2B78Ae6d5A3fD ; < rcajo1Mhiaj4sm5Ek930C3v5mkTfAT641szOkpQAEMdL7FEu15244Y85RCM51c3x > > 12 // < PUTS 0,0171054458836125 ; quote ; 0,00408933140765259 ; 0,00400754477949954 ; 0,0204081632653061 ; 5,8 ; 0,00391757948853118 ; 0,004261083326774 ; -8,9 ; 06E97a9DA1CA7f7f931DD5cEFeCcb5EbA1FA49Ed0cB39eB1f76cedef58DFabaf ; < bEj2FHeoIIlBbjvsHR61GahSrHZ9OJ5942eDlNVKUkC38Q4feT75qdpU3F7oZA91 > > 13 // < PUTS 0,0178829661510494 ; quote ; 0,00368039826688733 ; 0,00360679030154958 ; 0,0204081632653061 ; 3,3 ; 0,00352582153967806 ; 0,00383497499409659 ; 9,9 ; 0dBE790B7Beea899Ce9eac5d8bCB7Da7cfaea82CE97d7FCC4eeCCeeDF62dBb33 ; < Esl0TAx3RjP72vcC7dfrhz9CHLoPiVhC8nsBE1L2PJKrIyi0O04SW6GAQTAq3PeP > > 14 // < PUTS 0,0186604864184863 ; quote ; 0,00331235844019859 ; 0,00324611127139462 ; 0,0204081632653061 ; 6,3 ; 0,00317323938571025 ; 0,00345147749468693 ; -8,9 ; ADDAF763c7CEaff685617dD1cD4a635aFCeF66383DCaF71E0cdDdb8ABBa6AA6e ; < aFoRJtL5HgFx18fr37EvYAjiQuNWKa99LFc57I36Sj3r0xtG4HZ67vQgClcEGrg2 > > 15 // < PUTS 0,0194380066859233 ; quote ; 0,00298112259617873 ; 0,00292150014425516 ; 0,0204081632653061 ; -1,8 ; 0,00285591544713922 ; 0,00310632974521824 ; -1,4 ; aCc8DCCeEA0aDca9F9BC0Bff3d71cccecC3D1873EECAFBaB55ACbCf8b730cBd0 ; < 5H0fPMDqkRdHZd7OH155BBKJ1T9OD6OC74t7Ut3ewfEd73ohsDMi06F3A0Qf3St3 > > 16 // < PUTS 0,0202155269533602 ; quote ; 0,00268301033656087 ; 0,00262935012982965 ; 0,0204081632653061 ; 9,5 ; 0,00257032390242531 ; 0,00279569677069642 ; 5,8 ; EBBCdd3C1cB5AeC4E2b4aaD78Eca6f8eDBc4AeC59C64Ddde9bbAf9B3c9e13ba3 ; < 85tg79b5xE0jC5WK7K23P88Ao5V75hIE38mkiT22RuC0nQ5p3wGeG0daUQ1JiVd3 > > 17 // < PUTS 0,0209930472207971 ; quote ; 0,00241470930290477 ; 0,00236641511684668 ; 0,0204081632653061 ; -9,1 ; 0,00231329151218277 ; 0,00251612709362678 ; -4,2 ; 87FCFa03c0dAACCA6bbA8FE86f95fdABF547FA3ECce46CDb8A7DeFCDae1BE7fa ; < 1ram4njIcB0928qCKVjZQ1Kwh6409SsY4IwByc6gqvF2K9wG57YNY3zW4MVk1W6Y > > 18 // < PUTS 0,0217705674882341 ; quote ; 0,0021732383726143 ; 0,00212977360516202 ; 0,0204081632653061 ; 7,5 ; 0,0020819623609645 ; 0,0022645143842641 ; 0 ; bAFBBB1Caf7B9113a3dF81EEf9F96Dfa1bBB6A0d51ea0aAA2Dba49F5FFE2CAcA ; < 56RElap0A33zO0KvIm1X2BFuUaFezOFBp71fYRK9UZBWSvW01YGqnVWbuULRk5bU > > 19 // < PUTS 0,022548087755671 ; quote ; 0,00195591453535288 ; 0,00191679624464582 ; 0,0204081632653061 ; -5 ; 0,00187376612486805 ; 0,0020380629458377 ; -4 ; C161eabdeA18E93Fc999FcE1Bd04D1A9Aa2caAAC5aaFBDECe4d4dCC2b1FbDde4 ; < 85vN38oNsVZoyJdV5gI0CNB37l007fsj6ULqw63IrRSM7Z2ex10vlnEv44pQF8C6 > > 20 // < PUTS 0,0233256080231079 ; quote ; 0,00176032308181758 ; 0,00172511662018123 ; 0,0204081632653061 ; -4,4 ; 0,00168638951238124 ; 0,00183425665125392 ; 7,6 ; 2eCC8aEd7C6B3dCcd4D9bfC9AaCAA9AdbA3f9bD6a6db72D0Dbe6C1a26F9FaecA ; < 7T6pCp0l6yrj2vr3tmGMlZLqF4cu2Z3wzVXZ5iTd90jlg40Vftdd517yD3W2T90i > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00665509714736838 ; quote ; 0,000102431001937635 ; 0,000100382381898883 ; 0,0204081632653061 ; 3,4 ; 0,0000998702268891944 ; 0,000104991776986076 ; 7,4 ; dfBFE3ADADaCDB2FdBF7cddBAbAfC3cdC6DdBcaC3B23dFdBfADFAEe141DC5af4 ; < 3d42cnjjCnuTznsAqA25m0dumKWaK5ZgiJ28JhqqARJplD0g7KOdpXs3K1ec5Zc1 > > 1 // < CALLS 0,00732060686210522 ; quote ; 0,00011381222437515 ; 0,000111535979887647 ; 0,0204081632653061 ; -6,4 ; 0,000110966918765772 ; 0,000116657529984529 ; 9,4 ; bc8C0fcAEBFaeF191BFBAdFE7DF7B4AA85223A562eC9F5FC2FEc4cdAc3BfFdfd ; < 88O7BxLT2cYJDWKgmPvDL31hHjO6Gt71yIyaH5O5gqiB5741397uA5Dp6sMP44X8 > > 2 // < CALLS 0,00798611657684206 ; quote ; 0,0001264580270835 ; 0,00012392886654183 ; 0,0204081632653061 ; 8,1 ; 0,000123296576406413 ; 0,000129619477760588 ; 2,2 ; ECc4fF966aA6a8f6EBdcA7aD4BeEBEbcdA4AAAc560BbFCFfDEe4ceDdE89a3d5A ; < 06NVt2Fb4jMbN669BgI3KD98a52LY8Ud6pH7t75wsFlP2irq7qSV6V12q5a5tBeq > > 3 // < CALLS 0,0086516262915789 ; quote ; 0,000140508918981667 ; 0,000137698740602034 ; 0,0204081632653061 ; -9 ; 0,000136996196007125 ; 0,000144021641956209 ; -6 ; cC2f73516Fb82eD6be8b2f5EbeCfeaC3bcccC3FD66b9aD1DDFD2CFaEb45f58e9 ; < R50WR2m4146W5Ie5K75q09FO5t1SOuWF5VZi7ssp0oHRrR0i5pt59wZ3vR0U4vMf > > 4 // < CALLS 0,00931713600631574 ; quote ; 0,000156121021090741 ; 0,000152998600668926 ; 0,0204081632653061 ; 1,4 ; 0,000152217995563472 ; 0,000160024046618009 ; -7,7 ; c5dBC1Ff8eCDC17A9a7c5cFf6fdBdaDABeDbB6C3BeDCcCCb8d77E7befbbFaAb9 ; < 6K08mW7W5b43KSG1wJtqS7kR047UXzUtG1h9IVS4364KktvY2OJInQUgfT7opl8K > > 5 // < CALLS 0,00998264572105258 ; quote ; 0,000173467801211935 ; 0,000169998445187696 ; 0,0204081632653061 ; -5,3 ; 0,000169131106181636 ; 0,000177804496242233 ; 6,8 ; bc415CFBce2aad7ACFab4BfCBB3dfEAEEFDBBd2DF0aB1Cd46500f155a4ECdABd ; < Q41SyD9wktT0HH4UjtAq5s172fOX7u0IxMv51Z2jWcfT6iwxZBOZ98y1nl2qu2qx > > 6 // < CALLS 0,0106481554357894 ; quote ; 0,000192742001346594 ; 0,000188887161319662 ; 0,0204081632653061 ; 3,5 ; 0,000187923451312929 ; 0,000197560551380258 ; 7,5 ; 5cdacC8E0CcDe638Abf41c9Ae4FFCb8FbF192CfDaDc6E7Ee6dDeFe8FcddEddDb ; < QuqkA4Cth80C7EnRE97TUToUtR4K9iMRrLAoN9mp25ED4x6Pv1PhmZUU91DfdEOq > > 7 // < CALLS 0,0113136651505263 ; quote ; 0,000214157779273994 ; 0,000209874623688514 ; 0,0204081632653061 ; -9,4 ; 0,000208803834792144 ; 0,000219511723755843 ; 4,9 ; bDfdbf950eC027dDA84327669e7Ad593CFFAa0F3CFdFadA80A00aedAB3b2Fe3C ; < eAC72h6950d9v6lXw3YQdNyo0m5k5g7uU3ejM1T3CqFM17Lx4sMZ7Ep3Eveyk9G4 > > 8 // < CALLS 0,0119791748652631 ; quote ; 0,000237953088082215 ; 0,000233194026320571 ; 0,0204081632653061 ; -1,1 ; 0,00023200426088016 ; 0,000243901915284271 ; -3,4 ; bF823FB54976AC8b2C5A3dad9d9EaCDcF0c3E1EF448ba9FAdc8Cf70B11EBDA5D ; < oX2Pao9Wz9qvvWmv7KiqQ8m4v2wcm4dLxF40QEh20dDk5U2hZ5Gv2VAi0N57BEqe > > 9 // < CALLS 0,0126446845799999 ; quote ; 0,00026439232009135 ; 0,000259104473689523 ; 0,0204081632653061 ; 0,8 ; 0,000257782512089066 ; 0,000271002128093634 ; -2,8 ; 4e9b5cDcb4e78Ea3aDEC6bd6A9ABb84afBcDFBcFBEcbeb5ffae3F8af9eddD5e8 ; < x3q9F8Qw703zL8yHtN5rjFa7RYiD7tmd0imt92JpE7m6ki08dIqEpJTEY1i74x4x > > 10 // < CALLS 0,0133101942947368 ; quote ; 0,000293769244545945 ; 0,000287893859655026 ; 0,0204081632653061 ; -8,1 ; 0,000286425013432296 ; 0,000301113475659593 ; 9,1 ; d9dc45df9DDCDf39e90dF9db7EBb2d9CcBC5E15bCbDc2Ec3bB1fEdbf3c61fEdB ; < 17589185dsBg64Ti6myxvp1uss8pUPO2JGt3ayl5vbctnZbE756tT5q6Mq0H7Zlk > > 11 // < CALLS 0,0139757040094736 ; quote ; 0,00026439232009135 ; 0,000259104473689523 ; 0,0204081632653061 ; -6,4 ; 0,000257782512089066 ; 0,000271002128093634 ; 0,2 ; 6fF04bd0CdfE2A77aF7FB9917BCf99a190853efcF1b4eeD6a8E0BD2CCeC4a44a ; < 902124ET1OExmmju4gbWu766B3BPCQWGN7qxW1t2037n8WQ5gRxmsZa01EQgeVxj > > 12 // < CALLS 0,0146412137242104 ; quote ; 0,000237953088082215 ; 0,000233194026320571 ; 0,0204081632653061 ; 7,6 ; 0,00023200426088016 ; 0,000243901915284271 ; -3,5 ; 2A1CFeC1DED76dFcDce64EaBB6c2BFAbBEe69bEDc3dCbCFd4cfEfebFdEBC644C ; < C7u9dJ9LcL57GZf40X3ZrH8s0KpO80G85KO3rRSlOuj8TwkAlSdq5C8gR5J0R1PM > > 13 // < CALLS 0,0153067234389473 ; quote ; 0,000214157779273994 ; 0,000209874623688514 ; 0,0204081632653061 ; -6,9 ; 0,000208803834792144 ; 0,000219511723755843 ; 0,5 ; 4abeDdADb01dDE33eeDBdFf5ADbE0E3FeBaBAAb50cACb9fc3f7baCB3c952Dc6a ; < 9MFxGb0Biuz11T0r0ISAt74B3224v97HdX7UhxsnxRnx1n6r0hqH9XZ90msBKVKf > > 14 // < CALLS 0,0159722331536841 ; quote ; 0,000192742001346594 ; 0,000188887161319662 ; 0,0204081632653061 ; 5,1 ; 0,000187923451312929 ; 0,000197560551380258 ; 0,1 ; Cc42cEaE4FDFeD3DA436eCb8eBFC2eEf2f3f6Caa4c54CFbCa5C57bceA8cf327E ; < 0nV1qIP7H1l7r5F10m3OAMk1o4Lro1lJzD6Cije1x37IC69MvOBtU4ID70MO9Qsy > > 15 // < CALLS 0,016637742868421 ; quote ; 0,000173467801211935 ; 0,000169998445187696 ; 0,0204081632653061 ; -0,4 ; 0,000169131106181636 ; 0,000177804496242233 ; 8,3 ; FB2AFEBF85A5A1dFA7c3F1D66b9f66abaC9EE9B0fC7B45FceeeF27bcCC4c9Cc5 ; < 2DZq8qL3g3f77580g1Y16kI6E988VOqXyxaMTK6pm38y36zSM6PT9FYRlQkQdtlG > > 16 // < CALLS 0,0173032525831578 ; quote ; 0,000156121021090741 ; 0,000152998600668926 ; 0,0204081632653061 ; 4,6 ; 0,000152217995563472 ; 0,000160024046618009 ; 7,2 ; 5a3e1Cf53F9aae2AFfaffcEBDD1aCdDe0a0dc2f795Fe499dfb3AdB822Cdb49e8 ; < tY7szKAK2hH3Hah6wU4e30zTh15LFr5j182xL78z7L4784vgMt5p50033v9E2R5k > > 17 // < CALLS 0,0179687622978946 ; quote ; 0,000140508918981667 ; 0,000137698740602034 ; 0,0204081632653061 ; -7,5 ; 0,000136996196007125 ; 0,000144021641956209 ; 1,6 ; f9f5bC4DA7e16e2d9eED0fcc739450191fb802E87842bBEd09ABde2EEBcf6fc9 ; < JiTz60bmim7cuuC1V5BFF3lbTAcfqRN35076W6fkQ3Vjk8ug8jXOC177I2qOE4gV > > 18 // < CALLS 0,0186342720126315 ; quote ; 0,0001264580270835 ; 0,00012392886654183 ; 0,0204081632653061 ; -1,1 ; 0,000123296576406413 ; 0,000129619477760588 ; -5,5 ; aCAd60Caf353FccBC7cd6D5dfbDbD1AE040FafD51b33A8DBcCa09E92FAbe0aCF ; < 02724VSxz3CFCeZA7o2654UTbtNU4ni4NXh8Cc844es7LI87VG02DDH8rkP5g1RE > > 19 // < CALLS 0,0192997817273683 ; quote ; 0,00011381222437515 ; 0,000111535979887647 ; 0,0204081632653061 ; -9,6 ; 0,000110966918765772 ; 0,000116657529984529 ; 1,4 ; Be6F85758ACDAd9D8cE2DcBbCbAdfc08fC7f2Ac64CeAfdbF8E4a6FD23AbEEF9e ; < 8fpcL7tpi58EI2mn1sO2157JY80w0AlBBnha9zpoB0L6pez2vMw5t6k6VX2y5qC3 > > 20 // < CALLS 0,0199652914421052 ; quote ; 0,000102431001937635 ; 0,000100382381898883 ; 0,0204081632653061 ; -9,3 ; 0,0000998702268891944 ; 0,000104991776986076 ; -6,5 ; EaB62FDFDC14E0Ae3dF9aecaDeB0aC02E58Effbac811F26Dc5ad2EE7c2FB2Fbd ; < mXiZq8CCib7MSXzQ8LQKmdV8GjTnPda3fpSgke53BI63sNjpHLBQL76Hn8SE8v3q > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00665509714736838 ; quote ; 0,000102431001937635 ; 0,000100382381898883 ; 0,0204081632653061 ; 3,6 ; 0,0000998702268891944 ; 0,000104991776986076 ; -0,1 ; CB0a5DaadEfAc7f9Fe81FBf1dD7bD0BAc8EF4BEf3DF2820b6BBcF1Bb7b48abCD ; < 379S11RK4vaP4mY91sk5BZawY90GBP8emItDIn9R5Q6q031v5n3o6Q7n0S3PLgB5 > > 1 // < PUTS 0,00732060686210522 ; quote ; 0,00011381222437515 ; 0,000111535979887647 ; 0,0204081632653061 ; 3,8 ; 0,000110966918765772 ; 0,000116657529984529 ; -9,2 ; f0cF0EaC9cEaC5Adcdbd3ff14D9daC674e2D929d1B4dE9FadfD9cc64EbddEDDe ; < U060ZIqP87614A6573M2Vi77nZ8Ex5x45m1GPE8L4de548f2Af1aXj79yk3PWod2 > > 2 // < PUTS 0,00798611657684206 ; quote ; 0,0001264580270835 ; 0,00012392886654183 ; 0,0204081632653061 ; 3,8 ; 0,000123296576406413 ; 0,000129619477760588 ; -3,4 ; fcCe9CCFA7Aa1FEfdDDecEaBfCFd72ffCe45f4BB4Ba9BEE8Dc14eD45c8CCFfe2 ; < tEZCyC0B77n816InaRxmYhuEM9nchM2vQ3qdAXi9318l4r6f56n4pM7nN9io07kJ > > 3 // < PUTS 0,0086516262915789 ; quote ; 0,000140508918981667 ; 0,000137698740602034 ; 0,0204081632653061 ; 8,7 ; 0,000136996196007125 ; 0,000144021641956209 ; -1,2 ; DFaCF58EACE2cCdAcd9d9D4BbaA6be1BCd7db13DEd7B0B7A1e63Bb1c8eAEfFCB ; < iMUpaxgN11FBq2eM2ZV2Wei59IFv1LhU9H8ICGX2tX006XUICm1IW3YWZK8u9Bq8 > > 4 // < PUTS 0,00931713600631574 ; quote ; 0,000156121021090741 ; 0,000152998600668926 ; 0,0204081632653061 ; 9,2 ; 0,000152217995563472 ; 0,000160024046618009 ; -8,5 ; 8A0Ed83ef9ffEFCCF7C5fCeBf5f72AC3BaF398571FADca8a6AceABEFDa0B9B81 ; < U5p22ZT65u1Owg3r3aV134051x4bSb8E2DWyD6A0w4hK1ns20T12EvGGfW03ilyN > > 5 // < PUTS 0,00998264572105258 ; quote ; 0,000173467801211935 ; 0,000169998445187696 ; 0,0204081632653061 ; 5,9 ; 0,000169131106181636 ; 0,000177804496242233 ; -1 ; AcA8fAecbFF9BEd0bda51C5EBa80a07D229AbfCFB0Da2Ad4Ae28F2AD7dfAC0Be ; < b5w8ZY3ZQ6P8HXuS029w9nWYxSSGLv81S7J8yvN7M523xHoRet989U99i0lPzD6m > > 6 // < PUTS 0,0106481554357894 ; quote ; 0,000192742001346594 ; 0,000188887161319662 ; 0,0204081632653061 ; 4,4 ; 0,000187923451312929 ; 0,000197560551380258 ; -7,6 ; cBaE2dC0Eb3590DF6e4Bb1e89AAAceEaC3d7dceCBeB0cE7BBfcCbCDbF5df1B5B ; < FghlG40o2ie2H84w1Cwmon407hpX4Ts0NhP9N9e5xzWB833l2nO7k44I75185b5V > > 7 // < PUTS 0,0113136651505263 ; quote ; 0,000214157779273994 ; 0,000209874623688514 ; 0,0204081632653061 ; 0,9 ; 0,000208803834792144 ; 0,000219511723755843 ; 9,4 ; DFB8FA58de2Bd3ec6ea8eFb8A7DFbAfcB4f2bC9fBd7d2809c9aAdd03cceCDFfC ; < 2SK2piOFIjcC4Hxvjcf5V97LCA9y9hlQTeysk4i1raagZMMkQ6d8S88cyZ0L6369 > > 8 // < PUTS 0,0119791748652631 ; quote ; 0,000237953088082215 ; 0,000233194026320571 ; 0,0204081632653061 ; -7,1 ; 0,00023200426088016 ; 0,000243901915284271 ; -1 ; 3Bb4Df1D4DAb1aC4CbCcfBb97BFf1A9CDEAebd280E5bed4ea9FeE1dce50FC8cD ; < 63N8qwSFidYLtY06I0SdLfQnML06cNImjt0NFd50SNKtMDdDj08R81nD7mlXNy2l > > 9 // < PUTS 0,0126446845799999 ; quote ; 0,00026439232009135 ; 0,000259104473689523 ; 0,0204081632653061 ; 7,7 ; 0,000257782512089066 ; 0,000271002128093634 ; -8,3 ; ACA2Ca8b1bAcbb7bAD04e3EefB9bF237e5eCbFBB78B8cf0953A1D3Afee7bDBae ; < M357foLDsBiU4LZLPGx468lCEZ6QCD7Tq4Jr60b3aWa4bXrybEZgQsfJMJpyAJpo > > 10 // < PUTS 0,0133101942947368 ; quote ; 0,000293769244545945 ; 0,000287893859655026 ; 0,0204081632653061 ; -1,8 ; 0,000286425013432296 ; 0,000301113475659593 ; -9,2 ; D491aF14f4D6Afb5F4dc1CfC2cbCacd2decAAbEbb08A75B1AF3FAFc1cDabdEdC ; < GQ6D30Q4dqidnNFqvQHsrd5l2Dfc4M1Ao43X3W7U9G6Ewe5L3RF2v12Mlx2UBftM > > 11 // < PUTS 0,0139757040094736 ; quote ; 0,00026439232009135 ; 0,000259104473689523 ; 0,0204081632653061 ; -4 ; 0,000257782512089066 ; 0,000271002128093634 ; -7,2 ; 15dFD0afCB4A9d41604fCEB5fD3C9baebFda3D5B74CCbaeEadCAC57Eaaaa5b32 ; < 7nBQVIsdBZc8zEL3tnIkw31pa5zknzoz6w6sLcO8voT466E8HR3ao448AdFaM70J > > 12 // < PUTS 0,0146412137242104 ; quote ; 0,000237953088082215 ; 0,000233194026320571 ; 0,0204081632653061 ; -5,2 ; 0,00023200426088016 ; 0,000243901915284271 ; -8,6 ; cB0b06ab75C2a0f5AbcA37cBEfFcc2fBaF7e8b3Eef1Ac7FfaaD0a7Fd1b1f36fe ; < zascLqI5Q3iFZ39294gh91g2GPGn05N2ie59kfNKPYFGa3nF2B4glI46ra2c3O78 > > 13 // < PUTS 0,0153067234389473 ; quote ; 0,000214157779273994 ; 0,000209874623688514 ; 0,0204081632653061 ; -7,4 ; 0,000208803834792144 ; 0,000219511723755843 ; 0,5 ; 6b7FdA8a2CdF653D5eCF0BCE59D0fee0Dcbedb30FB6D0EC96d5FeddDabdcfB5d ; < vX1qn2F2r1wEC76kr9ZpUk6Xs36rG4pz58QuZqjzpzz91Uz7s5z2f2960dH7ght1 > > 14 // < PUTS 0,0159722331536841 ; quote ; 0,000192742001346594 ; 0,000188887161319662 ; 0,0204081632653061 ; 7,9 ; 0,000187923451312929 ; 0,000197560551380258 ; -4,7 ; D9BC4AD593F2bf9e0CEf9dEFFfbCBb3a5e4ebecCBA76eBc6Da5E50EBab6D48eC ; < iM97yx229373Kg1Cc70GpaDsHT5ur0578AqL9KmI5czJW4UhjDz76x3nR28r4H01 > > 15 // < PUTS 0,016637742868421 ; quote ; 0,000173467801211935 ; 0,000169998445187696 ; 0,0204081632653061 ; 4,8 ; 0,000169131106181636 ; 0,000177804496242233 ; -8,9 ; 0B989E3CeDfeD7aAcbBfBB6B788B6Ca15b76BcAcADEfE0F27FACBdFEdFB7ffbf ; < ZAEIoFyMl38c90AP1PCEpw7O79CvMUu94Z1wk3S89wzb3Y75I42y223B1u2BRA54 > > 16 // < PUTS 0,0173032525831578 ; quote ; 0,000156121021090741 ; 0,000152998600668926 ; 0,0204081632653061 ; -9,2 ; 0,000152217995563472 ; 0,000160024046618009 ; 3,2 ; dBbDBDaBCcABfb64Ebb5AbdDE3D2C3de94ac34Dc5Df349fdfbda9A6Be9FCCDdc ; < w1ljFmFImdzj8C45i1FCrMVpD3Qf6jRu692luGyUEa9Ugwk375yJ0rRwLK15XOj2 > > 17 // < PUTS 0,0179687622978946 ; quote ; 0,000140508918981667 ; 0,000137698740602034 ; 0,0204081632653061 ; -6,5 ; 0,000136996196007125 ; 0,000144021641956209 ; 2,4 ; Ff87b9F4Cb211ddce8bF98f7FfCbfc9fbfDF6D9bcd2Dbf98e90fb8DBcEb7dEa6 ; < 4H2EY5uwwNq48sY6pMA14M0f5N17vgJouS4ffH9TeGUV31tcGM9UdjDZ49vPMbzv > > 18 // < PUTS 0,0186342720126315 ; quote ; 0,0001264580270835 ; 0,00012392886654183 ; 0,0204081632653061 ; 4,3 ; 0,000123296576406413 ; 0,000129619477760588 ; -0,2 ; eBdD2fCbE7ac5cc5dd1cAFa5A855AfF3f6E39EabE43aAce4ADeDDcDF00Be3CFA ; < 2lDD9kuyMVrpvcl7rYBmPW095oqEAXdprPVGBq98TjMt9s8cB201n117F9O35zV5 > > 19 // < PUTS 0,0192997817273683 ; quote ; 0,00011381222437515 ; 0,000111535979887647 ; 0,0204081632653061 ; -6,7 ; 0,000110966918765772 ; 0,000116657529984529 ; 9,5 ; 140DcE3bE8542ECeB6Ea4DAaC6E2A7d43a8debbDDEc96b8a1ba70Bf96DDECfb8 ; < 5cl56f7y9I78C3u3XqKLRmfjZCRwZ7X7npv2f20AXBig3455h7l5j9Y75ikX0E6j > > 20 // < PUTS 0,0199652914421052 ; quote ; 0,000102431001937635 ; 0,000100382381898883 ; 0,0204081632653061 ; -0,4 ; 0,0000998702268891944 ; 0,000104991776986076 ; -1,9 ; EeD5Eb9eA41c0cdeBfe0bdEd5D60c5eA9DFeDfFcadFD9fAAEE0Df87F6fAddbB4 ; < 3zG4vb71zOOyalfjmev1UMU8vnI6f545u743IDqN041iLCD8TEq3yr0355TRR4m3 > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00666235450285885 ; quote ; 0,000216235585354108 ; 0,000211910873647026 ; 0,0204081632653061 ; 7,7 ; 0,000209748517793485 ; 0,000222722652914731 ; 2,3 ; 9e5fcfE5A31ABC2d325D43bDF5cFAaa9e9efDd6ac10239BDB0CEFcCb2DfbEEce ; < tZRMG54icG0e9WH92Zyq65p5jFlb2xtD1YM88iPbeJhwz1htWN78sddMe2pH42wx > > 1 // < CALLS 0,00732858995314473 ; quote ; 0,000240261761504565 ; 0,000235456526274474 ; 0,0204081632653061 ; -9,1 ; 0,000233053908659428 ; 0,000247469614349702 ; -8,7 ; 4fC17adb5aBEFBBf2BCeE7eCc9ef3C178B095FDF0BDb7bBadd4Ffbeedc9DC6D1 ; < IscQ95m4n5StEA720vSrSxWC5i9W2FoNJ1OMYuA86nooGZFjh86820ZBc6G2HYs6 > > 2 // < CALLS 0,00799482540343062 ; quote ; 0,000266957512782849 ; 0,000261618362527192 ; 0,0204081632653061 ; -5 ; 0,000258948787399364 ; 0,000274966238166334 ; 3,9 ; 5daE3aFdA18defefef3CDF649E4F5Aa0beD4EeAAeBECF8CFb4EEEfAb1Be8D2c6 ; < t7Gb3AZwewKlM0h3Tb49lB8a2fgjPRo9M6ul6juPb7AT78t740W3zaR8W3MZfj10 > > 3 // < CALLS 0,0086610608537165 ; quote ; 0,000296619458647611 ; 0,000290687069474659 ; 0,0204081632653061 ; 9,2 ; 0,000287720874888183 ; 0,000305518042407039 ; -3,6 ; ffFCf193fCdfCF80bAEE01fdbEbfB9C4DbcCC49edFC23ec4FdD8BF1DF0fFc9ed ; < 3MDMbOalber3965ja6wq2G4FYSC7r60yPX2dSLdsNTK4PrscS4wdZ1DXirL72O8P > > 4 // < CALLS 0,00932729630400238 ; quote ; 0,000329577176275123 ; 0,000322985632749621 ; 0,0204081632653061 ; -2,7 ; 0,00031968986098687 ; 0,000339464491563377 ; 9,8 ; 3dAaaf08c2aBBa227Adb43dfe0Adfe7b7E26EA3Eace820AEbDb4eAE1Bfafa6FA ; < 7Nqk1DCAcjsuX7Qli6k3KYmHCD06vVZ2sq65g14O66WQ97Lqxxw8yjJmexEGZ2vK > > 5 // < CALLS 0,00999353175428827 ; quote ; 0,000366196862527914 ; 0,000358872925277356 ; 0,0204081632653061 ; 4,5 ; 0,000355210956652077 ; 0,000377182768403752 ; -2,6 ; Df1fCf242e418ac40Cc5112ee7bDd4B3fC85e77bc6C1cA9AF1EFAf1f656DAe44 ; < tq8o6YTazG76TlbxQv7cskZ5j5TCGN792H0h1v47v04WScJa4u0rvMVN0o2Xs3h8 > > 6 // < CALLS 0,0106597672045742 ; quote ; 0,000406885402808794 ; 0,000398747694752618 ; 0,0204081632653061 ; -6,6 ; 0,00039467884072453 ; 0,000419091964893058 ; -1,7 ; f4a23E8FeBeBDd3EFf9e3a7dA2c5cFDA1B78FEeaccFFC4d116aFA5DDA44fAEBF ; < 93e4Rs04mWTI6T9fx58o4GS6h6Y60nStuBOxAzI4vRuS47hgFd3F46GIwH63a8b1 > > 7 // < CALLS 0,01132600265486 ; quote ; 0,000452094892009771 ; 0,000443052994169576 ; 0,0204081632653061 ; 2,8 ; 0,000438532045249478 ; 0,000465657738770064 ; 0,6 ; Cba2e2d3DEd9CBa2AadcAF0ef5bF2c4efbac205ACBbc4fA9AD8a19EBAeca6c1E ; < 0yWSMqv14KxxsbZbvvtADyujcY571KWJfV8C083d9Fq658bD0Lk0M9AS1n8z5zkT > > 8 // < CALLS 0,0119922381051459 ; quote ; 0,000502327657788634 ; 0,000492281104632862 ; 0,0204081632653061 ; 7,3 ; 0,000487257828054975 ; 0,000517397487522293 ; 6,8 ; c6fFCf2053AEfc2Cb63ede8B7BbddaE0d1ef2d35Ca1Ffd0DCDfdcBaEe9cc8eA8 ; < dRqX16llEZGtFcs3T4442Bz1T6afkQM5o73jo654ircN6H5kh52rqhk40flK5cyG > > 9 // < CALLS 0,0126584735554318 ; quote ; 0,000558141841987372 ; 0,000546979005147624 ; 0,0204081632653061 ; -1,2 ; 0,00054139758672775 ; 0,000574886097246993 ; 8,6 ; BeCB8C85Ed2EaE1e2deCDCf77ce4EcfE3bf5cE1Bc27f0Fbc4edfDAe2bF3DBffF ; < M5fLy7I6l12G46O7jad9UUtAaLbIb2D76i7oQqXB7G9L3k14i9Tk7f8Dp6PaTvcH > > 10 // < CALLS 0,0133247090057177 ; quote ; 0,00062015760220819 ; 0,000607754450164026 ; 0,0204081632653061 ; -5,9 ; 0,000601552874141945 ; 0,000638762330274436 ; 2,5 ; B12ecbCDe9319C96Fda9aBFaCb7Fa44efdAaf1B2cfe0aE3cc6dFABb7dF5DB5BD ; < JSqmc2H89ZV0fae7Zl2JxG7r0786vmNhb62tN6g20FxTQ6XzN0Uh35R7xQTc90hH > > 11 // < CALLS 0,0139909444560036 ; quote ; 0,000558141841987372 ; 0,000546979005147624 ; 0,0204081632653061 ; 2,4 ; 0,00054139758672775 ; 0,000574886097246993 ; -5,2 ; 7D820BC8Fa13D7ef0CdCA8B770CF5DDD946CCCc5DeeAB70ceB75bDbCFe66cbea ; < er328ql2cr9f8bCFrXgcj7cymThQGINO6DIWc5PO5jCqBrBW9H4Ojo4l1XQSBmqa > > 12 // < CALLS 0,0146571799062895 ; quote ; 0,000502327657788634 ; 0,000492281104632862 ; 0,0204081632653061 ; -8,1 ; 0,000487257828054975 ; 0,000517397487522293 ; -5 ; 0ba7e29CE4dfbF8fADBDAdBF01a1E4d900fB60eF1A7B8AeFf2b753a8AA7CA9eC ; < D9mv813mRVt0tQ39G22N6ob4661sQgt8tG75U5SQq1CLaq504Sn1Fz6704r25MNj > > 13 // < CALLS 0,0153234153565753 ; quote ; 0,000452094892009771 ; 0,000443052994169576 ; 0,0204081632653061 ; 2,3 ; 0,000438532045249478 ; 0,000465657738770064 ; -4 ; fAfD6E4dBBabbDcbd6bCBFdcAA9bFabAf8aefAF8eddEaa4fafE5b99fAdf2A9cb ; < Bq8kBnh5o8K8W797mB4ZOeTKFVRnfpU2AZT745n72AC741M6f35205Oxbu2yZMlX > > 14 // < CALLS 0,0159896508068612 ; quote ; 0,000406885402808794 ; 0,000398747694752618 ; 0,0204081632653061 ; -2,4 ; 0,00039467884072453 ; 0,000419091964893058 ; -1 ; D2CBDdfbF90fB6e4Cabfdb36B890Da1EfcAedD7faEc37A5Ed42ccdbD9ADdaAb1 ; < 9Z4bz5O390Pu1VhdqBVGiFbnWNhLCfJy9h216bNMKpKz8r183nU230Oz1M5LoJXY > > 15 // < CALLS 0,0166558862571471 ; quote ; 0,000366196862527914 ; 0,000358872925277356 ; 0,0204081632653061 ; -4,7 ; 0,000355210956652077 ; 0,000377182768403752 ; 9,5 ; B0A62A06Bc1Db30BCEea9DCeCCB1BFCADDAbFA2D8CEdaEcba68aaa39ECABBEdE ; < Q1A7vvMp8aT4IJGOcWfocfYB2F5Je9xlW69f6QnSJemcb1Ef2cdu0Lu1X0YIQ9iA > > 16 // < CALLS 0,017322121707433 ; quote ; 0,000329577176275123 ; 0,000322985632749621 ; 0,0204081632653061 ; 0,7 ; 0,00031968986098687 ; 0,000339464491563377 ; -7,2 ; D1edbaD8d66eE46FC4eFe0F0CcFEEaee3Bb0Aac5d520DFADEaAd8Af4321894Cc ; < SjvmHO9r1ugM4RJ45utF7g99I6oV0x18dAnCEw3hMM7GqQ8E3u7mqctq87QOlmTF > > 17 // < CALLS 0,0179883571577189 ; quote ; 0,000296619458647611 ; 0,000290687069474659 ; 0,0204081632653061 ; 8,8 ; 0,000287720874888183 ; 0,000305518042407039 ; 8,8 ; d1A1d8fEBDdF2DCcF56DB5DcbEddA7bB1Eed8ADcDDEEdfAddb3Df3Cab9bCaFbC ; < fxebMG4c57o0iskBwNZ4mKQB5JPzljz4CXM9xVC0g2y2HKPBi5hM31BY9WB3LopY > > 18 // < CALLS 0,0186545926080048 ; quote ; 0,000266957512782849 ; 0,000261618362527192 ; 0,0204081632653061 ; 6,8 ; 0,000258948787399364 ; 0,000274966238166334 ; -6,2 ; 42bABCA1fdF16cB7AfeaD72bAAFe10f8fD9bBBd273ACcC942A3FCa9D28E7B4f8 ; < DE4Ddjvra36on4MB5H6c1XezW9899WL8j4buEBZz0A5Ef67CmGn4Ip3zehiIBwV1 > > 19 // < CALLS 0,0193208280582907 ; quote ; 0,000240261761504565 ; 0,000235456526274474 ; 0,0204081632653061 ; -3 ; 0,000233053908659428 ; 0,000247469614349702 ; 4 ; A7d905Bba1DfD6a2aAE8cbB13a9E9AcD3Bc8afcf4E4fEaBdfC4EF7aeebE9aEf7 ; < Zy24t8osWecMOiRe67Ki7hs61Fh5uJO8u7Ez7kFd1Hj3cg6zPmj48723Rf8xn0Pw > > 20 // < CALLS 0,0199870635085765 ; quote ; 0,000216235585354108 ; 0,000211910873647026 ; 0,0204081632653061 ; 4,2 ; 0,000209748517793485 ; 0,000222722652914731 ; -4,6 ; dAAa803b35ADA1ce8a1Bf7FeC7FBaF2c63Eadccf6Ac8e0a10Fa6D5beffDa9E8b ; < w9u0MI5WKAVMg59niipmCQv2P97JZ6jC98cDxxN7nIwlw4pYIK0XBuo93214b5Uo > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00666235450285885 ; quote ; 0,000216235585354108 ; 0,000211910873647026 ; 0,0204081632653061 ; -5,7 ; 0,000209748517793485 ; 0,000222722652914731 ; -6,4 ; 0b43eAcbADEbDaFFaAEe3Ec4af5ec2A1c1eB4dFbcF4AEDeccdFdaFf6Bbd71B4f ; < VB8jS3WfI4fP8FT98BAb1uM27MwxFF3F2clzS59g21zN9kiT7vcL955SG4eLIs8c > > 1 // < PUTS 0,00732858995314473 ; quote ; 0,000240261761504565 ; 0,000235456526274474 ; 0,0204081632653061 ; 2,2 ; 0,000233053908659428 ; 0,000247469614349702 ; -4,5 ; f3a270650EfB8a1adb25FA58f84Ed0DaF62B4edEeB3Da8bf9bC5B55bCF27DDf3 ; < uTuQNN8YXi05pf8lrz4S1T0hf4W5OczLB29xyelM07TNkzfBYYX1bCW39gJ1WtLO > > 2 // < PUTS 0,00799482540343062 ; quote ; 0,000266957512782849 ; 0,000261618362527192 ; 0,0204081632653061 ; -8,4 ; 0,000258948787399364 ; 0,000274966238166334 ; 6,6 ; DBCfC29ad4AE2Cfa2CE6FfAdEE4cea00dD92fdf8bC2aBcFdAB6CAbBdEFEF02D5 ; < mm9B7cmGsfA9J4w29c65J50Fk18yy4TByxd7h17sPQc90X7f59v9bmEN9O4M5CIa > > 3 // < PUTS 0,0086610608537165 ; quote ; 0,000296619458647611 ; 0,000290687069474659 ; 0,0204081632653061 ; -6,5 ; 0,000287720874888183 ; 0,000305518042407039 ; 6,9 ; 62fB8a1d22FcD3AEAD7D4Dd3Eeead0A83ed5f9ea3fCd6DA8d9CFfACca4aefE20 ; < 9R5j7EW7F08ys694A04Q4j956PSSO0x7cSmKvqeufpCmH6dM9z2b7I2TRABLd7s5 > > 4 // < PUTS 0,00932729630400238 ; quote ; 0,000329577176275123 ; 0,000322985632749621 ; 0,0204081632653061 ; 9 ; 0,00031968986098687 ; 0,000339464491563377 ; -9,5 ; 79B5FEBfEeFdFA98e8d1A9CfcF52DDCa3a9CdfBaEBFE79cAF17DeA6dE2FaCc5B ; < Ii2pwr07H39A2mDDct5l5Z62RBsQSuuxvh0R4j3iI5B7F3LZ51skfvk0873NFCzN > > 5 // < PUTS 0,00999353175428827 ; quote ; 0,000366196862527914 ; 0,000358872925277356 ; 0,0204081632653061 ; -5,1 ; 0,000355210956652077 ; 0,000377182768403752 ; 6,2 ; DdEDeAe0c3fFA9aE9AdbecdDEa8473Ba5846Fc2AF332E9aCE4Cc4BA1DeE3FEcb ; < 9uH81jp8e84ZVmaa4eqkgM1k4666uBX9g5fQ65jm7YR27iA49219Tv7f6aD6p71i > > 6 // < PUTS 0,0106597672045742 ; quote ; 0,000406885402808794 ; 0,000398747694752618 ; 0,0204081632653061 ; 5,5 ; 0,00039467884072453 ; 0,000419091964893058 ; -8 ; 6f778E2dEd10ABAB6b0F1ca8F2c3DAFfbc8AABeE8b45Be4adb7C87A1bbEEC8da ; < ozB8J67oZ1404KGP6008O7y1Nc3pAR3yt00XwX2zfNMX86Jwb8JCnsJQoC6rMvzo > > 7 // < PUTS 0,01132600265486 ; quote ; 0,000452094892009771 ; 0,000443052994169576 ; 0,0204081632653061 ; -8,9 ; 0,000438532045249478 ; 0,000465657738770064 ; -2,7 ; aBb7FEcFC3F5e8d11baFff2FaFFa0DC4EacDAfbadE66CbDAddB147aB8cBcF23D ; < QW5korD529896toEyq97fV696hM1fCILd71aA38e0590lgYaaox4xuQ1KV46Pjpw > > 8 // < PUTS 0,0119922381051459 ; quote ; 0,000502327657788634 ; 0,000492281104632862 ; 0,0204081632653061 ; 7,3 ; 0,000487257828054975 ; 0,000517397487522293 ; 3,4 ; eFAAAcB8F386d9ffbEF66F3e1abaFd8d1f57FcBEDF31c9ee5EFEd0E5EBbE45eD ; < x2C5leafd18BGbn6FAt8r3j55l11NZLD2p2EQX1i8Hu14geqIW90s8c037YV6u2M > > 9 // < PUTS 0,0126584735554318 ; quote ; 0,000558141841987372 ; 0,000546979005147624 ; 0,0204081632653061 ; 1,3 ; 0,00054139758672775 ; 0,000574886097246993 ; -6,7 ; D8cCB44E4bB6Acb8e73a9d2d9c9D6aCdB1dc922EccCEb3a15C60acF76AFfAA1a ; < cKi53dz0Th4oKVC457GlBHYMdKOF31cjIKslt4YyL8ywf19a7ZA8n9vmpLNPRU8d > > 10 // < PUTS 0,0133247090057177 ; quote ; 0,00062015760220819 ; 0,000607754450164026 ; 0,0204081632653061 ; 6,7 ; 0,000601552874141945 ; 0,000638762330274436 ; -3,5 ; Dd0F7D004Bbde8b0Fa1FcaCbDC5dAFdAAeF3f342FBeADDfb0bF292B98EcC41cF ; < Qf06UiYheu32RS7T5k9tMK7BnA4KQtrLpLX54kD33x08oQ7iSNeNW07t79Y7608O > > 11 // < PUTS 0,0139909444560036 ; quote ; 0,000558141841987372 ; 0,000546979005147624 ; 0,0204081632653061 ; -9,9 ; 0,00054139758672775 ; 0,000574886097246993 ; 1,9 ; 3ea43E5BcDFB1A1CA16DA6C648cD8AEE98452E1bf99ca0Ff4bFf3Bb6dE42ee3f ; < j76W8vHs97dWbUc52BYWZ31AO5W0842KbXJ9m7I9rD8A1XsX1I5unwhIb4p8Te4L > > 12 // < PUTS 0,0146571799062895 ; quote ; 0,000502327657788634 ; 0,000492281104632862 ; 0,0204081632653061 ; -0,4 ; 0,000487257828054975 ; 0,000517397487522293 ; -7,2 ; C5BbD1Dcd9DE3cbeFddedB7Cf3B7DFFE938Be7f71DfcDdd5f7b9B906E719aab2 ; < znDr7yj8z232DvCkdrUmgdX6j54j9Fz06QUBqtXdcq0rkN7o4JTQz5b721t6D1qM > > 13 // < PUTS 0,0153234153565753 ; quote ; 0,000452094892009771 ; 0,000443052994169576 ; 0,0204081632653061 ; -1,9 ; 0,000438532045249478 ; 0,000465657738770064 ; 9,9 ; cFB4aC20bE3daeef4BEEAAEDD4DA1aa5F0c6c1Ce7C4BA7bCf7Baab8A4292F05e ; < 832UnA2M4V9uMsD1Y7p59WG7tt42Dp4RHaaL3obO152k45GcOBin210RMYcc721b > > 14 // < PUTS 0,0159896508068612 ; quote ; 0,000406885402808794 ; 0,000398747694752618 ; 0,0204081632653061 ; -3,7 ; 0,00039467884072453 ; 0,000419091964893058 ; 1 ; ee60cfc48EFfbbFCE9E2e7f40de7814eAcE7BaEcaf73FdE0e1fcfdF9e5BC03fb ; < h86aUo0H69wc4dYp45g91HSEuWKBx5we0G8p07l8RXT0Fa33c0n3QzwgoxAFhHVc > > 15 // < PUTS 0,0166558862571471 ; quote ; 0,000366196862527914 ; 0,000358872925277356 ; 0,0204081632653061 ; 4,2 ; 0,000355210956652077 ; 0,000377182768403752 ; 4,9 ; 63c9DBBDbfcfa24e3aEcEE3be1DffEEcfDCD41B3b4B3a7b4d272dbDBA2bafb4a ; < r4hWpH4ILC7jb17Dv9F2Tks3774zngQkb465muz1bWAgt2tEJcSYdx5NQC3599QZ > > 16 // < PUTS 0,017322121707433 ; quote ; 0,000329577176275123 ; 0,000322985632749621 ; 0,0204081632653061 ; 1,5 ; 0,00031968986098687 ; 0,000339464491563377 ; -6,2 ; eebCc56d54bF6E0c9Ac800c9bc9EABeccaEEdcD1B1d9f2A3FD6bbACdd4d8daee ; < 4DNXGTep6Gf880g21N4d12L6lmkkDG0AEtI8K7927aIXi90Z2Mv7WXeaHEy7x5cq > > 17 // < PUTS 0,0179883571577189 ; quote ; 0,000296619458647611 ; 0,000290687069474659 ; 0,0204081632653061 ; 2,3 ; 0,000287720874888183 ; 0,000305518042407039 ; 8,5 ; CaDEE76eeCaD7ff1d00BF1FfBc5CEea89bf2F848C193EfedAbABcDBCCC7d5FBA ; < 8e492j3Lbs51agwWW4PYdRLRkmnygXMLw6QL1fwLIyH6SGII4Q47jaKnUA33nkIu > > 18 // < PUTS 0,0186545926080048 ; quote ; 0,000266957512782849 ; 0,000261618362527192 ; 0,0204081632653061 ; -0,9 ; 0,000258948787399364 ; 0,000274966238166334 ; 9,4 ; cc442A81733A7Ea8f57AFdecBEC65dEF26b80F1CaFc4E51CcAbCdE290fCcFeDb ; < lJ1x8Is47yb0E9LI6xr5t8V92t905TAO8uH8tySp48zEc9DBBpG056k91WbZ3Wp5 > > 19 // < PUTS 0,0193208280582907 ; quote ; 0,000240261761504565 ; 0,000235456526274474 ; 0,0204081632653061 ; 3 ; 0,000233053908659428 ; 0,000247469614349702 ; 5,8 ; A9bF3eAAdeC6dcaEDBA6eFCdE3ab10BFd0EBa04C55bDdbABDd6deeCc72FAE2FF ; < rDD6wkPjY2IjcLb7PF2vr1cd2ylmjhO1yl4N0Sf4kjwEVT5IR36myHR8w680Onpe > > 20 // < PUTS 0,0199870635085765 ; quote ; 0,000216235585354108 ; 0,000211910873647026 ; 0,0204081632653061 ; 9,2 ; 0,000209748517793485 ; 0,000222722652914731 ; 2,4 ; 7bdFbaeDF0dBB81aBFDB7aBEEaCEEfcB84F78aFEc7892A76bBFAFeACc6eCeBC6 ; < 6ahAV2EapDy48eDGq2yup4Vm69jGuudZt2t7j432xNa6VIUZ52SOGwF5yd6at6Te > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00668629207478814 ; quote ; 0,000448787933957853 ; 0,000439812175278695 ; 0,0204081632653061 ; 2,8 ; 0,000433080356269328 ; 0,000464495511646377 ; 6,9 ; E1C99EBB88ABc0CDD625ADF3f21d72DfF23F0daAcc4bFFC4f0E4afa3DDE6e5Bf ; < 9cQG14yjv9IjAOYFks34tSrbXYPb21283O05E1wk8t3x1oql5ihH53iWpQO6M6T1 > > 1 // < CALLS 0,00735492128226696 ; quote ; 0,000498653259953169 ; 0,000488680194754106 ; 0,0204081632653061 ; -6 ; 0,000481200395854808 ; 0,00051610612405153 ; 4 ; 5fcb0D1caA1Cb74CDE0bbFb37dcfFECCFcde0bbFBFa54BA5c0d1eba1aEC5E9A2 ; < 2RXE4V6HdU0A3R3r88zS4FnzgGAM8P9pj55M3zYn69HML42RmzXDA14jz8sj3oTK > > 2 // < CALLS 0,00802355048974577 ; quote ; 0,000554059177725744 ; 0,000542977994171229 ; 0,0204081632653061 ; 5,4 ; 0,000534667106505343 ; 0,000573451248946145 ; 7,8 ; f6ab1E9a7ef349CCbdADA5FacF8FC07FCAdfc1fcceDF5dCaBBcBB0ddd4960fB7 ; < 5c4oSRnH7QXeAv54GIbuZXjLeG0go9r3g9pX2jE4h8zt82SucVvu0Jzt3UDNas13 > > 3 // < CALLS 0,00869217969722459 ; quote ; 0,00061562130858416 ; 0,000603308882412477 ; 0,0204081632653061 ; 5,6 ; 0,000594074562783714 ; 0,000637168054384605 ; 5,1 ; C55FFAc9CD27ef7dd4EDEDa9F0D86f8BffbEbea8D66807fc9FEC54BcfDFCf109 ; < GE9CtV5Ehk72E0Q35iktFIRf2bbZV27d76EUjr4Fw0smbK1Q12831UdJ9K9F34X4 > > 4 // < CALLS 0,0093608089047034 ; quote ; 0,000684023676204623 ; 0,00067034320268053 ; 0,0204081632653061 ; -1,3 ; 0,000660082847537461 ; 0,000707964504871784 ; 0,7 ; aE21e5BCE38BA7F1eCcef7e6E63a03bcc51dBeCCac67f9eAAa3BCB1FAebf4DC9 ; < vnl596o2yn2V91CNs0aGIA31mH2CW15Wl7b2WAkkYSir61BFpY7wJH991s053Psk > > 5 // < CALLS 0,0100294381121822 ; quote ; 0,000760026306894024 ; 0,000744825780756144 ; 0,0204081632653061 ; -6 ; 0,000733425386152734 ; 0,000786627227635315 ; -2,7 ; c26cfD3A9a5aEaBD03360b8d1cD9cfcCE4Ab1F32eD9fDD2b34c5E5cCaEe8CDAe ; < EwKtygOyhdqi2pi90tiL7K0X9J5dijR7y6nT8amEl75DHX7hwOj5qrNlfn3XlI01 > > 6 // < CALLS 0,010698067319661 ; quote ; 0,000844473674326694 ; 0,00082758420084016 ; 0,0204081632653061 ; -1,8 ; 0,00081491709572526 ; 0,000874030252928129 ; 2,5 ; fbE66Ac3bBab9Daaafa2D27BDC203628Fda8F0a4Ffa2aF7f5E1b0cdE8A05BFEF ; < STZzhuVQKvtf3zVCw87u0Z9xazEd5B1rFZ4i3G1V286t2x4lm3Fje1V23en353NF > > 7 // < CALLS 0,0113666965271398 ; quote ; 0,000938304082585215 ; 0,000919538000933511 ; 0,0204081632653061 ; -9,4 ; 0,000905463439694733 ; 0,000971144725475697 ; 2,5 ; 6e81acb9cDF6Fa6AFCbcd7FacCb5EeB90E0b2277783ada28CcEFBB931C3Bee2a ; < AJ74m98TpqKGtNLbPXv58N3zfNr4w73irx7g7U2yxaXu1TMOW27p1zXiv679orjB > > 8 // < CALLS 0,0120353257346187 ; quote ; 0,00104256009176135 ; 0,00102170888992612 ; 0,0204081632653061 ; -2 ; 0,0010060704885497 ; 0,001079049694973 ; 0,6 ; 4a9Cac7828dFd245bC5f1da4Be7E7aFbFC61Fdefe62EAEaB51b375dE1cdfDD9b ; < 5r82fB8Md1T097bcA9n9u6DXUAI1p5vFcY7ZljtLgHuZ1G2c252d7h371ZKF0WTn > > 9 // < CALLS 0,0127039549420975 ; quote ; 0,00115840010195706 ; 0,00113523209991792 ; 0,0204081632653061 ; 7,3 ; 0,00111785609838856 ; 0,00119894410552555 ; 3,3 ; 0D376bFAeFfc5FbF9bd437A4B5CCfeA67BFDBcCBE5dEBE2afFd7b7713cbbBCaC ; < Oj4M0T1j2sAHSjJ2v4Luk6J2uK25kE81WRHhav894422n3OO1UNiUrgFaQ3W2vWx > > 10 // < CALLS 0,0133725841495763 ; quote ; 0,00128711122439673 ; 0,00126136899990879 ; 0,0204081632653061 ; -9,9 ; 0,00124206233154284 ; 0,00133216011725061 ; -9,8 ; 8B3fdCdC81bcfAfa9aaD9c3df11345bCcBEDDEE9caF99eAAba4f7FBffABA1BbC ; < 95t06hIq1I315nP2qJ9mONKjiSNZIt1i5N3PbF8rR9OyzRM3QzUM1rdJX8J86z5e > > 11 // < CALLS 0,0140412133570551 ; quote ; 0,00115840010195706 ; 0,00113523209991792 ; 0,0204081632653061 ; 9,1 ; 0,00111785609838856 ; 0,00119894410552555 ; 4,2 ; BAdaCa0e9Cc3d8EA48fDfFCEE8EdD0d2aAabb35B92fc1EbbeD5DEDfd91cF54Ec ; < e23l0t5Da9yq3jQaZyT0hWhiRHK53PVL798GslrC00r5uTke40W2gB0r5d9x5rRD > > 12 // < CALLS 0,0147098425645339 ; quote ; 0,00104256009176135 ; 0,00102170888992612 ; 0,0204081632653061 ; -3,6 ; 0,0010060704885497 ; 0,001079049694973 ; -8,5 ; cbefedd68dca3f6aEaB9211dbF084A1fCF3FF6AEE8eEae2CC7DEFBEfBD7Ba0Fe ; < 8NsOxKv90o6wPeS585x68lJ86y7W2606gbZU210hGDsd0a1S2ElYn79xp3R2BR2D > > 13 // < CALLS 0,0153784717720127 ; quote ; 0,000938304082585215 ; 0,000919538000933511 ; 0,0204081632653061 ; 6,9 ; 0,000905463439694733 ; 0,000971144725475697 ; 0,5 ; b7CCDCAD6a5B2BEeaAA8aaAb1CaC8fcc3ea050f2ac8E8A5eBBca95b5D86f4B91 ; < JyWTqBVMv8D67MI8SbuuK0AUv8bM62hyHsnyWXAklYm0lxU2ZvWmU9W89jn09P51 > > 14 // < CALLS 0,0160471009794915 ; quote ; 0,000844473674326694 ; 0,00082758420084016 ; 0,0204081632653061 ; 3,6 ; 0,00081491709572526 ; 0,000874030252928129 ; 2,6 ; Ba145876ac2Bcf3BfAEddFd4C8bddfd19711AB410EFEfb34EdCAAC0AFafabC6e ; < Yr8y5AM0Yp2e8U3mMi522wtt11zyRh9xNO3V8gvEM6a1fYCkvVEN507qDpDU3Bsf > > 15 // < CALLS 0,0167157301869704 ; quote ; 0,000760026306894024 ; 0,000744825780756144 ; 0,0204081632653061 ; 9,8 ; 0,000733425386152734 ; 0,000786627227635315 ; 7 ; E3Af25AAfD130E6FF8DC10aB4fCD7daad5fea3be6CeDF4BbF2CfBE30A76B2faA ; < qesrL9Xs94N9bMKH6FOF7rT5B9JJ4z20cf6n36Y8UmnU5x3xB07FwQD7pv4Kp81s > > 16 // < CALLS 0,0173843593944492 ; quote ; 0,000684023676204623 ; 0,00067034320268053 ; 0,0204081632653061 ; -2,7 ; 0,000660082847537461 ; 0,000707964504871784 ; 6,5 ; 848e7eFcDcE0a93AffD5fBaECce0CebcdEbfDfda143dbDd0cCee7aFaE0bBD8cC ; < 346221e893RJ04KiXgUnV00q5VUji3mx6DSbL0h9vL6gX1hZi9y9ZLcK67V17P5G > > 17 // < CALLS 0,018052988601928 ; quote ; 0,00061562130858416 ; 0,000603308882412477 ; 0,0204081632653061 ; 4,9 ; 0,000594074562783714 ; 0,000637168054384605 ; -5,6 ; dbdB26CBcBEcDBDF3FdEA0F5FCC9E3c7c7Accd3caBC249Eb7C567E3e93C7AFE2 ; < kWOa78lCy798dVP86iE8RjU577VWCuEC40K0m3W4E1YhL3mO2nBAT4n6JcW8rkQm > > 18 // < CALLS 0,0187216178094068 ; quote ; 0,000554059177725744 ; 0,000542977994171229 ; 0,0204081632653061 ; -7,1 ; 0,000534667106505343 ; 0,000573451248946145 ; -4,9 ; f27FcDE1fa055dCc13DB2bEA5dfAdFAe7a4a7E752581dEfcc4BaaD4aBfe29E96 ; < XTHN81N47HX8aID23yIU1v946G71BJMG5w1PSA9s6UE0G8MCinsC0PiXsD3G3x8x > > 19 // < CALLS 0,0193902470168856 ; quote ; 0,000498653259953169 ; 0,000488680194754106 ; 0,0204081632653061 ; 2,7 ; 0,000481200395854808 ; 0,00051610612405153 ; 4,7 ; Cb85eFd5Fa4dCabCc9058aEDA3Aebb8cB8078CA1fAcEA0ceFe03954F5ACea98a ; < 8SZXN6a3DRy922y97MhVcHTc9JMgsMBsfH3JR3kL79w105pY7ki475oO7S6CvGOo > > 20 // < CALLS 0,0200588762243644 ; quote ; 0,000448787933957853 ; 0,000439812175278695 ; 0,0204081632653061 ; -1,2 ; 0,000433080356269328 ; 0,000464495511646377 ; 0,6 ; C61E7D6F3Bfb1daAEBbbA1CCC988fbfDDaFBcfC9DAD8De24dcB9A3C6a763EAFd ; < 7Kce4d4F5JAXyeFVSdAasl2hU8cL15u15SNdboRy4HEL1fXKnohHD7OJx4oa592U > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00668629207478814 ; quote ; 0,000448787933957853 ; 0,000439812175278695 ; 0,0204081632653061 ; 0,9 ; 0,000433080356269328 ; 0,000464495511646377 ; -8,5 ; 5DCCF7aCEFdDA8E18B1fA0eba5C0F8fc06dbCAABDeaecbfdaee5eb0294eCC9D7 ; < rrGq57g67Qaj444RVZTyx92PvqGy6yMb83S82G8eZ1lRtB28253Z8NR1Y1cc1c3T > > 1 // < PUTS 0,00735492128226696 ; quote ; 0,000498653259953169 ; 0,000488680194754106 ; 0,0204081632653061 ; 6,7 ; 0,000481200395854808 ; 0,00051610612405153 ; -0,6 ; 22b214aC68F73addcF316E7aFfb7e6dBFfbED3Ad8C6AD4e7CBCCADD75c74DB7c ; < uTOIwe6klRbfTxPAav3beDzjUDV7fE09ut3H2GhuQ6Kjp2t2I7pfp7ouP6qMQD0p > > 2 // < PUTS 0,00802355048974577 ; quote ; 0,000554059177725744 ; 0,000542977994171229 ; 0,0204081632653061 ; 3 ; 0,000534667106505343 ; 0,000573451248946145 ; 3 ; 5470fBFe22b56619e614edEc1edDaa3fefDf8c1e6ACeD6c5dEdcfDFb6BD4CCfd ; < 5AL8M29ekMW056ghju72Gfn2Nt0wieZi2QU7JNjPba56MNaT8LJkq19C9KO4zd4f > > 3 // < PUTS 0,00869217969722459 ; quote ; 0,00061562130858416 ; 0,000603308882412477 ; 0,0204081632653061 ; -4,4 ; 0,000594074562783714 ; 0,000637168054384605 ; 4 ; AbD0FA8b54Cbac90a7bAC4Fed22Cf4B6a78E3eFFdCEfE7fEDBd9e8BeAcdccF5F ; < qL1dSFxFB0iMi3uB6XHfK0570If54St2L177yAA9O19gob84v12it30C4TQ2Sw69 > > 4 // < PUTS 0,0093608089047034 ; quote ; 0,000684023676204623 ; 0,00067034320268053 ; 0,0204081632653061 ; 6,8 ; 0,000660082847537461 ; 0,000707964504871784 ; -4,1 ; 0bd3BBfEFa7faBAAa2DB0e42fB49A8bDBa5B1bfEb7bfcBFF84A8e781dDfDcE4d ; < u7GB9cqbPb4bHH3w8jJsMN4t0hXcuR1KsZ8WLS3b5l3h66ecgZ03zzjNj7b5IKwL > > 5 // < PUTS 0,0100294381121822 ; quote ; 0,000760026306894024 ; 0,000744825780756144 ; 0,0204081632653061 ; 7,3 ; 0,000733425386152734 ; 0,000786627227635315 ; 8,2 ; bd95B7a44CEd723ebd32dcCDC35c0aCda69bFCEfB6d5FBc0c106dDdE6DDFeD4c ; < 8uBKk6zJ2NVOYAsPxv55Rt09aQ6Bt6dVgGUDDzcmm9iwRCZaFc7b7wN559QjCV86 > > 6 // < PUTS 0,010698067319661 ; quote ; 0,000844473674326694 ; 0,00082758420084016 ; 0,0204081632653061 ; -8,4 ; 0,00081491709572526 ; 0,000874030252928129 ; 3,9 ; E3Ff1Dd2eDb023AAF2478ABbFeBfefe8E4ffEbdDff1D5cD7bDcceB7EBFEd8E90 ; < 781Whbfm9t5EU0cEot7929nE4l0C1YPI63OTe31jc1QIZ6g7KRf4SGeIjO7UeBlw > > 7 // < PUTS 0,0113666965271398 ; quote ; 0,000938304082585215 ; 0,000919538000933511 ; 0,0204081632653061 ; 6,8 ; 0,000905463439694733 ; 0,000971144725475697 ; -2,2 ; D0bdb4BAEdBbBAbF72BfECB9AFeE99ef0B9FF33DbcE96f3b88b07BA1eABD3b5e ; < HUdrL8yut2HeQKZOf3Oq9h1Z2U61jMSo9xSyZ9v6P5PdOLx5GpbOc637ue4F14jJ > > 8 // < PUTS 0,0120353257346187 ; quote ; 0,00104256009176135 ; 0,00102170888992612 ; 0,0204081632653061 ; 8,7 ; 0,0010060704885497 ; 0,001079049694973 ; -0,3 ; 9Adf5B3aD2aFdB9CAfE300c1b326e4eFCDBbaE74F7BfC33FFBE5D5b2CCfcdCfD ; < 7i62IvmP46vS32B302Av99COGX84US70y4FI0YEAFaV9JoT5pT698Rm74CNrIsOp > > 9 // < PUTS 0,0127039549420975 ; quote ; 0,00115840010195706 ; 0,00113523209991792 ; 0,0204081632653061 ; 3,4 ; 0,00111785609838856 ; 0,00119894410552555 ; 2,4 ; fc7Ea6cC437Af8EeEbAFaeDAAafbEacbf76DC7DAeBf4E9D08A1eDCfCFdcCF7Ba ; < 21Fz8tcR2M0inQ9l525b0535ELiDbj8razt26r0hO6C50dk4eL0Q8dvfP8MH6u9P > > 10 // < PUTS 0,0133725841495763 ; quote ; 0,00128711122439673 ; 0,00126136899990879 ; 0,0204081632653061 ; -6,6 ; 0,00124206233154284 ; 0,00133216011725061 ; -3,2 ; b3dfc8191CdadC5cd0d8976DE5b237CEB5cc020CaEbAFaaEbfAa6bFaea5c4cF9 ; < xIN2jkL0Uvgz6AT6cFNMTD4t9ur7o3bS57ZardEZruYFMJ1r7pISSIVr24qvICx7 > > 11 // < PUTS 0,0140412133570551 ; quote ; 0,00115840010195706 ; 0,00113523209991792 ; 0,0204081632653061 ; -8,7 ; 0,00111785609838856 ; 0,00119894410552555 ; -7,6 ; 0b7AFbFEafE4eDEA3C03fe5f2ceCC9FaDB50Dccf30E44EaCFf0edaDA81dAbF8e ; < C0nqb4pMO356L7NDG9APY23T2guXA4Vk46c6W0XJ60os3686S70Mzz78ylBNMLNp > > 12 // < PUTS 0,0147098425645339 ; quote ; 0,00104256009176135 ; 0,00102170888992612 ; 0,0204081632653061 ; 1,8 ; 0,0010060704885497 ; 0,001079049694973 ; -5,2 ; e6A68AC7E2687ad0bcadAE5BCcCCCCcBCBE82debeDabd0B2CBf1aFc0AA7d0Dcb ; < 0m5Zwc43hVH2jZbhPQ9LPn4Q1BSTRM4PFw4E9ntfCln8OKmW0ATTM7Kip3ri1y2J > > 13 // < PUTS 0,0153784717720127 ; quote ; 0,000938304082585215 ; 0,000919538000933511 ; 0,0204081632653061 ; -8,8 ; 0,000905463439694733 ; 0,000971144725475697 ; 8,1 ; 75Ddac7fEAfbf4BCFd3aecaBeFD7eb21cBd8Af7F323Cc108b7e271fEc553ddcf ; < 5c18wJLZ2KE1AZBcK6343N9054zHxB2gy1O70OyoQt74k52r66n7LzITV4xkyK1T > > 14 // < PUTS 0,0160471009794915 ; quote ; 0,000844473674326694 ; 0,00082758420084016 ; 0,0204081632653061 ; 3,5 ; 0,00081491709572526 ; 0,000874030252928129 ; -1,2 ; 7A16DA5E5dAfAa52FAE3A56EA7b0BADaFD611519C45C4bDD94a9EbdBf9Cccb94 ; < GVj1e72jOGCrw18L34ou4jqV5yCkoyG6764Nnr3IoVDAnc6uIK9RKd8a32Ue269k > > 15 // < PUTS 0,0167157301869704 ; quote ; 0,000760026306894024 ; 0,000744825780756144 ; 0,0204081632653061 ; 8,2 ; 0,000733425386152734 ; 0,000786627227635315 ; 7,2 ; cbA0B5DcAA2EFFB6e5Cbd70cabc7CFEA3Cf3bcbcaeafedfBCCcfEBcBAAd11Efe ; < 8TzZ9WY6LK1J0qS4j3JIfI2s8w1Xo6nOoY22st9eFaXwDm44FI08V121KFwmDX5V > > 16 // < PUTS 0,0173843593944492 ; quote ; 0,000684023676204623 ; 0,00067034320268053 ; 0,0204081632653061 ; 5,2 ; 0,000660082847537461 ; 0,000707964504871784 ; 7,7 ; 82b7dedDebF30AbFBDdfbA00A56AbbF43bEd2cC33eFAE83D6A9C8EaAE1eFdCd3 ; < YqGr5k8RL6VhDt6vp3K6GD46iwi0iiG693F5dKq1Fs6DT5Hoq35G7Tf3g4ssNV41 > > 17 // < PUTS 0,018052988601928 ; quote ; 0,00061562130858416 ; 0,000603308882412477 ; 0,0204081632653061 ; -8,3 ; 0,000594074562783714 ; 0,000637168054384605 ; 5,4 ; b0bf8A60cFCaCbCfb1Cd9BD9d64aE6AfAbeBDBC14f3fDFCAa18ecAefAA31ABF3 ; < 4FcW5LjVR1IeGHa22nElovaXtw35V83bZXRdUO2hevo25MJEkfP5RxaAWA58XCC2 > > 18 // < PUTS 0,0187216178094068 ; quote ; 0,000554059177725744 ; 0,000542977994171229 ; 0,0204081632653061 ; -3,7 ; 0,000534667106505343 ; 0,000573451248946145 ; 5,5 ; 9EfF407dDDa0DcbFB4bDFeAcd2CDaba7E2B8EC9ACCcB8eDdeac461E74beD4B99 ; < oQ97P4r61qMQ0N4fpU1n59g5k6a5EI9xtH6amV9X23Ni1wlf457hn3r5o9f9m1Zr > > 19 // < PUTS 0,0193902470168856 ; quote ; 0,000498653259953169 ; 0,000488680194754106 ; 0,0204081632653061 ; 7,7 ; 0,000481200395854808 ; 0,00051610612405153 ; 2 ; ADEaa4bBffd4DDcBcfFdfEf1f56cFc13FeccFfafcdcbbd2ee21942ce2BD3fF5B ; < 4BJr4K2034yr07B4M8gBKzHgwJcBtE7r96GtGX0ZC6L82337vlNe96158bjV4PIS > > 20 // < PUTS 0,0200588762243644 ; quote ; 0,000448787933957853 ; 0,000439812175278695 ; 0,0204081632653061 ; -3,8 ; 0,000433080356269328 ; 0,000464495511646377 ; -5,6 ; DBAeafBB1532c0CAbBebFAd9e952A3Eb268a8BEDA9Ea4fC3CAa9cB8bbdEc2A32 ; < 8JUqRPvMj4fOu8S6oRnKCb9ZbW7jKD93FHoYK1Kq5BBzGw1W762L205OHBwozk34 > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00677403735681808 ; quote ; 0,000963479526310727 ; 0,000944209935784513 ; 0,0204081632653061 ; -5 ; 0,00092783078383723 ; 0,000999128268784224 ; 7,2 ; 754d08BDeD78FA9b19dCCEeFAFd0bEEFf5BbccD8F2BCfAAaADAaBA6DAACb0a31 ; < fC45712bbo9fM9HhVxq8N6A1QJnSKxUkr1SVd9K0Vvh5qs4OXGxES3BmE06pK17n > > 1 // < CALLS 0,00745144109249989 ; quote ; 0,00107053280701192 ; 0,00104912215087168 ; 0,0204081632653061 ; -4 ; 0,00103092309315248 ; 0,00111014252087136 ; 1,3 ; 2F19beaeF3CEC949beDFAeAC2FA5d4f8F9d2cFEcc6E655e9EcDdDeeAA2e5faE8 ; < A0JlDe71w8459A1aPBF1U5Q5h34045R7G494qj931NHbM05ssHo66o3692pteLPs > > 2 // < CALLS 0,0081288448281817 ; quote ; 0,00118948089667991 ; 0,00116569127874631 ; 0,0204081632653061 ; 4,8 ; 0,00114547010350275 ; 0,00123349168985707 ; 8,5 ; 0afBCAeDE5Bb9fC7efFbBdFBDF0c5ee6C1deCf24C409c7D1d7EaB38A79b5D3Ea ; < CQ16403GLj6NeP218o4uDT5JW3N8IvI1P9Hl3301Paoxn4zAtWpNVp4qY24mntq3 > > 3 // < CALLS 0,00880624856386351 ; quote ; 0,00132164544075546 ; 0,00129521253194035 ; 0,0204081632653061 ; -5,1 ; 0,0012727445594475 ; 0,00137054632206341 ; 3,5 ; B7bCE7b7Ee5cE9F52FbfDef9cE3dFa0Ffad7BC69aB4AE003c6da92969d4EC045 ; < Gx17F485AP9E396SCZIF3KVZC4ZLjsS8qtZM5r5bL2OE63E2HscgebIgeCG71DlY > > 4 // < CALLS 0,00948365229954532 ; quote ; 0,00146849493417273 ; 0,00143912503548927 ; 0,0204081632653061 ; 2,6 ; 0,00141416062160834 ; 0,00152282924673712 ; -0,8 ; a3EB5325C67BbbBA7Dcc823e8A5aB9AFB329FDb5bC0bbB3ca9C6EdaBBEBB0CAc ; < 9KmQn83d1I00a3OCWB3d2vhJ1qwuQSXrc0t8xhitHBC9m4z8DqNDqtYqJksiTEXK > > 5 // < CALLS 0,0101610560352271 ; quote ; 0,0016316610379697 ; 0,00159902781721031 ; 0,0204081632653061 ; -5,2 ; 0,00157128957956482 ; 0,00169203249637458 ; 4,6 ; bffA6dE110fCEf3CFed1BDCaabd9395e4f3CF6EEa1Dd575bBA3Fb0df52C566ca ; < W2X8s3G6KPcPAbgs7LlC1BVxXO68prEOBKlLETB6LO6mGsck2ejvD0dn8PITAb76 > > 6 // < CALLS 0,0108384597709089 ; quote ; 0,00181295670885522 ; 0,00177669757467812 ; 0,0204081632653061 ; -7,6 ; 0,00174587731062758 ; 0,00188003610708287 ; 9,8 ; c8b6e64AEfac6c2Df2B4baB4eFfD0DD5f3f8Ead7CbBadADBfEFE4Ed02C00eACB ; < 41OsqEY1SlJ61EE05N4nFS47qCiTT9Ij45gTcOvYK275qsSf1b53Fk4ZLpyiU4mL > > 7 // < CALLS 0,0115158635065907 ; quote ; 0,00201439634317247 ; 0,00197410841630902 ; 0,0204081632653061 ; 8,9 ; 0,00193986367847509 ; 0,00208892900786985 ; -0,1 ; 7ba96DAFbcB365cBb681e0bBc7dbeFa9f000EEE1a0cDAdd6eBf5F6B87733bea5 ; < MtMmq9QXo3h9gDaDt3R25loa4w6Tskp1o18D0Iija14f0Kpybso0E4ET6Sztyzr0 > > 8 // < CALLS 0,0121932672422725 ; quote ; 0,00223821815908052 ; 0,00219345379589891 ; 0,0204081632653061 ; 7,6 ; 0,00215540408719454 ; 0,0023210322309665 ; -6 ; 9D818f4AcFFDc548BFF9D151a3Bacf3Ac6b2deBc03FEEBEeAf3EfeFd6cAEa8EB ; < l51Y5qu4LzZg1U8ya4p4tIl1TXjEjYi4H7v96VIP4ijezAy77ZSMv0g1PJ5U4WqU > > 9 // < CALLS 0,0128706709779544 ; quote ; 0,00248690906564502 ; 0,00243717088433212 ; 0,0204081632653061 ; 3,7 ; 0,00239489343021615 ; 0,00257892470107388 ; -9,7 ; 44d8cCddC5Bf6A3adFaCadd837C3B4AeFe8CE7dfa021D1FDDA3D7Dfc6Df00aFE ; < 1CPzD3USl82c32Oz2usUCs0b7p1oAPv0gCrEpEvj1IU9V6741nYRAWSa2vMUyc2Z > > 10 // < CALLS 0,0135480747136362 ; quote ; 0,00276323229516113 ; 0,00270796764925791 ; 0,0204081632653061 ; -4,7 ; 0,00266099270024017 ; 0,00286547189008209 ; -9,3 ; c8E8d2FcDe4BCE9b6FB6cC0DFDf8a54dbBaBF87076AAacf2f6Cce706BEAcdA5A ; < uGU68XsB9vmz1XAt3diWf927kkxg3FoCz85P67U7874cXema2FBS9vn9VlJm17hU > > 11 // < CALLS 0,014225478449318 ; quote ; 0,00248690906564502 ; 0,00243717088433212 ; 0,0204081632653061 ; -3,7 ; 0,00239489343021615 ; 0,00257892470107388 ; -1,7 ; aca2aaB7D70D0BdBac2Dc3DEEa62C84CbFaA5bAcBac04cb5dbfb6bfb7BB3Bad4 ; < iJDqaLN02xYlW9nEFz43EQxLM1hzBAU78707lE9U18Gll1tQwSy8dc2G7n73X94R > > 12 // < CALLS 0,0149028821849998 ; quote ; 0,00223821815908052 ; 0,00219345379589891 ; 0,0204081632653061 ; 4,4 ; 0,00215540408719454 ; 0,0023210322309665 ; -4,5 ; D73cE1c2D7D85AbF1a61AcFbfE1AbAaFCABfec1FdFD28CFAeFDBFeBcdDfeAE1c ; < 538129m2y0o4v5hToWvo9DKlsNI9X78T0PK6C5yMdO732tF52lycw6ewfMj5Ib95 > > 13 // < CALLS 0,0155802859206816 ; quote ; 0,00201439634317247 ; 0,00197410841630902 ; 0,0204081632653061 ; 5 ; 0,00193986367847509 ; 0,00208892900786985 ; 9,4 ; 9E8Af5403F1F4De0E53dA6Ab0870BDffebAebBbCfdF7dbaf235A2cFBda6EccaC ; < 9Ha4bSqJ7tLHQP3BXfG0cY19wecU8B47B047c64UGFA0380Q7TMi34NQD8okQ2Lh > > 14 // < CALLS 0,0162576896563634 ; quote ; 0,00181295670885522 ; 0,00177669757467812 ; 0,0204081632653061 ; -8,1 ; 0,00174587731062758 ; 0,00188003610708287 ; 1,9 ; 9afC59fCd0521fEbdF9F83DEf6F02d7df3Db8ba9F0a3901DEeCFBDbda7Cbe198 ; < 2Yb0Bb9SoOiZRt4K60Ox9kVjx713v5uif62k0ygOI8cTI7knaGl3XGd1Fw1358Ko > > 15 // < CALLS 0,0169350933920452 ; quote ; 0,0016316610379697 ; 0,00159902781721031 ; 0,0204081632653061 ; -9,6 ; 0,00157128957956482 ; 0,00169203249637458 ; 5,2 ; 433CdDF3DbAD8B7Fee9Cdf0EaE1AA8bf5db736aCcec22cAbAFdFD07f637bDfc3 ; < Qw54w173c9E29KoDSfgxZrD8O84zwvvXvFl2JkK9gG7kxlevuQX878ecPPy6r6L1 > > 16 // < CALLS 0,017612497127727 ; quote ; 0,00146849493417273 ; 0,00143912503548927 ; 0,0204081632653061 ; -0,6 ; 0,00141416062160834 ; 0,00152282924673712 ; 7,2 ; 2B4Faec0cBDcCdc5DC468b8a0d2c10D9CE08Dde1bA4e9e576Ed349Bb9eEAaA7b ; < 7Wcq2a9tQyTXUlcqjLeqVlZ4ux5V1d81Zqk20s96o4PdPig1RB08mjGRanuwT9c5 > > 17 // < CALLS 0,0182899008634088 ; quote ; 0,00132164544075546 ; 0,00129521253194035 ; 0,0204081632653061 ; -5,3 ; 0,0012727445594475 ; 0,00137054632206341 ; -7,5 ; eAB567F12Eaafc4a680FbA64fcFfc0fedC339E5cAaEAFeFfE3C58CEEDFE19ADf ; < AyjobI46bQyGMnR78jtS8gBn9Har3ikeyqcQj4qs0Usg75gOiX2ICeclU3nWNx6l > > 18 // < CALLS 0,0189673045990906 ; quote ; 0,00118948089667991 ; 0,00116569127874631 ; 0,0204081632653061 ; -8,6 ; 0,00114547010350275 ; 0,00123349168985707 ; 3,6 ; D6Ee4cE4abF5ec512AD8BBbF16FFDc8BDe333a7e53D5CB1b4aFEAc8B66aa9FB9 ; < i972C12CQUj0ZkR0h3A0K3767539gXg9gJFIn2EoAdukJ6Aa2NU4eA8KB55mlN70 > > 19 // < CALLS 0,0196447083347724 ; quote ; 0,00107053280701192 ; 0,00104912215087168 ; 0,0204081632653061 ; 8,4 ; 0,00103092309315248 ; 0,00111014252087136 ; -9,9 ; 7bE027D59bece1fdCDE0FEFdfd4EFFbcb2D2ea7F9aCc4aD2E2cFB5Ec643DafBD ; < 4VPM5MoVhR20KI9dK3V7W7dR4br2H7DTEpeq1D0TknshR1W1HT4XfPg2BQtX1Yf3 > > 20 // < CALLS 0,0203221120704542 ; quote ; 0,000963479526310727 ; 0,000944209935784513 ; 0,0204081632653061 ; -8,4 ; 0,00092783078383723 ; 0,000999128268784224 ; 9,6 ; aA4d94cbF9fCbbCB27AE4C6FC461Db7c7ba57078dDcaeDFEcDaEECfBfd3eed30 ; < C63lA6s8zuQ8mf2ZyWbk91B06No8ul6Pr5tzs7ugf1c05BwX36mQQh44xE1eiP8X > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00677403735681808 ; quote ; 0,000963479526310727 ; 0,000944209935784513 ; 0,0204081632653061 ; 0,3 ; 0,00092783078383723 ; 0,000999128268784224 ; -6,4 ; bA88FC05aFBa3bCC14FEB4CDDAa76EBFa8d3bbF7b127ad34F29de4d4f0FcA1dA ; < Y9tDR9r4645scDk0dQjFNoE5Dw9cqX9h2tj0K7F021o6wU9qfU4EJpquV0H4fO55 > > 1 // < PUTS 0,00745144109249989 ; quote ; 0,00107053280701192 ; 0,00104912215087168 ; 0,0204081632653061 ; 4,4 ; 0,00103092309315248 ; 0,00111014252087136 ; -6,7 ; 9cDdED07aCbEb3Bb11edCcDe597F9f8a9Ab07edB9e954e5197Ee5F6DD6CD98bB ; < k5H5ECD73z4z9Q17W193ZADoMPcna5lmIJRczlOtRg8xpyy57ByERtZUeUYiEAx8 > > 2 // < PUTS 0,0081288448281817 ; quote ; 0,00118948089667991 ; 0,00116569127874631 ; 0,0204081632653061 ; -2,1 ; 0,00114547010350275 ; 0,00123349168985707 ; -3,5 ; c7Bc148cB13e5cC65dbfcE36D9fbbe9DAa9a2fCa446E395cd0A364FcB794AbAa ; < e7T65E36l2Z97QOrnID5Gti00qB6Ok3pG616W7evi53764R363omX7ZLz0K4NQ55 > > 3 // < PUTS 0,00880624856386351 ; quote ; 0,00132164544075546 ; 0,00129521253194035 ; 0,0204081632653061 ; -1,3 ; 0,0012727445594475 ; 0,00137054632206341 ; 8,7 ; E32e09cF71e75c827cd98ceEBf9b9AC2c73aCEada993Dfe4d71fEC21Ecda7b5E ; < KU98t15mXltlAZMz16XM140Z02gDbTjS5160098jC19VLs2L3a03343KJpiUICEs > > 4 // < PUTS 0,00948365229954532 ; quote ; 0,00146849493417273 ; 0,00143912503548927 ; 0,0204081632653061 ; 5 ; 0,00141416062160834 ; 0,00152282924673712 ; 6,8 ; 00accab3eFdcdDD7A2CaBc2D0f5feb6effdeB880A7EBDAeC8aA6DfeACF6Ff4BF ; < 7oa0G3a9P9PJx2xQI84Qk7SVr9moVrAyBv67JDZ4DoaK2K6rH2IQK3Z3wSQcF1rS > > 5 // < PUTS 0,0101610560352271 ; quote ; 0,0016316610379697 ; 0,00159902781721031 ; 0,0204081632653061 ; 0,3 ; 0,00157128957956482 ; 0,00169203249637458 ; -6,9 ; d7Ee7bde5fccF6aE03cAeC0FE6eFefA7e6aB508D1faCd4B02F70A5aD6BB4FAcC ; < 6hfHqUc8660oQ8H54dWFA8VoT74kYiuP1j1UR6ry1DZGAu632ND9OiY988bt5ZBr > > 6 // < PUTS 0,0108384597709089 ; quote ; 0,00181295670885522 ; 0,00177669757467812 ; 0,0204081632653061 ; -3,5 ; 0,00174587731062758 ; 0,00188003610708287 ; 3,2 ; a9dc7BB9CD7feCa6bF484D41b3cBEc8cC9FEfc80bE95cEfFEAc2dFEcDACBD7b1 ; < u2zg84yK53b3ry1sR05Za3j8R3HI6b0N909G831y470QAZw0cOO88S8a9t32gM0D > > 7 // < PUTS 0,0115158635065907 ; quote ; 0,00201439634317247 ; 0,00197410841630902 ; 0,0204081632653061 ; 2,7 ; 0,00193986367847509 ; 0,00208892900786985 ; -8,3 ; eEdb4fc84095efEcdAdf1A5Bb51e66dECf1e80e0Eff5DaDFBadDccCed430d5FC ; < pA1S68c3wHs10cNLak1Hn0Dn08u159Y4RB6DlgmA8QAfVI2O8pNCpSzUoD92gPS6 > > 8 // < PUTS 0,0121932672422725 ; quote ; 0,00223821815908052 ; 0,00219345379589891 ; 0,0204081632653061 ; -7,2 ; 0,00215540408719454 ; 0,0023210322309665 ; 9,6 ; cA3AAdFeCCB0Aa3D5CFeEdBeCA2FEcc6dAAaA9e7aEeBa58fc67F1A2C967aA3ca ; < M1WEA5EKPsCJ1KsmY1qouCEVqGPWKn51phB58oeR4077k30KUN7FzwT8CdMU8igR > > 9 // < PUTS 0,0128706709779544 ; quote ; 0,00248690906564502 ; 0,00243717088433212 ; 0,0204081632653061 ; 3 ; 0,00239489343021615 ; 0,00257892470107388 ; -5,8 ; FadC39BB78c2EeD03A94cBeAdFD07dAafA8A220eBcfeF7c9CAbB5DD2ae3EDe8D ; < FMoi24352C3vfs1jYEO8Xtab66VE0y4st4YMomhT9oxlnF79J54P235o47D87xYG > > 10 // < PUTS 0,0135480747136362 ; quote ; 0,00276323229516113 ; 0,00270796764925791 ; 0,0204081632653061 ; -3,5 ; 0,00266099270024017 ; 0,00286547189008209 ; -6,3 ; B804cFB46FCAeFe8aFCE0e8AcfAdFFafbafaB14fbBaeEE11FdD6Fe3de38731fD ; < 25P906Xq1808tPlwOH1D8bgYnKHGl7p7rSP6HZ5O4c3kEmK25CXB4peeb08R82Y4 > > 11 // < PUTS 0,014225478449318 ; quote ; 0,00248690906564502 ; 0,00243717088433212 ; 0,0204081632653061 ; 8,5 ; 0,00239489343021615 ; 0,00257892470107388 ; -0,9 ; B8EBCdBe3FAf13E0AB1CEad87FADf0Af10Ee6f9dBAcEfE8f2e3DE304fF36c818 ; < tmaV0a643P7elT3TiOCVvps9NHp4EXhmRc34QXqSG9M0i9N262C4y2GwXo1cXX5A > > 12 // < PUTS 0,0149028821849998 ; quote ; 0,00223821815908052 ; 0,00219345379589891 ; 0,0204081632653061 ; 3,7 ; 0,00215540408719454 ; 0,0023210322309665 ; -8,2 ; 125fedbF694AfAfebDBDDdfC3acF0b1F9eCbBb7f8DB3b0acBA0cFbddf3DA2B9F ; < 83sg4DaOWWJ53P5wf43AD8A37Rn5G8iQq6i30pRC69Rut67CvVe7A0l2W8BiBMH0 > > 13 // < PUTS 0,0155802859206816 ; quote ; 0,00201439634317247 ; 0,00197410841630902 ; 0,0204081632653061 ; -9,2 ; 0,00193986367847509 ; 0,00208892900786985 ; -0,5 ; 1cdeaDBA6BA9cba5EF5eDBB4bDeB541fcd286Ded5C0Ff0C9bDB3BFCcFF2BBdc4 ; < rdld06Hu193BcJJH0vS5vAaxJd6sqW9ktf2Kkp0YC2E4jZhzbeyJUC0BRPT2DIh9 > > 14 // < PUTS 0,0162576896563634 ; quote ; 0,00181295670885522 ; 0,00177669757467812 ; 0,0204081632653061 ; -7,2 ; 0,00174587731062758 ; 0,00188003610708287 ; -7,3 ; 8DC4c1eEf0BDEEAa6e3CCAda87Bd1Bb58DAD66DaDaBD7DDdC163E3e3dDF76319 ; < 4mrRQ64n5J86625jSjz74856ROBiG5vG7v461jsB8V5hIhB6w61tTv0ew9VhP77y > > 15 // < PUTS 0,0169350933920452 ; quote ; 0,0016316610379697 ; 0,00159902781721031 ; 0,0204081632653061 ; 2,8 ; 0,00157128957956482 ; 0,00169203249637458 ; -5,6 ; decaBcfABA97c5CbCcb676d90CDECCAa9F2D91eEefe9d42D0CfaeC4EDDcF0d33 ; < iJ33Qqt562OO3gG3XU5Uc9767p8CTXPp7RxOHXEy26h1n85ypDz5BkUoN26f037L > > 16 // < PUTS 0,017612497127727 ; quote ; 0,00146849493417273 ; 0,00143912503548927 ; 0,0204081632653061 ; -9,7 ; 0,00141416062160834 ; 0,00152282924673712 ; 6,5 ; 90BDd6eeAd6E4eF6dAb1Eb1caFebb39cDadBF8CBfFF9C1c70FdaB3eaec3ADAac ; < 99gE8GcFAS1H01JzD7oZe0cW8kP74g6afLwk3e94PPI9VQp78ue94B8w9EecsUdS > > 17 // < PUTS 0,0182899008634088 ; quote ; 0,00132164544075546 ; 0,00129521253194035 ; 0,0204081632653061 ; -0,3 ; 0,0012727445594475 ; 0,00137054632206341 ; 6,4 ; e42cdDc2fDBD86A6cbC0F11DBCbeEeedFFdffeA4CC6ae8FcdfCb2eFe8fa8ff1D ; < mH8h0y6UVvR175VRwut2fp69P9fQwmgTP5gga09MF9fIdslX0k2Fbokwo0dfRQab > > 18 // < PUTS 0,0189673045990906 ; quote ; 0,00118948089667991 ; 0,00116569127874631 ; 0,0204081632653061 ; 4,6 ; 0,00114547010350275 ; 0,00123349168985707 ; -4,6 ; 2BbbFe1D0ADCBb1aDcc5Cd2f2daBaAD6d272cd234Bd4AeEb3cF84accEba4FA26 ; < VaKeMqt651WxP2599ZwUsOhdS7Y8PjD3748Q93fk4wlbNGWLh7i5O122f4tn4kLm > > 19 // < PUTS 0,0196447083347724 ; quote ; 0,00107053280701192 ; 0,00104912215087168 ; 0,0204081632653061 ; -0,4 ; 0,00103092309315248 ; 0,00111014252087136 ; 4,7 ; 6523D75C77CBffFECEDBD647E3EbA65ffAaAFbD8AaCdeA97cBDF3cc90DeaB241 ; < mRmeq30XB8f0taaQ47Jk1Z4vrMQFD9C256O18i944Pov3rhMTHzdefk1s08cJrc7 > > 20 // < PUTS 0,0203221120704542 ; quote ; 0,000963479526310727 ; 0,000944209935784513 ; 0,0204081632653061 ; -3,2 ; 0,00092783078383723 ; 0,000999128268784224 ; 1,4 ; 76ac23bDfbCfbCDcC6AB7FaeddA28Bedb700134ceEdD1Df356eEb4cfEac94eeb ; < 3j4zW6DTo7ZXj6ZTU8JrnZzBw0c8Mto767OLCuTRj9fr0zZ10D6L2tiFGdZ79Kit > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00691368107470194 ; quote ; 0,00156527268623392 ; 0,00153396723250924 ; 0,0204081632653061 ; 8,1 ; 0,00149953123341209 ; 0,00163101413905574 ; -0,7 ; 4dBfde73FEfbE1Ba2BCcbe9f2Ccefc7d1A7da8b9Be22cE3ca69e4daFC3dacFf7 ; < nCSOAD1Sk0TQ2HRv4KxZl4IXt8BPAHc4ODxaf7fxqsibY8Du38WimMX9dfM22zqZ > > 1 // < CALLS 0,00760504918217214 ; quote ; 0,00173919187359325 ; 0,00170440803612139 ; 0,0204081632653061 ; -5,5 ; 0,00166614581490234 ; 0,00181223793228417 ; -5,3 ; ad4Ee1D5dD1ECdCcbf7e4fa3dF54D7BC4EFC7F86ddf57c9B7158cC1bC8D3C585 ; < omK651re5Sb5ZcM99Uw308iK8W826STyF2s8u8NN42XZ11lMGB75QyP4Se65yYDl > > 2 // < CALLS 0,00829641728964234 ; quote ; 0,00193243541510361 ; 0,00189378670680154 ; 0,0204081632653061 ; 1,4 ; 0,00185127312766926 ; 0,00201359770253796 ; 6,9 ; 55cE3EEDA12BEB2EEeD8B42aFAfA914bc3F9FF8add0fEe578F1ff4F26AEFfedC ; < hL5NsaaWBAc279kE2EzUU7pt71S4Ueeg2GgZp67gwh7j0c0DgdHX114e6WhSkKP4 > > 3 // < CALLS 0,00898778539711253 ; quote ; 0,00214715046122623 ; 0,0021042074520017 ; 0,0204081632653061 ; 6,6 ; 0,00205697014185473 ; 0,00223733078059773 ; -1 ; 0Ddb1A7cDEf22aBe6FCbeFecCCb9DCe5aAD30d4f1Aeb3E17D4c95fAbEB2c7b5E ; < e72QhBl470LrLu3git36DN23oq8DaFiSdy8R2017X6jfT3wX0i3UKk2OLw7rJ69a > > 4 // < CALLS 0,00967915350458272 ; quote ; 0,00238572273469581 ; 0,0023380082800019 ; 0,0204081632653061 ; -5,9 ; 0,00228552237983859 ; 0,00248592308955304 ; 7,2 ; fBECFec0ABaF9f6B828BEbD6CacB7DF6f0F136eeCAA00bd97cdDbfcAAfDCeafB ; < r4GcRXpkHtA31utW9i6I0zg9Y0ejOxM9K2i2Vo11yMJe41bHf7h3HuNfyND7liF8 > > 5 // < CALLS 0,0103705216120529 ; quote ; 0,0026508030385509 ; 0,00259778697777988 ; 0,0204081632653061 ; -7,1 ; 0,00253946931093176 ; 0,00276213676617003 ; -1,4 ; D0ECF2f9C4EE2d2AAdEa2f02bEE57bEdFce0c4F7FDBb0CEcAEA6AaD48d0ACcec ; < 05P56517ex3xQMQZJ7K2842GE5hd8s7cu9Amu70zDfV884V8BYc2u39Pgj9Lzn2B > > 6 // < CALLS 0,0110618897195231 ; quote ; 0,00294533670950099 ; 0,00288642997531097 ; 0,0204081632653061 ; 5,1 ; 0,00282163256770195 ; 0,00306904085130004 ; -6,1 ; B6b58ee2Ea3FbE8327A1FD9a6Fb6ECc8BEe45DDaFFCF4cEFa87A63ED74Fdf2cB ; < 6f2lcQwZ33857cxc3VXK1skaWqb2Y1o3G3S4882YbkAO67EYg3S56dndHdVv4P6E > > 7 // < CALLS 0,0117532578269933 ; quote ; 0,00327259634389 ; 0,0032071444170122 ; 0,0204081632653061 ; 7,8 ; 0,00313514729744662 ; 0,00341004539033338 ; -2,6 ; e3Cb32EEDBFF70eD1CEFBcaeFCfcfD8dC79EAAB991eC6afC04Eb7DcD1E1deDCB ; < 7qzg0If8dA1dNizf5Z4NJ4m77ruP4XxqNx61762Y6r45v0UzO353j1Q6woV3nzaq > > 8 // < CALLS 0,0124446259344635 ; quote ; 0,00363621815987778 ; 0,00356349379668022 ; 0,0204081632653061 ; 4,2 ; 0,00348349699716291 ; 0,00378893932259265 ; 8,4 ; FdC2FdC9A5CcADfF9e5dB2EeeaAd7BC0C7cC2cfaAfAcb05181abcb3EDFcFAbaC ; < 91f6ZVn708L0JUhn797lybX7YQTg54SSj44rWt3Kh0UNBtbgyc7Jmfq38EZCulX3 > > 9 // < CALLS 0,0131359940419337 ; quote ; 0,00404024239986419 ; 0,00395943755186691 ; 0,0204081632653061 ; -7,4 ; 0,0038705522190699 ; 0,00420993258065849 ; 2,8 ; Bfd2c11DAd77AfBcC4Cece97cbACCBc757fBEF660Db2c4cDB92cDabB6EeC7aAc ; < rPgXuwI4NR63jMeLsE6LSE1J24kFXKc1Y2ftK73DZi69wYeEDzoZj5Z2BZSz174x > > 10 // < CALLS 0,0138273621494039 ; quote ; 0,00448915822207133 ; 0,0043993750576299 ; 0,0204081632653061 ; 6 ; 0,00430061357674433 ; 0,00467770286739833 ; 5,3 ; 62Ce9CbfC9FfBEBF42edFeC0AF6715Db5E7b6DC1dB2FBbE9B6AC0AF6Fa1dDbAf ; < z0c2VcfxDC885B9xw1D84Jyj59kegkQH9w51E92TgK629ET6XJ7ASVPsr1BQ4ku6 > > 11 // < CALLS 0,0145187302568741 ; quote ; 0,00404024239986419 ; 0,00395943755186691 ; 0,0204081632653061 ; -0,4 ; 0,0038705522190699 ; 0,00420993258065849 ; -5,1 ; BBDBcfEAe3B9ccD9fecBFCBcFE5Bf9B6D8bd4caB703c61c8A57DCABF7ede2eAe ; < N3PUAZf66H9S74Z9120T5kJ2rVF82sw9QB89XkNIcBRRS30D0654cO1Q6hztqy8W > > 12 // < CALLS 0,0152100983643443 ; quote ; 0,00363621815987778 ; 0,00356349379668022 ; 0,0204081632653061 ; -8,5 ; 0,00348349699716291 ; 0,00378893932259265 ; 6,5 ; 2dfca3F1b1caCcb2BCCD2f9EFCCb6bddDbf4b06dF7808Aabcfe55d12CC83fCAd ; < C311p36I2GhZLALFnjHxzH8Z5tX3Vu0OHBGXE1w9836lk0nqKP2Hp5lE7aW485Mi > > 13 // < CALLS 0,0159014664718145 ; quote ; 0,00327259634389 ; 0,0032071444170122 ; 0,0204081632653061 ; -3,9 ; 0,00313514729744662 ; 0,00341004539033338 ; -9 ; ef9DfDFBcf7FE83aCd2dCdd0Fd2fF30b66dbC2AAcEb2eaADDD9ffcd3EDb71Caa ; < 06wIW8ly1bf59G8q3a8G94FX32I8Z3Rko0e1GN36DT3R7Q7YJyqpaT5cww9rt8N7 > > 14 // < CALLS 0,0165928345792847 ; quote ; 0,00294533670950099 ; 0,00288642997531097 ; 0,0204081632653061 ; -9,7 ; 0,00282163256770195 ; 0,00306904085130004 ; -0,1 ; A4ddCc4fef58BeDb9dAe26dbFfbe038cFd6D0C3a8BA0BcdEadACdFcDbA6ac66D ; < f6l326N1t39Zlx3VB2mD65gmJG0N95xX0CnT5Y9s8S78i2z5TDNd00ax62C6yD3K > > 15 // < CALLS 0,0172842026867549 ; quote ; 0,0026508030385509 ; 0,00259778697777988 ; 0,0204081632653061 ; -3,7 ; 0,00253946931093176 ; 0,00276213676617003 ; 5,3 ; fcd44BBC84De1BbFFCE5ACE3Dfea29C5eFAF5EaAF6cfA63B2bEfcD8CB5EdD30b ; < zuY963eEYiAUaD4QyCYJgh3BID1mIBPj32RkmpajAW550MA7Yg9gt4C9Jl4ffY5X > > 16 // < CALLS 0,0179755707942251 ; quote ; 0,00238572273469581 ; 0,0023380082800019 ; 0,0204081632653061 ; -8 ; 0,00228552237983859 ; 0,00248592308955304 ; 8,2 ; EB4A89ce8beBbd4E2C5877c6dfBEe1A0417cbEe2bfd7dED21C4df3b6D6FD5AB8 ; < W6QtBjEkn149z0uPAcViRqc58997UV9x18G6A0KAr3h30S84w5NSZY23TJ23j1jb > > 17 // < CALLS 0,0186669389016953 ; quote ; 0,00214715046122623 ; 0,0021042074520017 ; 0,0204081632653061 ; 1,1 ; 0,00205697014185473 ; 0,00223733078059773 ; 8,8 ; Ebf2F979CdAbdb1384A54Dccaef8d6B9d7fe5BBAdbDBa9e9D27Ffb2cCCf2bbDD ; < GzKd3abS20dL5BS7RR17lebB3VDqLZeE9G7S7L4jR2FK5WgM3O298fu5TV28e8y5 > > 18 // < CALLS 0,0193583070091654 ; quote ; 0,00193243541510361 ; 0,00189378670680154 ; 0,0204081632653061 ; 0,4 ; 0,00185127312766926 ; 0,00201359770253796 ; 8,9 ; CeCc8AEDEdbB7acAaFAFEF22F17ae8aaCEF1d9C81D7C3bE9BaeDdcfcbcfeB05A ; < Pyn7ES9sGMP39g66WXQ9Yd69YpaUo1Q2DOxrXUzBtwUgP9eddhVhCVY5v3z1AtIi > > 19 // < CALLS 0,0200496751166356 ; quote ; 0,00173919187359325 ; 0,00170440803612139 ; 0,0204081632653061 ; -6,7 ; 0,00166614581490234 ; 0,00181223793228417 ; 6,7 ; 0cfD8690C2dEACaBe13Fdcccc32de92cbE085DAdbCAFac67c6CB3324483e01B0 ; < Phft874bFLE3rT0LAU2tH00TI987qYXA8I5y4nD6iJiaugqla2MxSE0k4QMqKcZs > > 20 // < CALLS 0,0207410432241058 ; quote ; 0,00156527268623392 ; 0,00153396723250924 ; 0,0204081632653061 ; -0,6 ; 0,00149953123341209 ; 0,00163101413905574 ; 7,1 ; 6e8DB8bDe7FEcEa14A52aCdeebcBF0Db2b190bcD6BaB3cEFe9ed68DBbf6D7ccC ; < x35fyXWdh8OswVa2oTTgP27k0y2ECqgJg49a6Z3lva51jDp3eBITfH3052iJyJqr > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00691368107470194 ; quote ; 0,00156527268623392 ; 0,00153396723250924 ; 0,0204081632653061 ; -0,4 ; 0,00149953123341209 ; 0,00163101413905574 ; -3,1 ; AF8FD37bE5eBaaC3fAfD73F92A1d8aBda29aC7F6A1dEDcd6318faAc1AB38452d ; < 4iSachU495gtpUxsYiaXGw94QtrswJscnB93E0t7O12l9299Gt94L9v1OiL4R04A > > 1 // < PUTS 0,00760504918217214 ; quote ; 0,00173919187359325 ; 0,00170440803612139 ; 0,0204081632653061 ; 5,1 ; 0,00166614581490234 ; 0,00181223793228417 ; 0,1 ; 081Ce4aADbBAEbBDddFaaad4cbD6d13cdC04bBc3a789AE99A9B0EF4Af5C2BEf4 ; < 4X3FW6siAU73b1FS66wWZh8e3xxD90ATHdwBx2RpspKK2j6PVV7t0uLbbiuqa0Ep > > 2 // < PUTS 0,00829641728964234 ; quote ; 0,00193243541510361 ; 0,00189378670680154 ; 0,0204081632653061 ; 0,9 ; 0,00185127312766926 ; 0,00201359770253796 ; 3,6 ; Fca8aB96cdb4EbF6bb1b0d0DeBe9eAA122CD0deCfAcEef7E462bdEFbcfc4CD1A ; < 544yWtKdVmF25979ZNy4hbZ301N33nTvY8806M2Ig17Q45YZBvp276gP63sT5ie3 > > 3 // < PUTS 0,00898778539711253 ; quote ; 0,00214715046122623 ; 0,0021042074520017 ; 0,0204081632653061 ; 6,3 ; 0,00205697014185473 ; 0,00223733078059773 ; -2,8 ; bc8b68bd66F7CBfAEeFb6A0EcC2AB6Db4250b0E16cfCbAdfb6bfAdcDd93adBfe ; < 0ws5kC9OBf9aM7Wx8234eMZ4zeoeEcr9ZCRmxn2631tgjQUy2q5s92E3Z61zT729 > > 4 // < PUTS 0,00967915350458272 ; quote ; 0,00238572273469581 ; 0,0023380082800019 ; 0,0204081632653061 ; 9,5 ; 0,00228552237983859 ; 0,00248592308955304 ; 2,1 ; Afff0E8Bcf4aDAEc855fdABEcBf7F5efcbea0Df2e6c2fBfBBc9Cb302a4BAAE83 ; < AahqeuLGP15sHl8lp2kvAjsH1NQAxQ9soE73Abo19DXHoe7nJ4d5xu6Ty1v9bstv > > 5 // < PUTS 0,0103705216120529 ; quote ; 0,0026508030385509 ; 0,00259778697777988 ; 0,0204081632653061 ; 3,5 ; 0,00253946931093176 ; 0,00276213676617003 ; 8,3 ; 65bbf70DDDeeA264aDeb4FdE0E17eCDcdFCDEB7bb6eEa9D04aCF6a8E4EF3ee73 ; < K3FerY0M50vZ9WVc6PC7Li8u0lI2qagfxCeGp2w9CkO51hxr3Gb094465QQj7541 > > 6 // < PUTS 0,0110618897195231 ; quote ; 0,00294533670950099 ; 0,00288642997531097 ; 0,0204081632653061 ; -3,4 ; 0,00282163256770195 ; 0,00306904085130004 ; 4 ; 1ba0BbB474AFF88831cd1dEfdde84dcecf3fBCBaeA035ECD3B3edfCaC0Ead88C ; < X16lxU3buff6v6FI9P9bv62C5AfDWI9hCCyN23TxM86m1XGsG4fG1nh0wGUNo4wm > > 7 // < PUTS 0,0117532578269933 ; quote ; 0,00327259634389 ; 0,0032071444170122 ; 0,0204081632653061 ; 8,7 ; 0,00313514729744662 ; 0,00341004539033338 ; -9,8 ; dfd31FFE4AE8a9d2bfe9Ab0B1Ad55004cfDF7ea80Cabbed2E6E0C43CCB2DAacb ; < C88N5X086h6m7cuY1MQKnq6710rKcw6fn7rmVIkK56HVtjRg84Vmt897upFkvUsL > > 8 // < PUTS 0,0124446259344635 ; quote ; 0,00363621815987778 ; 0,00356349379668022 ; 0,0204081632653061 ; 7,7 ; 0,00348349699716291 ; 0,00378893932259265 ; -6,5 ; D1daE255c1ECAf6cBE6a7eDf79cB3ECf6BB246A6ded2C8a3Ba9BAfAaAAb46daa ; < Y22e2L577i090csGoE269K629e383dkF9dp9J7lx73P3tJ7k9J1MDrJ45Wqm8vPo > > 9 // < PUTS 0,0131359940419337 ; quote ; 0,00404024239986419 ; 0,00395943755186691 ; 0,0204081632653061 ; -0,3 ; 0,0038705522190699 ; 0,00420993258065849 ; -7,7 ; ADF6eC5523BF9bcEBE9EC5cFFcB9E1Eb5a0Ef7CEedbfecC9D4F92Baf1F2eaAC2 ; < 49YIfWil38LlDE9805n0T8n18nV4QXZ808D3svgjfZcjDW8m6LK3rnz0m5IiIi3e > > 10 // < PUTS 0,0138273621494039 ; quote ; 0,00448915822207133 ; 0,0043993750576299 ; 0,0204081632653061 ; 7,2 ; 0,00430061357674433 ; 0,00467770286739833 ; -7,9 ; d85ddF018cFc69b8d9ea1fc13adbFd2Dca3EBabD4aD1eDdDaBCaC3A56a2FEe4f ; < mK7o9MFKq8gXL8U0UJ0U6M19OHcFFgyrR96GWa8w2u42J2X09hUMYSwmoh6IDovf > > 11 // < PUTS 0,0145187302568741 ; quote ; 0,00404024239986419 ; 0,00395943755186691 ; 0,0204081632653061 ; -3,2 ; 0,0038705522190699 ; 0,00420993258065849 ; -7,9 ; 4ec5849baC4A0cD759D2BF1dED6512390cAB238eEBdDE5b9b88F0ae5E79Ae8C1 ; < 588ex93tRdm0m6sTy2PA4dK5lWr8vpgM1XG5PNZR2YjYam4JTE0OgKYLkxLh325k > > 12 // < PUTS 0,0152100983643443 ; quote ; 0,00363621815987778 ; 0,00356349379668022 ; 0,0204081632653061 ; 3,5 ; 0,00348349699716291 ; 0,00378893932259265 ; 1,9 ; e2F4D36BD9deF08B1Dc51f855c78cAFe2cFCB4CBEeBEB9C51104B6fDE3Bb72B5 ; < 12s1bpkVETe05ZC012W84U8819Av8YV536oHjqfV4o2TpBjuHytSvuicArx3D9vu > > 13 // < PUTS 0,0159014664718145 ; quote ; 0,00327259634389 ; 0,0032071444170122 ; 0,0204081632653061 ; 4,7 ; 0,00313514729744662 ; 0,00341004539033338 ; -1,7 ; ee0c7A269dE6FFCA2CBdAca76cFCE8B1DCddbEFEefA03cFeB02FDabE83ddfA98 ; < v8h5R63qcGGRQ09e2t8fTXg75h3344Y2fbqh0f2HQ7kvk9I3tOlWQzTkGOqxQjOY > > 14 // < PUTS 0,0165928345792847 ; quote ; 0,00294533670950099 ; 0,00288642997531097 ; 0,0204081632653061 ; 3,4 ; 0,00282163256770195 ; 0,00306904085130004 ; -5,1 ; 50eb7ADCC573fBdFdcecBc8ab4c0dDCEdB7d0F5d1F2De9D23BE619A9b8Cbbab8 ; < J3NHxF60x3XY2BhCp5LWOOTGs9j26DxZcaFEvT91pA5XEqWl4Xk9xP6Jh5S5o98V > > 15 // < PUTS 0,0172842026867549 ; quote ; 0,0026508030385509 ; 0,00259778697777988 ; 0,0204081632653061 ; 1,3 ; 0,00253946931093176 ; 0,00276213676617003 ; -8,7 ; fECeFf3021Bdc5BEa4A035D3DA9DaDabFFCebaEaE20dEF5FBf23AFcbABC19a26 ; < mbE7uZI197hWQ5B4xron8uo8sPWfnob7q6OlhzqhjIsw95sU08P0749Jzy4uwab6 > > 16 // < PUTS 0,0179755707942251 ; quote ; 0,00238572273469581 ; 0,0023380082800019 ; 0,0204081632653061 ; 7,5 ; 0,00228552237983859 ; 0,00248592308955304 ; 3,3 ; 1c3FFfb5EcD0E481A6Adb50f61A3dd11EC47eCCEAA77C2fBa2bAaacFaE6FBe3f ; < e84em11vLwQDa5fBL1avUQ70NO3XZx982c1ObL8e4SFRInLGT0XMmR32Rfu818j5 > > 17 // < PUTS 0,0186669389016953 ; quote ; 0,00214715046122623 ; 0,0021042074520017 ; 0,0204081632653061 ; 5,2 ; 0,00205697014185473 ; 0,00223733078059773 ; 0,6 ; 0CFe8dbdFBEB6bcbf4f02BcABFb3F5E1aeEEecceC1C5C42bffdEeAE811bc4Cfb ; < s90K9t44204Zmn6Ai42LRtJgT7qi4S37MywEGO58BL5U0cvHgcxhgLz755yE3u4D > > 18 // < PUTS 0,0193583070091654 ; quote ; 0,00193243541510361 ; 0,00189378670680154 ; 0,0204081632653061 ; -7,7 ; 0,00185127312766926 ; 0,00201359770253796 ; -3,5 ; 7A5fF3DdCeEab83EBFbaf4abaF8DDcc7Ae8FbCdD3FeA8cDEdFBCbE8b109CaE4E ; < 9N22aAH8pDY4a659oiLjyO8AnL6Om6TqMPOsfIhc11d3dDi0CZ60X1He0tVgrBwa > > 19 // < PUTS 0,0200496751166356 ; quote ; 0,00173919187359325 ; 0,00170440803612139 ; 0,0204081632653061 ; -9,8 ; 0,00166614581490234 ; 0,00181223793228417 ; 2,6 ; FD5FF93CCAe1AFc25DBcaDbAab3d2d5d9FAfdACf09e16D2bd8791ACd46CFbEd2 ; < 7MC06Sr99eK87cBSe1iV964Z2Moy3e359c33p72Y0Q8h2mZVm957Ec0GY5yX81Bd > > 20 // < PUTS 0,0207410432241058 ; quote ; 0,00156527268623392 ; 0,00153396723250924 ; 0,0204081632653061 ; -6,1 ; 0,00149953123341209 ; 0,00163101413905574 ; 8,6 ; 4d7d5dEe5f7CAf6EaCDCDbB0Ba2C221e9566fAec5EB5A4e726E6fedacAeECCd4 ; < 4hq4AeTLodUO04xTO00N2A8DQ54mda67a4714E41N8Wt4t10C9BEJn4u3G0VioU6 > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,500444645932081 ; quote ; 0,00770252414984179 ; 0,00754847366684495 ; 0,0204081632653061 ; -2,7 ; 0,00750996104609574 ; 0,00789508725358783 ; -9,3 ; d5Ffb7ea899bCCB7bFDe26cdaD5ADe2Eaf13B8aBbeFFEaBa7CbD4ecC3eEf76fE ; < B6Jk9454fe5QjknsPYpynlRuuX373ZVY4yN9aPFcq0fS92g9ispZOD0Tg453D967 > > 1 // < CALLS 0,550489110525289 ; quote ; 0,00855836016649088 ; 0,00838719296316107 ; 0,0204081632653061 ; 1,4 ; 0,00834440116232861 ; 0,00877231917065316 ; -9 ; fd590f0391d0A4EF4cD0efC0E3Dd1E4dDCc1446d4d4D7dAdEdCcBcd1Cfe69eDd ; < 3kYbr0Kdr7Z9ovoUixhrCuFf611526LOd7ZiWzHA0G41lLzJ03mXM6OI7Gv4BUU0 > > 2 // < CALLS 0,600533575118497 ; quote ; 0,00950928907387876 ; 0,00931910329240118 ; 0,0204081632653061 ; 1,1 ; 0,00927155684703179 ; 0,00974702130072572 ; -7,3 ; CdBDF5ef5BBeB42a4a8d5b959fBE43dBEbABcb2ddaef5aa539DfAcAEd8fc1BdE ; < 2tOtI6507RcMcD9fDqF3ZNPDkNJfa95kE8Mn33JbObNc7v0BWsQ06WyBAaY19GYG > > 3 // < CALLS 0,650578039711705 ; quote ; 0,0105658767487542 ; 0,0103545592137791 ; 0,0204081632653061 ; 7 ; 0,0103017298300353 ; 0,010830023667473 ; 0,7 ; 7dBBf7B5daC62B9cbE4692D8ffFaECDfe7EE5068b1eB6FcAc3c8b2c39F46b17f ; < CBz9tiVYFmCH3q649Wja59Ctt6ND3pv19W4EkWt8ABTAN4eKEah64821XKH5Rni1 > > 4 // < CALLS 0,700622504304913 ; quote ; 0,0117398630541713 ; 0,0115050657930879 ; 0,0204081632653061 ; 2,3 ; 0,011446366477817 ; 0,0120333596305256 ; -7,1 ; deb80CB261dcF6afCaCA69fbaFeaE935fBdE7cD4Fbc0aCcAFd7eCeb2CE7adfAa ; < cQGm0xB8o999AI1Yr636994K10K4MAfrFouCT676zaS94P16437k2CP1Q46HKBmu > > 5 // < CALLS 0,750666968898121 ; quote ; 0,0130442922824126 ; 0,0127834064367643 ; 0,0204081632653061 ; -5,7 ; 0,0127181849753523 ; 0,0133703995894729 ; -0,3 ; a78FCEa5BEEDEdd8ff5Db9F34d0b60f8fa7d6C698BbA39BBCf8D55bA1Ddee6C2 ; < V4Nez2eKAcQ5Tjv2yrF2t3LVBUlWhBx00n510p4tJ6uhX89E9xep8kdu5uxq8xf6 > > 6 // < CALLS 0,800711433491329 ; quote ; 0,0144936580915695 ; 0,0142037849297381 ; 0,0204081632653061 ; 4,5 ; 0,0141313166392802 ; 0,0148559995438587 ; -3,1 ; cfB012F914eAcdB98dF3b5Ffce4f00dce3DDB3F0dFFA1dF02BE9Fdd8fd6DEd35 ; < qkmBXpPIcM34wqgFaXKg4FTgCnDj420ZRiPO6Gmgna2HJ0m6ZE8zJ3r5p4x52jGu > > 7 // < CALLS 0,850755898084537 ; quote ; 0,0161040645461884 ; 0,0157819832552646 ; 0,0204081632653061 ; -1,6 ; 0,0157014629325337 ; 0,0165066661598431 ; 5,9 ; 8BAFf5DE5edF5E5a5b2c7feBBEaA1cEfF418bc9d649adb3ED4DBc695fDe1a020 ; < 98q3njf65IIL26dtveKw2dk7SvBm9ws5s5989cf1OQH1003892DSmN7s6Ib97QdR > > 8 // < CALLS 0,900800362677746 ; quote ; 0,0178934050513204 ; 0,017535536950294 ; 0,0204081632653061 ; 4,5 ; 0,0174460699250374 ; 0,0183407401776034 ; 4,4 ; CFACf145Dbd1D7A0f1c93f0eD8aF8cdC6F2Fe5Bc939b2b2646E46c6df3DCF382 ; < V5a9ujfhpJjMlgSacpOkpXC30U0Gv8M24h930B3nT18MB9CaCKSTRbC0zyJGmNAE > > 9 // < CALLS 0,950844827270954 ; quote ; 0,0198815611681338 ; 0,0194839299447711 ; 0,0204081632653061 ; -0,1 ; 0,0193845221389304 ; 0,0203786001973371 ; -0,6 ; E6Ffca6CADfBCBBB79cDBCcacDfDEE394EFB87BEBD3FcBC97C1fC860aeDEF27C ; < rFmeVC9k5QqUI99KJZs8pV9W60iLDJk84vdXi8ZT9m2bAA3MkROOJhB092KHDGc8 > > 10 // < CALLS 1,00088929186416 ; quote ; 0,0220906235201486 ; 0,0216488110497457 ; 0,0204081632653061 ; 7,4 ; 0,0215383579321449 ; 0,0226428891081524 ; 7 ; ca1eaCB1cccaC57fDbaeAb43522B32653DCa0CCdAcBD9dBbCaD4b7aba7F7ba6e ; < huCGNk8v4CZ8Ev9eCL3I8AQM4IQeiLgAiWox3enCDcGKLCbDarugdzQ3i1297ED2 > > 11 // < CALLS 1,05093375645737 ; quote ; 0,0198815611681338 ; 0,0194839299447711 ; 0,0204081632653061 ; 6,4 ; 0,0193845221389304 ; 0,0203786001973371 ; 4,9 ; 33aBc4C27FcF1A9Ace7c1CCb118afc2C6C649C0d8e6e1Cc0fe39bbDB3fBbffe0 ; < hliBvpWr1ZGE0T6X0S4cvy49A7rzs05Y0Yym4O8ny890vpvFI09BXK54590LL5t1 > > 12 // < CALLS 1,10097822105058 ; quote ; 0,0178934050513204 ; 0,017535536950294 ; 0,0204081632653061 ; 3,8 ; 0,0174460699250374 ; 0,0183407401776034 ; 9,1 ; b5bDCa4DEfba3eaE52BE0e8dc31Eb9EA4D2dfe6e1C2a4Ec17aFaBFbCa21eba04 ; < 9kr6Ru8xC9VYZP7E5IZJJOl7y5Cs8uQToKJ8P6sIIfoc3UBAPPj22870P9ANy9QM > > 13 // < CALLS 1,15102268564379 ; quote ; 0,0161040645461884 ; 0,0157819832552646 ; 0,0204081632653061 ; -2,6 ; 0,0157014629325337 ; 0,0165066661598431 ; 3,8 ; f72B04C497BCA2A73f06fEfBfdFF4E8E18bb1cBFFA1c41BEFE2824F8c6cEabC6 ; < Dgp8QipHD317bmoOm3RKmOf7Zu7jOTs9aCD7ijYe16S6vtX7Qn47C62iNBOE58NA > > 14 // < CALLS 1,20106715023699 ; quote ; 0,0144936580915695 ; 0,0142037849297381 ; 0,0204081632653061 ; -3,3 ; 0,0141313166392802 ; 0,0148559995438587 ; 0,7 ; a1F3E3f0EdFC0f5eDEbCF5CfAB0cABd85A876DDACDbb2adE3ac53Ca56c06f40f ; < 91d22hZc0MYRxbv5HQ63UjN2T4zo2sLxmF2Y4d856P5CG016tEd58sRQtA6L85gb > > 15 // < CALLS 1,2511116148302 ; quote ; 0,0130442922824126 ; 0,0127834064367643 ; 0,0204081632653061 ; -4,8 ; 0,0127181849753523 ; 0,0133703995894729 ; -4,4 ; 4bFf38aEceBBDd3AFFF5A1c0c9bdBdEcBF3ff5FCea7116f0A7FDeBdC7fADebB9 ; < 1vR430033STlo4dY60WH0D5KZizU55jF4G0taJ8HAoVTEUdZspjizCvw511oOoMW > > 16 // < CALLS 1,30115607942341 ; quote ; 0,0117398630541713 ; 0,0115050657930879 ; 0,0204081632653061 ; -9,5 ; 0,011446366477817 ; 0,0120333596305256 ; -8,7 ; cAe2ade6a9aad8B7C34CaDcfc67e4cEde3b2A1caCCbAc3CECCfbF0BD8FBAFd5B ; < mNra8V6nCnERPTAVCfNFHvS549e8y7U14iJawga7H8M15c4srZh6w2i6y4jyBUex > > 17 // < CALLS 1,35120054401662 ; quote ; 0,0105658767487542 ; 0,0103545592137791 ; 0,0204081632653061 ; -9,1 ; 0,0103017298300353 ; 0,010830023667473 ; 8,3 ; d2EbabfCddCbdAE49Eb4f0BDAFBEB06F7fd3EDD460DEDedDDb9CDFBbDf4eD4fc ; < 2WW8m49VCTs4Z0smvARj7v072UaJ2cDeHkj5Rbj3kvurGtop6xA4vUvLWxtpuO8Y > > 18 // < CALLS 1,40124500860983 ; quote ; 0,00950928907387876 ; 0,00931910329240118 ; 0,0204081632653061 ; 5,5 ; 0,00927155684703179 ; 0,00974702130072572 ; 2,9 ; dfaEca96dCE9BaCaafecC7E9faFbEbBcdC9deABfbf1ca3Ccd6fF17EE123AfFEC ; < ug15oF8V57s5219DuCd9dge5rTixZvrd53V4g862hla0P0i0Tt3Sv0QjzbJD3Yiz > > 19 // < CALLS 1,45128947320303 ; quote ; 0,00855836016649088 ; 0,00838719296316107 ; 0,0204081632653061 ; -0,8 ; 0,00834440116232861 ; 0,00877231917065316 ; -3,7 ; fDBE3Ae75F7b58CB3Ec9EffD6d9bCFBbdfaAeFaA4b052d7aBBFfDb8b1edC4c59 ; < N13u9Cve8s2R186Ve9W0Z9P5fiyWJuumF5rESjh0x227OJSEaSt38E2k9mVA1lZ0 > > 20 // < CALLS 1,50133393779624 ; quote ; 0,00770252414984179 ; 0,00754847366684495 ; 0,0204081632653061 ; 6,7 ; 0,00750996104609574 ; 0,00789508725358783 ; -6,9 ; 4A2BF5c2eE3ace6cf3b1E2a40dC0FfbB7FDA4e6Ee2174cE8eF10b64fcb4bF473 ; < LKLPZ56j7lXFtSXBG44208gZ9o31imt6e5trDHMDVc03B8iZIT3UxN063orno0hg > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,500444645932081 ; quote ; 0,00770252414984179 ; 0,00754847366684495 ; 0,0204081632653061 ; -8 ; 0,00750996104609574 ; 0,00789508725358783 ; 0,5 ; dFbA3cdE3e9b3BAB43dFaabBdAEEE6C5Ce31c55CCf1c2EBAC74d947bbdF24E0e ; < 24Bhl6hyXwI54gYb5DGpjvcKI5a4xcyZ7m9KHx0DuQGAsCS3sbMS8NWIAOd2925q > > 1 // < PUTS 0,550489110525289 ; quote ; 0,00855836016649088 ; 0,00838719296316107 ; 0,0204081632653061 ; 8,3 ; 0,00834440116232861 ; 0,00877231917065316 ; 4,2 ; 9A1D4ed6BFd3e1fdf4d4aFFcAccEadBfEa61EDcBcb8E4fe62dBbFEbEFddFcabC ; < mmnCViT74kEAR4y9GTI3xvGi3b8Hk9065B863Q1ej94UGU497l7b8kZxBM9KO7Pt > > 2 // < PUTS 0,600533575118497 ; quote ; 0,00950928907387876 ; 0,00931910329240118 ; 0,0204081632653061 ; -9,9 ; 0,00927155684703179 ; 0,00974702130072572 ; -9,7 ; D79EA2275BFE6A6A5Cda7E009f0Cd4AaBbEc54b1eabbfD0D12EAEcFeCEBBE1a0 ; < w70v4CfICqomw8wr1Hjl3Q2D1qrhH2O5Q04et57sG8JZQjm2dJ5N43Ik4tP15S2U > > 3 // < PUTS 0,650578039711705 ; quote ; 0,0105658767487542 ; 0,0103545592137791 ; 0,0204081632653061 ; 4,5 ; 0,0103017298300353 ; 0,010830023667473 ; 7,8 ; 00b1fAb9Bf7EdfF75ceecfEABdDFadF5dAE3CaafCBC5A73c350ABffEBBF1ca3e ; < Xal0MytGS29m3JM89kF33NwBruV0OZ7a0Jz318xBfFO6KNPJ354BW4eT24O6r8TD > > 4 // < PUTS 0,700622504304913 ; quote ; 0,0117398630541713 ; 0,0115050657930879 ; 0,0204081632653061 ; -0,8 ; 0,011446366477817 ; 0,0120333596305256 ; -1,1 ; 2cAC6a07A6EDBB7b64ADafbb0cEeEb0a6F5bEaAfa3dfA0C3CDd9bACeEBa3B1aa ; < V0y5eD079S6ak3dQfh6cXBKv28l0p1Ezef51MLwKZ9L9zVi6oM5NnhCrZMr1xRL5 > > 5 // < PUTS 0,750666968898121 ; quote ; 0,0130442922824126 ; 0,0127834064367643 ; 0,0204081632653061 ; 9 ; 0,0127181849753523 ; 0,0133703995894729 ; -0,6 ; a4dc01cf8f4C11DBbE0BFeCCBDBbD7AdBFb5aCE3b4C6f9EE4a5Eb9AAbAd634d9 ; < Ex35h4WZxK8cEz4kxtVeF3gXRums4tKAEyu40Z0Fnl5JX2P29DQp3653U39i1Rp8 > > 6 // < PUTS 0,800711433491329 ; quote ; 0,0144936580915695 ; 0,0142037849297381 ; 0,0204081632653061 ; 2,6 ; 0,0141313166392802 ; 0,0148559995438587 ; 6,5 ; b93D9F7deEeFBdcEdfA1Aaf001f55f3Ca3fb1ebc9AE6EAe99aeF846b70e23FaE ; < 28yxW1eM7tmk3tlD0lg18Gh8A1CF77C5J45z7gkrYPisW2U78hNzdq88HdM2l169 > > 7 // < PUTS 0,850755898084537 ; quote ; 0,0161040645461884 ; 0,0157819832552646 ; 0,0204081632653061 ; -3 ; 0,0157014629325337 ; 0,0165066661598431 ; -9,9 ; 5dACc05fE80b83b8f9Bfcdafda1a9CF17Dfed0AdaddfF8aAAD33C094bAEb5fDC ; < vsTHbjPCq0AL09306AQ3UhU6GTcG41oaPvk4wppaPXVx1S0xxktNdm4MUV92w998 > > 8 // < PUTS 0,900800362677746 ; quote ; 0,0178934050513204 ; 0,017535536950294 ; 0,0204081632653061 ; 8,4 ; 0,0174460699250374 ; 0,0183407401776034 ; -6,2 ; 4eBBCf1CBAcD6cc0AA83CFcdafDFfa9D7BDBcd06c5b2DEcc1CCaEfc7CbFCd2C1 ; < 1m1EduhX64IzE2Js8CegZdQ730kJzzgC7tgSpcPy1P9C5nCUoLQHYoMMdf0gCsxr > > 9 // < PUTS 0,950844827270954 ; quote ; 0,0198815611681338 ; 0,0194839299447711 ; 0,0204081632653061 ; -7,1 ; 0,0193845221389304 ; 0,0203786001973371 ; -4,3 ; B06D0fbCCd56cc6F8Af87eE6cFBb1F13CbFaF7AaDDC7eDb69ceaAba2bCaedfdC ; < S52602PCe5VMWZ938QqDUh0DHOQ2X3T08zr2S53p0Hp938sr1e7iRVA6K38bo2H7 > > 10 // < PUTS 1,00088929186416 ; quote ; 0,0220906235201486 ; 0,0216488110497457 ; 0,0204081632653061 ; -5,8 ; 0,0215383579321449 ; 0,0226428891081524 ; -0,5 ; f4cefCEda3c975d8eBfDb4c72Ec1DAADd4fFeCF3da5E2caABFfa17857A8ebAbb ; < V566KKsBQ0yvO3jQJg5dSEpwc9Xd0evbEP9W1qLT0t38GaJehZQtjabVf4MOrJek > > 11 // < PUTS 1,05093375645737 ; quote ; 0,0198815611681338 ; 0,0194839299447711 ; 0,0204081632653061 ; -3,7 ; 0,0193845221389304 ; 0,0203786001973371 ; 0,2 ; FEfccBbba750affbC7A7d643Dd9AF3CadcbDFBAf2E9c5Ae4faB7A708AE21ec1A ; < W81b5Jd8qq4n0eT2Ho9EzT2CB1y9L3U13n814jbx8T9312466ZupeND2NFB7n1s1 > > 12 // < PUTS 1,10097822105058 ; quote ; 0,0178934050513204 ; 0,017535536950294 ; 0,0204081632653061 ; -5,3 ; 0,0174460699250374 ; 0,0183407401776034 ; -4,2 ; faaAB07AfDca19ccaC65df3Ea6E7cdDBEfBAf91Ced5CfAE8E1D8bea2a04aaCbA ; < AycAzTTXm1VeXFh6RNx6OWYYO3M8R8HDyC4206RgdO5M9hzpsg9vuUlAe0rIM2fD > > 13 // < PUTS 1,15102268564379 ; quote ; 0,0161040645461884 ; 0,0157819832552646 ; 0,0204081632653061 ; -8,9 ; 0,0157014629325337 ; 0,0165066661598431 ; -0,9 ; ff8cDbfc4fb66d4D3bad1ccABc91FecdAa0338F88AbAaEfa5bDfCeFC68c7B00a ; < QvppNMmkase7MSy1Rm19234xXQyZwsgNoIx9P6bv3LAvLR3Htch59pKKIQEj2kTR > > 14 // < PUTS 1,20106715023699 ; quote ; 0,0144936580915695 ; 0,0142037849297381 ; 0,0204081632653061 ; 6,3 ; 0,0141313166392802 ; 0,0148559995438587 ; -4,5 ; bacEBBb5B268F1FefDca3CdabaEeB3c03FbA32dee25Dae9DcF5EC2f4FAb82DDC ; < p37aSLIp9BhAEbd2I84x92n8fejHd8Ej7UH16HU5X7dG91wHrh30k30w2T281Q6S > > 15 // < PUTS 1,2511116148302 ; quote ; 0,0130442922824126 ; 0,0127834064367643 ; 0,0204081632653061 ; -9,1 ; 0,0127181849753523 ; 0,0133703995894729 ; -4,3 ; ACCa47BAFF7FDD2bfAe8bf4de9A572AAcADbFDFd23c6cd9306cfeaebAFa7CC9f ; < oPJ1l0vYS70k14IcBzcD301eM4la98I8p5YZ66PcMPNp0yCverc3Yz762hUuhzJ3 > > 16 // < PUTS 1,30115607942341 ; quote ; 0,0117398630541713 ; 0,0115050657930879 ; 0,0204081632653061 ; 9,4 ; 0,011446366477817 ; 0,0120333596305256 ; -8,5 ; EAd9ea5ebCeF6C0f78e19a9fc3Aa8fdcbEaDA8EF5FeeeabcFDdCAaCCE5edCECa ; < 7EuEN8BNf9z7u0rFKqzxmN13Patl96X75nhAde42c0gC6zLUoM95bQp8QE80XvGc > > 17 // < PUTS 1,35120054401662 ; quote ; 0,0105658767487542 ; 0,0103545592137791 ; 0,0204081632653061 ; 6,1 ; 0,0103017298300353 ; 0,010830023667473 ; -7,4 ; AE7aBabDA8cb5DAeAE25bCD9A1EcCCdDBc3BAEd5AfeA0eFD8dC6e5DFe4a33Bb4 ; < zSi47C7rW22p30X1WOb2N06XR73807339RVVZ9wzXWs4e1291rDq9tC54aw2et2b > > 18 // < PUTS 1,40124500860983 ; quote ; 0,00950928907387876 ; 0,00931910329240118 ; 0,0204081632653061 ; -0,6 ; 0,00927155684703179 ; 0,00974702130072572 ; -3,6 ; e9DdDa7Ca57BF2fdECDC81ABF2D69300BBFf8Eadd6bCB8CfDeAc9acfe9640405 ; < 1V14WD41zn9JGp3NdsPMac8q9T8DTx695Nv59F4IoeH7t6q5vh7b34Jj4z0MHNg9 > > 19 // < PUTS 1,45128947320303 ; quote ; 0,00855836016649088 ; 0,00838719296316107 ; 0,0204081632653061 ; -2,7 ; 0,00834440116232861 ; 0,00877231917065316 ; -8,8 ; 4EeFAB2bA0E7dEeFCEB6dddfC7AFCf8eF8C0211ef7fA769b13147Fc1CA0f1CF8 ; < qh3LaYRy04Z0pZxfwfXIk2MH87o77Nlr0T5jb5fmNe76Zea945bxZG9x1PImF1l2 > > 20 // < PUTS 1,50133393779624 ; quote ; 0,00770252414984179 ; 0,00754847366684495 ; 0,0204081632653061 ; -7,3 ; 0,00750996104609574 ; 0,00789508725358783 ; 1,2 ; 312c8Ea2c85aF2bcB53a7bA2fcddDcD6a0cdE80ba8bD3cFC1b1c0dE9aCfd4ABb ; < mak2DIiivJOBT1oK44PWq07VsR6op632ME4cD96bk156KI7s5Xc79qN5393PxbkP > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,501016406815195 ; quote ; 0,0162611545142498 ; 0,0159359314239648 ; 0,0204081632653061 ; -4,2 ; 0,0157733198788223 ; 0,0167489891496773 ; 2,5 ; 52eFffcBD0aF7dab73e3dd1Aba93eD5CEcE5AbDC5F5df8dcd1bedb9CcbD5Bd7D ; < vvxbnXIZuyGg8sM4JDk0Nk4g7rztvHFyN5iRzM6kUwlndN0liHUqzS212Imfi7KV > > 1 // < CALLS 0,551118047496714 ; quote ; 0,0180679494602776 ; 0,0177065904710721 ; 0,0204081632653061 ; 9,3 ; 0,0175259109764693 ; 0,0186099879440859 ; -9,6 ; 002Ee4D56DBCaAd5D39CCacb55bb18eEDAaF2e4BbfecEDDCbFe0DBAdaff6acc3 ; < qzsKU0L4MUsrmu0NwoHEY7j6zB3QnJWoxAC0hS1b8Jd27DNP6efHyFG5I7zH403L > > 2 // < CALLS 0,601219688178234 ; quote ; 0,0200754994003084 ; 0,0196739894123022 ; 0,0204081632653061 ; 0,3 ; 0,0194732344182991 ; 0,0206777643823176 ; -2,4 ; CbEbAab683dB8fDD3DcCAdf7BcBeaBEAAdacdf5F7Aa36bb9aEdecDFaf6b2D30E ; < 931A1337oc95209RqX9GuHmQXg5qICvb2ya5dLMY1pwwccCPyO02ntPiKOEoNltC > > 3 // < CALLS 0,651321328859753 ; quote ; 0,0223061104447871 ; 0,0218599882358914 ; 0,0204081632653061 ; 8,9 ; 0,0216369271314435 ; 0,0229752937581307 ; -0,7 ; EFCBAA44BaEd7eeCFCfA3e7040Bd3D0Ed3EF134aD92BcFB5C3EbC2bC2FdFa4b7 ; < 5TmUg55uOGl5NzSL5YvT5JuSSOfS8K45KK9Y9C34yMnIJ2kBi0ESA2Au66IBcV65 > > 4 // < CALLS 0,701422969541273 ; quote ; 0,0247845671608746 ; 0,0242888758176571 ; 0,0204081632653061 ; 9,7 ; 0,0240410301460484 ; 0,0255281041757008 ; -4,5 ; F4eAE9eFEfcEbcCc7Bfc9bA85Ffd04666deBFBDa9A73dAaeDC9a1E34cEf36eE9 ; < jkPQG28az7220QsJwR93w82VVz9wOGyOzg323692gSwSXFdkPwZ5Bs4x6eZG9myk > > 5 // < CALLS 0,751524610222792 ; quote ; 0,0275384079565273 ; 0,0269876397973967 ; 0,0204081632653061 ; 6 ; 0,0267122557178315 ; 0,0283645601952231 ; 6 ; Fa3dBdafCCC95b0becade4cBD7DC00B36D96eCc1E62FF4bFCaeDeCC718FfAc1C ; < M6bmB0xhWE34Vm15yMKLSAG2nQDvGsWTa0085nL61ch4fmXqBieb2Q5BEZyhr0jr > > 6 // < CALLS 0,801626250904311 ; quote ; 0,0305982310628081 ; 0,029986266441552 ; 0,0204081632653061 ; 8,3 ; 0,0296802841309239 ; 0,0315161779946924 ; -9,8 ; DAFEdFeBCAAEeC1CaDd76bacedAEAAf1D3cAd0FCC8bffCdE0fea0EfcF2ee9CC4 ; < 8Ag4P9ZF1Y6FQ1BNqXae8Bxw6J4R9m7PphHIUby8OC9e27uoK2ONyd9yWM13IZaY > > 7 // < CALLS 0,851727891585831 ; quote ; 0,0339980345142312 ; 0,0333180738239466 ; 0,0204081632653061 ; 9,5 ; 0,0329780934788043 ; 0,0350179755496582 ; -1,4 ; A03EeEa66Dbcacf473Da6Db4DcbFcFeE7Ba30BCddc1BDeBdaadDF38cA5b89e46 ; < z7DNDsyxB2T8qHGqUYxlHLfHDBfqj3P2kPTzjjE2VqN52632m6uNebd9X5uH03wY > > 8 // < CALLS 0,90182953226735 ; quote ; 0,0377755939047014 ; 0,0370200820266073 ; 0,0204081632653061 ; 2,1 ; 0,0366423260875603 ; 0,0389088617218424 ; -7,2 ; b91aF40ccceaf5d3F3EA80BF3C85CC8eC755Bb26CF2fAAf1e6F69f419FAC6af6 ; < 2v53P606lTjP2Mos3b8t8w1ue1YxWK2xBQ205W768Llc8RYI7AMX33Fy2Lf8913q > > 9 // < CALLS 0,95193117294887 ; quote ; 0,0419728821163348 ; 0,0411334244740081 ; 0,0204081632653061 ; 4,6 ; 0,0407136956528448 ; 0,0432320685798249 ; -0,3 ; dBBf7e6e0Cc4fA0Bf3FA3b2eD5C9Ea9D1aAedAe39b7E2Aeb0EdFfddDE2EA0416 ; < RxE6H79U8b5I6mSlM01J9rk77VMYDRvCZ0A7gF51ukD523Jx9bOmn3ZL9Lh80gpk > > 10 // < CALLS 1,00203281363039 ; quote ; 0,0466365356848165 ; 0,0457038049711202 ; 0,0204081632653061 ; 1,8 ; 0,045237439614272 ; 0,048035631755361 ; -5,4 ; 8ABAaDd3c7B7B4eEF16DDE2dcEedA97f1aDeCbA7c39CbcCEaAD4DF89bC50DBBc ; < IZm3P5Io57qyMDxH4y2f2nzK75e38hSz009l77hE7Ys915Wt7s9U5zV4uYn6h37y > > 11 // < CALLS 1,05213445431191 ; quote ; 0,0419728821163348 ; 0,0411334244740081 ; 0,0204081632653061 ; 0,3 ; 0,0407136956528448 ; 0,0432320685798249 ; 3,1 ; eCA9AE5cA62aEAF4c0c80DdCdCD9aBED0D3cCfE1FEeceCB2DEb9826Fbd8ccbbE ; < 6TdLXETavV8y15Sp5ujJAOKLK1TFi9Jzu38K8Z6Boz81ObDkeUL7Ui7AfDVy1Rjk > > 12 // < CALLS 1,10223609499343 ; quote ; 0,0377755939047014 ; 0,0370200820266073 ; 0,0204081632653061 ; -6,8 ; 0,0366423260875603 ; 0,0389088617218424 ; -6,9 ; 9AEc5765a41D3AeCbAFaa7FFE4b35b1f15aFc81b1f17b8dff8B6ceE4f9f38aab ; < 6q5HF9vo7Q2BJxGvSa1COMw5p01ZS86LcdnVuKB3Hokd1wP65K1eu35zxnarpO5e > > 13 // < CALLS 1,15233773567495 ; quote ; 0,0339980345142312 ; 0,0333180738239466 ; 0,0204081632653061 ; -9,9 ; 0,0329780934788043 ; 0,0350179755496582 ; 1,5 ; dFdcC920A3f0FbeFaffd76acB8EcCeEE7fbBdDfFeADAF84eE84d6Cf111C1c29D ; < G076FwJw73iJ9VUiD54shskzdWupkG82jD0tQmFHJEU6L1u9jpYb6X33Er2Z3cxF > > 14 // < CALLS 1,20243937635647 ; quote ; 0,0305982310628081 ; 0,029986266441552 ; 0,0204081632653061 ; 7,3 ; 0,0296802841309239 ; 0,0315161779946924 ; -4,4 ; 8e23099f5aABa7CE4FF64a3D3DFb5C9d38A84Ea3b8eC133C7e49edEAAA6D6bb0 ; < 8861FuYu2Y8fl69lTRk574f4l33O16uSxAc5O944z14V2bQc0Otr0j3ZjO076TUR > > 15 // < CALLS 1,25254101703799 ; quote ; 0,0275384079565273 ; 0,0269876397973967 ; 0,0204081632653061 ; 1,9 ; 0,0267122557178315 ; 0,0283645601952231 ; 5,1 ; fCcA0AE3cdFaede6CEADBa4c2278D4fbeAc5eC9fbd5586cC9E0bC9Ba1e82fBbf ; < 2SW0mC3R32TbSwCxQz94i0kuvy3YsLzGXMhUA0ygWK3KIBhKx5oXG458gINum6J4 > > 16 // < CALLS 1,30264265771951 ; quote ; 0,0247845671608746 ; 0,0242888758176571 ; 0,0204081632653061 ; -5,1 ; 0,0240410301460484 ; 0,0255281041757008 ; -6,6 ; edABDa3E7CCE4ECf08DAbCdDafbDFeeCddeDb5Fa303EB0cAFE5D24c6c7ffb0a6 ; < 0b8f0L3279F0T985XxLT5rvn55I989Ov51nLU5m9hXJ8wkKqn8GI0Ra7yute93St > > 17 // < CALLS 1,35274429840103 ; quote ; 0,0223061104447871 ; 0,0218599882358914 ; 0,0204081632653061 ; -0,3 ; 0,0216369271314435 ; 0,0229752937581307 ; 1,2 ; e4DBcceC77EFfcFEce1Db9fEFdb1f4cAccAca99b04fBCE88a75DD6ccdDFDfd6D ; < U9p2E4CA7wN10Yk9TGfYAnOuu5v6O3C7AIn3NZ9asg8Qnlp4GXq89nfz8fUpCRPJ > > 18 // < CALLS 1,40284593908255 ; quote ; 0,0200754994003084 ; 0,0196739894123022 ; 0,0204081632653061 ; 7,1 ; 0,0194732344182991 ; 0,0206777643823176 ; -2 ; db4ceEA20eA8cE0C0d1BeD7Ea0F4ADEDeF2ba7d76e2BdE5C624fe99D823BBdaA ; < RjIObb370W62O9Fb505cV1F5qW2hKmEf317mwOuuYmC7A9ynh7sqF2AeE7GD2t16 > > 19 // < CALLS 1,45294757976406 ; quote ; 0,0180679494602776 ; 0,0177065904710721 ; 0,0204081632653061 ; -8 ; 0,0175259109764693 ; 0,0186099879440859 ; 7,7 ; 1E3faeeCfcB0FeADD4D2FEBb01A4EFAdf12f8fBcB7b3ef23AcbbA6DAcBb4CdfB ; < 36jf82490AqbJJ4j4sS7II9C12KYKCA86GKT7wpKa6q7QG9l0M73336PQ5gk92ut > > 20 // < CALLS 1,50304922044558 ; quote ; 0,0162611545142498 ; 0,0159359314239648 ; 0,0204081632653061 ; 6,3 ; 0,0157733198788223 ; 0,0167489891496773 ; -3,4 ; E7dFbfE443FABBDDaE9Efc0EeCDDfe29bbF9E2AdBD3BAD9AcABABc6aa8593Ea2 ; < A44nCQ8420hF7376i1y0eRJnJbUL3Oy6R35gR6DKoN2eLucwN9Z177uZ79aKu4AF > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,501016406815195 ; quote ; 0,0162611545142498 ; 0,0159359314239648 ; 0,0204081632653061 ; 2,3 ; 0,0157733198788223 ; 0,0167489891496773 ; -1,8 ; fDfC2bC4E8852EBEbbA5CaBA6D9487931Adf8Bbd4EFbBBad11EC8cb4Dfe28D09 ; < d4H78Sr35sQ35u047liD9Wa1DCGvS150p356v5EK9FU00febihCxD1b89RP2h8ec > > 1 // < PUTS 0,551118047496714 ; quote ; 0,0180679494602776 ; 0,0177065904710721 ; 0,0204081632653061 ; -4,3 ; 0,0175259109764693 ; 0,0186099879440859 ; -5,6 ; DFfAceAea40defE72f2EDeda8dE0e4F9B3D1c9BeAF6dFEaEaCf791ACAd2B6eee ; < voWRy9Uj0j62r66T0v2C7H8q9nCZ5lL9xn0uIkA14995Erpnt85tg4zsjzaY04jE > > 2 // < PUTS 0,601219688178234 ; quote ; 0,0200754994003084 ; 0,0196739894123022 ; 0,0204081632653061 ; -8,5 ; 0,0194732344182991 ; 0,0206777643823176 ; -0,8 ; D6ba4c0bfC421CFae8eE3eEc4EcAAF84bc0EEeFB8feCe712ba4dA0bB96eA9aFf ; < 04xlJenY8idRvlr1QuMppx0NcMFKll4LPKiet268n1cTb47PSs6V7n5gHcvu0Xm3 > > 3 // < PUTS 0,651321328859753 ; quote ; 0,0223061104447871 ; 0,0218599882358914 ; 0,0204081632653061 ; -8,3 ; 0,0216369271314435 ; 0,0229752937581307 ; -2,9 ; FCFDa8DFa0BadDA9cdc5B1c60cCDafB0AeF1CF779BAB9dfcdE073a48adEeAd63 ; < PzJeIQxJtC07kOE2Ex8Mhi422g0FTM03YH1M13n9KV7gP0jn4W6gB449s58Ui59O > > 4 // < PUTS 0,701422969541273 ; quote ; 0,0247845671608746 ; 0,0242888758176571 ; 0,0204081632653061 ; 9,8 ; 0,0240410301460484 ; 0,0255281041757008 ; -9 ; 0291092b1fBEabCEb6bBBd63ED42f4DedAE4e6c6ebc02bF4dF9c791Ab086dcA2 ; < Ocz0U1D9jA8gzg9EverY93e7DmEIAWbuR5x45H95409ir47dSUTW113XZoRSa4ex > > 5 // < PUTS 0,751524610222792 ; quote ; 0,0275384079565273 ; 0,0269876397973967 ; 0,0204081632653061 ; 5,5 ; 0,0267122557178315 ; 0,0283645601952231 ; -5,3 ; bBcbbFd6CAa2EB1DFaa6eeBAb1b2ABAcbfDbBEE4dDDcCB18bE5D0b6D19DaD04D ; < 90Y8lDULi4w09gT1YZHYccNdZ01t3NQ7MMQ2xZl762WwQm838hMt5f2r2cD3ezP1 > > 6 // < PUTS 0,801626250904311 ; quote ; 0,0305982310628081 ; 0,029986266441552 ; 0,0204081632653061 ; -8,5 ; 0,0296802841309239 ; 0,0315161779946924 ; 4,9 ; dA262D7d2e7a0827ddeBCd8A5C9D0D9E8eB2Cc07F1f9DD9C4657Ec7e543D0dc3 ; < 9NQedU2lr5OLj0ZIJ091quf42G8fJ4s94MjxA6ft97PJ59S4zat8W8PqVN6Dq53N > > 7 // < PUTS 0,851727891585831 ; quote ; 0,0339980345142312 ; 0,0333180738239466 ; 0,0204081632653061 ; 8,6 ; 0,0329780934788043 ; 0,0350179755496582 ; -4,9 ; c999FeCa3Cfe1aD8EFdDcbEAE6EbADe9cedAA9AFfF77B6aF95dC9a9A5cFFA83e ; < 3LFQWS13jAa8NjAkeIK5SGkD3pfeTzE4j2g37mHhbE525180F7g686W6909Iv8c1 > > 8 // < PUTS 0,90182953226735 ; quote ; 0,0377755939047014 ; 0,0370200820266073 ; 0,0204081632653061 ; 4,1 ; 0,0366423260875603 ; 0,0389088617218424 ; -8,1 ; Fb5C4FFcDc7DFa12C14b36CEf3Ae9caade8DAD628da996abDd1e025Bad4b1F78 ; < h4p30cQ8e3BILtThVQ8LJty1F49jS0aj4bjFu54LsuvfAYL41vFV74ER49GI7846 > > 9 // < PUTS 0,95193117294887 ; quote ; 0,0419728821163348 ; 0,0411334244740081 ; 0,0204081632653061 ; -3,5 ; 0,0407136956528448 ; 0,0432320685798249 ; -7,2 ; 9aD054af308Fd8eBF59EbaEdBBFAaEDaD90D83B0E3F51d1CbC2EdC2ef9C6FAfb ; < 5R69oH9G1su87lD2se37W8Tdy2h2Y56bkRMI6LOWBTffE6D2j0Togvq82MlD1A5T > > 10 // < PUTS 1,00203281363039 ; quote ; 0,0466365356848165 ; 0,0457038049711202 ; 0,0204081632653061 ; 2,3 ; 0,045237439614272 ; 0,048035631755361 ; 3,5 ; d7769b0B09afEeeED7aEEFdcD04b7B7efADd8b93Df80AF9B1bBa132DbCB9CCa6 ; < E6r114jWWssl4jyoO6sYro3p20rwz00pkA9G0AUM917lCAw1gsH9yzE9b32nu5so > > 11 // < PUTS 1,05213445431191 ; quote ; 0,0419728821163348 ; 0,0411334244740081 ; 0,0204081632653061 ; -7,6 ; 0,0407136956528448 ; 0,0432320685798249 ; -7,4 ; cB5BF05EAde9bAbcABbDA7a7D9D6bb2AC453A70EBC21BBfeE6FBF67AB49BCdAa ; < xd6f0YsEF70D6EsLwUpfQZ6HrR0R24IM4z00Q9U6DvD5q93m986AO2ctB5yJY46q > > 12 // < PUTS 1,10223609499343 ; quote ; 0,0377755939047014 ; 0,0370200820266073 ; 0,0204081632653061 ; 9,8 ; 0,0366423260875603 ; 0,0389088617218424 ; -6,5 ; 5e8b1DDe6b30f0CbAAabecF8FFEaA95bc0DCbCf6dccfe9EBbaBB2e6fcC4C59a3 ; < eVJGvr100y733fk99cFirVm5klB97u34o7p7UQE82IdYPVI2h8rC2yrEC7LHql45 > > 13 // < PUTS 1,15233773567495 ; quote ; 0,0339980345142312 ; 0,0333180738239466 ; 0,0204081632653061 ; 8,4 ; 0,0329780934788043 ; 0,0350179755496582 ; 4,7 ; a5adC1a453F9BEdBBAaBb093a40A0B833aaC6d0d0FaffFcEAbFfBcCaAdFEE2c0 ; < xr00s7wtiTXAuicf3QlM2y0V23Qq4U88C4g3r8CPIB36a8e7J6Q2aMQe7GftV6PD > > 14 // < PUTS 1,20243937635647 ; quote ; 0,0305982310628081 ; 0,029986266441552 ; 0,0204081632653061 ; -1,7 ; 0,0296802841309239 ; 0,0315161779946924 ; -6,9 ; DCB5F2bfdb66fADb8cCBa85d245ecbF4CaBB68B22a29ecAcaD0A3d0DaEabc43d ; < yiN9OMezajtb48d7u44flmO2gKh3xC4e9t2j7703u97u0O87Y03KHm31rW9le5W7 > > 15 // < PUTS 1,25254101703799 ; quote ; 0,0275384079565273 ; 0,0269876397973967 ; 0,0204081632653061 ; -3,8 ; 0,0267122557178315 ; 0,0283645601952231 ; 7,3 ; 24FfCD5aed654A2FBEFbDFAE0FdAAEaBb9ECfF3b2E0Ab1ACc34acc7B2e2CCcba ; < 8USF5TkCrpd9YwEo9J9cb3IQPaaw1IqVZvj0ESKv970P0wY4S87O97CNyf0vRirs > > 16 // < PUTS 1,30264265771951 ; quote ; 0,0247845671608746 ; 0,0242888758176571 ; 0,0204081632653061 ; 6,3 ; 0,0240410301460484 ; 0,0255281041757008 ; -2,2 ; 2ECd0fd8A1cfED3FA7CBB4fCBd86ACCaF5eCFABbfBEE2BcA1cFBAE9ce17bDccd ; < CF9K9W788638t76fVDz5Mvr7YLseEZ74QEh3v14A1HM3mKtdV677W2w6ED6nrX5Q > > 17 // < PUTS 1,35274429840103 ; quote ; 0,0223061104447871 ; 0,0218599882358914 ; 0,0204081632653061 ; 4 ; 0,0216369271314435 ; 0,0229752937581307 ; 0,9 ; dA3cCBDcc82FFcEDd15CAC32D2970dcBcBE4F8FBcDD60cCc4D9334BFbF6bcfaf ; < 5j9DQItVq8il6CuwuWHZow1ibi16zC3JQGIP24jB5HgcMImGV2R1T5tBBpT9fU6g > > 18 // < PUTS 1,40284593908255 ; quote ; 0,0200754994003084 ; 0,0196739894123022 ; 0,0204081632653061 ; -7,7 ; 0,0194732344182991 ; 0,0206777643823176 ; 2,1 ; adDFC4AfCcf4ca0EB757a15CEcb8Bd717b1BcDAbbdcE9cac74c8bBe4E4Aefbe5 ; < L82hhCpT820qC4T5DNQhQ43DShKSKHuM6g1G7jwmF3v6Kulobq9nfF1FpLU0U621 > > 19 // < PUTS 1,45294757976406 ; quote ; 0,0180679494602776 ; 0,0177065904710721 ; 0,0204081632653061 ; -4,2 ; 0,0175259109764693 ; 0,0186099879440859 ; -2,7 ; cB9B39eDdC48514A9eEEeECDf5f1Dbf1fF75C46a78468fcb060De0BBFcBdaBD7 ; < CsxERKJ71F94dW61VLYl3OL6HKjm9F8WtjG9c7Dp7Y4YHQk62Rv9PayjG19w2aZj > > 20 // < PUTS 1,50304922044558 ; quote ; 0,0162611545142498 ; 0,0159359314239648 ; 0,0204081632653061 ; 6,3 ; 0,0157733198788223 ; 0,0167489891496773 ; -9,9 ; e0b2a16D5B0Af5bBc1aD9Cc0BacfEBEEBb6ABE5BEd16eCbE75F70f9F8e50d3De ; < 5T597U13tFH31cZg163UgoNQElSK3Jc1FIKnhEmMFL3atq06484SrNWA0rt5xNJw > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,502883842303904 ; quote ; 0,0337538650845591 ; 0,0330787877828679 ; 0,0204081632653061 ; -4,7 ; 0,0325724798065995 ; 0,0349352503625186 ; -5,2 ; FE0c8aeDD1F1EEBcD39ECFD03dd0EFA5DfBF7Be1BAEB3Dbf3DDfFDB4dFD30bc9 ; < N4Z9Y6Z3zJk90A033G0FIgOV4Kj2I89U41huliMq6fonwKeS44A4lpQ26645x7V7 > > 1 // < CALLS 0,553172226534294 ; quote ; 0,0375042945383989 ; 0,036754208647631 ; 0,0204081632653061 ; -2,1 ; 0,036191644229555 ; 0,0388169448472429 ; 4 ; 44E5DfEaCEd3EaBe4febCcd1af5bbAeebA7ec9c4ec9295eECDABcfb8ddb6AE73 ; < mO0l69L0G7KCe90z1V5DY13xdtWcwy6d348f56M8f626r6s37tmWog4WEU66y7iP > > 2 // < CALLS 0,603460610764685 ; quote ; 0,0416714383759989 ; 0,0408380096084789 ; 0,0204081632653061 ; 0,9 ; 0,0402129380328389 ; 0,0431299387191588 ; 5,5 ; 28CaEDFEF0d4f680AEAcF2BD5abaebE6c674D60F7f3AFcCead4D430CfFFB8D91 ; < E2d85x8l98383kZA2Zuf7f70D3b3yFrindwaAxtp2i7IM8md443B5Ab3V62S0ejj > > 3 // < CALLS 0,653748994995075 ; quote ; 0,0463015981955543 ; 0,0453755662316432 ; 0,0204081632653061 ; 1,7 ; 0,0446810422587099 ; 0,0479221541323987 ; -2,8 ; D3eDBeD91dBeAE68AB2CBad03ff04A44fA8AA3EACECCdfca0BBEED4c6DcDB1dd ; < VAtO43rfNmokRPS75nGEK8W53UfW6R9D4lHsS9jD817d5Uc0H9Ug4dp1k6xe8N3i > > 4 // < CALLS 0,704037379225465 ; quote ; 0,0514462202172826 ; 0,0504172958129369 ; 0,0204081632653061 ; -7,9 ; 0,0496456025096777 ; 0,0532468379248875 ; 8,5 ; 5C8aFBFFa7cea83EfFc1F7BCe4E21a3FF7CF80d6e9Ca983E6c6f68c71d92b8Cc ; < GIo351lnes60hxE46Ew1g3V32vmUwvVIZy51FP405e6QwFJnQQcs8HUFYF38a4Nd > > 5 // < CALLS 0,754325763455856 ; quote ; 0,0571624669080917 ; 0,0560192175699299 ; 0,0204081632653061 ; 8,8 ; 0,0551617805663085 ; 0,0591631532498749 ; -2,2 ; 40B1aDB3bF6aA994AEc1dF4bbf9ae3AfeaeAb9acDaf36c9Bc5a6fD0D1aCbbD63 ; < PahuYWhIDGa47b0KEdUO7n6k39Hms6BAghHRS0k4bTxOsf53n77BYL0bcGTS8fP2 > > 6 // < CALLS 0,804614147686246 ; quote ; 0,0635138521201019 ; 0,0622435750776999 ; 0,0204081632653061 ; -4,8 ; 0,0612908672958984 ; 0,0657368369443055 ; 4,1 ; addebeF69DE4E2d5209AAFb3FBaD5ddf04AD815493aBCD9a35BA1eaABADA96E1 ; < 416W3d9jWP817eY62dQUMjFxRo8UPq32oa45FUfg74J07Yzb0LtioLc7RPgGS4KW > > 7 // < CALLS 0,854902531916637 ; quote ; 0,0705709468001132 ; 0,0691595278641109 ; 0,0204081632653061 ; 2,5 ; 0,0681009636621092 ; 0,0730409299381171 ; 8,3 ; 8eBF583c4a86dDb9a11eAD2dbeEEfdF8d3C5Be7CDDB5fC0aBEb1Cc7caDFdEc9D ; < HZ61O67EN516Zm5g794QrU7gQkF4RFI3DXLGD3Afvk994X9up3vX4xmxK29z1035 > > 8 // < CALLS 0,905190916147027 ; quote ; 0,0784121631112369 ; 0,0768439198490122 ; 0,0204081632653061 ; 6 ; 0,0756677374023436 ; 0,0811565888201302 ; -6,4 ; 9Da3804b5aEfbfa2beb6D1CCcA02eA5DF3CA3bcAD5CB1ddbc3DF5f06Ed6F4a1d ; < oyx32lP8M8ZG7rIAO317jl3WUeuLvc1pMz5u2430guaDtB2WtKk86UcIlR87oxc1 > > 9 // < CALLS 0,955479300377417 ; quote ; 0,0871246256791521 ; 0,0853821331655691 ; 0,0204081632653061 ; -3,4 ; 0,0840752637803818 ; 0,0901739875779225 ; -8,5 ; babCcbDB343Acbbf3a1cdB5E0e2D75a593ed48Cb83a6bE9dFaC3Aee19deccA7b ; < 68QS77X45mKxnsGUBk3W0u96P8cauPl2st38R5KYPfPX9W0RO7cC2qc5uPmjOZht > > 10 // < CALLS 1,00576768460781 ; quote ; 0,0968051396435023 ; 0,0948690368506322 ; 0,0204081632653061 ; 9,1 ; 0,0934169597559797 ; 0,100193319531025 ; 2 ; eBBC7c0Ddff0c9FfeaEEE8b06efB5AF9BA74aa767Dde9a5194bB9E5da89FAB0F ; < qXBDWrWIdO1D4vyOB0VD5931qVUCC066V6i550rTC6lY1eO5E1Kp8509Y647aC0X > > 11 // < CALLS 1,0560560688382 ; quote ; 0,0871246256791521 ; 0,0853821331655691 ; 0,0204081632653061 ; 4 ; 0,0840752637803818 ; 0,0901739875779225 ; 6,1 ; A48cFb98A1CDbD1C99aAf0DaBf28832aDFDADFDEfD18a1B9A09D9eE1d4aefA4E ; < a9rMrf2Lph4q8PItqb5Mjj2BgnOgIv3t7XT7WIRztIE58Vt361kyFe3B6uzH4mtr > > 12 // < CALLS 1,10634445306859 ; quote ; 0,0784121631112369 ; 0,0768439198490122 ; 0,0204081632653061 ; 1,5 ; 0,0756677374023436 ; 0,0811565888201302 ; 9,6 ; c7Cdf8684F7995BdcAd3D9f1dBBEcfe0BAEEAace1FA7e7BF8BEDb310d3AeEEae ; < TKboed7Kp75O29GOwf6x9eB1k614yapicUm555s2p5d25lBnE9uza86fLeXOyGDa > > 13 // < CALLS 1,15663283729898 ; quote ; 0,0705709468001132 ; 0,0691595278641109 ; 0,0204081632653061 ; -9,8 ; 0,0681009636621092 ; 0,0730409299381171 ; -5,2 ; AfaEfCEaBfAe8Aedf4bB8ACF1eFdebA6095CaE02EAa7dDFeCaAcE3AAF3dde2Ba ; < zNqp5PxQ2QCO7v6ZO4x5jYuIeNMZD3iwG1xcj3zG770G6u2b646524zHX23nLgtg > > 14 // < CALLS 1,20692122152937 ; quote ; 0,0635138521201019 ; 0,0622435750776999 ; 0,0204081632653061 ; 9,8 ; 0,0612908672958984 ; 0,0657368369443055 ; -4,9 ; 9caAEDcEeF1e0E18dAA1c3EF221A2edaED4da09fC4CaaC3deAbCCfadeEEC902D ; < rmVfiKAcuKr2qQ4aAkpreX9SAPgEz9x91WUr5BbiTVU1Xp1k8n3YqDg7r25EFcAa > > 15 // < CALLS 1,25720960575976 ; quote ; 0,0571624669080917 ; 0,0560192175699299 ; 0,0204081632653061 ; -7,9 ; 0,0551617805663085 ; 0,0591631532498749 ; 9,7 ; D9a5cf7Bbe5DeeBcb148dEC6bc47bfC3dcD3bbC51DEa1D4da4A4aBe2ADA5ACB1 ; < 998y74WJN8D2hFLb8gXJ8v2bWwxQ6Ll433c4b85B6mMi973G63028wim1UjYsOI3 > > 16 // < CALLS 1,30749798999015 ; quote ; 0,0514462202172826 ; 0,0504172958129369 ; 0,0204081632653061 ; 7,3 ; 0,0496456025096777 ; 0,0532468379248875 ; 7,5 ; afdeaDBAad9FE2De9cc2edeF14fFCaFF1AbdD2Cefc460ed3DcE99cF37eCCDad2 ; < ktg1t2sDh769zbb30Tqg3XbR8o5O2d1og697RaY0hb3I9BmMOZ716sBw3l4Bm7R2 > > 17 // < CALLS 1,35778637422054 ; quote ; 0,0463015981955543 ; 0,0453755662316432 ; 0,0204081632653061 ; -3,8 ; 0,0446810422587099 ; 0,0479221541323987 ; 7,4 ; 0Daf343ecFBaFbF7FB5FD5BFCBc1c40752CbE4f46C3cC6ddaCaaD2BcbD37c2dF ; < J0JSp1xqY1vi23OZ8839magC57pk6Bj2jY3174HsMwt83yaBcYFqEZOq915X1dFz > > 18 // < CALLS 1,40807475845093 ; quote ; 0,0416714383759989 ; 0,0408380096084789 ; 0,0204081632653061 ; -2,3 ; 0,0402129380328389 ; 0,0431299387191588 ; 8,8 ; C81e8d05bCf4A752AfB1Bec78BecaFfE14FB9e6CC38dfc7EaFdFFc670dFdeed6 ; < DHa9QS37eU6OLb5Bu42Kw3c3ZA207xX72A2rX54f82t1Y6RJsiKrG0hLw7R1AtRT > > 19 // < CALLS 1,45836314268132 ; quote ; 0,0375042945383989 ; 0,036754208647631 ; 0,0204081632653061 ; 8,7 ; 0,036191644229555 ; 0,0388169448472429 ; 7,6 ; 20D4dcBD3EcFCF6efDc0d1fAaCEE2a4E45c8dda1E0fFB456b3e9a5eEA34D3EA4 ; < pg8A232zW4YFzjV9WNxo7FG6k8hgAbBqhsEvwAU15Sk1qnrkwcHPFNFU6wV9jmuR > > 20 // < CALLS 1,50865152691171 ; quote ; 0,0337538650845591 ; 0,0330787877828679 ; 0,0204081632653061 ; 4,7 ; 0,0325724798065995 ; 0,0349352503625186 ; -3,8 ; c9968C7b7EADaFD6Dbab5Db6db7EaCBcbECCcCfBDDBFE39AcE3c66F30FaeCbcF ; < 5u09UxHtNO76i4qD803dq3MeWe4bjm2p9sK2qWqX2ZlB59n1802Xp9V3Uh35QMsM > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,502883842303904 ; quote ; 0,0337538650845591 ; 0,0330787877828679 ; 0,0204081632653061 ; 6,2 ; 0,0325724798065995 ; 0,0349352503625186 ; -3,1 ; E3C0eadddcA2655B26B3C7dE24BC4AdD2Fd8eCfeA8B6FAfAeBeEBC3ABBeCaadc ; < t9vh3KHvLN28pJn6nVUs9d2RePT6s40DVir8cWP89s8vUPb9F6P41pcS22N1gXq8 > > 1 // < PUTS 0,553172226534294 ; quote ; 0,0375042945383989 ; 0,036754208647631 ; 0,0204081632653061 ; -7,4 ; 0,036191644229555 ; 0,0388169448472429 ; 1 ; eBEFC81b870D4dB87cdAdd58cbBce13A58Ddb0fc7dDf7D66f4b03F0D0Fe0AdD6 ; < 9qine1se49by212PVsK46VGZ9pZ5D7b43aXIvNkXyZ5KSTf4yW20k12SRgQzftfg > > 2 // < PUTS 0,603460610764685 ; quote ; 0,0416714383759989 ; 0,0408380096084789 ; 0,0204081632653061 ; -5,8 ; 0,0402129380328389 ; 0,0431299387191588 ; -2,3 ; ec9bEC7bd5EACC938BBAcCfB3Dbee2F2ddacFBFDe4FD4b08aEFe6FD4AeFBAed4 ; < VHn2j9McY6mI39ijigSkvUqs9r4Jmw7O4PYPR6FxPBdEgu0rVh0T8JlAGz6qfZ9n > > 3 // < PUTS 0,653748994995075 ; quote ; 0,0463015981955543 ; 0,0453755662316432 ; 0,0204081632653061 ; -1 ; 0,0446810422587099 ; 0,0479221541323987 ; 4,2 ; 54DCea98A3217B2B8d6ACaBCa4Ecd9b60A7Ba0CdD2f5dB9DeFCbFAcB4b460de8 ; < uDf12Q3HEqzhD4rR28LOexPcj3WwJC1V3C9qf441zW1QbD2mI21sZfaKd22x221h > > 4 // < PUTS 0,704037379225465 ; quote ; 0,0514462202172826 ; 0,0504172958129369 ; 0,0204081632653061 ; -8,2 ; 0,0496456025096777 ; 0,0532468379248875 ; 4,3 ; fbbb0EDbF8AEfAF4DfEFEc7fBbEe0B0aaDCAD70Db5fcBA8acFecbCb6D138bf69 ; < BSS7T4EaMt4Mi1lZ2cCC1gohP917obN3229scSRkvIBwSamriSJX2T6TiPSGCAO0 > > 5 // < PUTS 0,754325763455856 ; quote ; 0,0571624669080917 ; 0,0560192175699299 ; 0,0204081632653061 ; -8,6 ; 0,0551617805663085 ; 0,0591631532498749 ; 4,7 ; 3DFaeF3fFFe9Dbf4bFEa44Beaff56Fca1f1d316F54afaBcAfF3cecE8d55dDbED ; < 7pJs61u32YVSjboHJ54ZDt8JooVDPH77M7Pijvf8kwoy0wk73QnyT95L1274csBk > > 6 // < PUTS 0,804614147686246 ; quote ; 0,0635138521201019 ; 0,0622435750776999 ; 0,0204081632653061 ; -5,7 ; 0,0612908672958984 ; 0,0657368369443055 ; 1 ; fE26AA71aEd05CdcFBdfA9b00AE4B8EB6FFf30bEd7bfcaBFdC0bed0e8AD222DB ; < 8HRTz9969Dspe73vg65ayoa6rMN27n7ATv1qa35lZCkNh75oVT13NiGTy4kZEYVX > > 7 // < PUTS 0,854902531916637 ; quote ; 0,0705709468001132 ; 0,0691595278641109 ; 0,0204081632653061 ; -8 ; 0,0681009636621092 ; 0,0730409299381171 ; -7,5 ; fCa5c1eCb86Ba6aAc0A604aD47AAf73BdfA1eF788df8CD3dcF0DD6fadFDFe92B ; < ysoVhxcp3R8BPl58dglFzIyZVQ5pF740uM6p7C0Rc82QLSZ3Z91RB61VZyu6sAV2 > > 8 // < PUTS 0,905190916147027 ; quote ; 0,0784121631112369 ; 0,0768439198490122 ; 0,0204081632653061 ; -2,8 ; 0,0756677374023436 ; 0,0811565888201302 ; -4,1 ; eafdBafE08AEcEdAbd721cAC9Cf7cCAC8Cb4B5cAf5Ca1DDbfcD4aDBDB9AaDa34 ; < 4SPU1Gja77LyRlcoqdH6hmvYvKj3981TLlUlLY59cYJ0l7De8WpI2088B79Cz04F > > 9 // < PUTS 0,955479300377417 ; quote ; 0,0871246256791521 ; 0,0853821331655691 ; 0,0204081632653061 ; 9 ; 0,0840752637803818 ; 0,0901739875779225 ; -5,4 ; e2accBACb1EDEEDfA6fcBFFfE3c4DAAFbEfbef5ceEedFD5a3aeEbeE9BCce1AEB ; < 9EN40IzQKEl7U8VMX9KL1fU0ac28upPIBZ1pSxMN10d3gb2H1pS9M4uCNkLPOS48 > > 10 // < PUTS 1,00576768460781 ; quote ; 0,0968051396435023 ; 0,0948690368506322 ; 0,0204081632653061 ; -2,1 ; 0,0934169597559797 ; 0,100193319531025 ; 3,3 ; f0Bcd1CAECCEeBe07FDdCBEeaAeBc4afaBfdacF6E4ccFBDEBe1B1CDa10b5Ae98 ; < W2QK9Ela2FMAnD1pE5EwWPHNj7331mHQqQ5OIEp1Xe8D78lwNtBvhhG6hyThZX59 > > 11 // < PUTS 1,0560560688382 ; quote ; 0,0871246256791521 ; 0,0853821331655691 ; 0,0204081632653061 ; -2,7 ; 0,0840752637803818 ; 0,0901739875779225 ; 4,7 ; f1Bd91D5fDFaf974CECe9A63DCbcbFdae2EeE7B5a3Ab1FFf0d2bFc5DeEd4E9F2 ; < D37wY0IYbj6yC8uxZsGBi51ZJfci9Wa7D2ACKDeHF0b035q73Q8sG9FZ2EWX1eB6 > > 12 // < PUTS 1,10634445306859 ; quote ; 0,0784121631112369 ; 0,0768439198490122 ; 0,0204081632653061 ; -6,3 ; 0,0756677374023436 ; 0,0811565888201302 ; -4 ; f005FF8cc38dbF697E72DA4E1Cc2B0808eBdeCdF4cc6dceefcF0dDaebAEe92dD ; < 4pX5272CjvOLmGLpz32AVqo8Ici55w7nhNOI2guyM3kgZZKKvc2l0ohXAz44oWBH > > 13 // < PUTS 1,15663283729898 ; quote ; 0,0705709468001132 ; 0,0691595278641109 ; 0,0204081632653061 ; -5 ; 0,0681009636621092 ; 0,0730409299381171 ; -3,4 ; B22AF2d2CBCd1e3AC3F23b51af2A6C3D0032dcD97D9BE5b2FEd64E54725FBdFe ; < xtV4HRAMz1S305BeRi4wNwWxXCgLh7t48876L5bWiULgHH4yNb9E259Zu27o9F7C > > 14 // < PUTS 1,20692122152937 ; quote ; 0,0635138521201019 ; 0,0622435750776999 ; 0,0204081632653061 ; 5,8 ; 0,0612908672958984 ; 0,0657368369443055 ; 3,8 ; ca67522E3eDD7E7bEadf1ffEEcc5fc0AAefE78cacDf9EbdDbc5BD818baD5f7c8 ; < G29saGQjm72TOe5c0l3nwtP7m93NyVZF7C26005fuCmkTtpdz56pWVd996xM3Ts2 > > 15 // < PUTS 1,25720960575976 ; quote ; 0,0571624669080917 ; 0,0560192175699299 ; 0,0204081632653061 ; -5,7 ; 0,0551617805663085 ; 0,0591631532498749 ; -2,2 ; fdA120FFA1cdaeadDecdE8b7a9b4dAAbbE51cD2c683AFAC797C9BcABdDcF5Fad ; < 5EdCmo9VI23G8W06Li8Xnfx5M8Q2DI1CAE4IOlyiFe8PST10dd6zqinKDNA6LeCi > > 16 // < PUTS 1,30749798999015 ; quote ; 0,0514462202172826 ; 0,0504172958129369 ; 0,0204081632653061 ; 6,2 ; 0,0496456025096777 ; 0,0532468379248875 ; 4,8 ; C8D62eB35D79f9E7CD0a609A37Adab17F5e815648fa1c9e3c5EDef37DAEfa9cD ; < Pv3tr27x67I89Qgx30kcWM6TN81E39EYt2477Ph9wUF2pVUkj4416z1hNZ50fYT6 > > 17 // < PUTS 1,35778637422054 ; quote ; 0,0463015981955543 ; 0,0453755662316432 ; 0,0204081632653061 ; -5,5 ; 0,0446810422587099 ; 0,0479221541323987 ; 7,9 ; b0BF2EdCa74EbE1b2C0AC7fe0e1C8047C95fdcfC25E99cdB35BeFDaC3C48fEdA ; < y8Dy30N6rGtM5Yp0kT20ndMo9q6IuVJi9q9j1gjQ7YqHmGq468ZH84J1tuiEkeYS > > 18 // < PUTS 1,40807475845093 ; quote ; 0,0416714383759989 ; 0,0408380096084789 ; 0,0204081632653061 ; -1 ; 0,0402129380328389 ; 0,0431299387191588 ; 4,3 ; FBE85AEF08d04fCaBEbe10a520a75CaD8EDC9FaB33D4FCA0Fd3Bd5AF9aDeDCaC ; < yM2KYYidonU1ZGqzhb1hcnJ49KkE8k2raLpDiKc8w59w95Mm5WvM13qR4QbUhL13 > > 19 // < PUTS 1,45836314268132 ; quote ; 0,0375042945383989 ; 0,036754208647631 ; 0,0204081632653061 ; 0,5 ; 0,036191644229555 ; 0,0388169448472429 ; -3,5 ; B6C5F8BCcbcED76fe5EfedbE4Ed94f9B0DCacdEADeeF3771cEaba3c22fEbd7Dc ; < TXjUk3zRMtastVJTQ4N3xDyk09Li7UuexA6XS1U1Qm4zR8qvKAx180PDaq0L7IOS > > 20 // < PUTS 1,50865152691171 ; quote ; 0,0337538650845591 ; 0,0330787877828679 ; 0,0204081632653061 ; -5,2 ; 0,0325724798065995 ; 0,0349352503625186 ; 3,4 ; 10fb591049726C7dDce1Da092Aaca1DC138bCE3fbFCA465DFBAcCeb5d20020aC ; < FQisM7tCieUN009ZrmeV9UDIUHibN555I0HQStkcgiDNtGZ7Y40KppPn5olVk0fs > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,50949747348878 ; quote ; 0,072466441880395 ; 0,0710171130427871 ; 0,0204081632653061 ; -7,6 ; 0,0697851835308204 ; 0,0751477002299696 ; -9,9 ; dcbeFcbAEBcDF5F3b9D25BfDFF1bEddB3eCCBFa249D886fA50BB6dD7c28aa60f ; < 5qQOjeKWGzWL0o7fT6nOx10w3502bosC40UqZ513g9X7po41X0iZMUsbdhrP9yWA > > 1 // < CALLS 0,560447220837658 ; quote ; 0,0805182687559944 ; 0,0789079033808745 ; 0,0204081632653061 ; -7,2 ; 0,0775390928120226 ; 0,0834974446999662 ; -6 ; e6DEE2EBB4dd5f57fB3BcBFCA5C8e2b44dCc85E9eBf16B3EceBFbd8c3eE0Fb2B ; < sOJm6ev6fhhvv9j61de71h9zVXE4B6GE433XZL0Hf7CuMigSBwvZZdLFATYYCdUI > > 2 // < CALLS 0,611396968186536 ; quote ; 0,089464743062216 ; 0,0876754482009717 ; 0,0204081632653061 ; 6,5 ; 0,086154547568914 ; 0,092774938555518 ; 0,2 ; bfadeAe579dAfedbCd6efDad77a1cbcc7B19Cb72BCE41c5CC8DBBaaB1dBDe7eF ; < 141zdvtzP2uuD9DP40PeqIGf4QF30Hty4YV7rrA20XunBejRtita0s7I8Cbnd16V > > 3 // < CALLS 0,662346715535414 ; quote ; 0,0994052700691289 ; 0,0974171646677463 ; 0,0204081632653061 ; 2,5 ; 0,0957272750765711 ; 0,103083265061687 ; 6 ; FdCDBACE1Cbda1fe2E3cc6eaBb6ca7bec01EAa86b844CDcA1503fD123C4beefD ; < v5Ce5569b6a1Z8CvCp98IJ25Pgjo1JD7c1gbeVL1MA4GorVcoX54hZ18RzZUI05u > > 4 // < CALLS 0,713296462884292 ; quote ; 0,11045030007681 ; 0,108241294075274 ; 0,0204081632653061 ; 0,2 ; 0,106363638973968 ; 0,114536961179652 ; -3,8 ; cCCA03EfEBcb1c55f214CCF8F66dF20bDE7EA6bbEdada6aCe0d8dab31F5b6Ded ; < p3Hgs6fBqHYRNzzXZZkk96Pc3hS6KIBnsWOQY3Vhc73hWUD7z6w57Je6lDv247Q4 > > 5 // < CALLS 0,76424621023317 ; quote ; 0,1227225556409 ; 0,120268104528082 ; 0,0204081632653061 ; 2,9 ; 0,118181821082187 ; 0,127263290199613 ; 4,7 ; cECEDF5B4B2bDeB2cb9CcEb071Db569aDc06Cf23e0ABEeaD8c0D76b3c6e1aF8C ; < wPUlp6J0768W7mf6hq2664xF002t0s1DUVIOfAn2M3gXtojj0ED4cXGs4u1hWhj9 > > 6 // < CALLS 0,815195957582048 ; quote ; 0,136358395156556 ; 0,133631227253424 ; 0,0204081632653061 ; -8,2 ; 0,131313134535763 ; 0,141403655777348 ; -3,9 ; e48ACc6eC823CFbfDed0f0d7fA0F7bE4FEA9e3CdbBDBCBE0DC94D956E398cE3E ; < 4yBBEL1eITmb4Z4h8DBqA9ZF8F0JGzOjwk3w201qpG6mfd609z8795nj4usVyL0X > > 7 // < CALLS 0,866145704930925 ; quote ; 0,151509327951728 ; 0,148479141392694 ; 0,0204081632653061 ; -2,2 ; 0,145903482817514 ; 0,157115173085942 ; 5,9 ; c1FCfeDffC3E4dddFbc7C8cF66A6F4E1C0EEAabfd6afdDE7Dd87dcbD4Ddd6fFD ; < n0A818auZhlr5Pt5L8uOdP9l4P27XEWv8v0xd18fuplS8X0ZT1U9Wo7B6C7SbRz8 > > 8 // < CALLS 0,917095452279803 ; quote ; 0,168343697724142 ; 0,16497682376966 ; 0,0204081632653061 ; 4,7 ; 0,162114980908349 ; 0,174572414539936 ; 2,4 ; cDCaf0E47C911a2d4BEFB0E34cDDce96cad11cdF8fecE2abe0Db5fb4a7fdfdE0 ; < 3fMX17KmO7gO4DFjkRIGk689T9N6t874U2zMo5kYQW993EbbOYWw6PHrX91X50XL > > 9 // < CALLS 0,968045199628681 ; quote ; 0,187048553026825 ; 0,183307581966288 ; 0,0204081632653061 ; 5,7 ; 0,180127756564832 ; 0,193969349488817 ; -8,7 ; fc4Bb0B53AB9bb01aEdb67dbe4cBaD29fb64FCBfbf2Bece5C3C7A0F9ebfaEB28 ; < uZw1h7UA65L4HTsdaoJVCTbB28Jnnl3N9ZWv57pfNC2REIo17g8KHeKV8eyM4gSK > > 10 // < CALLS 1,01899494697756 ; quote ; 0,207831725585361 ; 0,203675091073654 ; 0,0204081632653061 ; 8,7 ; 0,200141951738702 ; 0,215521499432019 ; -9,8 ; A3F564Dae9beDd9fAa41B89EcfEFa6e78ffA9dB4BaAbDa4e8Ce2EcDDFFEbC79b ; < 728xu0G66Z3ixVcM53AAawtR2BG6Qo9KsJR2qXsaKrQLM82vWv9T28SzPak0wfzo > > 11 // < CALLS 1,06994469432644 ; quote ; 0,187048553026825 ; 0,183307581966288 ; 0,0204081632653061 ; -2,6 ; 0,180127756564832 ; 0,193969349488817 ; 2,4 ; 7EaebB6D60DEFFe4eeBAbE99daC361Ac6Fe7e406EfdDF3C47d4CC18DC6c72DFf ; < AWj6DOV3w7p0eneQ315X9wnbSt3RQU6x955TX3gb0m8VW9wm8nISuan33LRlg0q0 > > 12 // < CALLS 1,12089444167532 ; quote ; 0,168343697724142 ; 0,16497682376966 ; 0,0204081632653061 ; 5,3 ; 0,162114980908349 ; 0,174572414539936 ; 8 ; e985cCc0B6fADd1Cca2fEA9825eAFEABcAFCbc5d2D0Fb5A8c68E1f51D9EfEaEb ; < 1ufRY0Q0D2gCj546gad4Wqd9dGf9728STWN930BsmH4WR81QBE9h6fL1l0Ge4xyW > > 13 // < CALLS 1,17184418902419 ; quote ; 0,151509327951728 ; 0,148479141392694 ; 0,0204081632653061 ; 5,7 ; 0,145903482817514 ; 0,157115173085942 ; -9,9 ; 87aBcEbe451acaAa723bfDEAcFf1fb9a4bD8dDfa4Dc919df21C12aa7cCD8F28f ; < ZfbqcBrYl6Tk7W3l6cinI4Ni53B5MZy0246g18IuvC0y9faTl8965rD335lJ633C > > 14 // < CALLS 1,22279393637307 ; quote ; 0,136358395156556 ; 0,133631227253424 ; 0,0204081632653061 ; -6,8 ; 0,131313134535763 ; 0,141403655777348 ; -9,4 ; f74ADEcF770f0EcD7FC82eA36Ebad58db5fc71aeD8C200a2a6cfCEbbdBEfbeCa ; < 4N6xiL3VR4TD2rjB54nRo1elk3LMC2pyb36p59Wl4csasnBZ32zShE2XYyGSf8Jc > > 15 // < CALLS 1,27374368372195 ; quote ; 0,1227225556409 ; 0,120268104528082 ; 0,0204081632653061 ; 9,7 ; 0,118181821082187 ; 0,127263290199613 ; 5 ; FB64ddCcebE210f8b2dcEe2E18Ea88A0e17e1DDF6fbADebdbC8F3CaEbaDbbbdf ; < HG5zmzNn63Dfl73cHlYsFt82tCZxA2E4hqv51wT49Hgvv82ApO334f6S6NUr2hI5 > > 16 // < CALLS 1,32469343107083 ; quote ; 0,11045030007681 ; 0,108241294075274 ; 0,0204081632653061 ; 0,4 ; 0,106363638973968 ; 0,114536961179652 ; -2 ; aAd303fcBfEeF9fd7f9F11ccAC0Bf742ad1ed1b4fA2C6C39A9cFFDd9Dd7EebFa ; < cFpvqaqwGQ0HMtXaQ0ZhuiCAXp5YwrBQ21nSnpJ99Mi0sRK7WOUwAcAUQj357U9q > > 17 // < CALLS 1,37564317841971 ; quote ; 0,0994052700691289 ; 0,0974171646677463 ; 0,0204081632653061 ; 4,1 ; 0,0957272750765711 ; 0,103083265061687 ; 4,9 ; 0A6eceAbF8cADBeCc4d4B72AB1cB0fCFE00Cc0aecB9a1E6dfafA5EBA72CfCBA1 ; < ls1qpSzuT98fgoL26xBvy01a0U12pGtcOt9D8Z7Hi014O77Ghvz707NHzHOig42x > > 18 // < CALLS 1,42659292576858 ; quote ; 0,089464743062216 ; 0,0876754482009717 ; 0,0204081632653061 ; -2 ; 0,086154547568914 ; 0,092774938555518 ; 1,8 ; Db5ABDb8D9E7DCbd5c9D96Ae1a6a0190CafC4effafEBaD7Cf0aE9EfAfBDfFFa6 ; < reN9K0gszw55oKdrE12o1P5A1oWXK10USXheL15PB3w234mOuL88J3KGu5PlO33h > > 19 // < CALLS 1,47754267311746 ; quote ; 0,0805182687559944 ; 0,0789079033808745 ; 0,0204081632653061 ; -5,3 ; 0,0775390928120226 ; 0,0834974446999662 ; 9,8 ; AceddceadDDCeFDdbc2B8F5c3cB4dc3aFaDcF87FBaE7c0edcAbbe5F6AA4BC6d6 ; < 7F19dKUX2mQr0bZTbaQm27bI0OVaa0v31eM8FaxsdJ1067a98LABLQ8858pMWwn1 > > 20 // < CALLS 1,52849242046634 ; quote ; 0,072466441880395 ; 0,0710171130427871 ; 0,0204081632653061 ; -7,5 ; 0,0697851835308204 ; 0,0751477002299696 ; -4,2 ; 8EcE5aAD68EEa4EFe67A4e2AF0dDD9cF68DB4BbFaCE0FFcfCEebCDe8dADC29Bf ; < pt49q277gpWteSPbJB71cl1YD86Vx5NUy8QOx3cGsnSO1O83CWb6iul8LXHo0WJi > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,50949747348878 ; quote ; 0,072466441880395 ; 0,0710171130427871 ; 0,0204081632653061 ; -1,5 ; 0,0697851835308204 ; 0,0751477002299696 ; 7,4 ; caE2bDB82FBA6bDdfF1aFFbaa7Eee4CF3ec3fBBaaDaBd7Cb9E85D1b465a6EBC3 ; < NOJ8873Zo3HV2BA9wfcfmpYmkucBwMIB66w4cr6cagwvSCl6j0Pbd51l0jBB3ERp > > 1 // < PUTS 0,560447220837658 ; quote ; 0,0805182687559944 ; 0,0789079033808745 ; 0,0204081632653061 ; -5,3 ; 0,0775390928120226 ; 0,0834974446999662 ; -3,8 ; 5EC1e8Cc5AFEDcFeA11DbCCd5bcbC45bE828DeADfb0aAccEFD1cfAceF8fab1Fa ; < 5Q5ozl07jl5zUseI47I0MWNZ1npwDtyHfTrq0qwFGs84Y72H56l9aT88YEv1T484 > > 2 // < PUTS 0,611396968186536 ; quote ; 0,089464743062216 ; 0,0876754482009717 ; 0,0204081632653061 ; 7,1 ; 0,086154547568914 ; 0,092774938555518 ; -2,2 ; 05c2cEa3CDfCFdebb2fc6aD046E8bf1e2DABA884cAd1ADD8dBdAA2A86b23dAbf ; < LjME3vwypysj256SB2p4OdjA16LY7y4s4oTi4iVwS4lOUE780Eu3t21xt0FOHrDF > > 3 // < PUTS 0,662346715535414 ; quote ; 0,0994052700691289 ; 0,0974171646677463 ; 0,0204081632653061 ; -8,1 ; 0,0957272750765711 ; 0,103083265061687 ; 7,6 ; fA1F51DaA0CC55AFFBdFa773eB3ECfFAeEbae57e42EaF4BFE7Af8d4eAbceadD5 ; < RZ4VXQT2a8Lh1XQ3H2DBEJXA8g7RS5GW0mqqlSX094klv0u4S6WPT53QSw529YS2 > > 4 // < PUTS 0,713296462884292 ; quote ; 0,11045030007681 ; 0,108241294075274 ; 0,0204081632653061 ; -7,9 ; 0,106363638973968 ; 0,114536961179652 ; -7,4 ; eea4bAB7dd5dEbBc5CaEdfC825FC9aBCCDABcbB2d4BE8C39EdDAEE7D432Ecd91 ; < ubQ7ha7s1ubco7mR3gQ50pwmk14o2YEimTf54l542h0WJLEssPySGgtbuO2JB614 > > 5 // < PUTS 0,76424621023317 ; quote ; 0,1227225556409 ; 0,120268104528082 ; 0,0204081632653061 ; -5,9 ; 0,118181821082187 ; 0,127263290199613 ; 3,9 ; DaFEe07F7C07FcdBdA55dE0BfE89C3Ccb2A1Af3abA6015AAf2ed6f07fcc39efF ; < 2qhy9xwJa1UenHnWWX5h6M32Wb8575mvLen5DZmKBW69ja0706lqsGSXb0E56Do6 > > 6 // < PUTS 0,815195957582048 ; quote ; 0,136358395156556 ; 0,133631227253424 ; 0,0204081632653061 ; 2,3 ; 0,131313134535763 ; 0,141403655777348 ; 7,5 ; 3DfDef00bdADeBb55FA29c40DFcac9229Cba48D0CD2E9aEaACf7CaaC731F8b3c ; < FoJ44i9JhVEo64Qd0r0rygwO6mySOhNqNMXCNY1pp88DJhQ7BpMXmp6Q6Mp1Tlca > > 7 // < PUTS 0,866145704930925 ; quote ; 0,151509327951728 ; 0,148479141392694 ; 0,0204081632653061 ; -3 ; 0,145903482817514 ; 0,157115173085942 ; -4 ; 0eaCfa0Ce5aAa8Ed6A2feacC00ad98Bbcb581e387eCe3FeBEE0aF1a6cfDDAD1b ; < 9aBrX86Za2dOP8918sq0E47xJ7qgBaLZv6172Z80GL40y4e9az7kORX94mNqonmg > > 8 // < PUTS 0,917095452279803 ; quote ; 0,168343697724142 ; 0,16497682376966 ; 0,0204081632653061 ; -3,7 ; 0,162114980908349 ; 0,174572414539936 ; -0,1 ; 0c5eA11d8FbBF9B43AD9c4dbb5B5BD7d19BeFe1BDcFC2ED7Fba6baeFbbeDec8c ; < 6a78tqOa2uzVtbpYvP42QWGZ1jglrc7wR616Kow0jd83y1YO4Uk25A6xce7fvdOT > > 9 // < PUTS 0,968045199628681 ; quote ; 0,187048553026825 ; 0,183307581966288 ; 0,0204081632653061 ; 8,4 ; 0,180127756564832 ; 0,193969349488817 ; 4,8 ; e3aDfd3abE7cFE0Dd7f9dFAcBb9C3Ab28d485faDa64dCe347dfB6EB8bBAfbaFE ; < hP03Rw9asFWkT5H8JbI9yWM4725dtRo48vj8d2Dn13Md2LH42qDTxVXV7L8849U4 > > 10 // < PUTS 1,01899494697756 ; quote ; 0,207831725585361 ; 0,203675091073654 ; 0,0204081632653061 ; 8,8 ; 0,200141951738702 ; 0,215521499432019 ; -4,7 ; 1b7436287CEB65EA25dedcfa0bF3eFEAAC1fdff374aEf1DA8224bfa4B9f6DaB1 ; < 1z5kU3H6h99Z191sR7IiZ2zd93Kqp0I074OL2S11wAZObs27FcD3805Rc342281A > > 11 // < PUTS 1,06994469432644 ; quote ; 0,187048553026825 ; 0,183307581966288 ; 0,0204081632653061 ; 4,5 ; 0,180127756564832 ; 0,193969349488817 ; 8,1 ; 46a375aCD62cFae9cFef1E4AFEe51B0dCF35DfaFA02DDfDEFfDBCB9EC8e2DBFa ; < h3V6E4FT2L7lTvDHdLXFcgvMT5F7IC13512t3ry1g7J466Ck81DmK8fvtsdjOH7S > > 12 // < PUTS 1,12089444167532 ; quote ; 0,168343697724142 ; 0,16497682376966 ; 0,0204081632653061 ; -9,3 ; 0,162114980908349 ; 0,174572414539936 ; 5,7 ; Ea26BFdafce47AD96eeBEbf0bB1fBF6BB580BdFd8CFebAD332daDfb13b70EfeD ; < fFD5285iO5ALI0zZ13TZUu0aZ5fgRV080Lr1FhypZm7Qth229U6W5PnE54Cr6s0M > > 13 // < PUTS 1,17184418902419 ; quote ; 0,151509327951728 ; 0,148479141392694 ; 0,0204081632653061 ; 5,7 ; 0,145903482817514 ; 0,157115173085942 ; -3,7 ; F5e366228520fabBA2Dbcb8eDBFcDcA74A6ac5F1Dc80f7bee7Cd6Da0dBEdF86a ; < D1DdYeJ24hohHogH9s5776aXhU4zhVrwI3KCx3pIYg6u3gS666pwVkRx76ly43C7 > > 14 // < PUTS 1,22279393637307 ; quote ; 0,136358395156556 ; 0,133631227253424 ; 0,0204081632653061 ; 8,3 ; 0,131313134535763 ; 0,141403655777348 ; -0,9 ; fc71ccF254f2DAbeEeB97ed2b26CDf2BEAfBE199535C866FE3AfF00fc01Eb8De ; < nFJwW6eYa0SqECIEp8821BKSEs7sajy20AfxmBEJqAWxqcW6Aw1x4g3se3zycn64 > > 15 // < PUTS 1,27374368372195 ; quote ; 0,1227225556409 ; 0,120268104528082 ; 0,0204081632653061 ; 8 ; 0,118181821082187 ; 0,127263290199613 ; -8 ; ABD2B11bc2DE0Bc1e237DFF6e5bCaB1554BaDEBDcFA2Ae2fEcD5A5B348a648db ; < 4s5l7BKcg7o90Ev69O1iKUaga4C7ZJV2lXdVjXXrcN3E6NOcAwBb0kPcE5mU26gY > > 16 // < PUTS 1,32469343107083 ; quote ; 0,11045030007681 ; 0,108241294075274 ; 0,0204081632653061 ; -0,8 ; 0,106363638973968 ; 0,114536961179652 ; 2,8 ; Cd1aE6dABCa1dee3267d7FbbA5CDAAeACeeefaCe2ee28ECDb3BA708274BFD2CD ; < YgU8v449kPwaMTLH08fvz5GLn0guE4h91RIS804806okJYJ9e0Xcu7UR385N5VfU > > 17 // < PUTS 1,37564317841971 ; quote ; 0,0994052700691289 ; 0,0974171646677463 ; 0,0204081632653061 ; -2 ; 0,0957272750765711 ; 0,103083265061687 ; 4,1 ; 87c6a7a0bb124f6B5F3d0b9ab4Edad0DABaA5FEEebDd66b15debbA6BBFC6Eccf ; < nO4vtjo6rn1CLzM2rZ84Aj6TLKcybr43d9Y3KobZ53LIfQa4kO3NIbiZkuRdZR9v > > 18 // < PUTS 1,42659292576858 ; quote ; 0,089464743062216 ; 0,0876754482009717 ; 0,0204081632653061 ; -0,4 ; 0,086154547568914 ; 0,092774938555518 ; -7,1 ; 23b0FBAc3bfFBBbFe7BFC2eE6aD9bc41aC51CA97aAcD8B3ADB42ceA0e030046F ; < V92KDdbzLULQSgxVC021Fc8pFYQHP0iny1ILK9Fp6ah4klH402iGJbLJv11vawo9 > > 19 // < PUTS 1,47754267311746 ; quote ; 0,0805182687559944 ; 0,0789079033808745 ; 0,0204081632653061 ; -6,5 ; 0,0775390928120226 ; 0,0834974446999662 ; -3,9 ; 7Cf0a78CFF9aDe9baCBc5EddfaAb5c1ADEa6fBbcaF06EFa4FdeA5C54FabF3E75 ; < 09che6Px88jbf55SV5KSi80k6Y9g23Hw4q9f0KZbO6h7gdy2izgOCPfTb6JX5l6E > > 20 // < PUTS 1,52849242046634 ; quote ; 0,072466441880395 ; 0,0710171130427871 ; 0,0204081632653061 ; 2,9 ; 0,0697851835308204 ; 0,0751477002299696 ; -0,9 ; F7EceCcBecBdceDcFE4EBbd6bD7AcfBe81B7fD8Bcf1aF2cAefDDE0fEFc5AF7A9 ; < 5Kr3Ih0r90ZhO4veGP2SV02q11Sr3sqeBIWNUul825QkX5JwmYvxi3FwRcY6lrAl > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,520039889292349 ; quote ; 0,117738181102969 ; 0,115383417480909 ; 0,0204081632653061 ; -9 ; 0,112793177496644 ; 0,122683184709293 ; -2,4 ; EbACdfb7c0cd07EaaeED9B8e039cDB17a2e3FbD6f9B0fEF514c7BDdAe9EcBdaa ; < ikxh2o93tnZbA079m5jXczAUa8lV3ULbyXCpf0z6gGFc8Yey4vXc444HZD1d9jiT > > 1 // < CALLS 0,572043878221584 ; quote ; 0,130820201225521 ; 0,128203797201011 ; 0,0204081632653061 ; 8,2 ; 0,12532575277405 ; 0,136314649676993 ; -5 ; b0EafD9b7DE5F4E2580b6ac14ecDfaAfCd8bcEd6AEF4AB26fEA5dACbbFf62d4e ; < M0W9t99Gn8yf66aSt6m45V4zK9xyuC3AM807t30lu50gjs8248sl1TnElSScq8nT > > 2 // < CALLS 0,624047867150819 ; quote ; 0,145355779139468 ; 0,142448663556679 ; 0,0204081632653061 ; 6,9 ; 0,13925083641561 ; 0,151460721863326 ; 7,7 ; 8BBF2EefdedF1eCAac3D4aD6d1Dd1d040dF11eDc7F43BA6ea5A0D8dADCC2DaAd ; < 0U63UshEnkqa2SBxRF38MxSoymEL68twoNi6P405026a5Vuj03MST25p6598hT8H > > 3 // < CALLS 0,676051856080054 ; quote ; 0,161506421266075 ; 0,158276292840754 ; 0,0204081632653061 ; 1 ; 0,1547231515729 ; 0,16828969095925 ; 9,9 ; Cab20AFBce37d1A8BEfBBdA13DfA10A8Cd1BD6fEAC8f5F38BC706bfdcDedCccE ; < d9tj85dCGSmcC91f89kX0X7lDwfB6z6z12N9HoJs19a4Tcsl26u0Bcf4QnV1IbyQ > > 4 // < CALLS 0,728055845009289 ; quote ; 0,179451579184528 ; 0,175862547600838 ; 0,0204081632653061 ; -9,2 ; 0,171914612858778 ; 0,186988545510279 ; -4,9 ; ce782bEeCd5BF5dEe8ACCf6Dc5D3fAe9Fef4Fe7D3cC3bfe2e2AfdAaF5c8d06aA ; < EfuI1XYNwBpHFIq2ih0B8ggWNL7N271yqVns0E3Zk7Siv9O137Gb6v562S8jccRm > > 5 // < CALLS 0,780059833938523 ; quote ; 0,199390643538364 ; 0,195402830667597 ; 0,0204081632653061 ; 2,3 ; 0,191016236509753 ; 0,207765050566975 ; -5,9 ; A9dEADa93F93AF9CedF6Fb0bFA7Ab4d9DfaCf2bEFe716fCBe4B4CaCE6c7deD3D ; < v2LOfKZ5s6dytdLX06fhtexScDz83d62G8RJ46WhgTMazqT1BKdH1uXOnq4yM9V8 > > 6 // < CALLS 0,832063822867758 ; quote ; 0,221545159487071 ; 0,21711425629733 ; 0,0204081632653061 ; -8,4 ; 0,212240262788614 ; 0,230850056185528 ; 0 ; De2aFB5e3C04bbFfbC182ddeA1fBeDBF9ccD5bfF6a5ba9cEBCbdB8bbCDbdECeF ; < Efcq9zvmb40inxnK69vh9mB1NywMl8000TxjR2f93AuzlOk7oPFn1LEJFk2mR7eC > > 7 // < CALLS 0,884067811796993 ; quote ; 0,246161288318968 ; 0,241238062552589 ; 0,0204081632653061 ; 0,6 ; 0,235822514209572 ; 0,256500062428365 ; 7,2 ; 4B700E8dcAAF6aE91A8ffcf4D20DE99bF4eF8Ce49C4F30cbb3AC9bceadf082BC ; < 14r0943ndG22hfPj1T17Mc2e2g5BgFD9rhK4yP87R96zO7oLSxo66b1Y52BT7VO4 > > 8 // < CALLS 0,936071800726228 ; quote ; 0,273512542576632 ; 0,268042291725099 ; 0,0204081632653061 ; -8,2 ; 0,262025015788413 ; 0,28500006936485 ; -8,8 ; ffd4AADd89EdAD7eC3E3DFf0B5E22Fd028Bc3a1AbCBFe9ceFBfbd8BB8Bd0bCB3 ; < PHrJgiI4z45C5zma83R1fc8xEk5SNCAF5PEBJcCL4FnwCBH892D1f2e6951fA4iZ > > 9 // < CALLS 0,988075789655463 ; quote ; 0,303902825085146 ; 0,297824768583443 ; 0,0204081632653061 ; -7,3 ; 0,29113890643157 ; 0,316666743738722 ; 5,1 ; ceEdAf7acf7a57d26281e3BACfc3b4a7CaeBeB46DCceF2ba24Ee43fBEEa2a2AA ; < W6kSO53uMnRo3k5z03946600UH9M757bJ9NecFB4952Kxn836agt54L2yGKQrDe3 > > 10 // < CALLS 1,0400797785847 ; quote ; 0,337669805650163 ; 0,330916409537159 ; 0,0204081632653061 ; -6,3 ; 0,323487673812856 ; 0,351851937487469 ; -2,1 ; FEd1a0dbcED9FD100cF7e2fc1A6e0de90ce1cdFEBDcC17a6defcFdBFffbBaaf1 ; < 8OA3f9wAY9o2tPFO1fb3JSk7Vb8O31eYE09pO10jt7sp96e8S7AOk0A1PR7xYmu1 > > 11 // < CALLS 1,09208376751393 ; quote ; 0,303902825085146 ; 0,297824768583443 ; 0,0204081632653061 ; 1,6 ; 0,29113890643157 ; 0,316666743738722 ; -6,6 ; B87335dF8BBACe9cd86CeeF00fBB29Bc8fdaED2960Dd6CeE2dbaFEeFAd504CCa ; < 8rXF6bV9YVNhB28VtX29QxQaLB8wMCWcn50j9K7ivWo8aM5O5u0rZa19EuLL99SH > > 12 // < CALLS 1,14408775644317 ; quote ; 0,273512542576632 ; 0,268042291725099 ; 0,0204081632653061 ; -4,7 ; 0,262025015788413 ; 0,28500006936485 ; 0,1 ; cBBdea2Afd36caFABe05c2abeEcAde6EcaCCefcf2dcC6acbAaa6D59C7ffFEE01 ; < Pf06987AW99a8WXG3FtO1ujD01KB9vWV2Ns2d543v1s50v0p7O5HJcd0SyCSx08H > > 13 // < CALLS 1,1960917453724 ; quote ; 0,246161288318968 ; 0,241238062552589 ; 0,0204081632653061 ; 5,2 ; 0,235822514209572 ; 0,256500062428365 ; 8,5 ; 3fcDeAf3B89d7C051Efe0AFF8dDBf7AdFadBAFcCDFFa17eBFE4ebDD1eaCCbEB0 ; < 62iKd90OfMjyV4cCU782539581iZUoS0CEMJjJBBbEk8D2h49P8IivF6eLge0956 > > 14 // < CALLS 1,24809573430164 ; quote ; 0,221545159487071 ; 0,21711425629733 ; 0,0204081632653061 ; 0,9 ; 0,212240262788614 ; 0,230850056185528 ; -1,3 ; dDFbe4Ede4dffb4A15bB6fD078932F47Fe847B7f26CcBFEBb7efa21C52eBe0be ; < Tk7JVKPaZlUPssPi70ecGt2AX58m5z5caf9al24q379yagT7TOrC7aQobDLwW5Ph > > 15 // < CALLS 1,30009972323087 ; quote ; 0,199390643538364 ; 0,195402830667597 ; 0,0204081632653061 ; -5 ; 0,191016236509753 ; 0,207765050566975 ; 1,5 ; C7EA7b06b8ed9287eFfbff3CdCaB6b5fDcDCd8A9Bf1edFEFbEa9605C4Ce2ebFD ; < ENo5KXs87T6mziC25e6i4w6a585nzLu6jRYHgrKGvbHnOB0L13oKuHMZ0qjJHRb9 > > 16 // < CALLS 1,35210371216011 ; quote ; 0,179451579184528 ; 0,175862547600838 ; 0,0204081632653061 ; -5,1 ; 0,171914612858778 ; 0,186988545510279 ; 2,3 ; EF96D2F6df3bEe7CDe8Ecd8F44e85ce1BADB61fAAc89EA7AFeC5D72b6B4AadFb ; < l2nNrdmk0i6MttBd7kT1txTsn4smxFFv73Vt4y1IMeFb7gf16OE6p6db7oyQ2vf3 > > 17 // < CALLS 1,40410770108934 ; quote ; 0,161506421266075 ; 0,158276292840754 ; 0,0204081632653061 ; 8,2 ; 0,1547231515729 ; 0,16828969095925 ; -7 ; 1e59bCBdb8CbccDF5AA83aFfc47D660ab1eaE0c5f51EA2aD9CABaCEAdbB1fBcE ; < 9bB4ypTk47p5X9DJYQFxOGK55679DNR68QM7I6xPc3bVw046CY3O7IJh8YmMNm98 > > 18 // < CALLS 1,45611169001858 ; quote ; 0,145355779139468 ; 0,142448663556679 ; 0,0204081632653061 ; -1,5 ; 0,13925083641561 ; 0,151460721863326 ; 3,8 ; 2dFA86bCBec5c3E41Ed78bbFfAdFd8DA68AEafbc641D1Be7DDabFBbDBddEDffE ; < Ksy2PdK7mF5s48bc62Iwk765J790oKUPvI14HiAlMIPV83158tf0Dui1yvmWgKPY > > 19 // < CALLS 1,50811567894781 ; quote ; 0,130820201225521 ; 0,128203797201011 ; 0,0204081632653061 ; 6 ; 0,12532575277405 ; 0,136314649676993 ; -5,6 ; 8efAcDaaFcC45CcBef08cc5cd4ddcC7eee3Ec3FeE60A3DaC5CF32cDA1f5E3d88 ; < 90v79z5Q69Cy4Oy2p85c8Wg00jLJQi9r0pXvRWrn1V0AVTP5F6T24j44c7gIXf2V > > 20 // < CALLS 1,56011966787705 ; quote ; 0,117738181102969 ; 0,115383417480909 ; 0,0204081632653061 ; 1,4 ; 0,112793177496644 ; 0,122683184709293 ; 0,5 ; F4dfbDDAc689EBEE8CcDB7fD80D1a4D2CCE445EabABFCfeAc6C6e0edfbD823b6 ; < 4DD02A1LV03QfP8F3lyqqbY150dV1dM1kRtaGwNuOfnao9YDy4jM7Ic76MSHr9xJ > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,520039889292349 ; quote ; 0,117738181102969 ; 0,115383417480909 ; 0,0204081632653061 ; -3,4 ; 0,112793177496644 ; 0,122683184709293 ; -8,1 ; e6aCafFFEEd95c3baCE6AeB43EE1E4BCb7aFe6d3D5F1FDE7bF49f2Fd2f550E94 ; < 1NJGaurUktR7ChcGSI5j79V7DDMHBoMQTBXiTj0TgzgGNr73668F1Uv2qtbL0G0a > > 1 // < PUTS 0,572043878221584 ; quote ; 0,130820201225521 ; 0,128203797201011 ; 0,0204081632653061 ; -1,7 ; 0,12532575277405 ; 0,136314649676993 ; -8,3 ; 8CC6cCd1efF61EFf18ecdDd1a2cbbEE9afDc7De1EFFD99e4F1beAaff434EAb7C ; < EM3fXaS520N6gwxQqNmx5S4UYZBf0EdDOzH5E06AV8gdD9Ge8CzJvOTk555h484U > > 2 // < PUTS 0,624047867150819 ; quote ; 0,145355779139468 ; 0,142448663556679 ; 0,0204081632653061 ; 9,7 ; 0,13925083641561 ; 0,151460721863326 ; 7,9 ; FdFe2B17D43fe5fcbb3DCd8DEefdAD6D0b7ba3bCDDfd4BaDCbBFDa4B0759A29C ; < VNxwfnFqGt8vih3ur9e5KkwjIM22Tqy3WPbs2kfswTCdpG1o09t5B37Fbq550K5M > > 3 // < PUTS 0,676051856080054 ; quote ; 0,161506421266075 ; 0,158276292840754 ; 0,0204081632653061 ; 0,1 ; 0,1547231515729 ; 0,16828969095925 ; 0,3 ; Aa9Ed5Cb45EaBfbd0cf866932Fbadb06A7c7048AAA9584e0Cbc38b2eb135Ede3 ; < P3Hgv4HNRsMvEHa32t8B0XRdm599d5mqxhCZF7R5AaaoaawN7kJrN7w4ousgLdbM > > 4 // < PUTS 0,728055845009289 ; quote ; 0,179451579184528 ; 0,175862547600838 ; 0,0204081632653061 ; -0,8 ; 0,171914612858778 ; 0,186988545510279 ; 1 ; B0FeC5cC4EAbE4bCaEAeDAB31FcdFD2ca086EAD4c38Dc6CDe4F6f4A5D7Be7aCA ; < 75sug9W8cTn8WY46tjgr8hFW60k4kA6W466fFsr610av5tY3K73yhm9k5d7DC5BR > > 5 // < PUTS 0,780059833938523 ; quote ; 0,199390643538364 ; 0,195402830667597 ; 0,0204081632653061 ; -8,3 ; 0,191016236509753 ; 0,207765050566975 ; 4 ; a94FF7F8BBaa2EaCec462b2beDbB6FDd9CEAcC298bBfC0BCE30D29DcBBEE9BBD ; < VTUfh0aNfc9e36o43p34pr5o2JrIvWXdB64Mu0wrg4CHDJk54X99Qh8n6PTAeo72 > > 6 // < PUTS 0,832063822867758 ; quote ; 0,221545159487071 ; 0,21711425629733 ; 0,0204081632653061 ; -5,7 ; 0,212240262788614 ; 0,230850056185528 ; -6,2 ; 57336D3BEaae852CBfacDDc8f3DCc1eEdfa271cbc7651ffade6EDda4daceBd10 ; < q7i9j7P9fGCFKS8a218OuBFpZJ7K04g055vOb226PiXOW2bTeehX2H63YLnjIcwB > > 7 // < PUTS 0,884067811796993 ; quote ; 0,246161288318968 ; 0,241238062552589 ; 0,0204081632653061 ; -5,7 ; 0,235822514209572 ; 0,256500062428365 ; -6,1 ; adEFcFcb97EA7898aDe98Bb9CA4daf3BAF2AA93981EE1bfAbC160eFA5ebcFE83 ; < ege4W4aEEHJ99M0h7rsgCL7NOU0F8T0UUzRv5A6iX66bk6R4O478C7fg16R0k4de > > 8 // < PUTS 0,936071800726228 ; quote ; 0,273512542576632 ; 0,268042291725099 ; 0,0204081632653061 ; 3,7 ; 0,262025015788413 ; 0,28500006936485 ; -3,8 ; 6Ac8baaabf9E56aCEbafDEF9EEBCdaB2b5e0acf32a6CbdEbDb8BaAAeE46Dbced ; < 9Nk8QmqlAk5RikQ13g7HfX3JxtEJ4UTapodCd7CKb96T30J069xkmCy10t1Cp7UY > > 9 // < PUTS 0,988075789655463 ; quote ; 0,303902825085146 ; 0,297824768583443 ; 0,0204081632653061 ; 1,8 ; 0,29113890643157 ; 0,316666743738722 ; -7 ; FC5f029cF4aD6CaA5000E3bdaFeceAB0a05c6A11F1D4BFBebC230aEfa6CdBDd2 ; < t3j0b1MptRNYJni21TrjMOAvnUFW3K2x5p9e2PQ54k8FQGMYfO02be9RLZkgE332 > > 10 // < PUTS 1,0400797785847 ; quote ; 0,337669805650163 ; 0,330916409537159 ; 0,0204081632653061 ; 1,8 ; 0,323487673812856 ; 0,351851937487469 ; 1,3 ; 09c7D0F2AAeFa3CD145baBDf92cf7d566B7c0ebdEd9ea2BaEacB9d874a9Ec5Db ; < 51H642P7E774nT1L459Gv0rdha4TpprzEvWjelfegR9gh6Q7F40tRkZCPlCS954s > > 11 // < PUTS 1,09208376751393 ; quote ; 0,303902825085146 ; 0,297824768583443 ; 0,0204081632653061 ; -9,3 ; 0,29113890643157 ; 0,316666743738722 ; 5,6 ; edBf1D4c9AcFb9caf763A7483c8Fdb8fAeD34E6adc6Ad4Baa182CeFdDe10c4D1 ; < SoKIX5c16l0cFg1iCLGG8kOu13h42o4caSC1LJR3siW5C42ZgKVO3upfTA0NveWq > > 12 // < PUTS 1,14408775644317 ; quote ; 0,273512542576632 ; 0,268042291725099 ; 0,0204081632653061 ; -3,3 ; 0,262025015788413 ; 0,28500006936485 ; -7,1 ; bDEEBfFeb3B0abDBbCdC3FF7A5D907F75Ef76F66c0ccbcfdCbd34fc2FBA1EC86 ; < 60pU58IR7MGXOamPrIlnBK5GUoBtP6azQnAS7lU9Y34GZyUG5lUCGpL5f8723aw5 > > 13 // < PUTS 1,1960917453724 ; quote ; 0,246161288318968 ; 0,241238062552589 ; 0,0204081632653061 ; -5,8 ; 0,235822514209572 ; 0,256500062428365 ; 3,4 ; 323babc17CBb53dedDC85b5a87Ae3C68D12cdaD6DBABA1c5e6bdF48dfaBcbFa3 ; < CZ8u7DfB3bdDDnE60vp415tP4IFN42JUNcEh3WI6CUQ80H3GakH1eb5ed3d0Q5bJ > > 14 // < PUTS 1,24809573430164 ; quote ; 0,221545159487071 ; 0,21711425629733 ; 0,0204081632653061 ; 0,3 ; 0,212240262788614 ; 0,230850056185528 ; 3,1 ; F91BEfe98f92d4Af9D50B77ac8fbdEdddbBA325C800eBEa7FdEA9Ec1BE6d18b9 ; < 3nlGB96x8iGRyJMn3qfkfcgEw639E46RPG3e870494BCf87LNPN8589uJa6O99F4 > > 15 // < PUTS 1,30009972323087 ; quote ; 0,199390643538364 ; 0,195402830667597 ; 0,0204081632653061 ; 7 ; 0,191016236509753 ; 0,207765050566975 ; -6 ; 9eBe8AEf2f29aaeD568dCcAACCEda72D3c9486E2eaCdAA5C6e3ca2b782FCd05C ; < 3Wg7g37W8Hgi0nzdTM22V7ofcq5CGy605Y3BtNc49wbGB6amUdKpo0bfq0t3A48y > > 16 // < PUTS 1,35210371216011 ; quote ; 0,179451579184528 ; 0,175862547600838 ; 0,0204081632653061 ; 8,7 ; 0,171914612858778 ; 0,186988545510279 ; -5,3 ; deBaeD4DdbBBF3B5afbe5CB6a9dFAfa76fb06b0FA3AFD73fDAeedA13ac8B0B4c ; < 0Esxr84z8mTkJGPhr53XzBvr1M2dbwxNRRr1bh29ep5941SL7CA1mUuBc7GKPwG1 > > 17 // < PUTS 1,40410770108934 ; quote ; 0,161506421266075 ; 0,158276292840754 ; 0,0204081632653061 ; -9,6 ; 0,1547231515729 ; 0,16828969095925 ; 7,1 ; d4C3ffd52deFDD22Ef25662A7D12DfDE57Efbd6CB0384cebDf41509242Dd6180 ; < dZ6BmG35S2Yyj90019Iy4fYC546n38LN070T9WQ7c0cFbG50abqTIBjcboH3Sh6L > > 18 // < PUTS 1,45611169001858 ; quote ; 0,145355779139468 ; 0,142448663556679 ; 0,0204081632653061 ; 8,7 ; 0,13925083641561 ; 0,151460721863326 ; 3,6 ; ACcd65efa0edfEe7EADf471Bf73ac3ADc0C3B1b3C2e69D55dDD1c0bECACb26CB ; < R8uYsFttLK0cJxCOnbXeb2HkBasB83UtQKVoN77c4pz6WMAqgV4V89zQzBFzH9VZ > > 19 // < PUTS 1,50811567894781 ; quote ; 0,130820201225521 ; 0,128203797201011 ; 0,0204081632653061 ; 0,7 ; 0,12532575277405 ; 0,136314649676993 ; 1,2 ; 3D4CACdc10dc2cBACF485aFF4fCCAa643F626Fe5dEd5DCdbf1eE5A7c3E9f7b7f ; < 67lYKuYkqxvy87r2fVen5z2W5A7jEVaMK4SDeL2rYMUK0EYTsdUnYAEQB35s4u6n > > 20 // < PUTS 1,56011966787705 ; quote ; 0,117738181102969 ; 0,115383417480909 ; 0,0204081632653061 ; -9,6 ; 0,112793177496644 ; 0,122683184709293 ; -1,9 ; 57b8b789ccF4Da1aFff6bcFFafbcC37eEAeFeAAa32D8fB722fAfDAa5EF393DBB ; < b2447by979WvylEaLzSSOvKp5hop9ah4I4lySwqlGRXp5OBlBH3rrknS9n2N1q59 > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0519647577092141 ; quote ; 0,000799808339342732 ; 0,000783812172555877 ; 0,0204081632653061 ; -0,4 ; 0,000779813130859164 ; 0,0008198035478263 ; -3,4 ; FcD5344Be4ddBFEA2280c2dd6ff9f55AAAbeCD23efaBC9fCFCDFB3A2bcaa92Fb ; < Y1w5h2N4T4X2xv76P8xvWGQ02TowCQIqdv2e3c45RP822PM6P7CE4K4kq878TG55 > > 1 // < CALLS 0,0571612334801355 ; quote ; 0,000888675932603036 ; 0,000870902413950976 ; 0,0204081632653061 ; 5,1 ; 0,00086645903428796 ; 0,000910892830918112 ; 5,8 ; bA2FfbFbFAEfcab5Ccc47F02FCeaD7C1deBdB47dcBAFaa64371A3a7C934d36Dd ; < F7465LR5wnUpxGIAqd95KB7NB491lD87zoUKs6dC39FVVlRC976y6WBt8FIcTwfz > > 2 // < CALLS 0,062357709251057 ; quote ; 0,000987417702892262 ; 0,000967669348834417 ; 0,0204081632653061 ; -1,1 ; 0,000962732260319956 ; 0,00101210314546457 ; -0,1 ; cdc4A3FAF7fEb9bBca85cF3E0CDD7a7eCFE8A3fEf5FF2BAeEcDCaede7099681d ; < O4ao280ch915qpHKrwFRY4Um3iLoP3zNDYOZgKoM5V6G8gg34z7p5JY5Rv1aq8QJ > > 3 // < CALLS 0,0675541850219784 ; quote ; 0,0010971307809914 ; 0,00107518816537157 ; 0,0204081632653061 ; -0,4 ; 0,00106970251146662 ; 0,00112455905051619 ; 6,6 ; ECCaFaeEe3f34BCF2E563e6F9dda77eaAB9c9C85F7bC95E2aEaF62Ac3dF3Db1B ; < 8bldCZ0SA12vl1Qp2FQXKjfIGQPO3P218S1ye5T7LllSPLDJ8jU8tpAJ8kkBpRZB > > 4 // < CALLS 0,0727506607928998 ; quote ; 0,00121903420110156 ; 0,00119465351707952 ; 0,0204081632653061 ; -6,7 ; 0,00118855834607402 ; 0,00124951005612909 ; 8,6 ; fDc3BA7bc53dBE64b5bfaFFbA7b1C5EcD6d7E73C8C66FcfE6DeA7ffbF39Ee95d ; < pY7JFnx150LnJS4tq9Hvebv74sJjc4TNDpEwqFe5m56pDnJjNwUvCv7QPtACSOkm > > 5 // < CALLS 0,0779471365638212 ; quote ; 0,0013544824456684 ; 0,00132739279675503 ; 0,0204081632653061 ; 3,1 ; 0,00132062038452669 ; 0,00138834450681011 ; 7,5 ; FF9E3C31CbeFCAeE3A779daAffABEA6D94add1C86EAfBE0FAD44052f069B8bf5 ; < 69h1XVtdYnG2hw6b7O3mgewsOZ6iTPwiV95rSmqJ1xz9c9T6a4C6wAli3UrlQ145 > > 6 // < CALLS 0,0831436123347426 ; quote ; 0,00150498049518711 ; 0,00147488088528336 ; 0,0204081632653061 ; -5,6 ; 0,00146735598280743 ; 0,00154260500756678 ; 6,4 ; Cd5CdBE4BFDFA4BebC5F1a3b8Cc969daF614BA984E1DDC6eB7dDeEb3aDdbC32f ; < 7vN0JHedLiCPiXJ0ykO6635BK8Ri03ntQzESL69H1w532518232T6Kb2qBh3L73I > > 7 // < CALLS 0,088340088105664 ; quote ; 0,0016722005502079 ; 0,00163875653920374 ; 0,0204081632653061 ; 1,5 ; 0,0016303955364527 ; 0,0017140055639631 ; 3,6 ; bd21DeDf8CF44bebe6D2F4bb6FA861dd92BeD4c9BBfbDCE745Cffc2EadBfcfBE ; < ybiK158iK9F0a92Mea7S222tqkMkfKOK4dVBIh2lK29H1JF5gyMr063hI768479J > > 8 // < CALLS 0,0935365638765854 ; quote ; 0,00185800061134211 ; 0,00182084059911527 ; 0,0204081632653061 ; 2,9 ; 0,00181155059605856 ; 0,00190445062662567 ; 8,7 ; AF9Bebd57Bd7CE011DA1ab7CeeeB2b8C4f5bD71aB0BeeDdA5bEf6E495b332Ffc ; < qcxuRgPcNXN9aeFU8R8b69cP0v1klV0e992p9m5O0KWVB20n681GEhmPVY252s81 > > 9 // < CALLS 0,0987330396475068 ; quote ; 0,00206444512371346 ; 0,00202315622123919 ; 0,0204081632653061 ; -4,9 ; 0,00201283399562062 ; 0,00211605625180629 ; 7,6 ; CDF5BD4fB6A8FB1Dacf16DfAD67d3ec2FbBeF4eFCbDbFab13ECbbfa6eE3EDe97 ; < yr2g5g6t8884dLL0OFMTzvUEo4O8hcfOpxeE7BdEA9AwgNnJWyb54s6P84r6iK6H > > 10 // < CALLS 0,103929515418428 ; quote ; 0,00229382791523718 ; 0,00224795135693243 ; 0,0204081632653061 ; 9 ; 0,00223648221735625 ; 0,0023511736131181 ; -8,2 ; a877563c6af7edbbDDd34fB8bD7600E4B6faeFbDC2D8dAe8cBa0CAb1Bc4EDe51 ; < Hje7gMNJ9sH1Mq0ku8x9Tf5tysCUD48Cl86NMSk4J7m3sm419H27V895vK6ZEtXd > > 11 // < CALLS 0,10912599118935 ; quote ; 0,00206444512371346 ; 0,00202315622123919 ; 0,0204081632653061 ; 7 ; 0,00201283399562062 ; 0,00211605625180629 ; -9 ; A3FD8Da2eaA21EadE5c44DaeC8Fdb2edB9bCDca1FbD7D9cF7c4EBe0EaCF3f4fe ; < 83L70CnkBj3No9E78JS1rGE7n1K3PcgeWH5d3nVDIdX8b3fX4sQJ7WPqGA5Wucxk > > 12 // < CALLS 0,114322466960271 ; quote ; 0,00185800061134211 ; 0,00182084059911527 ; 0,0204081632653061 ; -9 ; 0,00181155059605856 ; 0,00190445062662567 ; -6,1 ; 097CDCBEBA6edAF936c60edCe4cddeeF0F9eD2ee5de022BBE3c35c8c279ADdeF ; < 643nBWyDS14xxO6qS39a6O6TL92nSWTf5WRfpAQ604941oMQmKJ6T94SlAN9c0QS > > 13 // < CALLS 0,119518942731192 ; quote ; 0,0016722005502079 ; 0,00163875653920374 ; 0,0204081632653061 ; 6 ; 0,0016303955364527 ; 0,0017140055639631 ; -2,3 ; FE2C5Db6BEcC02F0DDc3bFd8Ec7BFBadD71bF7beE83bbE1A4BDE4BABdD4DEACA ; < 01pGpW79V9XZ67GI2wyR51nJ6oCCWY4qT49tKkb94z90HOsaPuuzbf06vcR6irL8 > > 14 // < CALLS 0,124715418502114 ; quote ; 0,00150498049518711 ; 0,00147488088528336 ; 0,0204081632653061 ; 7,2 ; 0,00146735598280743 ; 0,00154260500756678 ; 7,9 ; AB9F08bc28329f3e1EaE56d9aaaeCdbCFD88edab8fc53Cd4BBE7DbACF089b7EC ; < D3H657Idrgf2Y5gOP1bqxFINH3C7aR9H3g256k8ysC2wgyvqi4CJ4b6zyL156Sf4 > > 15 // < CALLS 0,129911894273035 ; quote ; 0,0013544824456684 ; 0,00132739279675503 ; 0,0204081632653061 ; 8,3 ; 0,00132062038452669 ; 0,00138834450681011 ; 9,8 ; 1A3dABdECC8A0CA1c8C02B3300E1AfDfa8bAdAEfE028F6FeCAD00Dab3Dc40FcD ; < 1xpWjrKi256zl4clYpq6j6Ut1Vo6k2h10f3oMJ03Tm8tzxMS46pHWSaBO801iCV1 > > 16 // < CALLS 0,135108370043957 ; quote ; 0,00121903420110156 ; 0,00119465351707952 ; 0,0204081632653061 ; 7,2 ; 0,00118855834607402 ; 0,00124951005612909 ; 7,4 ; BcfaeEFd7FffF7e60BddfD66eEF2afAedabCF1Ec9eaE7c2F8dcaa267aF26179d ; < e3a6CfuTFG5pwTL53GBSiXmyw7c9FFf28sW7F5h8DdVVxf254d54o8WnOnb8iTUu > > 17 // < CALLS 0,140304845814878 ; quote ; 0,0010971307809914 ; 0,00107518816537157 ; 0,0204081632653061 ; -8,2 ; 0,00106970251146662 ; 0,00112455905051619 ; 1,1 ; CbCEBdCeDC97EDaD6CC7cfcEffd38fEbBAfb34d5D97EDEcF2f4db8bCceedDe5A ; < r1u3tXxcSbZdJa2M01f599j6W86fP7n0uXO04ry6GeKEy7naDnZCS4McPpS6CBoF > > 18 // < CALLS 0,1455013215858 ; quote ; 0,000987417702892262 ; 0,000967669348834417 ; 0,0204081632653061 ; 7,4 ; 0,000962732260319956 ; 0,00101210314546457 ; -6,1 ; fd8Ec4ad7eDA3fAed70A048AcbCcE6d658C5BBdFCaE8CBBE9AECBf86C96F48ef ; < 39E99t34p721W5d16qf7TLBSP90OW2u2J2QYRliZua6U5J8hj16vuw592v2TVb76 > > 19 // < CALLS 0,150697797356721 ; quote ; 0,000888675932603036 ; 0,000870902413950976 ; 0,0204081632653061 ; -0,5 ; 0,00086645903428796 ; 0,000910892830918112 ; -7,9 ; dDecFCF0BDeeFB0D8C7cf9B4c56c87aad53eB1ffc070Ac8D6d0faeb7A3C6C3e8 ; < rhUXS45TD3b6X599pdOX2nxO2ln9t58K15acGXWGT275R8z1i676XKFcxiG4sHLm > > 20 // < CALLS 0,155894273127642 ; quote ; 0,000799808339342732 ; 0,000783812172555877 ; 0,0204081632653061 ; -3,9 ; 0,000779813130859164 ; 0,0008198035478263 ; -8,5 ; 11b56cc1d64e6eFbdd9320CCdD3B5Eb0dfdDFFF6dF3cFAeF6a1CD00ffaecAacb ; < y0Pkyxp7z785raQd4K0q54k3v8tb7gV5r41VJ0Bx431HJol6EBM7P34fJBw0P5PD > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0519647577092141 ; quote ; 0,000799808339342732 ; 0,000783812172555877 ; 0,0204081632653061 ; 6,3 ; 0,000779813130859164 ; 0,0008198035478263 ; 5,5 ; de4A24Acf1aDbD1CEefaD1CCf0FBbAF3bcF17FE0bA4c86Afba84aBD97cDacEba ; < k7dmqiEEih5iT346mdhnLFApI4SY15PDsqKs952j98zcD2M743ocNr62RTSi8MNN > > 1 // < PUTS 0,0571612334801355 ; quote ; 0,000888675932603036 ; 0,000870902413950976 ; 0,0204081632653061 ; 8,8 ; 0,00086645903428796 ; 0,000910892830918112 ; -0,6 ; c89AF4c1a54d575e1bD9ed521C5DFFAE3caE77aC20eDD4fcFdADF92acEcCaCDB ; < 56l70j84i7B36FBfh5c0k7jR0nIgdxlcFCtI82np9kuxmXgc24g1GWwRZ58w97ev > > 2 // < PUTS 0,062357709251057 ; quote ; 0,000987417702892262 ; 0,000967669348834417 ; 0,0204081632653061 ; -8,9 ; 0,000962732260319956 ; 0,00101210314546457 ; -8,3 ; 4FfEeCD2AAcD2C558E32BB8fDAF6FFaBc1dFAbDc2fdf61dF7aAA2AaB9beDDcCb ; < r7THagTvr78ttJ1iqCA5gAJh8SNH8ltay8LZ1NZ47y8UoBaM5lc8h8F9A4cGD3fm > > 3 // < PUTS 0,0675541850219784 ; quote ; 0,0010971307809914 ; 0,00107518816537157 ; 0,0204081632653061 ; 3,6 ; 0,00106970251146662 ; 0,00112455905051619 ; 1,1 ; BAee3aB3ccD3d8F29FDDa894a3DdfAdbd5C9AE8B7eA4EBeE99D9dECAabAFbDec ; < 9M4Yo36C3PjvjmGxpMCY41GSa57Q86Rc2NQBTlqZ90A9q92j168ddt2Uhu26mge1 > > 4 // < PUTS 0,0727506607928998 ; quote ; 0,00121903420110156 ; 0,00119465351707952 ; 0,0204081632653061 ; 7,3 ; 0,00118855834607402 ; 0,00124951005612909 ; -9 ; FAfb33fa3Af8d9E88Ab74CF1ccea30fcA65E2bCd61a78FE06ea6Dba5ef8DDCfE ; < d8ZHPx0lGiqP3Z0CH7V0Q9DE6jfx088cNr7n1F1MHCVr1nWZIRzKt146q8RoqVO8 > > 5 // < PUTS 0,0779471365638212 ; quote ; 0,0013544824456684 ; 0,00132739279675503 ; 0,0204081632653061 ; -2,9 ; 0,00132062038452669 ; 0,00138834450681011 ; -5,3 ; f6f7dC8c87BFDaBbf41aECFCC881cdbEcf6cDCDF34DE078DeA89ECd82AA2F8De ; < zuhOHsgQjhq7FC35E9YdGVM34abv5SDtJT5QUofBXrIFGfzGxOGxVF7971l46CZg > > 6 // < PUTS 0,0831436123347426 ; quote ; 0,00150498049518711 ; 0,00147488088528336 ; 0,0204081632653061 ; 6 ; 0,00146735598280743 ; 0,00154260500756678 ; -6 ; d9BAdfA1eC4fbC1ddfEC1ffD1AD2FCaaFe5CacAceAA30DfCE7CFe36FDBCaC913 ; < w2534FIC28YPXOR3D1LjAMH3u4yzMpGijBD8HYzu5s0nuNW8dyb77B0mc3wZ3rmx > > 7 // < PUTS 0,088340088105664 ; quote ; 0,0016722005502079 ; 0,00163875653920374 ; 0,0204081632653061 ; 0,6 ; 0,0016303955364527 ; 0,0017140055639631 ; -4,1 ; affF2aEBd1feDEbDF8Bf876baeBDeb9C12a6EaBFDCd1DCfFFAAffC51cEBdFECe ; < 1V54EqnLoIUsU25hGCW6r1n3sUyS48jWv6Gubk9s4hU430E3s38t9jR0HY4wf2vg > > 8 // < PUTS 0,0935365638765854 ; quote ; 0,00185800061134211 ; 0,00182084059911527 ; 0,0204081632653061 ; 4,8 ; 0,00181155059605856 ; 0,00190445062662567 ; -1,6 ; f9ADBbdcdF0b8ffcC04fED11af2e64cb96b9E3BeCeedaCC3BE984AeCe3Fe8Da9 ; < 706uPDHw1FFH4WmSCLd2VyYG1920ypAK10J4y74RDn3kb47R3p3c3FWXfv10ABtE > > 9 // < PUTS 0,0987330396475068 ; quote ; 0,00206444512371346 ; 0,00202315622123919 ; 0,0204081632653061 ; -5,9 ; 0,00201283399562062 ; 0,00211605625180629 ; 3,4 ; 65E0EdeBbABEDCEeff5Bc6Da1fEbdDA2218C4FaDfBeaC8adfaEFf4BC7487fdBe ; < 5BL93w9zew12IT9A2rSlq1ZuQI6mB5jFWuDZf0934Co40vxTqEHpb0bwNyhr4Nu0 > > 10 // < PUTS 0,103929515418428 ; quote ; 0,00229382791523718 ; 0,00224795135693243 ; 0,0204081632653061 ; -6,9 ; 0,00223648221735625 ; 0,0023511736131181 ; -2,4 ; C5eB222C83a7db7dCc4c4b6FbfCDFdFcAef9CACf1991dc4ECA4cd8aDba1f6ba6 ; < L71kyu21MfLiF4P0JEWf0TaKTxLd2u6Qddo4k2ox29ey9R8y2nj55Nh9XlXIatQs > > 11 // < PUTS 0,10912599118935 ; quote ; 0,00206444512371346 ; 0,00202315622123919 ; 0,0204081632653061 ; -9,8 ; 0,00201283399562062 ; 0,00211605625180629 ; 5,6 ; 43abfC5e5aeBF7eF15cd8ebDFF9A4bC7baB9A5aecACa710aDb457B1da08f1eC2 ; < kEhR8mc6h64d568g7F3q43BkD82ca84U4461RC17wFK47D39e3TO2bbR86AHHJtR > > 12 // < PUTS 0,114322466960271 ; quote ; 0,00185800061134211 ; 0,00182084059911527 ; 0,0204081632653061 ; -2,6 ; 0,00181155059605856 ; 0,00190445062662567 ; -2,9 ; faEDbcAF7FbfDdc1Ce6e5eBEE2ec6B6fCF128b52D8Ac8AcEf5f8b53888EAAF6b ; < zM61129QCM748U964Gcdl4A5QiT0j70leJ0Wl91JCeQ70i4hMsj8hmxcsYtTs6L7 > > 13 // < PUTS 0,119518942731192 ; quote ; 0,0016722005502079 ; 0,00163875653920374 ; 0,0204081632653061 ; 7,6 ; 0,0016303955364527 ; 0,0017140055639631 ; -2,2 ; E2bEcEcb36B2691CE5DDa910B1ce1B7204aF8d6c8bBaDD47aAffEbEdCd53A2AF ; < poig9Jx0U5GimT4dz96D1K6q7TD8DgY48ekd3QYnk2hfnYEtTOvWZCo10Jg7D84q > > 14 // < PUTS 0,124715418502114 ; quote ; 0,00150498049518711 ; 0,00147488088528336 ; 0,0204081632653061 ; -2,6 ; 0,00146735598280743 ; 0,00154260500756678 ; -2,7 ; c2CF557afa326fcbFb30cbdbAcAdfD7d4690bc2efbEEb9a20BEFd245dc7B038A ; < o4R92M1ScdK5wYE3A0F0bv83yp1S8bGJahb95z0mMw708W3um102V5VY034D03U2 > > 15 // < PUTS 0,129911894273035 ; quote ; 0,0013544824456684 ; 0,00132739279675503 ; 0,0204081632653061 ; -5,6 ; 0,00132062038452669 ; 0,00138834450681011 ; -0,8 ; Ad73f29FF34dc3be3FEfaBFdEbB6691adeF182A2AcCCEfC2d0e0D8DA2fcFDbbf ; < o6J24aI3V9Nmx1QS4g0BBArdAkp6o83Ja8Bd86Hi1OKs07655jeB5vR09vx28X85 > > 16 // < PUTS 0,135108370043957 ; quote ; 0,00121903420110156 ; 0,00119465351707952 ; 0,0204081632653061 ; 9,1 ; 0,00118855834607402 ; 0,00124951005612909 ; -2,6 ; 0EBBcAaff06E1dFc71DBF6feB91fBfa6aab0e0eB3F2DAdfAFA50fEcBbEaBDEEd ; < r0VDp3aYX9k2xv6DobTa1qEmmTw18v010Hw7iKL5VwnS348NAboe6jxvUU452vSE > > 17 // < PUTS 0,140304845814878 ; quote ; 0,0010971307809914 ; 0,00107518816537157 ; 0,0204081632653061 ; 9,6 ; 0,00106970251146662 ; 0,00112455905051619 ; -9,1 ; aa5fA02c2C023FC24CC1aC7Fd4CF2Ec8CfDd3FfdAF56baf266eaab2A7F168ECf ; < 6U92L61mWKe128MT0M1d06d8sFrQC6o5yZ64Or5NcwR7kndtji1Wov0CkM892RHI > > 18 // < PUTS 0,1455013215858 ; quote ; 0,000987417702892262 ; 0,000967669348834417 ; 0,0204081632653061 ; -7,3 ; 0,000962732260319956 ; 0,00101210314546457 ; -1,4 ; CCfDaA4A8B9dbc35cC923f75fEfCdA83bBCbdc7671EECE6AC1DaabA4efF9eD1c ; < t217X7kZcE3qzMxn6fg7vAjsDEo7d22k5tn9nY5qQ3Ijmu3Aam24rGdspsQ0b23Y > > 19 // < PUTS 0,150697797356721 ; quote ; 0,000888675932603036 ; 0,000870902413950976 ; 0,0204081632653061 ; -9,9 ; 0,00086645903428796 ; 0,000910892830918112 ; -3,9 ; E657eEEcAE7bc7BDEabbACED4fbBbAfEBB449FafC0D2ba5AE312E2Fc4Ecf11Cb ; < 2GmsiHyg1e808j16un78r9eQ2uNt7Ht3GmuqJLh4mD75m0L1Qm8Q2Te48I4t53k3 > > 20 // < PUTS 0,155894273127642 ; quote ; 0,000799808339342732 ; 0,000783812172555877 ; 0,0204081632653061 ; -5,7 ; 0,000779813130859164 ; 0,0008198035478263 ; 1,8 ; Fc6Cc3E8D73eF3f52FdcEdA8Efe35CC84a7542F8b549Dab0dFB9c92efF5e4aFF ; < c3cFaCjPkoadOm49EQb83V8JqFhuKq7oXZa0ki6PKmiWcEbIIUzRMO6W31UZspuR > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0520235302125376 ; quote ; 0,0016884929348728 ; 0,00165472307617535 ; 0,0204081632653061 ; -0,9 ; 0,00163783814682662 ; 0,00173914772291899 ; 0,2 ; eedc2cbeeFfebB9Ac43fF99AFE4ba79Ef8Cc2f8dABBb5d51159f08fCaAdbeC10 ; < 53K8xL4rlf3l7RQzPlOI1I4MkAbV2NHqEID05u2q4g0Spg0oWK252S3mgI7iNewu > > 1 // < CALLS 0,0572258832337913 ; quote ; 0,00187610326096979 ; 0,0018385811957504 ; 0,0204081632653061 ; 6,7 ; 0,0018198201631407 ; 0,00193238635879888 ; 3,9 ; CdEE33534AAC4DcB8deBd8fbDE9B3AC6809fd8CfC8AfE0B8fDD5BE014Ab50c1c ; < gXixO6cjY6ak3382eC951691332D7Z7V0ftI2eRFZNbFFEeHk51imR2QS4u0R735 > > 2 // < CALLS 0,0624282362550451 ; quote ; 0,00208455917885531 ; 0,00204286799527821 ; 0,0204081632653061 ; 4,6 ; 0,00202202240348965 ; 0,00214709595422097 ; -6,6 ; Da4DAb3d6fccb70aaf8F8Fadf64Beed156aAdBBf5605df7DEC1BAc2c4FE7CEfe ; < Rf81uIjgnJVuyUl13y69byZntXQxUQm0EtNK2ljAluifjy9k694McB8H4nM6LLqg > > 3 // < CALLS 0,0676305892762989 ; quote ; 0,0023161768653948 ; 0,0022698533280869 ; 0,0204081632653061 ; 4,2 ; 0,00224669155943296 ; 0,00238566217135664 ; -4,8 ; 8fAea6c4bAfDdab80A3d3ACA9FBAefbec0Dc4d3bBD0D3A2fBCBc0fAAebA8e5f8 ; < 1pdcL65siPkJaR6Gn9qNkd47BzG8qmXoo137r2FSmF3S5Yt3s97J3084xmxCrLnd > > 4 // < CALLS 0,0728329422975526 ; quote ; 0,00257352985043867 ; 0,00252205925342989 ; 0,0204081632653061 ; 5,8 ; 0,00249632395492551 ; 0,00265073574595183 ; -8 ; c54dbE1146464eded5F9Bbb281EDaa23EEB8BaD3d639bcB0Ca3eD271baEAaD17 ; < cO71Wes0pbB9kmj2EUb7114fPB1que9whrgoBLrZra6T69dJkRQ8x6g5tpHH1D2m > > 5 // < CALLS 0,0780352953188064 ; quote ; 0,00285947761159851 ; 0,00280228805936654 ; 0,0204081632653061 ; -6,3 ; 0,00277369328325056 ; 0,00294526193994647 ; -2,8 ; aF3295bC9DcEE3Ab2dcaBbc1D26Fc4572b3DbEeAAec6e1E58Cd4ccf6F0edC43c ; < rrgTS6mi067T8s22CfGEUn94Tms3ZwmZnR2L3cH7rZ0O1q16xXGE0P0tqPw3oI30 > > 6 // < CALLS 0,0832376483400601 ; quote ; 0,00317719734622057 ; 0,00311365339929616 ; 0,0204081632653061 ; -1,2 ; 0,00308188142583396 ; 0,00327251326660719 ; 7,3 ; 10B4C6da20A9C279EED4Dcd8bF6FaeCBd78CcbdAfeE4b52BaABC8cef2FfAA6c4 ; < 8SYAZj9L8bm7hDhRBe4tTknb5c4nSQd2eGJ5vGR4ybZFZgqmtnk0mfHdwgX6UfG3 > > 7 // < CALLS 0,0884400013613139 ; quote ; 0,00353021927357842 ; 0,00345961488810685 ; 0,0204081632653061 ; 5,6 ; 0,00342431269537106 ; 0,00363612585178577 ; 8,5 ; DC8ee52eea4fFeAAE4BAb0be9CbAdF6F5cBfE4de6fc671febc637bCA3f46eEdD ; < 58t359kC58H2189NqFsXXw2plGxJp7VcOT2E9Ewuo1baoUDXpC90Xa79hH15wldr > > 8 // < CALLS 0,0936423543825676 ; quote ; 0,00392246585953157 ; 0,00384401654234094 ; 0,0204081632653061 ; -6,2 ; 0,00380479188374562 ; 0,00404013983531752 ; -6,9 ; fda6C8ceDD08bfee0BCAbe4AA494D70f1cF1dcebCd3e81dbFFCcDAaDF441997F ; < 74wb7EvE02Ne17snkAxNG8SYejfSYxa5ZK21sg8TK9uC9f2XqYMJ280FflqE7eDy > > 9 // < CALLS 0,0988447074038214 ; quote ; 0,00435829539947952 ; 0,00427112949148993 ; 0,0204081632653061 ; -1,9 ; 0,00422754653749514 ; 0,00448904426146391 ; 1,2 ; 863CAbf52484B46CbFdaB2FD6C9d2DEdCd091D4e4B43bCB6e7c0B1b37ECccC8b ; < ldSIcv50w8wr392H4k3JDfI8B7f66G88Dj1Q92l10s3fUT23OHDNRLUFh12er39G > > 10 // < CALLS 0,104047060425075 ; quote ; 0,00484255044386614 ; 0,00474569943498881 ; 0,0204081632653061 ; 8,7 ; 0,00469727393055015 ; 0,00498782695718212 ; 8 ; 72eFA4F6BFABCBE94cBedFEBDeeBBfEbFeacf8DC7cC247d0f3aaBBbDBfF9d7aD ; < 6bStL6145hqjJYAUt2WVQW0npN4UTkyt0U6k25Dy632gRwEAY857f3vestrfmk6V > > 11 // < CALLS 0,109249413446329 ; quote ; 0,00435829539947952 ; 0,00427112949148993 ; 0,0204081632653061 ; -2,5 ; 0,00422754653749514 ; 0,00448904426146391 ; 9,5 ; 5e1bBBf6D0cdBCbCC39CCca8e03bFAB5a5dF1fBFAbab80E5Ae3A9E1f5f4dEdE3 ; < z6nY1Do9Z6PDoB9rvP7FMxQ9JBa234j50iLmS6f1a8fZm1c1XWQN07ghfh84QQIA > > 12 // < CALLS 0,114451766467583 ; quote ; 0,00392246585953157 ; 0,00384401654234094 ; 0,0204081632653061 ; -4,1 ; 0,00380479188374562 ; 0,00404013983531752 ; 8,3 ; Dd64BfdC25Ca42a76DD5DF1C6e6bfd9cD3fcdeA9F7B9F2adEAcDBBDCb46b66B8 ; < 5btpf8bU8nVFi2Y2h4iXnqasXLtfOz4W1xgErO47610S6sY20Kv3GdsRk0f4eKtB > > 13 // < CALLS 0,119654119488836 ; quote ; 0,00353021927357842 ; 0,00345961488810685 ; 0,0204081632653061 ; 6 ; 0,00342431269537106 ; 0,00363612585178577 ; 3,3 ; 7bffA4aaCfd31Aca6AB80DaAadd0e554faa0D9c0aAb6aa4C7b10a02EdfD6dD88 ; < gCtmoI0N0R31IzTjuZx2rY0n5J7976MzJpVCX0HY049WZJmm7Fop3r74zqAd8UZW > > 14 // < CALLS 0,12485647251009 ; quote ; 0,00317719734622057 ; 0,00311365339929616 ; 0,0204081632653061 ; -6,8 ; 0,00308188142583396 ; 0,00327251326660719 ; 1,1 ; 4abd70c5c85dACAa12bC47A38AcCCE0Dfa6AeAcaf554e9CfaCECdBCCDc3E8EdC ; < AI4h7xuXqKC7y9ghmWRpYV127Lc5eu0MI1uoE8SEw035L04rP2YS03wGs7C4zt61 > > 15 // < CALLS 0,130058825531344 ; quote ; 0,00285947761159851 ; 0,00280228805936654 ; 0,0204081632653061 ; 3,3 ; 0,00277369328325056 ; 0,00294526193994647 ; -6,2 ; 6A1bdCd818Bdda4AE642bdeDCdf9fBdf4Bb8FeD9cdEC3A8CBe47Ce5DCcc3fCc2 ; < I8PYZj17ctWx4Gj1KqJONybq4kkbcj3f1Q3s9Cu1AnnXOinHVBo9a0By6Xjyqh2r > > 16 // < CALLS 0,135261178552598 ; quote ; 0,00257352985043867 ; 0,00252205925342989 ; 0,0204081632653061 ; 5,6 ; 0,00249632395492551 ; 0,00265073574595183 ; 7,2 ; Fb4B9CdECaaBEEDDe6FFbFd1ACC966EbfffAa6Cbf1f2FCe4c4f0F2B2a7C7A371 ; < Wj757Qbx81MX005U8tGM1SIX0O88Frhh3m621IgT473v1mg0N38mSGJJ3z9w81JU > > 17 // < CALLS 0,140463531573851 ; quote ; 0,0023161768653948 ; 0,0022698533280869 ; 0,0204081632653061 ; -0,8 ; 0,00224669155943296 ; 0,00238566217135664 ; 2,9 ; FFbefA9EDED00fDb5f62afaAaa24FD82BBaeB4fa1ADAED9Bbd6DEec7dFDCD9da ; < pMRWU1ykn0q1XGbde1KB0C7usYDzqg8LV0stIgC4Wd3zi02U63ulN5wHfzPcr7hz > > 18 // < CALLS 0,145665884595105 ; quote ; 0,00208455917885531 ; 0,00204286799527821 ; 0,0204081632653061 ; 6,2 ; 0,00202202240348965 ; 0,00214709595422097 ; -7,6 ; 76dEB4891fb85EFe8efDF3FB2adDADDE9f8ecacbcaCb9Ec7ae1fF200A35Dd5bE ; < ZM8SaPw7cOqn0Qa5ETwzY0CNWMgd8IBe0fo75lz05W8U0yJScS2rql1766c0Gi75 > > 19 // < CALLS 0,150868237616359 ; quote ; 0,00187610326096979 ; 0,0018385811957504 ; 0,0204081632653061 ; -0,1 ; 0,0018198201631407 ; 0,00193238635879888 ; 6 ; 1DAd2CB3FBaFAa82aDAdA069D52fBcaa672eA2d0cDAA5DfaEb16A4bE4F7C8EbD ; < qEypRcVD1AnQ9ZG2ASfNogm3hiynX8v9RLE5dIh34ENCjF8PSorDXh0w903PE6v7 > > 20 // < CALLS 0,156070590637613 ; quote ; 0,0016884929348728 ; 0,00165472307617535 ; 0,0204081632653061 ; -9,4 ; 0,00163783814682662 ; 0,00173914772291899 ; -6,6 ; 32fDc7eFDBBea943d16B08F9Fb8c57E1c38ECcD08D5eBBB0D2F4Ed89B7fCb0ef ; < Q6bqt9cu8gHBEbO96tZ1kI106k4sT51KFojUQ7XgjB3oiaIHw72dmc1kop30l2J8 > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0520235302125376 ; quote ; 0,0016884929348728 ; 0,00165472307617535 ; 0,0204081632653061 ; -4,9 ; 0,00163783814682662 ; 0,00173914772291899 ; 9,3 ; CBEbaBebd9dDFF970B1c9DaCAE1Eec53EaEDaD9A311ab78D7FDf7aDEAD057E1e ; < 139r97DPp2LA4VnYEyD67Hf5VHLDG0mYg1yG5wn6EHLasCl7vwEcybhCdXGBCww7 > > 1 // < PUTS 0,0572258832337913 ; quote ; 0,00187610326096979 ; 0,0018385811957504 ; 0,0204081632653061 ; -1,4 ; 0,0018198201631407 ; 0,00193238635879888 ; 5,4 ; Bc0dCeD86fFAA469B68CE7f38bFe05F1cfABa1Dcbbb0FbCAFD931C703BD83FdD ; < bk5T3U168Xa76SpTO9PG1IJ57VV72n845iOEf518LI40amxxLcl1oRUsIXAX2442 > > 2 // < PUTS 0,0624282362550451 ; quote ; 0,00208455917885531 ; 0,00204286799527821 ; 0,0204081632653061 ; 8 ; 0,00202202240348965 ; 0,00214709595422097 ; 3,2 ; abAF6e4D5D0Eb9caEE7BD0BdD7BAAB031cCDB87C8AdCC3c13AFAdE87D0bF5FbC ; < EH97W3nb9zMcdcXoXxEw8SHEO6w8MvpU6mA33C14dp6oy00H6AtpfXUVsrhVgR1X > > 3 // < PUTS 0,0676305892762989 ; quote ; 0,0023161768653948 ; 0,0022698533280869 ; 0,0204081632653061 ; -2,7 ; 0,00224669155943296 ; 0,00238566217135664 ; 5,5 ; Ed5aDEeE14dF09CFB34b5Feff39Ab3dD4fA45C86ce1cFDaA7FCcFaaa0142af9d ; < p2r1Bhb23J1bu9WFhdO87IGy36ARhNSf7vl7939Un6R5l62y6ATMbU61qg81IjB0 > > 4 // < PUTS 0,0728329422975526 ; quote ; 0,00257352985043867 ; 0,00252205925342989 ; 0,0204081632653061 ; -1,7 ; 0,00249632395492551 ; 0,00265073574595183 ; 1,3 ; Cf15a7d1b75fCBAf03baeD62C8Dec5Cc6F1AEbD5dCD8c3df4CdEAdB3c9Ef9FeD ; < H76004nkY3kQivc7860O2t9vY1s7laKbhQ2gXuuYimdYYW6CO4pZMP16ZC2Na2V8 > > 5 // < PUTS 0,0780352953188064 ; quote ; 0,00285947761159851 ; 0,00280228805936654 ; 0,0204081632653061 ; 4,3 ; 0,00277369328325056 ; 0,00294526193994647 ; -7,8 ; A7BCeDc08afeC25B9D6cA0a7BFaabfdFDA1BFCE89be6EE5fe302db5Cf6DbeeeF ; < 73t1Ps3906ixTS2d5toL1hk1PAOR2df5aJKtfExeLsCsZl2U5bhFRo8tZn5r5KUt > > 6 // < PUTS 0,0832376483400601 ; quote ; 0,00317719734622057 ; 0,00311365339929616 ; 0,0204081632653061 ; 3,5 ; 0,00308188142583396 ; 0,00327251326660719 ; -3,4 ; A498Daad4e7bFeACDcAAb2accf825beF19abCFC1efBeCd266EbB7Cbf2f7C6AAB ; < UocrF106G23bC424Ol8BgRAoQuDAeoJLw22c5xGuGJd7OgV33G435bb3131nsado > > 7 // < PUTS 0,0884400013613139 ; quote ; 0,00353021927357842 ; 0,00345961488810685 ; 0,0204081632653061 ; -5,7 ; 0,00342431269537106 ; 0,00363612585178577 ; 4,3 ; FbEA89F6Ae8B3daFDDeeb01bE1e580beaF64CDfD59F7df0b5bB2fBDeEEB4ECAd ; < 2fG6vCG4067Mr9GKeh0b4bU79WUIH35ajTbKGCLFYU7l8vHrLxObj3VN0858CFE5 > > 8 // < PUTS 0,0936423543825676 ; quote ; 0,00392246585953157 ; 0,00384401654234094 ; 0,0204081632653061 ; -8,6 ; 0,00380479188374562 ; 0,00404013983531752 ; 6,7 ; bea4C7dfC95cbc1FBfcfa5FeCa9948aDD7eE30affd4FdeE38BcbEcBEEa0c4ad7 ; < g2g2Rub0qtXB4c4uZx0kA59ve2Il88a119Kvhqy80j9Nmj2rVt9QALsA5Sob7KW8 > > 9 // < PUTS 0,0988447074038214 ; quote ; 0,00435829539947952 ; 0,00427112949148993 ; 0,0204081632653061 ; 9,4 ; 0,00422754653749514 ; 0,00448904426146391 ; 4 ; 9fdF2fcFdb2F4DDbC33bDafB9cD7E757cf01bCdF2C43AAfbAe9CbE9eA2ea5e65 ; < TjDtidc556qX0THb5phnP6t59O6C145d8hWyL0BI1Q10lg825ggarh61C35peOyX > > 10 // < PUTS 0,104047060425075 ; quote ; 0,00484255044386614 ; 0,00474569943498881 ; 0,0204081632653061 ; -3,7 ; 0,00469727393055015 ; 0,00498782695718212 ; 1,4 ; 3cD1F06ab43BbB9AAE51CC1ceBEf38A3AdeEeeE2Db45CBae92474bdd584D3f7d ; < v4aNL1EGaWA0dYHWmH4Q494SPrd3WlgzQc938v6dW9EY01Dvcd4Sc94b02P83Oiu > > 11 // < PUTS 0,109249413446329 ; quote ; 0,00435829539947952 ; 0,00427112949148993 ; 0,0204081632653061 ; 4,6 ; 0,00422754653749514 ; 0,00448904426146391 ; 2,1 ; 1Caa3BFEE5a56fE218A7acD3dEB7fd94FfBbeDECeAAdc8BC9ecd5AEBCD3b9bAA ; < CLmBg5wmXzePkl5Nh7X4YAf8WR8SgNW4Pr1jLw8dj1yMO3y7b9y4Su1lt710XaU8 > > 12 // < PUTS 0,114451766467583 ; quote ; 0,00392246585953157 ; 0,00384401654234094 ; 0,0204081632653061 ; 0,1 ; 0,00380479188374562 ; 0,00404013983531752 ; -5,4 ; 5DFEd1db51Db5A8C3DEdeD0e37E58ccFEcE2eBbABc2bAe589b1ddBCB6E9D394C ; < 6WUR7pH6Xb1G8MHGurH61J641M2WgboPDh8y8n2DMInt9Z83m287O83gPBmU4g8X > > 13 // < PUTS 0,119654119488836 ; quote ; 0,00353021927357842 ; 0,00345961488810685 ; 0,0204081632653061 ; 5,8 ; 0,00342431269537106 ; 0,00363612585178577 ; 2 ; CBCaF8eC2FC1B4FAdcCB0cc9cb39Da2858ce8EFfAACBdddbfA0AABC74bceeAa2 ; < 3xrZ24r3R8W5y4338Q1gwE1hp5c7aEPc5KO6fwC9dhwyCN1B0b81rurd3Cjrb7aq > > 14 // < PUTS 0,12485647251009 ; quote ; 0,00317719734622057 ; 0,00311365339929616 ; 0,0204081632653061 ; 3,4 ; 0,00308188142583396 ; 0,00327251326660719 ; -4,2 ; b6fadd7C0cCc0EF7eec87fDAf35e93B57C85AF9adF6fBAcaC801abba14Bc2071 ; < pQsP79Yn34UFyrmy06OAPhegaLeskw63wI2c9facZ5ihcRi3M660TbMj6rmByD6O > > 15 // < PUTS 0,130058825531344 ; quote ; 0,00285947761159851 ; 0,00280228805936654 ; 0,0204081632653061 ; 1,2 ; 0,00277369328325056 ; 0,00294526193994647 ; -1,1 ; A11CB6EE9EbaF6edE2A40df18Ed4B77FDBFbe8eF8EFAB53Bdae61EfC8d4bAf1A ; < EfFBy5K0FxmzCCRRxpMlpDq7T2gkI5dquV8S7R9r2RN1Xn3a1Xe4964lRxcyLAhP > > 16 // < PUTS 0,135261178552598 ; quote ; 0,00257352985043867 ; 0,00252205925342989 ; 0,0204081632653061 ; 3,7 ; 0,00249632395492551 ; 0,00265073574595183 ; -2,8 ; a588f54bBD3F98B3Fe8BCa0FCaAF9d0BE0e54e55db6a9a101acecad5fCCE7Acd ; < 7Ld2F49f26h850C1G4zVt7X5Ly1Z86D5u1bN25n7TW1YHnH25fRmiKH6IjqM0XYa > > 17 // < PUTS 0,140463531573851 ; quote ; 0,0023161768653948 ; 0,0022698533280869 ; 0,0204081632653061 ; -1,3 ; 0,00224669155943296 ; 0,00238566217135664 ; 8,8 ; 56ad26CBbAdAc92D0FeaaE6FdfEdaa7DBAc5Ecd36cb1F0b34FcDAecCaAcd8d6e ; < BPc1j4yK5Mh0MfL9lqt23PcHcR0h1c9T99HSZ62eVdKoW526iWjU33Ns3iZ9954d > > 18 // < PUTS 0,145665884595105 ; quote ; 0,00208455917885531 ; 0,00204286799527821 ; 0,0204081632653061 ; 5,5 ; 0,00202202240348965 ; 0,00214709595422097 ; 6,1 ; adfC32a4Ac5AC3A73Eaa2aD24b2AAEbFA9FA3eEedeEFCeDa980CBfADeF3fdbAE ; < 63n7atUYyeGX7i7E616FNLbTNHLW9ln2OppTlRl42eBgRH3hqzpZbhOk9ndiJii9 > > 19 // < PUTS 0,150868237616359 ; quote ; 0,00187610326096979 ; 0,0018385811957504 ; 0,0204081632653061 ; 9,8 ; 0,0018198201631407 ; 0,00193238635879888 ; -4,9 ; 72AF6A3D44Ac6D8C473bB81ed2ace7cF46dfde25FDEDe1d3AC2bcC9cABcDD5b5 ; < ix3JbQf3m9dipKOseMQSqod0OupYNTG4Eu4sb32r7O566Sn59ZsuG9CGy8osV9gz > > 20 // < PUTS 0,156070590637613 ; quote ; 0,0016884929348728 ; 0,00165472307617535 ; 0,0204081632653061 ; 8,8 ; 0,00163783814682662 ; 0,00173914772291899 ; -6,8 ; 8fBfa3Bf13c8Bd3aB9EE190EE37a956BEc5FBDACCDeaa0BdDADe3186dDbFcEAE ; < H2U0KVGRGuo15cp68Q9kauL35GyH7b2tfYS7F2hV6HK08Pjy78TE6D6Px7ke4XcI > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0522175938415273 ; quote ; 0,00350487621453956 ; 0,00343477869024877 ; 0,0204081632653061 ; 2,6 ; 0,00338220554703068 ; 0,00362754688204845 ; 7,2 ; acfd1bEaD5FDd23cbb3d4FB59fEdd9dd9AcbAa0cdbAbE0BEaEf2b9c9eF47BC61 ; < JqT28clg2q6nk5Yy4IQN3aL15FCV39elQ5Nc13Ocu4nB28I85WUP4P2U4Hb1C0LQ > > 1 // < CALLS 0,0574393532256801 ; quote ; 0,00389430690504395 ; 0,00381642076694308 ; 0,0204081632653061 ; -5,1 ; 0,00375800616336742 ; 0,00403060764672049 ; 7 ; EB67e41DeBE9d8b5BBaBbea60A682A8FbbDbD9EDdDC51BFbEBaC5bffaCAeAAc0 ; < 6W7B06dhHX28O84vl66In5007KSf0L8v2TqLRTQk24cz51TliJvdwzZZKaSz7b56 > > 2 // < CALLS 0,0626611126098328 ; quote ; 0,00432700767227107 ; 0,00424046751882565 ; 0,0204081632653061 ; 8,1 ; 0,00417556240374158 ; 0,00447845294080055 ; -8,6 ; 7EBEE7e2B5cfaBad68D8b8BE04be664BD8aFBCAACB233eFeFa66B3Ca167FdF37 ; < 90dc4790pUWWlbllOOKpQ3AmJ1cS44F8jiu4IdG37JT053Nbd5IpN7KYC08QoX4F > > 3 // < CALLS 0,0678828719939855 ; quote ; 0,0048077863025234 ; 0,00471163057647294 ; 0,0204081632653061 ; 1 ; 0,00463951378193508 ; 0,00497605882311172 ; -9,1 ; 30bE7ab2cAB1789F1edbdA0a1D53DDA09CAa539eeECcBEAA9Baf16fEBec8b0Cb ; < CF73Fn0rE3I9aO26XePt4N66n9467vnudmSvcpjSEMGeKSk3cDa8Z8HDugXKnOoz > > 4 // < CALLS 0,0731046313781383 ; quote ; 0,00534198478058157 ; 0,00523514508496993 ; 0,0204081632653061 ; 6,6 ; 0,00515501531326121 ; 0,00552895424790192 ; -5,5 ; f04FaDbCb79Adbfa8793dA23d0d09bc3e46627bdb79AEEcBED122bEb65FAfD9a ; < YS46v5Ycbd910FK8SZEueiV4y6MTLvCuBH0563eW1hFDzyVrgy2b2YTGoutCOSZ0 > > 5 // < CALLS 0,078326390762291 ; quote ; 0,00593553864509062 ; 0,00581682787218881 ; 0,0204081632653061 ; -8,4 ; 0,00572779479251245 ; 0,00614328249766879 ; 6,5 ; C24DcdFECa7D9ccEA5FAeb40dB4aFaEaeeC8adFCCD3CfE9d1F6cd5bdFE9951FC ; < m66O3NDqKI39YZdBOP9ss6NH21dyef791YNzy7804PLqq1GufTpXASbTUDUB2kH7 > > 6 // < CALLS 0,0835481501464438 ; quote ; 0,00659504293898958 ; 0,00646314208020979 ; 0,0204081632653061 ; -6,6 ; 0,00636421643612495 ; 0,00682586944185422 ; 3 ; 4B5bBa3ef8FE94C4Cba34a6DD5Ba9DEEF4ce2CFF15cBF8cBdabFbec3Af9edB78 ; < 0nVl0z89eJ61Y97MudUjuCLzQ6ym7QB5e0ene7fU2a7Tc7X3P85v3MCqK50CZmX4 > > 7 // < CALLS 0,0887699095305965 ; quote ; 0,0073278254877662 ; 0,00718126897801087 ; 0,0204081632653061 ; -0,4 ; 0,00707135159569438 ; 0,00758429937983801 ; -7,4 ; BCAef86dFDBdDf35ADEFAAaCda0fBbea342F6E5fc0e24DCBfBFab7cb76ab2171 ; < 73yDqBnTcToCFtzQqQ12Ei0rx6TWkD1ixMqOo3DUjMVMhAupNBm1Z5c9vX0Tglk4 > > 8 // < CALLS 0,0939916689147492 ; quote ; 0,00814202831974022 ; 0,00797918775334542 ; 0,0204081632653061 ; 3,1 ; 0,00785705732854932 ; 0,00842699931093113 ; 8,6 ; B7cA9f91CE1dF2deBCb9ec69F4FE45cbdcABcA3EAD9Bfdaf22cB1eCbe0AaFffD ; < vq4cRNm7MrU35Oy68XwiD94eO48p79hBsSWWG9EZIY5Sd7JEm071SUE83rdt9VY0 > > 9 // < CALLS 0,099213428298902 ; quote ; 0,0090466981330447 ; 0,0088657641703838 ; 0,0204081632653061 ; -3,4 ; 0,00873006369838813 ; 0,00936333256770126 ; -3,2 ; aEBFF14b521F3BCAbd647ceeA88b443F6A7ECDC6d7ecB4CeF8fce4edeefe8Ae8 ; < jMC4um1wB5Btuj43w6SH7m1FtcWLkKgNo2hJU4unPyjFyMFglIJ1534SCZ3luHsO > > 10 // < CALLS 0,104435187683055 ; quote ; 0,0100518868144941 ; 0,00985084907820421 ; 0,0204081632653061 ; 0,2 ; 0,0097000707759868 ; 0,0104037028530014 ; -9,4 ; FcB531bdFBdfEfbC8B5dD51fD39DFBfdcFfd26FDED1BFcaadD4CDF73afcB07B3 ; < VE826466vhnD2A8o7yoE66286Bo1N7YW2D0oHHh1Q4Go36y8MLFu6Or3LkK7j864 > > 11 // < CALLS 0,109656947067207 ; quote ; 0,0090466981330447 ; 0,0088657641703838 ; 0,0204081632653061 ; -2,6 ; 0,00873006369838813 ; 0,00936333256770126 ; -4,9 ; CE8bdDbDcAbd9aad5CEFbfbBA8b9adf38DAaC7B3D1AcDd05ac9AC3Ba8d32a8D1 ; < ke7Ww7NKxduF0nw76SWQ8tuSl72NzPAG1NvyI1p7Yn006GaGe7py4P884l7a6snX > > 12 // < CALLS 0,11487870645136 ; quote ; 0,00814202831974022 ; 0,00797918775334542 ; 0,0204081632653061 ; -6,1 ; 0,00785705732854932 ; 0,00842699931093113 ; 6 ; 2A80FEd660a2Aadbc3AAfdFceBC94EDBBB99EC3DbEdbd6ADadF25bDADeea3dEe ; < DU189mkzkA4ahTSpsK4761NbW6wu0UA8X3y2D6Hoh6Wh872j0g8E33YsUagOBrcN > > 13 // < CALLS 0,120100465835513 ; quote ; 0,0073278254877662 ; 0,00718126897801087 ; 0,0204081632653061 ; 0,8 ; 0,00707135159569438 ; 0,00758429937983801 ; 5,6 ; C8dcF2Bd0aCF0edABfBacbf92f1c3eA4aD1c1DcEC06FadccECcc3F3ACB6D98a8 ; < A10JraTCWF36mw76ALCDQXZRiP92hAQ31o7cSkdrFoUrYFH8JjpaTfs1mF26mrg9 > > 14 // < CALLS 0,125322225219666 ; quote ; 0,00659504293898958 ; 0,00646314208020979 ; 0,0204081632653061 ; -1,1 ; 0,00636421643612495 ; 0,00682586944185422 ; 4,6 ; B7997cfEA6d1cFeCCccdc180f7def0c486BF54eBbFeBEbEd1cAf3cCF74FAF4F1 ; < O1LmzAEalbTosf5ylh4oa27wZNdT9MP2f5E06f7G4hZ09XH679Z482343Vc16XaO > > 15 // < CALLS 0,130543984603818 ; quote ; 0,00593553864509062 ; 0,00581682787218881 ; 0,0204081632653061 ; -7,7 ; 0,00572779479251245 ; 0,00614328249766879 ; -5,4 ; B05AdaDAC2Eff3bd8fb766CBEC1BCfD6Dbc37eDdBeaF73AF638E0b4fd0D0edCB ; < AEYXv18A4iO7RCo0uVc597NWTKWozbMCz5pbSKRLgg2BxS99580G4WkG41x82N7x > > 16 // < CALLS 0,135765743987971 ; quote ; 0,00534198478058157 ; 0,00523514508496993 ; 0,0204081632653061 ; -5,5 ; 0,00515501531326121 ; 0,00552895424790192 ; -1,2 ; a8e73cAcCDE1F26a1eCb1AFd5Dcbf7eeE1aeFBDAD0F22BCDFAE5aFD0b9ABEECe ; < GBagys9N1SqIG23t5R9991B44RV65Y5Yhn069814S0IYaQa7GQd0RxbA5ua7Jh8I > > 17 // < CALLS 0,140987503372124 ; quote ; 0,0048077863025234 ; 0,00471163057647294 ; 0,0204081632653061 ; 2,4 ; 0,00463951378193508 ; 0,00497605882311172 ; -6,3 ; b1bBa5EbBEf5FB3b1FD1d15419c635ECADbd64b5B3e4Ec5aCcEa4cD8aEDCBAfD ; < qVcr3AslJ9VQ1FN9HM9gr9g850i9D2645JE6d5hy20z8P857Xx042f7Zm5obD0A7 > > 18 // < CALLS 0,146209262756277 ; quote ; 0,00432700767227107 ; 0,00424046751882565 ; 0,0204081632653061 ; -6,7 ; 0,00417556240374158 ; 0,00447845294080055 ; 3,6 ; a3dc0cAf37415beE02aFA9a3E06fAF5E3ddbfB5BfAbDc8Eb9Db1dbf3bB5c74eC ; < hVOFhn035EuPk05zo1bS6sa5Mj044Z8kYyFT9b2I4J3XBuOhyRmd6gy79S073Iw3 > > 19 // < CALLS 0,151431022140429 ; quote ; 0,00389430690504395 ; 0,00381642076694308 ; 0,0204081632653061 ; 9 ; 0,00375800616336742 ; 0,00403060764672049 ; -4,2 ; 1dDcE5CDDBA68C0e7912CaE9Ec7cebFdDA83B0C3bA6A6FfbCa2F3EfDdAFFFE7d ; < 5JFIgAgr9Tz9RUyL63S6q0G8593Vgw8an3YF7w0sW5q44SGtT0fXhQs000Z8fiRz > > 20 // < CALLS 0,156652781524582 ; quote ; 0,00350487621453956 ; 0,00343477869024877 ; 0,0204081632653061 ; -4,9 ; 0,00338220554703068 ; 0,00362754688204845 ; 0,8 ; b6e4ad7cFEdD8cA1E43ec4eC7CcdeEE8ec2ED55AEda2caDCe2e2BDa9aEBAf5Fe ; < b2Vp6rcoP6gUB0XPHv5hcQ8PwrV96u8c802k83dYv00ZO6st29z85HNX3C4up8Qy > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0522175938415273 ; quote ; 0,00350487621453956 ; 0,00343477869024877 ; 0,0204081632653061 ; -6,9 ; 0,00338220554703068 ; 0,00362754688204845 ; 1,4 ; bEd8CaAb0CA91cFAdaAAaCAeA3EDADEBe7a1bBAbD14De8F14F0A82DBbbfDDAb8 ; < 9Ub47I1g2pQB6LhJNLDVQO12XqiErV3cOWxg97g6t1DRd195JW4GS9Uqx3250VHd > > 1 // < PUTS 0,0574393532256801 ; quote ; 0,00389430690504395 ; 0,00381642076694308 ; 0,0204081632653061 ; -0,2 ; 0,00375800616336742 ; 0,00403060764672049 ; -0,1 ; 40B552Aee6EdD1f5c4dFa1b20CFc0Cd9a24b4AdA91BaFEddbaA7FdE3fbc3e7aA ; < 5SDkE7a9lBSNZ9za271cVA3cnUWy246jP04ClFJ73Xq6sMS5Sh44Z91a83CO7wg6 > > 2 // < PUTS 0,0626611126098328 ; quote ; 0,00432700767227107 ; 0,00424046751882565 ; 0,0204081632653061 ; -6,2 ; 0,00417556240374158 ; 0,00447845294080055 ; -5,4 ; 9CBA5Bb0De1f8AC6AFE5BF3eCaabC4Df059Ffa8cCc7A3e4FBAEAFccaff78Ef7f ; < 7s3b6Q56QjxZXPBFMJq7YTNx634x70t67PymMhF7YK7v1M24z1YU5ytD8LY8Etx4 > > 3 // < PUTS 0,0678828719939855 ; quote ; 0,0048077863025234 ; 0,00471163057647294 ; 0,0204081632653061 ; 5,8 ; 0,00463951378193508 ; 0,00497605882311172 ; -8,2 ; Ccb5dfc7CD3c7CF5BFfEE0F503CF4ADD26889fbf3daAC8f01fcE6Dd9F6BfdDab ; < fAZ2vvKW22kNMq6bjQ3f521o2fz26H0Hl65jKpaQ5Dkcdd37892FKb2VJx72nran > > 4 // < PUTS 0,0731046313781383 ; quote ; 0,00534198478058157 ; 0,00523514508496993 ; 0,0204081632653061 ; -1,6 ; 0,00515501531326121 ; 0,00552895424790192 ; -8,8 ; fd2f00F9EE0Ef9B3Ea44dEC10fE7F5decED6477B3BeAF3aFfdbD14B26c2BBaFb ; < kxURsAXzmFejXBicsEf3C1c50V0NJuBAmUxpuGEt3a5uz0WOhXPGV6I2Si6aBUVF > > 5 // < PUTS 0,078326390762291 ; quote ; 0,00593553864509062 ; 0,00581682787218881 ; 0,0204081632653061 ; 9,4 ; 0,00572779479251245 ; 0,00614328249766879 ; -4,4 ; ebCde4FbD917DAEcaC3d4AD82E2afEeEAEEbDdf3eacAe1A4BF2dDC7bFd6D70d3 ; < S3fn0bvY4abinbV5llD40l1p24tV45Q8B7H2xXQ32WkyUzZl50PoZf99Yo9dx71d > > 6 // < PUTS 0,0835481501464438 ; quote ; 0,00659504293898958 ; 0,00646314208020979 ; 0,0204081632653061 ; 3,7 ; 0,00636421643612495 ; 0,00682586944185422 ; -4,1 ; ba3B8FDe25eecD4d5A5d5AfaDF2C8fab868B73fBe3Ca90DbfcCd7DFDFFA0AFdc ; < B9s3qaYjdVcZexK0exQKsMN1hwLuyJ7NA0ZhtN12lyxhG9zh8T1vqMxCaMeI86XH > > 7 // < PUTS 0,0887699095305965 ; quote ; 0,0073278254877662 ; 0,00718126897801087 ; 0,0204081632653061 ; 6,2 ; 0,00707135159569438 ; 0,00758429937983801 ; -2,6 ; d4E8aBAEe5Ccacdd0AE677fd8f6Dca3C0bD3bac59a7Eb7ECB953dAafEECCBdC8 ; < D4cJ0aN5alR9hbEIT4jd9h085h37sS4EfOoAHk52apydF8CEUXTZa46yssAKB4sa > > 8 // < PUTS 0,0939916689147492 ; quote ; 0,00814202831974022 ; 0,00797918775334542 ; 0,0204081632653061 ; 1,9 ; 0,00785705732854932 ; 0,00842699931093113 ; 8,5 ; 1deDc39e7fed711EBfdFFeeAea5DdCEDCcFcaBC0FFEbc0bab5DEb5eEa1D3fF9b ; < qHoqui01B2j8rOVt5LqHH835W584ZM2r2Gbb61x0fU56SdotATU3ivMu5ISbH67q > > 9 // < PUTS 0,099213428298902 ; quote ; 0,0090466981330447 ; 0,0088657641703838 ; 0,0204081632653061 ; 1,1 ; 0,00873006369838813 ; 0,00936333256770126 ; -9,7 ; D2E0a0fA17c5CAC24EecEcB3003EADad18b27d8Ee3B7C28C2aBeDd7fADb09b4F ; < Xr80o6AKWwHBZmSZQ6Tnk9mrtIWiDN0H3IG0e3FFu51iW1rF8JOfAau8JeLGnQAH > > 10 // < PUTS 0,104435187683055 ; quote ; 0,0100518868144941 ; 0,00985084907820421 ; 0,0204081632653061 ; -6,6 ; 0,0097000707759868 ; 0,0104037028530014 ; 0,9 ; 1dbCb0D57AbE7Ae2e6eD76B61BfFC8026ac1F1Ed5Ecc74b2eeaF4AA9Ea3B59E0 ; < VEL6Jx6pzGLIc42qMJ6sMHmfzm145yyQ7Kyh8pv3K21u75myewFrwSgXgQMzdY33 > > 11 // < PUTS 0,109656947067207 ; quote ; 0,0090466981330447 ; 0,0088657641703838 ; 0,0204081632653061 ; 5,9 ; 0,00873006369838813 ; 0,00936333256770126 ; 1,3 ; F6FD2c7fEaA299abFcdFe5cB4f7bA8a4c9BdaE5ef6Fdac4ECbDCccABBcAF60ED ; < 2ZykXqh6V72G400SRmE2201ds9T0JdI7e1Ohk4uBCen2OPl4n5ZLgpZWj5qsM15i > > 12 // < PUTS 0,11487870645136 ; quote ; 0,00814202831974022 ; 0,00797918775334542 ; 0,0204081632653061 ; -2,8 ; 0,00785705732854932 ; 0,00842699931093113 ; -6,9 ; 4EEAdCebbBac36eac485faF60fceDB5BaA1CcB73bDe8BB0BbFEE4b6e0F0dFA79 ; < hh6n175e3X0XcsWplt90oqxj897U0oopEe2zJuWd0e3DHWj3bW8ut358PaoLp0dB > > 13 // < PUTS 0,120100465835513 ; quote ; 0,0073278254877662 ; 0,00718126897801087 ; 0,0204081632653061 ; 1,9 ; 0,00707135159569438 ; 0,00758429937983801 ; -1,6 ; baF680EaDdd7Eae86bFa40e1BCCaEbAfb233588Af6a75DCa53EeDf528E2ccCd4 ; < DE6fB8Z5pN5jx1M6mOZEEBfe19X48w9MUa99j394cDTM2XX8CTBFsU1u3Ed576B7 > > 14 // < PUTS 0,125322225219666 ; quote ; 0,00659504293898958 ; 0,00646314208020979 ; 0,0204081632653061 ; -7,1 ; 0,00636421643612495 ; 0,00682586944185422 ; -0,6 ; e07aD3aC1fCde15c3A6ea7e58ADcCDAEE0dE4feC68c97B19fe9EAAa2C4a61DFB ; < io3x8qWhi2c0uV325xJh9JJq0X37608weXegrSXtueo3Juw03TDikfAeZPpY0In7 > > 15 // < PUTS 0,130543984603818 ; quote ; 0,00593553864509062 ; 0,00581682787218881 ; 0,0204081632653061 ; -6,5 ; 0,00572779479251245 ; 0,00614328249766879 ; -4,3 ; AE643f1c99C9dDfe4efB9DBAAfbEBf4e7Bb7eD6fde8d6fc9aaa3cCFB8fEdeeaD ; < 23ISGfu7R1M9fHzRHqFCJ0BJs63rNxCCu7611Adv1W68gz0B0SUnLWnoyxRb8zHB > > 16 // < PUTS 0,135765743987971 ; quote ; 0,00534198478058157 ; 0,00523514508496993 ; 0,0204081632653061 ; -3,1 ; 0,00515501531326121 ; 0,00552895424790192 ; -3,3 ; 50aA977Ec7Ec6b8878cDda7eBEdF611EB51Ce47d1a9aadEDfe8df5Ff1fE1e89C ; < xEG96g6CM8Di1z0YKSB28khmV3XLF7y2KVQL8D3gUN98Qt684UxhM7T6AgF1ys5A > > 17 // < PUTS 0,140987503372124 ; quote ; 0,0048077863025234 ; 0,00471163057647294 ; 0,0204081632653061 ; 6,5 ; 0,00463951378193508 ; 0,00497605882311172 ; -2,6 ; 70E5F239dE0fFC5f59BF992dFaCb81Cef627fbcCa07CeAc6c2FD058aEa9861D3 ; < VLpAoR2yh2VG3rRDb2E4An4381sytI3TVlmdq2KU9w3qhPQmN1U13Q8dqC5c9Dp8 > > 18 // < PUTS 0,146209262756277 ; quote ; 0,00432700767227107 ; 0,00424046751882565 ; 0,0204081632653061 ; 7,5 ; 0,00417556240374158 ; 0,00447845294080055 ; -7,8 ; 6fD6c60e6BF6FFec0c8Bf6cc891CAfFf3EbF94CB6fc6D1ec2cCceF1FFbfAfb63 ; < g45CoF5Q04x13N4wqow4oB0I71U3Y9tUpCTAKf5lb06u6H4h97QqVJBvOeBR7Xza > > 19 // < PUTS 0,151431022140429 ; quote ; 0,00389430690504395 ; 0,00381642076694308 ; 0,0204081632653061 ; -6,4 ; 0,00375800616336742 ; 0,00403060764672049 ; -8,7 ; CD8fDb62aBb02F69AE5Cf646DFac4acdA8e3ccf70Ca0CD1C9b56f6E2A8ccb0ca ; < xH76f74901xpP5Ap1333j1fqIj7xTb3gA9ug1HuUAeE5ADW6922euR4E0eXW96S1 > > 20 // < PUTS 0,156652781524582 ; quote ; 0,00350487621453956 ; 0,00343477869024877 ; 0,0204081632653061 ; 0,3 ; 0,00338220554703068 ; 0,00362754688204845 ; 1,4 ; 19f28ab6E8dEaa64f973d76CeCcBBA3CF92aE9BFD5DBAEFCEdB4c0CedD6FbCE6 ; < tPm6eDanHRO5ehkPyuIOkeDleyKWVnfW9SsVvEU0OCnZ1kdh5NtVkmyfxw9Iy6oB > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,052910926667914 ; quote ; 0,00752558509458962 ; 0,00737507339269783 ; 0,0204081632653061 ; 0,8 ; 0,0072471384460898 ; 0,00780403174308943 ; -0,4 ; 93Af5A7dfFCBdf380fe5d406FeB260ec6dBBdB95c51CCA9e6bDF0bD32de01A32 ; < U19Jaj113hsX6fcCNp33z2HrHR9XX16Avb26AoAtl87PIn3l0B0hPD3KB8fhHA0V > > 1 // < CALLS 0,0582020193347054 ; quote ; 0,00836176121621069 ; 0,00819452599188648 ; 0,0204081632653061 ; -9,9 ; 0,0080523760512109 ; 0,00867114638121049 ; -1,5 ; 05b8efEeBaf68A8Ec8f37EbffdcAAFeea14Aea5e2A6EB73a667bEEcbeBFACc62 ; < 3B5qXXl0E0g1ynCuRu4DpF411ctngh6k4q7p0BuP4P8y3c33P15a6L8qT5vVZ8QH > > 2 // < CALLS 0,0634931120014968 ; quote ; 0,00929084579578966 ; 0,00910502887987386 ; 0,0204081632653061 ; 9,2 ; 0,00894708450134544 ; 0,00963460709023387 ; 6,6 ; fBBD1769d92bBb57d4eFCB04AfdFFEdADBFed7eb3daFA8fEE821BFC65D9bB4AC ; < L95L21UCrqiy3lvSvj2RSNUGrRGlSjH670gU2ZX7ol3y4YxhwsvKYF9F8iQrFI8w > > 3 // < CALLS 0,0687842046682882 ; quote ; 0,0103231619953218 ; 0,0101166987554154 ; 0,0204081632653061 ; -9,3 ; 0,00994120500149493 ; 0,0107051189891487 ; -2,5 ; 2D9cBcD6A32ac5E96DdcA2EDD3cAFe5CB5df977ef2F5Cf9Ca6da2E9a678dFcB7 ; < 8Lg53qaTgjtV9gLI1W70e3MmPio3D01N0b1EBS4fw47Yecb60QuRwkRKjRmxR4pV > > 4 // < CALLS 0,0740752973350796 ; quote ; 0,011470179994802 ; 0,011240776394906 ; 0,0204081632653061 ; -1,2 ; 0,0110457833349943 ; 0,0118945766546097 ; -9,5 ; CAE1cA0c1917BA594bb336c8d4Ef3edBbed52dE569Ebe5250f8DAe3fa6B4cb40 ; < dPu5XOg7uSEvVzc5Tj2lRm36WfifX817ia9Js20S6n8W71Bp4eW0JGyTE6zGn3CN > > 5 // < CALLS 0,079366390001871 ; quote ; 0,012744644438669 ; 0,0124897515498956 ; 0,0204081632653061 ; -7,6 ; 0,0122730925944382 ; 0,0132161962828997 ; -8 ; 05d5bd96c77fd8E7eCB55CEFBb291dcD9CAd5BcEb3bAe6fA7FEdbBE5da0bDd30 ; < W03Z5p5f3O8tr7BGkuyGDgdX4eCg97mxQpPeW2h5swlsDVU6V1PkXxOWGlhW8LUS > > 6 // < CALLS 0,0846574826686624 ; quote ; 0,0141607160429655 ; 0,0138775017221062 ; 0,0204081632653061 ; 5,4 ; 0,0136367695493758 ; 0,0146846625365552 ; 5,3 ; 15ACb4BaCd9cC7AdDBB7dfbfFF73f6faE88EF67ae9865DBB5FFc75eB6d3B778C ; < 47ckIfigokS66xl8e2V1V3uNUVuJX3Izw9JXwR7KP6Zxr1HEJnRri46KIt0x2uA2 > > 7 // < CALLS 0,0899485753354538 ; quote ; 0,0157341289366283 ; 0,0154194463578958 ; 0,0204081632653061 ; 0,7 ; 0,0151519661659731 ; 0,0163162917072836 ; 8,2 ; AbeB01BeC5BFdBB3ce8EE26EbcC0FeF82e5A53AF65ccbB823dB1ffaAFfEc03eb ; < hsmSn4oH5zJxCzfWb1PtA3fZ2aeEVSv5TwIm76j6k6Ky1eJlboCn3M6r49LvWy14 > > 8 // < CALLS 0,0952396680022452 ; quote ; 0,0174823654851426 ; 0,0171327181754397 ; 0,0204081632653061 ; 3,9 ; 0,0168355179621923 ; 0,0181292130080928 ; 5,2 ; EC6Ebb2fbea176bCadd2e0BADa4BF9CbAccdef7597392eBce9AdEA6BA6cFDA78 ; < wRu217W5LGzXsQHU920o8K0s35Y71Fflg8E8WM3E3M81JeuOk9XKmT945j9m07Y5 > > 9 // < CALLS 0,100530760669037 ; quote ; 0,0194248505390473 ; 0,0190363535282663 ; 0,0204081632653061 ; 8,5 ; 0,0187061310691025 ; 0,020143570008992 ; 7,9 ; C4Bef8dF28Ed477Bbf4f54cEeF3F52370c2ce4D1AcaAfCF03A2f3b2a0feD7a7e ; < sy1FKQ15iYnPv3YH3JytX2U5AV82GwuRR97uQT2os2ulM4TSdK3Uy7dZR29vXwnU > > 10 // < CALLS 0,105821853335828 ; quote ; 0,0215831672656081 ; 0,0211515039202959 ; 0,0204081632653061 ; -7,5 ; 0,0207845900767806 ; 0,0223817444544356 ; 1,7 ; af91fEce8B84EBFF8cBEF1F6aCEB9dbcBAEA0397d5FAc95EcE11BB21dAbbC5aB ; < EiydT999725je927voXyUlFkCVL24zzS5EQ1RXjPs3rs558GhQ89EC3I30k5N7UA > > 11 // < CALLS 0,111112946002619 ; quote ; 0,0194248505390473 ; 0,0190363535282663 ; 0,0204081632653061 ; 2,2 ; 0,0187061310691025 ; 0,020143570008992 ; 3,8 ; AAEba571DAAc1AfFBAFEfaB35bCb4F4FFEaf49b1EAdc4BbCEF0Dbf662AdA3b5C ; < 8qol3riORu11YpXCv4TNwVubssER81F5331Qvts2fy87Z3J5CDtsO30Y2QOG8y20 > > 12 // < CALLS 0,116404038669411 ; quote ; 0,0174823654851426 ; 0,0171327181754397 ; 0,0204081632653061 ; 6,2 ; 0,0168355179621923 ; 0,0181292130080928 ; 6,6 ; CDbCaA0cDcb728488CdccbaAABdB4D9C6aBFaDEed9c7EFCFabe6bCb103A72c72 ; < 17LZA50mc49wppVFT88yQ9a2hbx6127FFq5zJFmpB7V1QKXKv5RoI2ea9288Q2V9 > > 13 // < CALLS 0,121695131336202 ; quote ; 0,0157341289366283 ; 0,0154194463578958 ; 0,0204081632653061 ; -6,2 ; 0,0151519661659731 ; 0,0163162917072836 ; -6,1 ; 8CFF7A10C7851D5d894c3f6ae08b9BFdCbeDD5FaE9d10afebFcb9a62ea6c6AcD ; < gb7I4TaG7j61w699fRW7r5358zuiCyudf6SyCzgkDQqh5VFrpbOgRc2iGwx97O8p > > 14 // < CALLS 0,126986224002994 ; quote ; 0,0141607160429655 ; 0,0138775017221062 ; 0,0204081632653061 ; 6,8 ; 0,0136367695493758 ; 0,0146846625365552 ; 7,6 ; bc3ADFeE520aCfa8fa9AbA5F8D6BfdDf6fFef4c3fAdf6D01EEfaDf3a1eCAEE1f ; < Rs47aXPsknNl22oEWh3jOLfuRyj9yM3cSV87HmsQLi3Qcom656KJ8lVyKIdp8Bqa > > 15 // < CALLS 0,132277316669785 ; quote ; 0,012744644438669 ; 0,0124897515498956 ; 0,0204081632653061 ; -9,7 ; 0,0122730925944382 ; 0,0132161962828997 ; 3,5 ; aCee6FAD18bbD1FCbDFC6Ee3D8287588db3CdACcD8AD0dDa5a2CAece80781DB5 ; < 4TaTh6582BM2C3C7m5YGCnz4D1Gdh56q5m0lhyDj83OtB7ep48717g4Qz8CHcO3e > > 16 // < CALLS 0,137568409336576 ; quote ; 0,011470179994802 ; 0,011240776394906 ; 0,0204081632653061 ; -7,6 ; 0,0110457833349943 ; 0,0118945766546097 ; 4,5 ; EBDEFdEfdcA5cfD0edA84D9C63C4BbEEEcEa9Bfae96BdccFFDC5fFDA318ffcD6 ; < G8DZe4fNdyp5kYlOf26HXt490in69kONVQJH662B1Ecn69d7db60S6CAup1oI4j0 > > 17 // < CALLS 0,142859502003368 ; quote ; 0,0103231619953218 ; 0,0101166987554154 ; 0,0204081632653061 ; -5,9 ; 0,00994120500149493 ; 0,0107051189891487 ; -4,1 ; EA4F2bbAd0b1Dfe2fDbA86aBa529bf8E9b0EdAc5e327dc6ab2fB3ffef8ebfAeE ; < 8QUPNNt4H846PguCFAgLNaXgnDeiv70g61LQ37w9XeHT0xSus1rVwNC068Uma95T > > 18 // < CALLS 0,148150594670159 ; quote ; 0,00929084579578966 ; 0,00910502887987386 ; 0,0204081632653061 ; -8,2 ; 0,00894708450134544 ; 0,00963460709023387 ; 8,3 ; 9cCEca3df0D4d4A3EDe5aCB1da036aEaBf6ABf0D12dbCECaaDfc6Dc96CeccE1e ; < J3E8u9IaUC5OHDC2erMaRq7Jf005XjiRBLl22xu55LYQQ3lI22n4Tqz20NscVYHE > > 19 // < CALLS 0,153441687336951 ; quote ; 0,00836176121621069 ; 0,00819452599188648 ; 0,0204081632653061 ; 5,4 ; 0,0080523760512109 ; 0,00867114638121049 ; -9,1 ; 9A5cd7b808f8BfA5e4Cb9Cd12ddeb6b13eebECEEacaAf5bEBCce5c6Bfd4FFE9D ; < szaxQ1oS76GJ3OBYewAayNx1qkkBO3x1fOsNs6L6R110j4Wwe6b7C38vnc3946ZD > > 20 // < CALLS 0,158732780003742 ; quote ; 0,00752558509458962 ; 0,00737507339269783 ; 0,0204081632653061 ; -2,1 ; 0,0072471384460898 ; 0,00780403174308943 ; 1 ; b718EFFeC02A7D9cCC3d47DaD4Dddffd70c98E7aB1ea7ebaCACAFaBBDfb3eeaD ; < 0QVp635B8UVzxGh1i5IyNviG2il56G6L5lqFBFDkx7O1e548YT3m37XRhxOOB4nM > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,052910926667914 ; quote ; 0,00752558509458962 ; 0,00737507339269783 ; 0,0204081632653061 ; 3,2 ; 0,0072471384460898 ; 0,00780403174308943 ; -4,5 ; 482FFF8Cfc1ccdabECc94e0BddaE85EEACa7627adb2E0AbBFeDEDadECe1E9ccF ; < 8V1G0BI3V25R75Ndta88786D7Vv3NMxaoJYNm9vtAoH4cE263vir6e6u80xp3H4Y > > 1 // < PUTS 0,0582020193347054 ; quote ; 0,00836176121621069 ; 0,00819452599188648 ; 0,0204081632653061 ; 6,5 ; 0,0080523760512109 ; 0,00867114638121049 ; -3,4 ; C02fF9eF35C7BDFFC293AB4E31188f9D80af9Aa4d07F9e0e67b4Bb7DD3A14AD8 ; < Ah2864FLZzB8N0LO9d8i53Xefan9yBN6cSY5udEXvxPMwjj9PCsrBhwXWFk99DdF > > 2 // < PUTS 0,0634931120014968 ; quote ; 0,00929084579578966 ; 0,00910502887987386 ; 0,0204081632653061 ; -1,4 ; 0,00894708450134544 ; 0,00963460709023387 ; -1,4 ; dAfdf3EBF8E351A4654A6E3A6fd73A6CcEAd59ceAB1C8EdcEe6BEfdBac0a1dCC ; < 5Ekvw9gA1hUVjvZ60C3INz61FCIprZ9kH9E1y4oS5vP773JMh8G5E8Xdl59NDv1o > > 3 // < PUTS 0,0687842046682882 ; quote ; 0,0103231619953218 ; 0,0101166987554154 ; 0,0204081632653061 ; -4,9 ; 0,00994120500149493 ; 0,0107051189891487 ; 5,2 ; 9DFC93fdc5edFa42F6e2CeEFDAEAc0cbAbdACa3AEA7feBeBAB9F9EabD6dA160c ; < 97JpYNZ8o0S6p0OTzU863LHfNKah1Uolw04H8Y3jq1v497UnHz0lytGECiB6g5g7 > > 4 // < PUTS 0,0740752973350796 ; quote ; 0,011470179994802 ; 0,011240776394906 ; 0,0204081632653061 ; -0,1 ; 0,0110457833349943 ; 0,0118945766546097 ; 5,3 ; 8CAea95197aFADa467BfDDCF0aA14e2bb5bCA75aDb72fFCf20CAAcAbA2CC66A2 ; < vH2kPrkcenKanj0VeBM43wqHzgC9gvmE0gzjkz95qtHdD4g3W8wE7T95x3v7k11A > > 5 // < PUTS 0,079366390001871 ; quote ; 0,012744644438669 ; 0,0124897515498956 ; 0,0204081632653061 ; 7,4 ; 0,0122730925944382 ; 0,0132161962828997 ; 3,5 ; Bd18cF7B3AeDFEef1ab8eABBeEcAD7BcFB7e4DA8b2c57AaAABE1D4f9cF712Fe3 ; < 2D516mQ0f2Vbe0a58R1JeI78dZZN658Wc4T89zlauj2G27NQxQ368M5q909XqepN > > 6 // < PUTS 0,0846574826686624 ; quote ; 0,0141607160429655 ; 0,0138775017221062 ; 0,0204081632653061 ; 7,5 ; 0,0136367695493758 ; 0,0146846625365552 ; -7,5 ; 6ADFadEA1e3fBb0ea2906D6D1a15E7dcd27d153c7ebEBA34bdef046AaFbebF62 ; < HISL31OHiiVq1zE2988z61K70GVM3I133D25Wq0XExglDhfT5y7BoR8xQt9D2xWg > > 7 // < PUTS 0,0899485753354538 ; quote ; 0,0157341289366283 ; 0,0154194463578958 ; 0,0204081632653061 ; -9,4 ; 0,0151519661659731 ; 0,0163162917072836 ; 3,9 ; 6c3aD38Bd2CdbEe8EacFcCCfDCFfdE5Cd017fD29Ceb5e3C79e19270fb06Ec4de ; < UUCNBcJQgGzJTMPg3IYNodTf7epn5CO2l91LdbVtw0au1VqFcT2i321Q1P96yi0W > > 8 // < PUTS 0,0952396680022452 ; quote ; 0,0174823654851426 ; 0,0171327181754397 ; 0,0204081632653061 ; -4,9 ; 0,0168355179621923 ; 0,0181292130080928 ; 9 ; cfB87BAd5CCBAe8b7AAdabb2Ece3A6AdDDe1afFa31FC8b5c6Dcf4Bf204Cd0bBe ; < j58Yitw6i0EDLM4YDulPLPDx11rIr8276ixb2L8jORl1S4JXw3BOzI9IXNsh2ciL > > 9 // < PUTS 0,100530760669037 ; quote ; 0,0194248505390473 ; 0,0190363535282663 ; 0,0204081632653061 ; 4,7 ; 0,0187061310691025 ; 0,020143570008992 ; 2 ; c1Ceb8fEBcd699fdBFAcdcD92Ee5Ec8C2ae40C2fFC2DAB20DB4dE5ffcFC1Ad9B ; < 0P3M93itcEaT8OuJ89X1bQwmS504FX18yoouWsVEIz7cFjKmZ1Y6hgKESh3CjWze > > 10 // < PUTS 0,105821853335828 ; quote ; 0,0215831672656081 ; 0,0211515039202959 ; 0,0204081632653061 ; -5 ; 0,0207845900767806 ; 0,0223817444544356 ; -3,8 ; EcEAFd5ceBff1FdDf46EAAbAeB0CFfbdB58dbd8c6cBA0ECdF1cADDF6AAc69BCc ; < dOXHJXe6X8t5sdQGcPkLEDatfmhUKA28R0q0hvs91h654KZg078prwJ7joCzs5CZ > > 11 // < PUTS 0,111112946002619 ; quote ; 0,0194248505390473 ; 0,0190363535282663 ; 0,0204081632653061 ; 0,6 ; 0,0187061310691025 ; 0,020143570008992 ; -7,7 ; A5FCD5F5dF95EFF9cc5DadA68dCeEafB8DaCFf4b7A4EEafD0cCbBaEBea0Ef1ED ; < kJ69Hf72Y7F9pL7WdbooT1Dxf638XmWlyxr97clw66l0tSwriE9t2Tbv37KA5ptG > > 12 // < PUTS 0,116404038669411 ; quote ; 0,0174823654851426 ; 0,0171327181754397 ; 0,0204081632653061 ; 6,1 ; 0,0168355179621923 ; 0,0181292130080928 ; -5,1 ; FE4cbEC1Dcdd8B960Ed08dA866fd0Fa7AfaDd9bDb4Ac08bE7EC2Eddc0aa4c1cc ; < 4b859VMr9EBnY244c097Z5wnjubLZkttCK6v6p2969KIdYOKC2y376HtCm1Xl15D > > 13 // < PUTS 0,121695131336202 ; quote ; 0,0157341289366283 ; 0,0154194463578958 ; 0,0204081632653061 ; 9,5 ; 0,0151519661659731 ; 0,0163162917072836 ; 8,3 ; 5dE8d0DeAe17de4a242B3E4a6cfc35d263Eb6Df9Fd567BAdAaCCACBFefAFecaD ; < w19L5ucJ32hZ1NsltzyM81ZFyAHtXB66HjwVG933ZSvLOcOW7AEgA743d2fo0uxP > > 14 // < PUTS 0,126986224002994 ; quote ; 0,0141607160429655 ; 0,0138775017221062 ; 0,0204081632653061 ; -5,1 ; 0,0136367695493758 ; 0,0146846625365552 ; -2,6 ; E3CDdcD6F1E1aDd35faA475DC05f888ABccEFCAa0cEda1fcc584a2CdCdcA46B6 ; < fH54G3J6sn477539rC4lkxIdRK5Xg5o9T0n6gJ11uRWgw3ZyhApRpn758rVww8Km > > 15 // < PUTS 0,132277316669785 ; quote ; 0,012744644438669 ; 0,0124897515498956 ; 0,0204081632653061 ; 3 ; 0,0122730925944382 ; 0,0132161962828997 ; 3 ; 76BCA48b93E03c4Cc97DEce52ADe7FBdEC9FF6Ab5B4aFdbFEFB1f0fE0A2c18eB ; < N82XyN84gi76V0IqK9tUvmJ5S6VmcaXGVJbW2TAz7oQZ72c6kEhPL47D721hu6Kz > > 16 // < PUTS 0,137568409336576 ; quote ; 0,011470179994802 ; 0,011240776394906 ; 0,0204081632653061 ; 1,8 ; 0,0110457833349943 ; 0,0118945766546097 ; 2,7 ; deAFEba3c0Ba34CEb9E79b3bBBBCD0e0aDDf1DCBbfecf75D4aaE1eDd8Bce55Cb ; < 3WzRkh8qs722C5uTKO6kBu8iAkaQl1TN9OT52C0m1CEs4wE1Jw24k18f4zq3RAz5 > > 17 // < PUTS 0,142859502003368 ; quote ; 0,0103231619953218 ; 0,0101166987554154 ; 0,0204081632653061 ; 9,2 ; 0,00994120500149493 ; 0,0107051189891487 ; 1,8 ; D2d37b4D78bCE7CFccFF8BbDfcD008ac3FcC2cFEe09edFced0f68fF5CA5bcD9b ; < z79OBipKplJyGqm4u1jPsW83O9zC9PSdbsgsdac82tpiDJlQM4b31A174858fEY2 > > 18 // < PUTS 0,148150594670159 ; quote ; 0,00929084579578966 ; 0,00910502887987386 ; 0,0204081632653061 ; -7,4 ; 0,00894708450134544 ; 0,00963460709023387 ; 3,1 ; be6bdab57414346faA4BAE5e9DCED5aeed9d0FF95aE37EDCdcBAAFAb10caEcb7 ; < JFIsZ1t9PFEyiDEac6AEf46sh99mBaBSBPSdTaNrWn32qGM3n07QWU90ya7326WH > > 19 // < PUTS 0,153441687336951 ; quote ; 0,00836176121621069 ; 0,00819452599188648 ; 0,0204081632653061 ; 5,4 ; 0,0080523760512109 ; 0,00867114638121049 ; -7,3 ; Dc5B6caca4966fEbe855AE7476bb16CAdfBB1b4035FCdCC29a78ADbbaaFcE81c ; < lbGJC9Ua8pE4l3w1bQfY594ufx4Vgx6vgs62H847m5NmAuOD2V61pC17HElmMmZr > > 20 // < PUTS 0,158732780003742 ; quote ; 0,00752558509458962 ; 0,00737507339269783 ; 0,0204081632653061 ; 6,4 ; 0,0072471384460898 ; 0,00780403174308943 ; -4,2 ; 4d8bA7Bd31b8aE10104291f3ae53c32aDFAFEa9230f86Ea7E68C30ABceeEfd1e ; < DCj3eR1b01C4G28sg35XvoByP26njzTAw79AUSg8131WHJ1Kr5BD7psxXY115PFh > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0540031121581709 ; quote ; 0,0122264240307695 ; 0,0119818955501541 ; 0,0204081632653061 ; 7,7 ; 0,0117129142214771 ; 0,0127399338400618 ; -9,1 ; 3cAD6B1320F53fc3eDEF804Eac4d797ecbcCf8ccD3A14b4DC9eebd4d11b3a4dF ; < W7498RZF0K2jx8JUuzPq2AR9nSKC3D8408215Rl0A0d38BFH1GXJfjhNs679pWm0 > > 1 // < CALLS 0,059403423373988 ; quote ; 0,0135849155897439 ; 0,013313217277949 ; 0,0204081632653061 ; -3 ; 0,0130143491349747 ; 0,0141554820445132 ; 8,3 ; 54EDFCbad90d4Ee5ae8FB707ee3dcfAAe6fbf3C3Ab319caE22F18a16bDCA12f6 ; < onE8HEk2J6KFVIM8CbF5uc8r9F68X34vP332DLJh2ugn059IC8gp4gaq721Fb744 > > 2 // < CALLS 0,0648037345898052 ; quote ; 0,015094350655271 ; 0,0147924636421656 ; 0,0204081632653061 ; -2,2 ; 0,0144603879277496 ; 0,0157283133827924 ; -6,8 ; 3AD11FC272AfC8Ff6aE7B9b5Fa7FDbc5FBbaDA48b41d1BBeeabfeA2237eDEDCE ; < 65u6nhoUe6BW6z18HhxpqFzcfLR61G7918VJZ5KvxRHsG3sKkKLe4t2Es4g5Jc99 > > 3 // < CALLS 0,0702040458056222 ; quote ; 0,0167715007280788 ; 0,0164360707135172 ; 0,0204081632653061 ; 6 ; 0,0160670976974995 ; 0,0174759037586581 ; 7,1 ; bA4dDCb94b71A1615AfBF9646bDD24ebaDB09AbFa4fE7fAe5Cfad0Cf6B51C5aE ; < 55v4P3P4uU1lckzeelmfkPAi765r9l9qYOebaVv5jfk9kUu9bEYxhB4Y02zFfHeX > > 4 // < CALLS 0,0756043570214393 ; quote ; 0,0186350008089765 ; 0,018262300792797 ; 0,0204081632653061 ; -4,9 ; 0,0178523307749995 ; 0,0194176708429535 ; 6,4 ; CDEBEFaA18d88b4Ac0EA3a14fa2c89BeB4E5EaeBfe28DFefe3694BAFBf08A84a ; < c4vI9qjs8N7nVa1991nIu633N9zUeDxw2mcW2r475gNEC1kzklUhH7WEU8Xzne71 > > 5 // < CALLS 0,0810046682372564 ; quote ; 0,0207055564544183 ; 0,0202914453253299 ; 0,0204081632653061 ; 8,6 ; 0,0198359230833327 ; 0,0215751898255038 ; -4,1 ; DdFBF8e95aAaFabDeF9Bdd38EF1edaa070CcB1CBFf7faC33a2cCbf871ebfC2e1 ; < 2gz67xFY353z69L2scx0S10Iu390KLmJjuxa264hia80L6TxMEKxV48vrVn8ThxE > > 6 // < CALLS 0,0864049794530735 ; quote ; 0,0230061738382425 ; 0,0225460503614777 ; 0,0204081632653061 ; 0,2 ; 0,0220399145370363 ; 0,0239724331394487 ; 4,4 ; 0feDDdA9e08211B1Ab8C0Ff9b4bbb58EAFeae63cf5c8AefeC6331f93BAaeC5A2 ; < bBz5QV5n8BSOeOujLfQ9Z4nW5SV5K7u6h3l8U0t9X7sVmf3irRsYcQuq0N6u8BuS > > 7 // < CALLS 0,0918052906688906 ; quote ; 0,0255624153758251 ; 0,0250511670683086 ; 0,0204081632653061 ; -3,2 ; 0,0244887939300404 ; 0,0266360368216097 ; -0,9 ; Cf2A3C17FAb8Fc30D6cD0fdf0bBDe4dcCdF6F7AaaEd6cBbdb8e9Dc736c68daCE ; < PwyM23raN13X260zuqzPVQ1DI9Ko2M6lICn7cVX1vS2vNZ1f9p73rJ3yOlXaMfws > > 8 // < CALLS 0,0972056018847077 ; quote ; 0,0284026837509168 ; 0,0278346300758984 ; 0,0204081632653061 ; -4 ; 0,0272097710333783 ; 0,0295955964684553 ; -1,3 ; dA5cC543fd9B2dfeEBCA8CaEceACD3cb86c3ecAe0EEE2ECbE1246d8DDE72cfcf ; < 9wuuWqt34b5pMz15M3kV0gpe7P0HnnTb1Um9IhfL612rr1Uckh82c7TYICOl3fH6 > > 9 // < CALLS 0,102605913100525 ; quote ; 0,0315585375010186 ; 0,0309273667509982 ; 0,0204081632653061 ; -6,5 ; 0,0302330789259758 ; 0,0328839960760614 ; 4,1 ; c80CF3dEBc4Ba44BEf3E5CfF8CF5B8e64fe8baFbF60bDBDfdAFDCAFF41cb1Aa6 ; < foJEzY1F5TaL1fw90THMI0dK36rs6W17py8t3JYBTJk2L3kSD1o4Om2LdZCq2so3 > > 10 // < CALLS 0,108006224316342 ; quote ; 0,0350650416677985 ; 0,0343637408344425 ; 0,0204081632653061 ; 4,7 ; 0,0335923099177509 ; 0,036537773417846 ; 2,6 ; d0C696c53DBEb9CfbCFbA4EBB02c15cBaE74cDeeB2f83E0fEda5dCC6bdbb5ADe ; < JOU1W9fQB8i8TNWHHKm9OR14f04m9x2aUbs7219RKx1ACP77GcpVWat3OwZ31h08 > > 11 // < CALLS 0,113406535532159 ; quote ; 0,0315585375010186 ; 0,0309273667509982 ; 0,0204081632653061 ; 6,2 ; 0,0302330789259758 ; 0,0328839960760614 ; -5,5 ; BC5Eb0DAF1CDF6E0CED0BA0fCfCF74cDbDcFfA0dedecAEE46accAEedbDD7Cafa ; < Zr70b0gifzKScTC85vc8mEpuqoi7A8yt4H0g5t6Cefq87j023YqS25frcVbFv51h > > 12 // < CALLS 0,118806846747976 ; quote ; 0,0284026837509168 ; 0,0278346300758984 ; 0,0204081632653061 ; 8,9 ; 0,0272097710333783 ; 0,0295955964684553 ; 1,6 ; f3B6F23ccCea00c9BACACb2eddB93800dbBCCfA3E2bD18ADCDE3c28F8AC6Fd3d ; < JHr2788pa7Ur3518L8uQU39Tk27zF7W929LO24IUfY690jiJ5EMOp8VCKziNB1wy > > 13 // < CALLS 0,124207157963793 ; quote ; 0,0255624153758251 ; 0,0250511670683086 ; 0,0204081632653061 ; -7,7 ; 0,0244887939300404 ; 0,0266360368216097 ; 3 ; 3a54eA3fdcBA4CBE0Caf0c5eEddCABC40C22B6e10bBe1fFd0200A18C84b32bBB ; < l5bp284u8b92Wu370T4rnV7YEtH6WU51rEPYHLL7M1AzUr8oy9btBw450M8x022w > > 14 // < CALLS 0,12960746917961 ; quote ; 0,0230061738382425 ; 0,0225460503614777 ; 0,0204081632653061 ; -1,8 ; 0,0220399145370363 ; 0,0239724331394487 ; 5,5 ; 205acAacF1BF6b1B24ddeEDdbe0FBF98BecBf1faBbeaFe87caa399e7FCF3A370 ; < 397bhhc5LB3F05d4a13338850yi0t0F6Cbv4NcQ1zXcR0nwOKJ04h751774WAh4o > > 15 // < CALLS 0,135007780395427 ; quote ; 0,0207055564544183 ; 0,0202914453253299 ; 0,0204081632653061 ; 1,9 ; 0,0198359230833327 ; 0,0215751898255038 ; -0,7 ; bA0f2FaFa7bbbF5153b4cAeB75A4C8Ae32fFf97AA948Cd38DEe7cac3c61c9Abc ; < G69qgO89lyF379DsLn09R9EuQajjSyyo630eP8Ar6pS7g08gxd7z23sromhu7zJc > > 16 // < CALLS 0,140408091611244 ; quote ; 0,0186350008089765 ; 0,018262300792797 ; 0,0204081632653061 ; -6,8 ; 0,0178523307749995 ; 0,0194176708429535 ; -8,2 ; b4bcFdFbAF6a025b6fECBdfE1B1fA2adDCefCcDB2aBadbecEa6Bbc30DAFAFC7B ; < yvF7BQ9gLXuOheGqsA22F53o4wnX72zEg5EuPoYr5w2U1GViqXr8Vqv094IjCM7S > > 17 // < CALLS 0,145808402827062 ; quote ; 0,0167715007280788 ; 0,0164360707135172 ; 0,0204081632653061 ; -1,5 ; 0,0160670976974995 ; 0,0174759037586581 ; 3,4 ; CABBdFA684BdAdfAc8c2FEcFFeC64cDda536BDa8bEEBdEfAc9FCebfeadD02b8e ; < RxGb8qojAxyuLCW57k4H8PLAsiT0BWrO1sW212UD19a2q3dj4oWA8c4Ts2D6MWb5 > > 18 // < CALLS 0,151208714042879 ; quote ; 0,015094350655271 ; 0,0147924636421656 ; 0,0204081632653061 ; -7,4 ; 0,0144603879277496 ; 0,0157283133827924 ; 3,3 ; fcCdcD9A15AC0Ce62D70CACfA1515E9A5612fF9bf02cedA2a3EdADe3F4D2fE7a ; < 5sk11WCjywnbsSk1Plh6jsFoBm07s5R17948t2H2eohD8cwezGR0hbdtoP1uqHKm > > 19 // < CALLS 0,156609025258696 ; quote ; 0,0135849155897439 ; 0,013313217277949 ; 0,0204081632653061 ; -2,8 ; 0,0130143491349747 ; 0,0141554820445132 ; 7,2 ; fC01acDcfCCEC05fd7FaE92bfD1BD1cDFabb7eEeDdb81fA462b65C2A8F1BEDED ; < r1u5Dr7Q74nN57ICr37l4S12GmJ7Rq6we6A8Rh0Kmr5Y36VusJftKKJv5C0S76d7 > > 20 // < CALLS 0,162009336474513 ; quote ; 0,0122264240307695 ; 0,0119818955501541 ; 0,0204081632653061 ; 5,5 ; 0,0117129142214771 ; 0,0127399338400618 ; 1,9 ; CAdF3bcff4ea1eB13eDC6A2cBDc448c0Eb0a7DCd1bFd68Cf3AffdcDbC7ddBeAB ; < N9UfA24639522rNCqCReqSv81mKO9m4bcTFP7I5q44zOTf6s0roQgm77zkA8tgGh > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0540031121581709 ; quote ; 0,0122264240307695 ; 0,0119818955501541 ; 0,0204081632653061 ; -0,9 ; 0,0117129142214771 ; 0,0127399338400618 ; -9,2 ; 37ba1fc4ff873E34BCdCB1D72cd9fbAc9bbba29d8FdCBBE10ea8CaF03B27Aacd ; < 56v1hEmDP1KS03n2yGLdvGmgTrDpibpZvEgrB38Q79xw7HEI9Z5NXLs00uR107cQ > > 1 // < PUTS 0,059403423373988 ; quote ; 0,0135849155897439 ; 0,013313217277949 ; 0,0204081632653061 ; 6,5 ; 0,0130143491349747 ; 0,0141554820445132 ; 0,5 ; C607fE3bD2efFFed8C61bEFa77E305adEcefccAeEBE61bBAC79FBDc0d3Cbd062 ; < mrakfZn68f1jp0p1LTS7j8w8r1MelM9GRK1x4o11VNNx6oFnAsZSs0u3202JZREE > > 2 // < PUTS 0,0648037345898052 ; quote ; 0,015094350655271 ; 0,0147924636421656 ; 0,0204081632653061 ; -9,6 ; 0,0144603879277496 ; 0,0157283133827924 ; -0,8 ; eaDfDc50caBEBEabbC5d4bbafFECBF8fb2bbc2C4BbD4786aBc6a6B4f09DCFBb0 ; < gg4Z5cY7h0OiO4WSjMh42zX2k36cueqtxj03eaam0K29wGqX2dr60b8Q6kB3nReG > > 3 // < PUTS 0,0702040458056222 ; quote ; 0,0167715007280788 ; 0,0164360707135172 ; 0,0204081632653061 ; 4,3 ; 0,0160670976974995 ; 0,0174759037586581 ; 7,5 ; B57096eAc82bceEEfB6cAb3C373AAaA25C9CcE5dbFdb0dFaAEE7EE86DbFfD078 ; < 0XkJAW7Vp0r8hrVA851gFF6sw0LXxNB49yvVwCdx13qVN2uB08AI624799SxLO68 > > 4 // < PUTS 0,0756043570214393 ; quote ; 0,0186350008089765 ; 0,018262300792797 ; 0,0204081632653061 ; 7,8 ; 0,0178523307749995 ; 0,0194176708429535 ; 7,3 ; EaC3ECd19cCfd7EBe5739FbC3B3D0e5ae5bAD8faBda2c9fAb1dF820dA149D1d4 ; < QOT16f1Yg1B1fBAXtvR9n3I7j16e99Drsl0fEM8Tp0hAVT5t3jiUs8PGP8Ocqs6R > > 5 // < PUTS 0,0810046682372564 ; quote ; 0,0207055564544183 ; 0,0202914453253299 ; 0,0204081632653061 ; 7,3 ; 0,0198359230833327 ; 0,0215751898255038 ; 4,8 ; Ce2Af5DfeBD4fD3293E62fb6CCCb1FE62ADebe7D53Affcd7d7C3c3c63effe2be ; < 0tE4WxRjB0448DO2D56G5vt1Do095K60EXBGE2C1jp1HBAWxdm6E6y05T1lo57X7 > > 6 // < PUTS 0,0864049794530735 ; quote ; 0,0230061738382425 ; 0,0225460503614777 ; 0,0204081632653061 ; 6,7 ; 0,0220399145370363 ; 0,0239724331394487 ; -1,2 ; d4F7DAcCF598F5D2DaFce5eBd4201Dded0B2dCFBccDD0FAEBCf0d96eD46eBcD6 ; < s5Mi8i79595YO7r659E7XY17P4A290tev6T32gIU5Yw4N1az7YS8J9a19Wt77Yv7 > > 7 // < PUTS 0,0918052906688906 ; quote ; 0,0255624153758251 ; 0,0250511670683086 ; 0,0204081632653061 ; 7,7 ; 0,0244887939300404 ; 0,0266360368216097 ; 4,4 ; EA3CCcBAaAbF12C5965cBaBFC6c0bc40FC07bcEFbD1b392Cea16BeCa48Fc9bEA ; < RrAF851SXspd945Mne9AUuIGp13Sm1ZYFV5Hd0IIFUZYOBc3FlJgP1wo8Cio0fJb > > 8 // < PUTS 0,0972056018847077 ; quote ; 0,0284026837509168 ; 0,0278346300758984 ; 0,0204081632653061 ; 1,9 ; 0,0272097710333783 ; 0,0295955964684553 ; -2 ; 2A05DdDD5D01fd9fc18B6ffd56bDD47FbA1fAB55CFb9EE5aCb85A6AfF6b7B2f9 ; < 1VAB67479aERLU703BF1h7sOc9ve80M6OX2MELcG5NMS3nt1SmN5Po2zXULncqD7 > > 9 // < PUTS 0,102605913100525 ; quote ; 0,0315585375010186 ; 0,0309273667509982 ; 0,0204081632653061 ; 1 ; 0,0302330789259758 ; 0,0328839960760614 ; 4,7 ; FEe8C2dC8bAaa5E739eAf63bcBFBfdB46Ad5dA077CcAAe12EEEcbD68bBEE0d71 ; < IMhlxPB4a2Sbz7195xmhXfqV431GS0F0ufitso24niw5zBWk70hX56362zdh9N7q > > 10 // < PUTS 0,108006224316342 ; quote ; 0,0350650416677985 ; 0,0343637408344425 ; 0,0204081632653061 ; 2,5 ; 0,0335923099177509 ; 0,036537773417846 ; -9,9 ; 93deB65CdbE16BDE3cbF60Dbb82f0E4Aa1F5FC2f3B5bF24EC4987cf7Ec8b6516 ; < Bi97p8l1MENe3iHfEm81XZJ82F90B31uX704Jtka0bcRk0r3FinE9z2vRr0GbQ2y > > 11 // < PUTS 0,113406535532159 ; quote ; 0,0315585375010186 ; 0,0309273667509982 ; 0,0204081632653061 ; 4,7 ; 0,0302330789259758 ; 0,0328839960760614 ; -4,9 ; d72a27Ea3eBdbebbbfBEb1Cfde5aDAcAebA2dee1fdcfDA96f7C5c5e4FDEF68DF ; < 8TGz4f06ftliidCmhv33Bx6Cd959gAnBybz5r817r0V6tpZ3gh1oZgjel40817ap > > 12 // < PUTS 0,118806846747976 ; quote ; 0,0284026837509168 ; 0,0278346300758984 ; 0,0204081632653061 ; -1,5 ; 0,0272097710333783 ; 0,0295955964684553 ; 5,2 ; ffCDA5aeBCFcbC0CfE2Ba798E76C9c3aede24Dd6Ec120a7CFdcFCFC3F0f2D0bE ; < mrIm7Ta0n0B1z5s3d7P4k4Ws9q8ndVUA1s8Ve1R0V0Z7l1Uo3If6RJE4t06c0D8r > > 13 // < PUTS 0,124207157963793 ; quote ; 0,0255624153758251 ; 0,0250511670683086 ; 0,0204081632653061 ; -8,9 ; 0,0244887939300404 ; 0,0266360368216097 ; 2,7 ; DfedEeDf0efA5FDefCDaCf56C80e6AAdDDfFEbaABccf3EDABBebDE5FC4DeC6ab ; < HQXE9P8JHC0U4lrj0g4xysTHZvgE8fpQNR0Mtru1b754Rqy3D4z0iIO4rw6l2BW5 > > 14 // < PUTS 0,12960746917961 ; quote ; 0,0230061738382425 ; 0,0225460503614777 ; 0,0204081632653061 ; 8,3 ; 0,0220399145370363 ; 0,0239724331394487 ; -6 ; EfBfBbbBD45234242FCBBf79a03BF01B1AEedE0Ee9deAABEbCAFc5EcDbd3FD22 ; < srOY618HkLIp5FIFb8uiZeqAd4w2uqB8oUm58I37YpKk0nnoyxpV5883gvRRJ7L8 > > 15 // < PUTS 0,135007780395427 ; quote ; 0,0207055564544183 ; 0,0202914453253299 ; 0,0204081632653061 ; 1,7 ; 0,0198359230833327 ; 0,0215751898255038 ; 7,5 ; B81CD8ffEe0B4D23d426eef5eCC1Bff1cDa2D1DAb7dEAD1bfF353FeA0eac3fFF ; < DKe2mgpkwG94G2817O3PIpk5pXLDn42FUglcwL27r28853F8I69eHqH35ZZ2ppGu > > 16 // < PUTS 0,140408091611244 ; quote ; 0,0186350008089765 ; 0,018262300792797 ; 0,0204081632653061 ; -3,9 ; 0,0178523307749995 ; 0,0194176708429535 ; -5,2 ; FBCbEbad924e7D21Df564CDF3bA679aacfBC8aB51Dbfd6bcA23efCBBB0BD2e7f ; < Yi1o4Yp029hgYG1VTkMMdwKHGILUw809wktazMFP16TkFjl7I9gXIZvUZAhV336X > > 17 // < PUTS 0,145808402827062 ; quote ; 0,0167715007280788 ; 0,0164360707135172 ; 0,0204081632653061 ; -4,6 ; 0,0160670976974995 ; 0,0174759037586581 ; -7,5 ; BfFAAEA9CecefdE8bAb101FfFDfbf4dBEde0A8b2e6DBbE9beFDa57dBc0c4f825 ; < NLk02bE7bXO9kN182PBRzV988i7c51oGfQOEG1G0v4cd091k8JIR6D44Hr2TD92b > > 18 // < PUTS 0,151208714042879 ; quote ; 0,015094350655271 ; 0,0147924636421656 ; 0,0204081632653061 ; 9,1 ; 0,0144603879277496 ; 0,0157283133827924 ; -8,3 ; A9FfEfFDEaC5dEE53fBECFdf39B06aAdEc0D30d6cB6CfFfC8Bbe2F9EcD1bb4f2 ; < Xpe2NwjU8umSV3UI08rZC488N1jK4yPr48Qr66Pm626O6744iBLFEV7gnl5ekQoD > > 19 // < PUTS 0,156609025258696 ; quote ; 0,0135849155897439 ; 0,013313217277949 ; 0,0204081632653061 ; 6,2 ; 0,0130143491349747 ; 0,0141554820445132 ; -6,4 ; fd9feAedebC4FFaAb5Ef7e984Dda8bc3DDA1ee6D3b6FcCBBB8E693Dd6AAd5cfC ; < 190S6Oz62rh70PU8bV1Wltnd307sW501hyC4PLc7c5eTbCR42T7hVz2U8dfjYNlw > > 20 // < PUTS 0,162009336474513 ; quote ; 0,0122264240307695 ; 0,0119818955501541 ; 0,0204081632653061 ; -2,4 ; 0,0117129142214771 ; 0,0127399338400618 ; 0,7 ; aDe1e8DEBE610Accca186dca9FAa04Ee1eBDc4cd65b335Fb2bFeCe7Cc3BAC3FE ; < 9G7c4aIZtE123256A1x0RA9LItQLObky3uEi2bQpXdb5YEzoNoyjyhn982F2bzkj > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000837730962362903 ; quote ; 0,00000128938195685007 ; 0,00000126359431771307 ; 0,0204081632653061 ; -7,8 ; 0,00000125714740792882 ; 0,00000132161650577132 ; 2,4 ; Afd84dDC2EEbfAABeB5EDCbACCe9EDA8D4b76e7d7daaAF46076D9B7dEAE1E4Ed ; < trT0IHFQXt22vFVW571kTBxXIbkaMGX8P36kO1x9209G4u2UtfF1dGO521992ikZ > > 1 // < CALLS 0,0000921504058599193 ; quote ; 0,0000014326466187223 ; 0,00000140399368634785 ; 0,0204081632653061 ; 4,3 ; 0,00000139683045325424 ; 0,00000146846278419036 ; -6,9 ; 7437Bda8e6f5AB83b4Ed2D31DBA5AE3Ff0aeeF05EaCADeE9Ca6fbCDDacADafae ; < Ebz938XeO78F48gjx6s4lRE1H1ZP1k7SWwQwk1jrgbaXxoH0fD2br5m03l7w7098 > > 2 // < CALLS 0,000100527715483548 ; quote ; 0,00000159182957635811 ; 0,00000155999298483095 ; 0,0204081632653061 ; 6,9 ; 0,00000155203383694916 ; 0,00000163162531576706 ; -1,1 ; fB553Da24E227BF29Ffdfe2Af9dc8CBBAd1bD24B8D64AfFBBDea0aED3E55eBbf ; < pE33kjZ4c3y1E1ZVVIY6fX3TaLu1g9zqQPWng13VlwPh6lf78rG5qc8b04XIGoK9 > > 3 // < CALLS 0,000108905025107177 ; quote ; 0,00000176869952928679 ; 0,00000173332553870105 ; 0,0204081632653061 ; -1,8 ; 0,00000172448204105462 ; 0,00000181291701751896 ; -3,9 ; DFBa790cbFE37f984Aa66bf6A332F87BFCbF4f0FCEd85CDBf5B3cBAB2aacbdad ; < 87U8xa6IxCgUSIC6TN8AF9608L5VL8KmV2uW7esgf80QSjUUEcuqbYLG3yu4112t > > 4 // < CALLS 0,000117282334730806 ; quote ; 0,00000196522169920754 ; 0,00000192591726522339 ; 0,0204081632653061 ; 6,5 ; 0,00000191609115672735 ; 0,00000201435224168773 ; 7,6 ; Fddc7ADacAf7c8ca993aa89ED3b7e0bf0679aF9Aa2D30fcf7BCCAFbbEDCfC229 ; < m3Cso1I72W08GPZwH24Klel84Y3c52e3Ibb5pUEVvKSg751jJCal482b3Nmy08Ig > > 5 // < CALLS 0,000125659644354435 ; quote ; 0,00000218357966578616 ; 0,00000213990807247044 ; 0,0204081632653061 ; -4,9 ; 0,00000212899017414151 ; 0,00000223816915743082 ; 1,1 ; 0BC8CC40EB3d63F15A64098df3EAA36dBF0BdE6bc8FAeAaefcae3dBCDBadA2EA ; < Q102LMSBIIBi9eW4y95nXE3WESyWBRZrmloB2y3V4N05dZbIdU10qZHTN55lgmbN > > 6 // < CALLS 0,000134036953978064 ; quote ; 0,00000242619962865128 ; 0,00000237767563607826 ; 0,0204081632653061 ; -1,1 ; 0,000002365544637935 ; 0,00000248685461936756 ; -3,5 ; f549ECFe81fC3ebd436DbeA2DbA9d9bc9aEd8a5Dcab89c7075aDbabbCbCAED5C ; < FtiKT2Mb6uH33yUfQBUl7wBbSVo6rQWFS8G05h31LepJJW2S8w3ltpb7Ikcx18Ys > > 7 // < CALLS 0,000142414263601694 ; quote ; 0,0000026957773651681 ; 0,00000264186181786474 ; 0,0204081632653061 ; -1,8 ; 0,0000026283829310389 ; 0,0000027631717992973 ; -7,1 ; B4Bd4EB5FbAe2c3E3defB9a4e8502EdcA812bA4CCEfdf1c9CDECd1Ad084fd955 ; < 9FFz708i7kvfdGtP9vHVb9pjqflf5fmUS9b4400Y66v9w7sAQp3vQUmYqPgGERtS > > 8 // < CALLS 0,000150791573225323 ; quote ; 0,00000299530818352011 ; 0,00000293540201984971 ; 0,0204081632653061 ; -6,9 ; 0,00000292042547893211 ; 0,00000307019088810812 ; -3,4 ; c67eE6e5BaebFbBd6C7c69Ed33aB8AaDde7dD46da0eA0Ad2d4bbd3D383db7Fc6 ; < wj88WEW0g3uRkCG0HInkTfBb5eafpNT66eYOaB8LrnEztz6mNJQ8SKO74Xjcok82 > > 9 // < CALLS 0,000159168882848952 ; quote ; 0,00000332812020391123 ; 0,00000326155779983301 ; 0,0204081632653061 ; -7,1 ; 0,00000324491719881345 ; 0,00000341132320900901 ; -5 ; c2fE7EAb8ca3F310DbDBDae8CbdaAbbFedCA6Fdf7D01cA54eF25DaDf3b7C54F9 ; < ii6w2zwJF00La9Uo3B9JzZt2V92i78c7X6ORhkW4gbONP1a1WN498xD80j852913 > > 10 // < CALLS 0,000167546192472581 ; quote ; 0,00000369791133767915 ; 0,00000362395311092557 ; 0,0204081632653061 ; 9,1 ; 0,00000360546355423717 ; 0,00000379035912112113 ; -5 ; a28e6BAafd5EEAC69748fbcbEB33DFAcCc46b8dfE72BcCEFBAd0cAFB3FCAB2A0 ; < y3CHvR998h1HM0Az9OgfMLdL1731q5036856nt904Vqix1u15511sMXF87Ek41oO > > 11 // < CALLS 0,00017592350209621 ; quote ; 0,00000332812020391123 ; 0,00000326155779983301 ; 0,0204081632653061 ; -4,6 ; 0,00000324491719881345 ; 0,00000341132320900901 ; -4,3 ; FD875E9D8BB328DFabeAfd0ED72F553a852daC89F3D122dAE3f99ee4762feE0c ; < 26GOQPx91JIPT39QPxrXuqtzC71w9P5iE1s8xCH8n8fsE62c1wcv8I23OC3nb5h3 > > 12 // < CALLS 0,000184300811719839 ; quote ; 0,00000299530818352011 ; 0,00000293540201984971 ; 0,0204081632653061 ; -3,3 ; 0,00000292042547893211 ; 0,00000307019088810812 ; 7,4 ; Ca7AaAcAdad9CAf1Bb54BbBcd7abcA8DCF0d8EDF66D4B8Be1aD2D5c7becF7e0c ; < 18svcjF50gf278Z8u6z9E2pfGdu57v91xs2q6sA9zyT63A4mrt14Q8qxJne4qE6S > > 13 // < CALLS 0,000192678121343468 ; quote ; 0,0000026957773651681 ; 0,00000264186181786474 ; 0,0204081632653061 ; 4,9 ; 0,0000026283829310389 ; 0,0000027631717992973 ; 4,6 ; D111EAA5aAA9de97fFFcF57CDE17e7ABBcD5EbaDcCb75dCd0eB05B1b7BCfceCa ; < IC9LqLG8Fv58n8e7Qh7Os35FYrvNJpi8aIVeQ86s3YF59Va3585J58mB2056BSqQ > > 14 // < CALLS 0,000201055430967097 ; quote ; 0,00000242619962865128 ; 0,00000237767563607826 ; 0,0204081632653061 ; 9 ; 0,000002365544637935 ; 0,00000248685461936756 ; -5 ; c01EbFbaFAEAFfFdC4a4FcD8dF6f0fffbB7eeae6Da5fBAb47f6AACD8b1C85CBb ; < 87jWueLxr2in9XJzIH9Y5d5u72n4o6zUv1eHU8vkNSY9vJ1UGtJj5pQ6959c7IJM > > 15 // < CALLS 0,000209432740590726 ; quote ; 0,00000218357966578616 ; 0,00000213990807247044 ; 0,0204081632653061 ; -4,4 ; 0,00000212899017414151 ; 0,00000223816915743082 ; -3,7 ; f11b4dcf8EAcDb92aCae02bDd29AB1a4FCfEdf911B34beB36dc7A83658ABDFfA ; < lteBp1s489949c959DRUIo3CkYTd0I9oif3xaD286I3N82KJ77RIRqsFiaA5q62j > > 16 // < CALLS 0,000217810050214355 ; quote ; 0,00000196522169920754 ; 0,00000192591726522339 ; 0,0204081632653061 ; -1,8 ; 0,00000191609115672735 ; 0,00000201435224168773 ; -4,3 ; 8A16cce059DfF33522cEB01Ca9eBbDafFc8FD2ECddd622FAa35cCeBd13F9C8a8 ; < B907M582VGxZ1FT98s0MsHHHo8hnm0aBrCD1rwi44BuPUe8IIePu3lUIZ4cTkkU9 > > 17 // < CALLS 0,000226187359837984 ; quote ; 0,00000176869952928679 ; 0,00000173332553870105 ; 0,0204081632653061 ; -9,8 ; 0,00000172448204105462 ; 0,00000181291701751896 ; -4,5 ; CEfBEEF1dea21FFaACdAB2cfc1Bb6fF1E293EED2C4D66Dea754C91a359Aa6CE5 ; < E99k4Ayt6C5YzFCke9DisYlpPOFauRP1NFkUHfgcQdTTuYq7dy2jP5wx95F2CDP1 > > 18 // < CALLS 0,000234564669461613 ; quote ; 0,00000159182957635811 ; 0,00000155999298483095 ; 0,0204081632653061 ; 4,1 ; 0,00000155203383694916 ; 0,00000163162531576706 ; 5,3 ; 0C7eC6eC9622c7DCAb5d9cf5afBBBeA680F5F4FA5cdCb38Cd8Cae6C8eAf68aaf ; < xST1qYN5ZfSbd973A2405LVfvk66y1YY16fGbSvh5Jd0sPjRDyr4NIo15yo1mK8G > > 19 // < CALLS 0,000242941979085242 ; quote ; 0,0000014326466187223 ; 0,00000140399368634785 ; 0,0204081632653061 ; 5,7 ; 0,00000139683045325424 ; 0,00000146846278419036 ; 3,7 ; bEcDBBdBDaedb6BA9a0aEe4ab5d2Cfb4Dab86ac6Ba990EB9cF3Ae9BCBea4A4CF ; < h2jMaAhr3uP1sVbYQWko2W0X6T32YX07xX96tyC82C5S9sjNzMh16Iixktf2z9Qn > > 20 // < CALLS 0,000251319288708871 ; quote ; 0,00000128938195685007 ; 0,00000126359431771307 ; 0,0204081632653061 ; 1,4 ; 0,00000125714740792882 ; 0,00000132161650577132 ; -7,8 ; 01bc8A4a116bFC0Af5AdCcbfFE46ca2C9223BefAA3CaecEea0905ba5efB5c49b ; < 7V1S299lO2YW8C46zQ81sM56wUcv5KYbus6Wc935V49s61lVjMMrx0wQ2Zv1q3W4 > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000837730962362903 ; quote ; 0,00000128938195685007 ; 0,00000126359431771307 ; 0,0204081632653061 ; -5,7 ; 0,00000125714740792882 ; 0,00000132161650577132 ; -0,6 ; CcbFEb59626eAFF2EA6187e0e9d8aCbbedCFabfcBCceA8cFbF30c0fdeBa5C9B0 ; < Q2l8a40kop3tcr248tdMJA97EUDHlX3rhU3aqy5R5YZRnAaC6M1Tvk7s208fa4UH > > 1 // < PUTS 0,0000921504058599193 ; quote ; 0,0000014326466187223 ; 0,00000140399368634785 ; 0,0204081632653061 ; 1,1 ; 0,00000139683045325424 ; 0,00000146846278419036 ; 3,9 ; 8010CCaDA8DFcAFFCC94eDDbb3f33CCCD3f3fbAcf8Db4FaEDD33FaCA7498edC3 ; < ojVdv7o3hIMJI2ZrG05dRq40cjf6iNrA2H09I302J7p95BY4i0mNUKzvGLp3INqD > > 2 // < PUTS 0,000100527715483548 ; quote ; 0,00000159182957635811 ; 0,00000155999298483095 ; 0,0204081632653061 ; 0,5 ; 0,00000155203383694916 ; 0,00000163162531576706 ; 3,2 ; Fcb0d649a7ffDeaAebCF85DCFaddA1f5eEDfd6Ee627c6bF7fDEC4058Dddf5aa7 ; < 5tfo6QGobPjWew45E5Nr7lrG5IoJzxpRv9052n4l6L9MuB7BT9hi8s8EkTn1A4Ma > > 3 // < PUTS 0,000108905025107177 ; quote ; 0,00000176869952928679 ; 0,00000173332553870105 ; 0,0204081632653061 ; 4,5 ; 0,00000172448204105462 ; 0,00000181291701751896 ; -0,4 ; 4df5B4d0cA88CfedbeaBcCb776D8EBDB48ceee26dE8ddEB80CfaBB4ABD0E83eF ; < E79db95gR5a9lfd3zNY7gpyqCVXBweuKu8P585pvPuWGqWBOKyHb7sFHp8UbYGsC > > 4 // < PUTS 0,000117282334730806 ; quote ; 0,00000196522169920754 ; 0,00000192591726522339 ; 0,0204081632653061 ; -9,7 ; 0,00000191609115672735 ; 0,00000201435224168773 ; -3,1 ; AAa4f9edbAEdae8f5CdFaC7D3b9eCC2CDbbDd9C80fE0e7EFfcaDE8DDeFea7a88 ; < 6Xy4vrMjbT915s259f8r84nPImi93K4gio4hSMEAk5b4OJbQWDLKQnmBU9R821sL > > 5 // < PUTS 0,000125659644354435 ; quote ; 0,00000218357966578616 ; 0,00000213990807247044 ; 0,0204081632653061 ; -2,8 ; 0,00000212899017414151 ; 0,00000223816915743082 ; -7,4 ; 11a78AbF63C2bAAf9FCca02ac22B62B47adBFa13877afDFBbEdb746Cf1DACB3F ; < 4DZ1mozSG4oW0lL3G7CNlY28jf69ZxcLxr6N4uQejt15S106a7st022PO7N6spp4 > > 6 // < PUTS 0,000134036953978064 ; quote ; 0,00000242619962865128 ; 0,00000237767563607826 ; 0,0204081632653061 ; 5,3 ; 0,000002365544637935 ; 0,00000248685461936756 ; 2,6 ; 1E0f2ABF2AEb59e2fdec2FFFe050b580AEFBd20ebd7350AAeAedDAd3FcF535CA ; < IjcOqsQtWy9isup7G1j5uo28i6KRV1exZZ7mWpd05X9Fk9CtQA9bBwyn812BPfq4 > > 7 // < PUTS 0,000142414263601694 ; quote ; 0,0000026957773651681 ; 0,00000264186181786474 ; 0,0204081632653061 ; -1,9 ; 0,0000026283829310389 ; 0,0000027631717992973 ; 0,2 ; BBFe80CaEf04Ed7E8DfA8f1abAba50aa143eBFdb0cdb8Dc5EAaa6B67dA8C13ab ; < nyWuz7570CB63mNfh0C9kfagMRtfV09qzDxyn3izS4NZ185Mva5Dvp146W4C3J3d > > 8 // < PUTS 0,000150791573225323 ; quote ; 0,00000299530818352011 ; 0,00000293540201984971 ; 0,0204081632653061 ; 4 ; 0,00000292042547893211 ; 0,00000307019088810812 ; 2,4 ; EEE4Af20F3BAF1BDACC8fDc5863dA0EB0b19eB9cceFAd6A2dcdB8bBe1A9db65e ; < X7gyH936jhEtk5U1s020t75A3th5Vn87B91Zsfgyv01zg8RRrJ5lxm6W60g6ziMI > > 9 // < PUTS 0,000159168882848952 ; quote ; 0,00000332812020391123 ; 0,00000326155779983301 ; 0,0204081632653061 ; -5,8 ; 0,00000324491719881345 ; 0,00000341132320900901 ; -5,1 ; 4CBfDbD3DdfEdbeE8f7DBB81B3cFbE4df941c4A3359C6CFD8A77bCBA9dEE3CEA ; < hmL3vrB6SIl9H0jtQ1iE3S2hitqeqafohGLLUWLJcfDhX5910d33u1nAOtx21gEw > > 10 // < PUTS 0,000167546192472581 ; quote ; 0,00000369791133767915 ; 0,00000362395311092557 ; 0,0204081632653061 ; -0,9 ; 0,00000360546355423717 ; 0,00000379035912112113 ; -8,3 ; cF05df5B1EbA6b436AAD6bfB5E0abB3fb5C1fb80Af5CaA5dABf4CF9eA215caDB ; < 29do90mr75Xa993M5hu30i1X2VHv0gT8b0t6nA55ET24DuT8O9q38Z6PC5K8EKnG > > 11 // < PUTS 0,00017592350209621 ; quote ; 0,00000332812020391123 ; 0,00000326155779983301 ; 0,0204081632653061 ; -2,6 ; 0,00000324491719881345 ; 0,00000341132320900901 ; -8,9 ; 4bD7d9fdFDfE6eAe7dCEcec5F0AC4fAf5066Dceaded9A0ccEEDCbdfcDA844e0b ; < BA9k0t63dq0814yL0Sa827As5RuC9Z9jRE20dOa83Hdl4C5sQ564zpPYMqFFqUwj > > 12 // < PUTS 0,000184300811719839 ; quote ; 0,00000299530818352011 ; 0,00000293540201984971 ; 0,0204081632653061 ; -9,1 ; 0,00000292042547893211 ; 0,00000307019088810812 ; -4,6 ; BfEEfAfEA7a2E527dAf64BDf7EfFBea4bBdFBcE0def5cC171c4cbC71feba472d ; < zGAUU07lyM3nNskBjxH38ubwCL2ifk7z4IX88r6t64310rDtJ6icISJ70y9X4x30 > > 13 // < PUTS 0,000192678121343468 ; quote ; 0,0000026957773651681 ; 0,00000264186181786474 ; 0,0204081632653061 ; -1,6 ; 0,0000026283829310389 ; 0,0000027631717992973 ; -3,8 ; edd1Ec8DCC3aeED6d007AC1AFD6eAbe1Ef02b1d2BaD0BEeDbFbA96B71B26BD4d ; < rqzy9gRSVP7p5n9070lySDFPooE8N1l68sn4Dcu1ou5qtx2y54SlFrAR6GzEI3UB > > 14 // < PUTS 0,000201055430967097 ; quote ; 0,00000242619962865128 ; 0,00000237767563607826 ; 0,0204081632653061 ; -6,6 ; 0,000002365544637935 ; 0,00000248685461936756 ; 7,1 ; C83FBc98dDae53bbB392f122181eC2C6d484ABE5bBdE855efA3bC8Fab87EbE5b ; < 3CDiRc3JFr944D78QhcVqTxnaW2xRXJ8ps2eL294f5zqzR9rF1ob3QM46mVaw5Tz > > 15 // < PUTS 0,000209432740590726 ; quote ; 0,00000218357966578616 ; 0,00000213990807247044 ; 0,0204081632653061 ; 5,4 ; 0,00000212899017414151 ; 0,00000223816915743082 ; 3,5 ; d53DFcA1C3fa2BcC3CED2dBb0B2A60CCB19F1Bf5bbC8ABDffEeB404BBEBf8Edf ; < O3Q8jGzuByCw9zu15H3tjTgb43q0Jxi6G07p7kv7wGHRCdqTJJQ4Rb5er00539eV > > 16 // < PUTS 0,000217810050214355 ; quote ; 0,00000196522169920754 ; 0,00000192591726522339 ; 0,0204081632653061 ; 3,1 ; 0,00000191609115672735 ; 0,00000201435224168773 ; 3 ; 741Fc8FccFfadDD3Faf3f5eaaEd11F8CBDa0Eed6ceAaFb2bAcDEEF2bAb5BB4BB ; < PG5021xk724DE0C47KlCdhi6R8iUpsdfErVav8k0841K92iJ03p8UOCyc41cOpUz > > 17 // < PUTS 0,000226187359837984 ; quote ; 0,00000176869952928679 ; 0,00000173332553870105 ; 0,0204081632653061 ; -1,8 ; 0,00000172448204105462 ; 0,00000181291701751896 ; -9 ; 3da1DB5d0DFEef57Eaf10D7Ce9Aeb2DeBe4EBbacE0F65C9abC7ee037eB6af8f1 ; < h129gS9n405994z46YEfMgB8I0zkmm5lBNvaD3mGAd9u5wvb42R8tvj5WS287Ev0 > > 18 // < PUTS 0,000234564669461613 ; quote ; 0,00000159182957635811 ; 0,00000155999298483095 ; 0,0204081632653061 ; -2,4 ; 0,00000155203383694916 ; 0,00000163162531576706 ; -5,5 ; e7Cfd6A884ed8DD00ceBFF1d1672C6cbb45BCAc3dF2Cbf1a1757b919AB85c488 ; < 5Oq9KD9Wtv13rEJ047Dh2239NE11Re2W2js52506Y25AS2702e0uL2yqgUy6WBVq > > 19 // < PUTS 0,000242941979085242 ; quote ; 0,0000014326466187223 ; 0,00000140399368634785 ; 0,0204081632653061 ; 4,6 ; 0,00000139683045325424 ; 0,00000146846278419036 ; -2,1 ; 31c7Ddd7fB2cC4FeEBC8f10daeeBc8Eca5d9c8D7ECFADc67F347FF37d2D34ae5 ; < Aj8vQ9kVKa5rrcTVb59Xvg9Y0a5Pqr0kecen3eL27uUdJNrWtLxW27IsOvy451xE > > 20 // < PUTS 0,000251319288708871 ; quote ; 0,00000128938195685007 ; 0,00000126359431771307 ; 0,0204081632653061 ; -8,6 ; 0,00000125714740792882 ; 0,00000132161650577132 ; -7,1 ; DCAeB4D1DACdF8B6D95b6B363043f26E1Aacae58adfbBC722EecB1AE0Bb1BAe4 ; < ylquxZacqdo9rDbif7w22200l4PBTT2E8OKNucO2Z88IaErhff2wZ12eaSn5yczr > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000838714890997729 ; quote ; 0,00000272216084152049 ; 0,00000266771762469008 ; 0,0204081632653061 ; -1,5 ; 0,00000264049601627488 ; 0,00000280382566676611 ; -8,8 ; ea9Bc8Ba96CbE656b77Cc0AE567AEA85aEE7B71AB5E2fe1AEec6fF2dCa68eEEA ; < GfipR7jKMV8e1QzJRD6Go3AXtToe64998lAasPBt6a228O0pZ199aiw80170v71z > > 1 // < CALLS 0,0000922586380097502 ; quote ; 0,000003024623157245 ; 0,0000029641306941001 ; 0,0204081632653061 ; -1,7 ; 0,00000293388446252765 ; 0,00000311536185196235 ; 7,3 ; e53AE1BE3c5d5cDDf0E7e3D1bFB09d1a7B4c70dAB6F1eab7bBDb4eCfAFFFA2EE ; < Rf4tI379A2SIkKPukjQ9M4wrW2OMm810wL6291PguW86bJSV78EC3Sj7gs3tS7iu > > 2 // < CALLS 0,000100645786919728 ; quote ; 0,00000336069239693888 ; 0,0000032934785490001 ; 0,0204081632653061 ; -2,3 ; 0,00000325987162503071 ; 0,00000346151316884704 ; 6,1 ; 86C028aAdfc4ffb684dCaaEAcDdafcAFdbc83Bfe0f6bBa1fc5BAFfbFEDa4344c ; < s1wS1vQ3qBHIIMX23Ji3A064YuyK213729M7jTaU6nMyxP21A8n2V2wr9LtoSf1M > > 3 // < CALLS 0,000109032935829705 ; quote ; 0,00000373410266326543 ; 0,00000365942061000012 ; 0,0204081632653061 ; -0,6 ; 0,00000362207958336747 ; 0,00000384612574316339 ; 7,7 ; 9ecFEBEF86E3F31efBC0dFDEEf5cdEbA2Ea083eb6bCbA3eF8739cEcDbdBEcE0B ; < MOIB401EBNhpMg3CIRPbLlG0pk17Ye3XDT8A8J2fWvZ1a36qRut94nY9uqFY08Fv > > 4 // < CALLS 0,000117420084739682 ; quote ; 0,00000414900295918381 ; 0,00000406602290000014 ; 0,0204081632653061 ; 7,7 ; 0,0000040245328704083 ; 0,00000427347304795933 ; 7,3 ; dD4AF6EAD5BfCEee3b9fd98eBF1B3DF1b0BFF6eddFD2C1AeeCBA41AE09343E4E ; < 8i3B8vbg26Xj4t6csEgXTIYd5jI08nGuEcQp2ioOiHLzu2Zw4FDTt6Wkb4HGCPuv > > 5 // < CALLS 0,000125807233649659 ; quote ; 0,00000461000328798201 ; 0,00000451780322222237 ; 0,0204081632653061 ; -6,8 ; 0,00000447170318934255 ; 0,00000474830338662147 ; 4,1 ; FEa8FDAdafADC9F52fcFF3E4BEdf1eeaaeCECC2eb4B3613Be1EaCE6Ae7fb09Aa ; < rHu4g81QrL3z0HBJxMGOTPUICyt9O17O816cRttRK39S82qmle0g6O0bDJm7XeAw > > 6 // < CALLS 0,000134194382559637 ; quote ; 0,00000512222587553557 ; 0,00000501978135802486 ; 0,0204081632653061 ; 3,7 ; 0,0000049685590992695 ; 0,00000527589265180163 ; 0,9 ; 3d2F154DD60beA9bc3e2aFf4af8Ddd9Fca4CBec48dFfB08FEDdFbCcfA06ACf20 ; < E0k04wM2K8r8aCxtz3Y5Wm97x4y6eFFvMhkp2lrrDfHE0ShDo0O9NK41RK885mT0 > > 7 // < CALLS 0,000142581531469614 ; quote ; 0,00000569136208392841 ; 0,00000557753484224984 ; 0,0204081632653061 ; -0,2 ; 0,00000552062122141056 ; 0,00000586210294644626 ; -2,1 ; bba742A2AcAedbC178ab8De1Db3CcaDBc8Dbd0FCF9f1F1698e0CDdBa7A4dbf30 ; < bGU2eI6I7BXl2J89EfSRH99s9X97kfWTjQ56i6m804M5d71HzH09m7B59i75ts37 > > 8 // < CALLS 0,000150968680379591 ; quote ; 0,00000632373564880934 ; 0,00000619726093583315 ; 0,0204081632653061 ; 0,9 ; 0,00000613402357934506 ; 0,00000651344771827362 ; 5 ; 19eFFe4B5fbcc90c48bece5bDAbBdedfDbb66C29E7ba7B2CABc6a5C3AbcdAEcb ; < SThK5B3PfHU65R52hS7amU7033s09514KFC159PItZKQxNT4NLR3tJWmBl918bK0 > > 9 // < CALLS 0,000159355829289569 ; quote ; 0,00000702637294312149 ; 0,00000688584548425906 ; 0,0204081632653061 ; 7,6 ; 0,00000681558175482784 ; 0,00000723716413141513 ; 2,7 ; E9F33D663dEB5AFEDae7D713f84243ddaa0FfeFe5Acec6CcFBeccef9F2ceC9ED ; < 2fYpW6l6SPQfPSa4Jd9Y5wR061j6qD08d2CZy7HdH9a341b4hPOkManMZ83pe1wq > > 10 // < CALLS 0,000167742978199546 ; quote ; 0,00000780708104791276 ; 0,00000765093942695451 ; 0,0204081632653061 ; -5,3 ; 0,00000757286861647538 ; 0,00000804129347935015 ; 5,9 ; eD46D26e0ca9efbfAe65dBf3ec5FffFbCEEEbEb05A12fDDC3A3DbffEe2A1A8E5 ; < 0JyHDRo283VfpkE2jH8jzX3an1RbOG33M23FU66dE0RnwAnt11oc1U8rLUj9L5a8 > > 11 // < CALLS 0,000176130127109523 ; quote ; 0,00000702637294312149 ; 0,00000688584548425906 ; 0,0204081632653061 ; 2,7 ; 0,00000681558175482784 ; 0,00000723716413141513 ; 7,2 ; FCECea4014390fe3bdDE32D6FFFBdBA5c3A09BB7BCCf0CCB51cfAeAC05aE1C7E ; < DR89q903fn8U607OAH4xx6p19oIhKRVd6SL10A0jwJ7HhKQlEo3H7e1JxL6m4T8c > > 12 // < CALLS 0,0001845172760195 ; quote ; 0,00000632373564880934 ; 0,00000619726093583315 ; 0,0204081632653061 ; 8,6 ; 0,00000613402357934506 ; 0,00000651344771827362 ; 0,8 ; fDBC8Fef1481eb843FCdD8a1fF9BFB52eaf8aD8b14479cE49eDBE89aae4a81f6 ; < 86e271u8exrt4M0aY69R2nOy5zc0UDDA6QYMfAbGCGH9rw27L4l4fvO9o17Imq40 > > 13 // < CALLS 0,000192904424929478 ; quote ; 0,00000569136208392841 ; 0,00000557753484224984 ; 0,0204081632653061 ; -0,7 ; 0,00000552062122141056 ; 0,00000586210294644626 ; 6 ; df56cCab7EFAf74fBDD99DBaCa8FD9adFEb29bfEaeAbBCBF4E4E3401e22ca6CD ; < 5yn8h316BMGw0FFl1MzIh78CrGAkXBO7k2x28yzcI4TvYZpR5IsVw74rmF95n7Fl > > 14 // < CALLS 0,000201291573839455 ; quote ; 0,00000512222587553557 ; 0,00000501978135802486 ; 0,0204081632653061 ; 2,6 ; 0,0000049685590992695 ; 0,00000527589265180163 ; 1,8 ; Bc66bb1fefcCbfDAdfFbbFB93EDb018eD80FFAf936f77B258c2Fd5A7E6a7d511 ; < GLQ13G2V8F263fCq2Xe3L4JA58enSG3uooxjdV96lQa79sN7f7O15TLt00XDjMam > > 15 // < CALLS 0,000209678722749432 ; quote ; 0,00000461000328798201 ; 0,00000451780322222237 ; 0,0204081632653061 ; 6,9 ; 0,00000447170318934255 ; 0,00000474830338662147 ; 9,1 ; F785Fead1AbeB3BfBBeadAc8F0BAE0e3df755FF434aafdd83bdF95b58cbAAbaE ; < 428nSssR6Cs93b0y5rND6V7L82QE4Qc39TtYhvrQI78d7m4yK93ob71hI6HmppEr > > 16 // < CALLS 0,00021806587165941 ; quote ; 0,00000414900295918381 ; 0,00000406602290000014 ; 0,0204081632653061 ; -4,3 ; 0,0000040245328704083 ; 0,00000427347304795933 ; -2,6 ; 3bfF5abAfA9aCE2FbC3CEEfe2CEd90F64a6cDbA4D3Fbea3807bf33d1EAFA7B8c ; < JI7EeR1370cNCU6cg96j1llYg9OqAjp8MEfWlk62lCrvYlhQ14RUtdnWp1V99604 > > 17 // < CALLS 0,000226453020569387 ; quote ; 0,00000373410266326543 ; 0,00000365942061000012 ; 0,0204081632653061 ; 0,2 ; 0,00000362207958336747 ; 0,00000384612574316339 ; -1,3 ; d4e9cBAfA01cebc0f3d5f59ABDe6C207dDfCd5CCE8aBeAd82a9fEcEFe6eBdaA0 ; < 9aq200mg0e65EuOevB2VRJGj0T9v53Psk8U20nOFvoIP77Vm13zbkKw4VX8LdnTn > > 18 // < CALLS 0,000234840169479364 ; quote ; 0,00000336069239693888 ; 0,0000032934785490001 ; 0,0204081632653061 ; -4,7 ; 0,00000325987162503071 ; 0,00000346151316884704 ; 1,6 ; 1eF0ecaFdA5beeE4aa9BAFA3bA080CCbcf6C4daea8649B32dFBbCda0fDDa4Cf5 ; < NNP1zqgcc44QxuptNgrBG7I187k5Wq1oXzPAxVfDzmHhC1hZF5Dp2aAJ589L5zjU > > 19 // < CALLS 0,000243227318389341 ; quote ; 0,000003024623157245 ; 0,0000029641306941001 ; 0,0204081632653061 ; -1,4 ; 0,00000293388446252765 ; 0,00000311536185196235 ; -1,2 ; EfCEAE6b03D0aAd3Cb6FbFFefbc0FcA6CCcAFC7bC91fece3b47D4c6E43FbBabe ; < T7qsCn2P8J0f56Ek1230xR9UTeH6l5267yxN46ocp7fyQcMGBrnKWV815Qz89C5q > > 20 // < CALLS 0,000251614467299319 ; quote ; 0,00000272216084152049 ; 0,00000266771762469008 ; 0,0204081632653061 ; 3,7 ; 0,00000264049601627488 ; 0,00000280382566676611 ; -3 ; a18f0fFA5A13c841be3Ce0EaB746BacE4ddba0DDcDaed70a3daBEb63Ad4E10BB ; < 957rCwWg72ry77c1z0vT89kvtNsHzY3ehv16g7JENk1l7H4QX011PL1q07HyLjvi > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000838714890997729 ; quote ; 0,00000272216084152049 ; 0,00000266771762469008 ; 0,0204081632653061 ; -9,9 ; 0,00000264049601627488 ; 0,00000280382566676611 ; -8,2 ; ebcbd11CaDbEbFE61cFf4d3AEDDfbE22FAEe76CFb9ecCAb5f6e6fE91cCA1AeE1 ; < 8E4c5wP6WtMR6bj3IlNLU9rcly5nz1pUw77b11G8TTPQT2xy5S4Cw2I1Dv8YbOk1 > > 1 // < PUTS 0,0000922586380097502 ; quote ; 0,000003024623157245 ; 0,0000029641306941001 ; 0,0204081632653061 ; 0,9 ; 0,00000293388446252765 ; 0,00000311536185196235 ; -4,8 ; Db8bABc8C5D229bcaE3beD24aE925f6854fBCA5CFf1bF4D07fCE5bceA11c6ABa ; < nmWZE2Zl6iC8EX2Ce2jzaBE3776j6479G2LR6J6oSYmTe3E6mkyCZa3cJBxz365A > > 2 // < PUTS 0,000100645786919728 ; quote ; 0,00000336069239693888 ; 0,0000032934785490001 ; 0,0204081632653061 ; 3,5 ; 0,00000325987162503071 ; 0,00000346151316884704 ; 3,3 ; 6a9fBe457A8fA6CC7c0B0dE399CEEf4dE86bAeFeBeC5BCd6f30C0DaDB3dDeC9F ; < UuRu8G71XiM7Ht1W29082OkQ1ic65Z0re3C7Z3L3g384gwL02z4W0bn1sptwW3TK > > 3 // < PUTS 0,000109032935829705 ; quote ; 0,00000373410266326543 ; 0,00000365942061000012 ; 0,0204081632653061 ; 3,5 ; 0,00000362207958336747 ; 0,00000384612574316339 ; -7,2 ; 5F4FDf83d9fdCbeedBCeaD9d4E0eb9a9fDFcE204ebe97AEd50D76cE5acCe3F5B ; < AWx019o8y9t4yLxzf0OT8n2s49s7Vnh0kfSUG9n5LW49t0JWh1Md76S8wmbQr4F2 > > 4 // < PUTS 0,000117420084739682 ; quote ; 0,00000414900295918381 ; 0,00000406602290000014 ; 0,0204081632653061 ; 7,2 ; 0,0000040245328704083 ; 0,00000427347304795933 ; -1,1 ; 9764CbEb05DB4bce6Afb0E7f3af0c9bE5ced1969E7E4BAdAEAcBDCE9f2dECb68 ; < Y40H4QN5CIkWdtP06Nd4cvo6x8NI3AGEEwbhiMI54mec98at4kLx29pM4uS9vxc2 > > 5 // < PUTS 0,000125807233649659 ; quote ; 0,00000461000328798201 ; 0,00000451780322222237 ; 0,0204081632653061 ; 2,9 ; 0,00000447170318934255 ; 0,00000474830338662147 ; 8,3 ; 7061E37F946AeACCcb59ffE41ad4f1ff89c3D6DD0af6beeD2C960AD1D3cebD0d ; < o9t4Pey9c7914Ln2jy6rtq38iYw0RAC9j93T5k62297uWvj52Zrd0AEKi6gR0n1M > > 6 // < PUTS 0,000134194382559637 ; quote ; 0,00000512222587553557 ; 0,00000501978135802486 ; 0,0204081632653061 ; -9,4 ; 0,0000049685590992695 ; 0,00000527589265180163 ; -9,7 ; dA9B2ee469d1bbf4BfC7eeCABaa9cBc13E6bB12Adab680EF9BE8dd38deBfecAe ; < L5RyBMiH6rdWosmszjVqP1WKHK2Zk9Aeje9jEDdkT29ibuOLkr07JECAlOHfju5S > > 7 // < PUTS 0,000142581531469614 ; quote ; 0,00000569136208392841 ; 0,00000557753484224984 ; 0,0204081632653061 ; -6,3 ; 0,00000552062122141056 ; 0,00000586210294644626 ; -2,4 ; 89dedbDbFC29Be1cC0886DEbc87a1eCeECeeaCBEFCb78FA8a83cBC3eFf5c88b6 ; < sSqS2HhFIV02r99neeF2y96fo7JWc715lAxO3FHT4c8vYw1uL6D1Woq9s5uGkS76 > > 8 // < PUTS 0,000150968680379591 ; quote ; 0,00000632373564880934 ; 0,00000619726093583315 ; 0,0204081632653061 ; -2,3 ; 0,00000613402357934506 ; 0,00000651344771827362 ; 9,4 ; 2CAFAffBef6eeF9e809A5ECc7ec0A200560fe0ca3f7b6F43efb680A7D3fDAdDa ; < Ppx80aZ2h6Ca2d15Zm4tV882O9a37f0jMsVSy1tDp8mWir3vkY0Ns9yzcl9IR473 > > 9 // < PUTS 0,000159355829289569 ; quote ; 0,00000702637294312149 ; 0,00000688584548425906 ; 0,0204081632653061 ; -1,3 ; 0,00000681558175482784 ; 0,00000723716413141513 ; 5 ; AEf9E63BaCad9cf3DE0f0Fa38AD2e6CdF79cc5344DCaf4AcaafF6c7eda36be6a ; < LjEDJydql57K2VUxd2uTgX0LB8W5ykX6bd4hAw687O9hVU0ccIfPhyYfnXl3ZA1U > > 10 // < PUTS 0,000167742978199546 ; quote ; 0,00000780708104791276 ; 0,00000765093942695451 ; 0,0204081632653061 ; -3,7 ; 0,00000757286861647538 ; 0,00000804129347935015 ; 4,3 ; EfCD5dcBcE9ADaC5E1aee20bCdf57AfCaafdbFF242bCAdb2CA64fAAEcC58a81C ; < jv6t2wvYE2201OKLTNjIITN4c9f7g4GHBl6RqIyQ5mp2dklszPjk9E0Zby2a7PoN > > 11 // < PUTS 0,000176130127109523 ; quote ; 0,00000702637294312149 ; 0,00000688584548425906 ; 0,0204081632653061 ; -0,5 ; 0,00000681558175482784 ; 0,00000723716413141513 ; 3,9 ; c9a1Fd4aCeC6D98d9Dfdf829aae8a2BfA321eC67D89DD3baf2edaaEB5Ed0DbB7 ; < 967PnwGtlu2KLg71k2Ic4QkI8RCrRBchyw1SD5KWLqYDZJEa51EO31eF5hJe8ijC > > 12 // < PUTS 0,0001845172760195 ; quote ; 0,00000632373564880934 ; 0,00000619726093583315 ; 0,0204081632653061 ; 8,3 ; 0,00000613402357934506 ; 0,00000651344771827362 ; 1,5 ; AAD5cFBdeE0f3dfadaEf02ECcFFC50FDdBc44B5A7Ea32b4DAd3dcaF2eFd9cea8 ; < hFOA0wX38582YE00sr2af1thR3MZBC7qr74ozIGvyKzbBj92rP9rO3a8LK7s99mu > > 13 // < PUTS 0,000192904424929478 ; quote ; 0,00000569136208392841 ; 0,00000557753484224984 ; 0,0204081632653061 ; -0,6 ; 0,00000552062122141056 ; 0,00000586210294644626 ; 1,6 ; eaED0B5e9735e1DFCeBBe7CB68cf30fD9450e717dCBe9cEfF5E0eab7626E5DA7 ; < Z1Ap7401jdkEyB1UU2t9XSc1aZxg2BosCAQ1XVk1bHJAkI05OERS1Ag4G8p91Qk2 > > 14 // < PUTS 0,000201291573839455 ; quote ; 0,00000512222587553557 ; 0,00000501978135802486 ; 0,0204081632653061 ; -0,6 ; 0,0000049685590992695 ; 0,00000527589265180163 ; 6,8 ; De520ddae3CEEcBe6BEDad2AeA7fCE6cBA5cEB13B9bd82047bdbdC8DCdaCf0bf ; < bjTkx8qPtgmz4AqSOpOyxaGzbzv3M970WVIbgoovU3ajUI3y15kVSt4VwUU3Z7L2 > > 15 // < PUTS 0,000209678722749432 ; quote ; 0,00000461000328798201 ; 0,00000451780322222237 ; 0,0204081632653061 ; -9,3 ; 0,00000447170318934255 ; 0,00000474830338662147 ; -4,5 ; 1d7B8DCDa9a0dACcFBDe6bfF1aD7B3F1ecDEcAbc7AeDAD5CCcEd4dA082cCdDBB ; < Ex326I15q5A8Gh34zDWlHJ6e336iSrZ4M0709lsYzURcr87G0SqaoDN6x2E109pq > > 16 // < PUTS 0,00021806587165941 ; quote ; 0,00000414900295918381 ; 0,00000406602290000014 ; 0,0204081632653061 ; 5,9 ; 0,0000040245328704083 ; 0,00000427347304795933 ; -1,3 ; 9cC5eA0d85B3a40e2E76DBDbeEfB92abBc65c4a3bbbBEaC6aCE7aEd89f5ecEaB ; < FZ16XqNQ3V797WJZfxn0Yw4m52i09Rls81e4hNilg28cG4r1JAbWKF9Y4cW81vtu > > 17 // < PUTS 0,000226453020569387 ; quote ; 0,00000373410266326543 ; 0,00000365942061000012 ; 0,0204081632653061 ; 9 ; 0,00000362207958336747 ; 0,00000384612574316339 ; 0,4 ; 2F32a1AadC40Ca4868ABeeDaEFDBFb5D7E0BbEDAE5BAEfCcB8Dd80efe8e4E9db ; < XzupzvqkQC59B3gfNT36KKwI3O7unft8MSLdo7TMW3Rr60e85RiLaa55y9S5c7H4 > > 18 // < PUTS 0,000234840169479364 ; quote ; 0,00000336069239693888 ; 0,0000032934785490001 ; 0,0204081632653061 ; -9,2 ; 0,00000325987162503071 ; 0,00000346151316884704 ; 9,7 ; Ca7EeDa4Abd8ED7Bc1FfedcEAE4c0e0460B8A699aFbE4ddAd1Adb95BD776AD5a ; < z3P7P9D7oeMd71cZ0q21iz9TIg2Z62SI34MN0mLRlJvlXZrj3A7WzRE37ocC1V35 > > 19 // < PUTS 0,000243227318389341 ; quote ; 0,000003024623157245 ; 0,0000029641306941001 ; 0,0204081632653061 ; 1,2 ; 0,00000293388446252765 ; 0,00000311536185196235 ; 1,2 ; dEffbCBbeb817Ce1bCeAbc7fA8C10aeb63ACeda1F6eEAd33C37FDeBEf0dBbbAc ; < i4i49s6FjcIQg2qY18xuwIvtEAMCxk3d05sZaSHB7I9H9Qp3OC1Y85GXl9CnGYSZ > > 20 // < PUTS 0,000251614467299319 ; quote ; 0,00000272216084152049 ; 0,00000266771762469008 ; 0,0204081632653061 ; 6,9 ; 0,00000264049601627488 ; 0,00000280382566676611 ; 2,8 ; 3d3F9B12fc4eaE69Dae8eAd7eAaF1d7bBDA4AcD2ebCc3FAb42b1e64aAcAF7A5a ; < nBM7JKu8kT5ri49GtO4Dg2bWI1fl34ZgNf465GePvYO28w4YGM6t4jogbqY5mei0 > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000841893142589006 ; quote ; 0,00000565083726300986 ; 0,00000553782051774967 ; 0,0204081632653061 ; -8,3 ; 0,00000545305795880452 ; 0,00000584861656721521 ; 6,2 ; 0bccFbBdEB3D9fFE5357Da48bCeA1cbACFfd2eae7Be8FfEEa5cDfBCA2E02cD5A ; < Dpu83IF6rPwvIawjLh1HV6jzt94CiPzDaSm7u7HIb498YmrEDY66vYCmX534el0v > > 1 // < CALLS 0,0000926082456847907 ; quote ; 0,00000627870807001095 ; 0,00000615313390861073 ; 0,0204081632653061 ; -3,8 ; 0,00000605895328756057 ; 0,00000649846285246134 ; 5,3 ; BbEAeC6cb29609E1Ea5e29DE3Fdd68CEE0a03bd2E0BbadFeDe2ED3CdafBAD8A9 ; < CPAz5T3modml94c38PZc04e7nFv4Wt41g43BE9n557HJLj2zhnMow1xlm3Ij3XGz > > 2 // < CALLS 0,000101027177110681 ; quote ; 0,00000697634230001218 ; 0,00000683681545401194 ; 0,0204081632653061 ; 9,7 ; 0,00000673217031951176 ; 0,00000722051428051261 ; -0,7 ; Bdd87AEBaFebFed6EcDDbC586C4dCDEAaA0AB4eDFCa7CeCbFb1b3cf3fEBB8bDb ; < 1xUaA1kS6objbU8Ll9EV84K91YoLZH2R5ba5w57C5ZDkC445aq5chtF79GX0qZAR > > 3 // < CALLS 0,000109446108536571 ; quote ; 0,00000775149144445797 ; 0,00000759646161556881 ; 0,0204081632653061 ; 8,2 ; 0,00000748018924390194 ; 0,000008022793645014 ; 7,8 ; ddEa1FbB6bef6cC3C8960DA32ee3Cec8D1ea5Ab5EFE87D6Ab2ae6C3256fee9dC ; < d81j2j83WwU8314FP136sPYP62lrkJ0a421sgHa7Cg6qtTG5S1dN71e50VrkBXVM > > 4 // < CALLS 0,000117865039962461 ; quote ; 0,00000861276827161998 ; 0,00000844051290618758 ; 0,0204081632653061 ; -5,3 ; 0,00000831132138211328 ; 0,00000891421516112668 ; -8 ; c956DD0DC1CFb38Ac04C34Adfd69eBeA6929BbcfEddBef1e18FaF0A0AFECEDee ; < K3yjeFCiO0rH9C9Ti97y6WLrnIQ39phut8mwlF2252wrbKV3Mtusz0ihE6d9y5C4 > > 5 // < CALLS 0,000126283971388351 ; quote ; 0,00000956974252402219 ; 0,00000937834767354175 ; 0,0204081632653061 ; 7,5 ; 0,00000923480153568141 ; 0,00000990468351236297 ; 5,6 ; 9106EC9453E6EDBbEfFe0DB680DFd30e7843aD2E5fcFEAAfE72C92Bee2A85bEc ; < 1D9D6Idrj1vbR0Ylog1132jP50AUAZrQZBw9gKGupA1wiesSEpFbYaHD2n0sq69H > > 6 // < CALLS 0,000134702902814241 ; quote ; 0,0000106330472489136 ; 0,0000104203863039353 ; 0,0204081632653061 ; 4,5 ; 0,0000102608905952016 ; 0,0000110052039026255 ; 0,1 ; 20C9d69aEf03aeCeEEDffAcfD4FbeB827FbF2FdEfFf0CdCa8C40fd9ddC2d8ebE ; < xTUyxH2C38J3Dv8Rxn32xrxPPNlxwQxw7xRg5uzo65JteV0XPVE9E8xN3NU2e9J9 > > 7 // < CALLS 0,000143121834240131 ; quote ; 0,0000118144969432373 ; 0,0000115782070043725 ; 0,0204081632653061 ; -2,1 ; 0,000011400989550224 ; 0,0000122280043362506 ; -6 ; 9DA9aafECfBc32bDf78B3e8dBFf1F9Fc0a9A88EA2FAFcccde96E7feCB3Cc9A47 ; < 49276i4ej9meMlonOG1N5b5yy75Sys7jbndv1gG1Fr6Gv6Au97b4fWA6r44394vk > > 8 // < CALLS 0,000151540765666021 ; quote ; 0,0000131272188258192 ; 0,0000128646744493028 ; 0,0204081632653061 ; 7,6 ; 0,0000126677661669155 ; 0,0000135866714847229 ; -1,8 ; 49Bba325Afba37dae5763DaBdEBE1FD3f2F70FeA865dF7fB2b9aeccDE6bcC0dd ; < 7MNFLagWOaugAY04LX3wJx5kMNOlP3oxtxwUAg3Gs15wtsgwuAZe5X0c4A1d04TU > > 9 // < CALLS 0,000159959697091911 ; quote ; 0,0000145857986953547 ; 0,0000142940827214476 ; 0,0204081632653061 ; -5,2 ; 0,0000140752957410172 ; 0,0000150963016496921 ; -2,5 ; CDCF125BBd448F17a17bC6cD362Cae64f3ebcaFF8fa88ECa6Ed7caAF9E6C7c14 ; < 14Ks2n1A92U9tks6tAMb69M6Uj6gkQWU4hvCZ6p4515RvaeRxN3W4NBK4lpHhhPr > > 10 // < CALLS 0,000168378628517801 ; quote ; 0,0000162064429948385 ; 0,0000158823141349417 ; 0,0204081632653061 ; 3,7 ; 0,0000156392174900192 ; 0,0000167736684996578 ; 7,5 ; 61da586cE3a4e1B60AeCFc5FeefeebBfDacAbF7b9F92b293BdDCc3caAf3e10Ad ; < 7CblPNDV61eE2fND3y7Mo88Y8N86dDJqyhm6hydi0JkpZm2kVzVjssa5TDbQ13c6 > > 11 // < CALLS 0,000176797559943691 ; quote ; 0,0000145857986953547 ; 0,0000142940827214476 ; 0,0204081632653061 ; -3,8 ; 0,0000140752957410172 ; 0,0000150963016496921 ; 9,5 ; Ae3aDc84fcbf56aa2E9677C90F95c9ce7CBe4B2Fc7Efb38A35F1BfCEeEfe4Ef9 ; < u3ttuUx0OL0zqSbl6yzIFT56xTDVT0ir6Z09G6oA3mElnzFzuz1h6x4xqinGj2o5 > > 12 // < CALLS 0,000185216491369581 ; quote ; 0,0000131272188258192 ; 0,0000128646744493028 ; 0,0204081632653061 ; -9,8 ; 0,0000126677661669155 ; 0,0000135866714847229 ; 0,1 ; 83cfdFC8A6F4daD5bAebA75A4F4fB7FFFEf8efeF3e0eFA84cD6f2F84aabD2af7 ; < mgGo9F82Tmj1jG4g81B414P2XQ3duud80AA636ByMw8VJS64k3F6hc0cBti9C6J7 > > 13 // < CALLS 0,000193635422795471 ; quote ; 0,0000118144969432373 ; 0,0000115782070043725 ; 0,0204081632653061 ; -6 ; 0,000011400989550224 ; 0,0000122280043362506 ; -6,5 ; BCF5bf9bF0dBfb6Bca8Dd2BfeDE758D8DFaaEF791e3B6cd3E5bDF2fEacaaf5CA ; < HgoWb05pbXRtls8HU3nnPP80OYEBID5yUqjxpunGskLRKfR7rLRQg1uSv0A93M4z > > 14 // < CALLS 0,000202054354221361 ; quote ; 0,0000106330472489136 ; 0,0000104203863039353 ; 0,0204081632653061 ; 1,2 ; 0,0000102608905952016 ; 0,0000110052039026255 ; -2,3 ; 0A6FeFEb9C9715cDAEc991e53A9e4ECFEf86DBEFe1C2d2F4E87bD9bC0b05A50c ; < 2Xpdt6n438Ykdix6q30Am69k5EM41j7Wd2d3iKB1Qb30G7cd9ExB49cNQ3rI7SSU > > 15 // < CALLS 0,000210473285647251 ; quote ; 0,00000956974252402219 ; 0,00000937834767354175 ; 0,0204081632653061 ; 1,6 ; 0,00000923480153568141 ; 0,00000990468351236297 ; 1,7 ; 5ABc15eC2C5bbEBAEa4f9edc68Df56Ff8aAdcAEFB59BeBaBE331C0ebcd2eeB2F ; < 2BTg0zc9q5IcWKXK35tVxKYKs578boairxWPNFFuJsyHV2e0suqe1vV3Ioz39W0Y > > 16 // < CALLS 0,000218892217073142 ; quote ; 0,00000861276827161998 ; 0,00000844051290618758 ; 0,0204081632653061 ; 9,4 ; 0,00000831132138211328 ; 0,00000891421516112668 ; 1,2 ; AdaDbD5CBaBCDA30aCcfdFCF4a852cE8fb38EeD60Edec6fFe37FDFF3d8C9E2B8 ; < i6IMcGE8kL3Gg05W23O2R7w9f8m613w9T0F0333zBMBBjxfDxJ1w2yd7c8RYlvRd > > 17 // < CALLS 0,000227311148499032 ; quote ; 0,00000775149144445797 ; 0,00000759646161556881 ; 0,0204081632653061 ; -2,7 ; 0,00000748018924390194 ; 0,000008022793645014 ; -1,5 ; CEcfb5Ca76E2BAFfBbbef4F5Cfac3805d84EF8C686a96e8D8EdEdB17FBEb61BE ; < U4Xo63wx5000KVt303tYC1M6FSm273DKZ2me0s0N6b08a3d32op8uq0K22QCnBrQ > > 18 // < CALLS 0,000235730079924922 ; quote ; 0,00000697634230001218 ; 0,00000683681545401194 ; 0,0204081632653061 ; 8,8 ; 0,00000673217031951176 ; 0,00000722051428051261 ; -4,1 ; db8FDa2BAd6b0cB2eeDcd398a758becDBFDb6eD331CFBEF5EaD3BEcc9AC7AD5a ; < JTjgV6Q8Rb9Ngl9Y6P9KhSyQygTQDi8KAHb7p971QCWKstH5CtU9obPkgHXn6U3F > > 19 // < CALLS 0,000244149011350812 ; quote ; 0,00000627870807001095 ; 0,00000615313390861073 ; 0,0204081632653061 ; 7,8 ; 0,00000605895328756057 ; 0,00000649846285246134 ; 7 ; 78B22CabA8b272B2baf808eADDD3fAD6d80bac63ed8344FafADbBfEfC6fdfe44 ; < qNd076418W3864IdFUjxOf2Zm63llZBu7lKgI46lNHm1rrW2qO71gtYSbzS1h1vS > > 20 // < CALLS 0,000252567942776702 ; quote ; 0,00000565083726300986 ; 0,00000553782051774967 ; 0,0204081632653061 ; 0 ; 0,00000545305795880452 ; 0,00000584861656721521 ; 9,4 ; f33eF9A55865f8E8bEd76CA9EbDbF2bfdba4c764CaaD92bfde2F81f5b60AaDa7 ; < ZT1LaNj0K0zP478h4zj2A37j7sufwrp0E1h5mY1U7OuKqPnao25kjLU3ubrQ6gg7 > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000841893142589006 ; quote ; 0,00000565083726300986 ; 0,00000553782051774967 ; 0,0204081632653061 ; 0,9 ; 0,00000545305795880452 ; 0,00000584861656721521 ; 8,6 ; eacEE93ffb0c3A8FBc93BFF9DaEf6fe8dbDc6dFF70aEDdD98F9c1De2E5cf8e0b ; < 01S9DiK1XD1gql5kRd0xXAPTRGdQj9K09yDUlTFQWYsJnd7IbGdCj3o2Zay9r6M1 > > 1 // < PUTS 0,0000926082456847907 ; quote ; 0,00000627870807001095 ; 0,00000615313390861073 ; 0,0204081632653061 ; 5,8 ; 0,00000605895328756057 ; 0,00000649846285246134 ; 3,5 ; CbdcA3eD8A1BE5b6C3604A44D0CD16C0bdD0E2C1f59b5b3e36F8eca0CefF8ACf ; < N7mrkuS61608lNgSSmTU3V223eRGz10OC4d0Z8B0Q83fQ4ak7kcrxg57Atq0gOcc > > 2 // < PUTS 0,000101027177110681 ; quote ; 0,00000697634230001218 ; 0,00000683681545401194 ; 0,0204081632653061 ; -5,2 ; 0,00000673217031951176 ; 0,00000722051428051261 ; -7,6 ; Cd276FFFA96FaEe9fC86DbAbEbBc2286afF98ba4fbF0ddFfFCBFDbE65D6bafF5 ; < A58n3b5Ro3ZE18j7HtP5ZAiT5K5q7DL1T9jg9pYZ704Jy5T8B9bZY6LqAq2JebLA > > 3 // < PUTS 0,000109446108536571 ; quote ; 0,00000775149144445797 ; 0,00000759646161556881 ; 0,0204081632653061 ; -7 ; 0,00000748018924390194 ; 0,000008022793645014 ; -6,1 ; DBABb3c1D1E34a1b0Df4DDDAbcBe1cBDEb0C0afF0DF2cA3FDAcfb2eCA7fB1cDd ; < K3TN3FzWN0I5LickoA7f3ZF0N6OuOG6luVJpZm6o8noJ7lI1s4Otgx2BbL5FQWq8 > > 4 // < PUTS 0,000117865039962461 ; quote ; 0,00000861276827161998 ; 0,00000844051290618758 ; 0,0204081632653061 ; -0,9 ; 0,00000831132138211328 ; 0,00000891421516112668 ; 7,1 ; 5C84fE32daDFE7B106DfaADbeCAd9eaDdbcf2a3EC5fDd6fdbD6c7AdCC8c7f3d7 ; < 4X6NhS65guj634PP1G4Xx4X7por6EAuZNt3BLq5ffHwWlYT1j4Y43D9jwK7x9BUR > > 5 // < PUTS 0,000126283971388351 ; quote ; 0,00000956974252402219 ; 0,00000937834767354175 ; 0,0204081632653061 ; 5,7 ; 0,00000923480153568141 ; 0,00000990468351236297 ; -4,4 ; 63EcDAFC42bd7Fff0DA67021acaeEf9eA3Dd492E8EAC1cDEddA02bfdCC4Cccda ; < M3hF5n0Kzd9OKZK09N4rU495gKGiw7QX38T58u9Ed5XiethdtDBSeW7J2w8gQ1ii > > 6 // < PUTS 0,000134702902814241 ; quote ; 0,0000106330472489136 ; 0,0000104203863039353 ; 0,0204081632653061 ; 8,2 ; 0,0000102608905952016 ; 0,0000110052039026255 ; -0,9 ; 3e8dB5FceFBee7aA2DAaAcc212Df8bdb23cFefbAdEBDc0E30ce3C2E7BCDDFab3 ; < OpzX17nEqb47X2mc3ky9a0b0b3Sw3NYh6i6i7Y5g2CE56y9e682c8u0DOQrIQM5b > > 7 // < PUTS 0,000143121834240131 ; quote ; 0,0000118144969432373 ; 0,0000115782070043725 ; 0,0204081632653061 ; -0,5 ; 0,000011400989550224 ; 0,0000122280043362506 ; -1,7 ; f33AEa4C780Bb59dFD8DdEdCe013ba308CCbdC5f9C5fC00bDe4Babda6eacdfbe ; < r40DVJIvu50vyqdezzrYdcJyuBfHAZE8OrQU22GW2Q626LJ4L2687w684bIUHF1a > > 8 // < PUTS 0,000151540765666021 ; quote ; 0,0000131272188258192 ; 0,0000128646744493028 ; 0,0204081632653061 ; 5,5 ; 0,0000126677661669155 ; 0,0000135866714847229 ; -1,7 ; Fd1E7d4ECebA3A7D0a4AFDa62eea1a6fCA6Fef9cA0CbeE8C7396ebFFAE49cDE5 ; < DtBInT1k5u1ln188ZDF3b3PdC465AHEgFe4A7hRXL3k3p6x2dCXUHEW68flt6OhL > > 9 // < PUTS 0,000159959697091911 ; quote ; 0,0000145857986953547 ; 0,0000142940827214476 ; 0,0204081632653061 ; -2,9 ; 0,0000140752957410172 ; 0,0000150963016496921 ; -6,6 ; 1fa2a1da4c7bd7DbC0FdA74D3f1Fb341AABb08A0BedF9aE51aeaDAfAd5fd5c1d ; < a6B2kDp5L8x4GVZRU0Z3xP1xO4s4dAf5AI7y0lU6BHaVu3lw3344NLLqAuWBG748 > > 10 // < PUTS 0,000168378628517801 ; quote ; 0,0000162064429948385 ; 0,0000158823141349417 ; 0,0204081632653061 ; -7,8 ; 0,0000156392174900192 ; 0,0000167736684996578 ; -7,5 ; C2f3db76cBfC7CE3Da2798eCD0FC2aa11cbC1aCbfcEb1a5cBa7c48Eb240DCFA2 ; < wx4x8gj197Rke1512x9e7pu3W2xp8RE1x2wvYk5hoDlASYdLA0RkU944rdN7s52V > > 11 // < PUTS 0,000176797559943691 ; quote ; 0,0000145857986953547 ; 0,0000142940827214476 ; 0,0204081632653061 ; -2,1 ; 0,0000140752957410172 ; 0,0000150963016496921 ; 5,1 ; BCda51E6Ffd223fbDd9A8E3d9E12125Ef1C7fea16d5C3cAdC23BBEf8dCfaeFab ; < p43Rsl5MYJH0fp86Kn6K0EwU06s8j4Hx0N8fw9iG5r665U1OOxgd26eOrAeB4Pak > > 12 // < PUTS 0,000185216491369581 ; quote ; 0,0000131272188258192 ; 0,0000128646744493028 ; 0,0204081632653061 ; 0,1 ; 0,0000126677661669155 ; 0,0000135866714847229 ; -3,5 ; 5BAedF2EbadDfDb2bAe3f6CDbBBB969C61D18FdeC9C3468F32a29AB48Cfa77C4 ; < OJmknxxODv994xs411EaS1YT5Y1bH0BcHAk0gR7UXS9813C87LmVACXddK35HKKt > > 13 // < PUTS 0,000193635422795471 ; quote ; 0,0000118144969432373 ; 0,0000115782070043725 ; 0,0204081632653061 ; 0,7 ; 0,000011400989550224 ; 0,0000122280043362506 ; 6 ; FAAFA8De2A1eD7ab3edcDf911eBad3Be70aBE5EfEFFFA1bDA8Ae27dbaB7Fcfff ; < hP33E5tt8V27043xGonClsJqoOWngQ2l0P40IhW23esJT063fYhM8hE37mnSclzF > > 14 // < PUTS 0,000202054354221361 ; quote ; 0,0000106330472489136 ; 0,0000104203863039353 ; 0,0204081632653061 ; -6,4 ; 0,0000102608905952016 ; 0,0000110052039026255 ; -6,1 ; C00B3e0CcA4BEd333AEEbC9DdedDDCdBEF3D2D363dbfA51DCAfEBAAB3AD0136B ; < 6V0uKR1XzZhmzpj8ke3g03svZCZsk9p5tg0Q68jWXRH55oToZ8E02xDJZK4E3Shb > > 15 // < PUTS 0,000210473285647251 ; quote ; 0,00000956974252402219 ; 0,00000937834767354175 ; 0,0204081632653061 ; -2,9 ; 0,00000923480153568141 ; 0,00000990468351236297 ; 1,5 ; 9AEDD14c3AfE7eDfd4A44Ecc07367D1EcFcEFA3C0Ba0Bbf5fcd1DB09bBEBe2AE ; < z20YA0dFqQ3SA5KnxU8FhQA1UD19kj6tPra8d8KLRT7o5s48S8724T2o740uK88E > > 16 // < PUTS 0,000218892217073142 ; quote ; 0,00000861276827161998 ; 0,00000844051290618758 ; 0,0204081632653061 ; -8,5 ; 0,00000831132138211328 ; 0,00000891421516112668 ; 3,6 ; C5fF3bbdBefbFADFE7CA0cF8fCBecC9f8b7dBdFaFEaffd70eF78cd6BaaDDB1CA ; < DmsO02kqdKLnQuG266dCnjRF4Fzx3VvtI6dU7Grz5E6QasPd54AHPBN28e4614J4 > > 17 // < PUTS 0,000227311148499032 ; quote ; 0,00000775149144445797 ; 0,00000759646161556881 ; 0,0204081632653061 ; -2 ; 0,00000748018924390194 ; 0,000008022793645014 ; 5,4 ; D8Af8eFAea7A9FCCedafead8fac9e1Aea1d2cEB75AAeF6BaDaF59d3dFb0FbCde ; < 7n2db7pc8rW8S8FFYN8mjF3XPj6k93MGqTxrqcM3lSe1D7E3or47cvVtKjsxPmdH > > 18 // < PUTS 0,000235730079924922 ; quote ; 0,00000697634230001218 ; 0,00000683681545401194 ; 0,0204081632653061 ; 5,4 ; 0,00000673217031951176 ; 0,00000722051428051261 ; -6,9 ; 70D2EDFaaAeA8eFDE94DEdb548BC2De3AF4a0Ac1f77FC6bDFbAEDcE313A4aacD ; < j610E71p4Ou77aS90624E7q2P4QJIARZcT614QzT8xrcK5BJ06zfd388iI7bs28G > > 19 // < PUTS 0,000244149011350812 ; quote ; 0,00000627870807001095 ; 0,00000615313390861073 ; 0,0204081632653061 ; -4,9 ; 0,00000605895328756057 ; 0,00000649846285246134 ; -0,8 ; Aa7fe0Aa2adbfCdB0C9ACD39f98bf2E9caeea9AAaBC38123Fb4F6C44DfEdE21E ; < lhEC84fXoFRFNKuq2I97VbVnEJJ0zUXs8za2Hv8QZLI13W55zGpRGi06Cj2e90eG > > 20 // < PUTS 0,000252567942776702 ; quote ; 0,00000565083726300986 ; 0,00000553782051774967 ; 0,0204081632653061 ; 3,4 ; 0,00000545305795880452 ; 0,00000584861656721521 ; -5,7 ; C6A89CFbDBc4Da2e307FACDEeA4F3ddc9FcAc2BB08Edefee9BBeFc6Ea9A1ddc6 ; < 9Uz7uIa72353W8lO24310yPTkhUKhsnqu4mfsyiYmIOL1eC3pu55Tip9q5VbUgPr > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000853271707685837 ; quote ; 0,0000121361866997684 ; 0,000011893462965773 ; 0,0204081632653061 ; 6,9 ; 0,0000116871477918769 ; 0,0000125852256076598 ; 1,1 ; 0aBe9CAD8e3C70768f500FCc494eb238ACee0CF4BcBDCDB5A5e8cDADCAa9Ab22 ; < f80UHD7BlFW7LRmUTPm53M5k7hRl9DUWIG5c2Qbyt2b054yl1D143eggt16790Oh > > 1 // < CALLS 0,0000938598878454421 ; quote ; 0,0000134846518886315 ; 0,0000132149588508589 ; 0,0204081632653061 ; 1,2 ; 0,0000129857197687521 ; 0,0000139835840085109 ; 0,8 ; 0Aae3cE4Deb50DFee9ECf563a5dedcDA3C50FEDCafBa2659ae5e4CC40dfF1848 ; < 0GDR17155H7hamaarpo5cpa00jD5L6677u9kh4EYHvZVRUAkdO88g7V98OpGoT1F > > 2 // < CALLS 0,000102392604922301 ; quote ; 0,0000149829465429239 ; 0,0000146832876120654 ; 0,0204081632653061 ; -9,5 ; 0,0000144285775208357 ; 0,0000155373155650121 ; 6,7 ; ad44eBbc46AFBAEAAEb633237fbFFDe9dDDEd03cc9bbC30c3AA0595BBCddaAEf ; < 29fm6LG2HZyh5d0SanRtW7h87QV51ALo4N9lz9FO4yUoDsdI1zCw4Uuvtg6g95SX > > 3 // < CALLS 0,000110925321999159 ; quote ; 0,0000166477183810266 ; 0,000016314764013406 ; 0,0204081632653061 ; -3,6 ; 0,0000160317528009286 ; 0,0000172636839611245 ; -1,2 ; f2dEAf5aEdffabAEEcF64cE57c1fcb3E5ceCDc6389AeB3ECAf91349eBdEaEEda ; < 5CE7WbWL180bF11By9Tw94RyBAbh1tKWm2OOoZU7t18x5SncL5y9K2r2g43V3lmK > > 4 // < CALLS 0,000119458039076017 ; quote ; 0,0000184974648678073 ; 0,0000181275155704511 ; 0,0204081632653061 ; 0,1 ; 0,0000178130586676984 ; 0,0000191818710679161 ; 5,9 ; 4dB2fF45ff7fcfecFd74aDB6ffD4EF5CE5DFAaA59AbBCadd6cA9Cdcd97bB91dc ; < 4xMnTYD417A676GmI4h1sls80tfyqVz45Tp3PSONCPu36x4a8TxU3d0Y5B6nJV96 > > 5 // < CALLS 0,000127990756152876 ; quote ; 0,0000205527387420081 ; 0,000020141683967168 ; 0,0204081632653061 ; -9 ; 0,0000197922874085538 ; 0,0000213131900754624 ; 5,8 ; 9A0aBefCFc4eA3Ce0CF5a0b3BdA5e41bead8C5161ecA4dd8aaBA50DF73F2b85B ; < WUsgTIaa7130Sw5Y0seySWboZP1gLym7WB3bzufm5MkNE9H74LyaT5qU6tF15qYA > > 6 // < CALLS 0,000136523473229734 ; quote ; 0,000022836376380009 ; 0,0000223796488524088 ; 0,0204081632653061 ; 8,5 ; 0,0000219914304539487 ; 0,0000236813223060693 ; -4,6 ; D2AcabB2eaaac03f79aEaB4C97BAEABA9b1CEdeBC473C4634bdec9C7380d05b2 ; < Bl3wj5nY2G0IqAhfYhRXjd645X2PxC254x4e5wKc73ryrWNc13g96deOb2mj4hVj > > 7 // < CALLS 0,000145056190306592 ; quote ; 0,0000253737515333433 ; 0,0000248662765026765 ; 0,0204081632653061 ; -5,9 ; 0,0000244349227266096 ; 0,000026312580340077 ; 4,9 ; Bf57bA7ecACdfaDADa5cBFd63BD42Ea6bbc2DCACBB81d29Bab35AdF2Ff5EdcBf ; < Dkft7S8NR6x4dHMeCmVxyeb45qR6QP78M4468Nx9QmO9fOTjBA1GM51hHJQLfI81 > > 8 // < CALLS 0,000153588907383451 ; quote ; 0,0000281930572592703 ; 0,0000276291961140849 ; 0,0204081632653061 ; -1,5 ; 0,0000271499141406773 ; 0,0000292362003778633 ; -9,8 ; D8CD82C51ff03EA2bdeAF7BfD49CCAA92b7dAcCEFba749EB6EA32CE72df3D41c ; < v3P2D09Ye15nwPZ0XBsT0eOzlKuLwzVMBSGBm9jONnAXti5763j3XTY6j0bR4006 > > 9 // < CALLS 0,000162121624460309 ; quote ; 0,000031325619176967 ; 0,0000306991067934277 ; 0,0204081632653061 ; -7 ; 0,0000301665712674193 ; 0,0000324846670865148 ; -6,9 ; B8eFde4b6EEebDf7cC52eC6bA54c25fFABF41d58bCafcdfEA97BCE6AFfbfe2bC ; < Q6d19q7JNCIeF7kqz77A99niKfnDJrHz46omB4F136PC8Du5Z14M76pHXSnQgqcL > > 10 // < CALLS 0,000170654341537167 ; quote ; 0,0000348062435299634 ; 0,0000341101186593641 ; 0,0204081632653061 ; 7,6 ; 0,0000335184125193547 ; 0,000036094074540572 ; 3 ; BFE6fDc9D2f9ECF9EF7bea7fA0Bd8f2DAE49EaCaAf4eEc2F4Daf0A1540fb89a2 ; < G0TUUV5FRP1nRm1z0YRif7j1V14iFCC1vnpD3x4mI96N5Z5BP28wuh9V7eUfZsVu > > 11 // < CALLS 0,000179187058614026 ; quote ; 0,000031325619176967 ; 0,0000306991067934277 ; 0,0204081632653061 ; 7,3 ; 0,0000301665712674193 ; 0,0000324846670865148 ; -3,6 ; 907eABBaD9D78D9b9EbcE00dDdEdeCBbeeCCaF428dB39F1bebD105efAfDF80fc ; < of2xRii35Jdhi8TPV2j6TUM0P513B23vBIWi2SuLk827R5BklT0K5ITbl8c0cr8z > > 12 // < CALLS 0,000187719775690884 ; quote ; 0,0000281930572592703 ; 0,0000276291961140849 ; 0,0204081632653061 ; -8,5 ; 0,0000271499141406773 ; 0,0000292362003778633 ; -9,1 ; caFeebF73ebefCf8BbdfE5f2fFdb48D3d400358DAebC16bAFBbAEA0DfA7C6fC7 ; < V68o3R4Y09LEsv51cFBX17838He5l941LVQCwNF16H0K2zruK62K0G9C2818aeV4 > > 13 // < CALLS 0,000196252492767743 ; quote ; 0,0000253737515333433 ; 0,0000248662765026765 ; 0,0204081632653061 ; 6,2 ; 0,0000244349227266096 ; 0,000026312580340077 ; 7,4 ; Ef84cafBEa5Ebc1Fc1dda91F875C3AFcCc17a6f0defCf25c2cFc0eB2CdcF2C2F ; < 260SF0uwzCf90z9ce5Rd19QEL294y44mJmQmLB8hE9SI3nQ9350OrURGYs1l0rr9 > > 14 // < CALLS 0,000204785209844601 ; quote ; 0,000022836376380009 ; 0,0000223796488524088 ; 0,0204081632653061 ; 4,5 ; 0,0000219914304539487 ; 0,0000236813223060693 ; -5,5 ; 7AafFE96eAdEacc4acdF12FD79dcAd7C98ebC1c2aDE2bEB6caf5aCfABbA9F0CC ; < N9IRkdoZIWvO8s7K4P8Mf2Cc1WzvpP08dIYiRrO53zKrVV1HWYxf1F2XV93kY87U > > 15 // < CALLS 0,000213317926921459 ; quote ; 0,0000205527387420081 ; 0,000020141683967168 ; 0,0204081632653061 ; -8,5 ; 0,0000197922874085538 ; 0,0000213131900754624 ; -2,7 ; caDeD6bDAEC9efce72Ab1BFdeDdCfBcCcD13fAc229375ef3D7b5F6F9AAeDc1C9 ; < LmBS3YfuXVr55In1g66u0W9dc1IG4Eu5u50X2R8NuZ3U8gY70If272T5Vy2j57O4 > > 16 // < CALLS 0,000221850643998318 ; quote ; 0,0000184974648678073 ; 0,0000181275155704511 ; 0,0204081632653061 ; 9 ; 0,0000178130586676984 ; 0,0000191818710679161 ; 8,5 ; 2f65aDfCBfaA0CECbDcCDCDC80af2d9dCFB438E8f6B595E18138FAcDFdFE1fEf ; < GcMoUsOBER7EBda0Zr8jXwujBB838dILNe98a1c0Pme7udeGL5Mr0750WxKwz3K0 > > 17 // < CALLS 0,000230383361075176 ; quote ; 0,0000166477183810266 ; 0,000016314764013406 ; 0,0204081632653061 ; 3,2 ; 0,0000160317528009286 ; 0,0000172636839611245 ; 0,4 ; 8209eF3b5cef7C6CF58DAEd6C8DFDF8A1AB6623AFBbDee5bAEBbFee1aed170FC ; < 1eJIwHvu995j2lOTiqa17p38oZ4Dx8NKw3hAbGdasqFUSbjAGtGa7c0Osy357xtq > > 18 // < CALLS 0,000238916078152034 ; quote ; 0,0000149829465429239 ; 0,0000146832876120654 ; 0,0204081632653061 ; -2,5 ; 0,0000144285775208357 ; 0,0000155373155650121 ; -0,7 ; eF724C5a6FeBF46Dad6e4ae0ADddFbA8917d97cc6C8B6BC4CDA0F39Ba474f50D ; < 33PBZ4I5h0a6Gk4lNZ4aT2y50326FNa4V5qYWFm910mcZ9pr85mdW8k3uzwRIDtw > > 19 // < CALLS 0,000247448795228893 ; quote ; 0,0000134846518886315 ; 0,0000132149588508589 ; 0,0204081632653061 ; -0,5 ; 0,0000129857197687521 ; 0,0000139835840085109 ; 6,8 ; eDfCe790976FB176bdA9dC2B0F7a5c4f6CfC1Adb3Ad25fcB57e4F1c7acB2ddaB ; < X5ohW5O7601eW3POCGR8hdCQyQO9G6Ie98iSeiTL2GaQZplQPJ12BSBsWq056cKi > > 20 // < CALLS 0,000255981512305751 ; quote ; 0,0000121361866997684 ; 0,000011893462965773 ; 0,0204081632653061 ; -3,7 ; 0,0000116871477918769 ; 0,0000125852256076598 ; -4,2 ; d2eBA9bA9dED3fAc6cC67F2FaE8eDAeA3BaFC45C0eCc4DAf4cC8dbd1ceb2ACF6 ; < 9UGDxPto1crIori1ccm5hf7J2c8pue58vjAje9l8oIl8N32AWvsEfHkWCLpV0LwV > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000853271707685837 ; quote ; 0,0000121361866997684 ; 0,000011893462965773 ; 0,0204081632653061 ; 9,8 ; 0,0000116871477918769 ; 0,0000125852256076598 ; -7,3 ; 2dbFd3eDfFDa84c0BcC4D6FA0EDF36C5dBE60d7bceDBCD3418ba2BF837c52Cf3 ; < 2PL7J886TPp6p7SxU1fC91BB11HTyDL0cT391UZdFD9X9OS60lSt2h69l50Q4070 > > 1 // < PUTS 0,0000938598878454421 ; quote ; 0,0000134846518886315 ; 0,0000132149588508589 ; 0,0204081632653061 ; 7,7 ; 0,0000129857197687521 ; 0,0000139835840085109 ; 7,8 ; Cf8cd6feC0E0E3dCce7e8e298F6D5689e72cBF0Ce15ab6aEfE3ecADDAcdeD7DA ; < e3Yfm43Z5S37YY4Q7tmTRc7A1vC7dK0kRL4s26fy3835ja86Ij9Mc6FOZm8O0Y84 > > 2 // < PUTS 0,000102392604922301 ; quote ; 0,0000149829465429239 ; 0,0000146832876120654 ; 0,0204081632653061 ; -2,7 ; 0,0000144285775208357 ; 0,0000155373155650121 ; 0,4 ; FDB041AdC8215aCD6cFDcb525B2baD36A49d1Da9BfECb2D2a6b75DCC7DA09042 ; < d6wPVIE0bNRDgBO4x73Xnvqs2U7M391tNrX8F3pGe3Bku8J0e1Faibp9X7f9QN3K > > 3 // < PUTS 0,000110925321999159 ; quote ; 0,0000166477183810266 ; 0,000016314764013406 ; 0,0204081632653061 ; -2,8 ; 0,0000160317528009286 ; 0,0000172636839611245 ; -2,8 ; aae3EaCaAfE3eA960B6A5BfEA83eDCEdbf09f08bAceEEaFF4FE6df2eda7EE78B ; < 9jV7y79O2m50q7PGpqkQa4kf04GUAZ7Kz1z25oj9DyS1C2bT2n765fPNwa95X8c2 > > 4 // < PUTS 0,000119458039076017 ; quote ; 0,0000184974648678073 ; 0,0000181275155704511 ; 0,0204081632653061 ; -2,8 ; 0,0000178130586676984 ; 0,0000191818710679161 ; 0,7 ; bAA42BDebecBdbca12D6BFb26be544dE4fc659CdC6F0b7EFCc4F0D7bc1A27FBF ; < tLP0iY59EU8i96hi0NrPmSMe8caB98Cl9FJv6D96qoUcpA4Avyaz744B3W8R8Q3M > > 5 // < PUTS 0,000127990756152876 ; quote ; 0,0000205527387420081 ; 0,000020141683967168 ; 0,0204081632653061 ; -6 ; 0,0000197922874085538 ; 0,0000213131900754624 ; -8,3 ; b07dEFCbED9D26eca30ceC6EC2b8DBFaEfdB6090ECaEcc7C664f1dDfDb8AAf2e ; < OPQ8iz1V8wVS94o604xw1jq654pL8lN476cltx0zO8IB8QR6tsQP34r06BfvT7T1 > > 6 // < PUTS 0,000136523473229734 ; quote ; 0,000022836376380009 ; 0,0000223796488524088 ; 0,0204081632653061 ; 1,3 ; 0,0000219914304539487 ; 0,0000236813223060693 ; -9,5 ; CEA92FA1c5FbaAdBfA0EA3BD7CabfedFE1DBb3A98fE9abfb30c3CbFDb1effFE9 ; < iN0i2d35TX9UQVLPzhpKPe3kS43EgW86LqfV0k6QO2j8973kNHCcdK3HRT8L1GXb > > 7 // < PUTS 0,000145056190306592 ; quote ; 0,0000253737515333433 ; 0,0000248662765026765 ; 0,0204081632653061 ; 1,8 ; 0,0000244349227266096 ; 0,000026312580340077 ; 4,5 ; 0fEDbdeFCfFFB8D61Bdb2D3ffDceDE2132ea4efeE2fcbC5eCbfAc60ebbfddB5D ; < 7c12nv4yKvsw2BL3G7zI7nz894305nMhfWXFEC4BtxtLMbUu575Ym747CLTCt949 > > 8 // < PUTS 0,000153588907383451 ; quote ; 0,0000281930572592703 ; 0,0000276291961140849 ; 0,0204081632653061 ; 6,5 ; 0,0000271499141406773 ; 0,0000292362003778633 ; -3,5 ; dDeeBcc1Ff2C0fefd7bfFDcaA6Bcb5fefE3cfDE015CabF7D3Bb6bfEEAEB9EE01 ; < FMDJM06mZl8Ou10WD94m13zhHV24M5YaJ1VJOoL9c3c7euWKqV2f7De2LQKwNt6i > > 9 // < PUTS 0,000162121624460309 ; quote ; 0,000031325619176967 ; 0,0000306991067934277 ; 0,0204081632653061 ; 9,6 ; 0,0000301665712674193 ; 0,0000324846670865148 ; -5,7 ; cc5acDBe6FfAD2DCeEa7AeFbCe17dd68B99fBbfCBF6EBdd96ba7b7EEcFA350bB ; < 3fkT8qp58z0S4pR3jnAqCH1H7mnb2d4u8Ua7d9eQ327q8Xcu4s36xGh1u430Qtc4 > > 10 // < PUTS 0,000170654341537167 ; quote ; 0,0000348062435299634 ; 0,0000341101186593641 ; 0,0204081632653061 ; -7,3 ; 0,0000335184125193547 ; 0,000036094074540572 ; -8 ; DddbbDDaCFAdDbd4dB01E5Bc2e0E99Fbe3CEbC3C2143DdBeDabCE5Df9ebd1aae ; < 7ZxgCyuamOw06lcr2UUOLdj3ydXe7425scHMi0C1624Dr205G444P5J6YrX8A6i0 > > 11 // < PUTS 0,000179187058614026 ; quote ; 0,000031325619176967 ; 0,0000306991067934277 ; 0,0204081632653061 ; -9 ; 0,0000301665712674193 ; 0,0000324846670865148 ; -5,3 ; a40347eAc56fBD43Dec9C9dBb04DBEFA09ac170Bca5AdEcBAC0C8efDFb67aa93 ; < hZ9p5b4Ci33J5vBqpJ8w6kq0iaP7z3glmtp81NVw336vdmCl1g66gq5M0Sal9Ey6 > > 12 // < PUTS 0,000187719775690884 ; quote ; 0,0000281930572592703 ; 0,0000276291961140849 ; 0,0204081632653061 ; 4,4 ; 0,0000271499141406773 ; 0,0000292362003778633 ; 9,4 ; 7a0af9CBFBDF81f7d4DCCeBCd16Bb839FEBD38eEaAcFE4E1eAc9A8aD4F1dB9CE ; < Tqnm1c7B1h8njWB11En6jK2z72328Uo03CJSvo73cwUd0h9EJ18LuDX427BIa0mL > > 13 // < PUTS 0,000196252492767743 ; quote ; 0,0000253737515333433 ; 0,0000248662765026765 ; 0,0204081632653061 ; 6,1 ; 0,0000244349227266096 ; 0,000026312580340077 ; 4,7 ; F8BD52407A1eCBC7e28fAf5FA74dafcC3c1ea1eFDCF5dc5D33Bf1a326AC8cED4 ; < 5A0N01QpfLAfx819100co28n1i6mR4m883yTW4PTOZ0wf72hdng0p4D1ZZWsCYb9 > > 14 // < PUTS 0,000204785209844601 ; quote ; 0,000022836376380009 ; 0,0000223796488524088 ; 0,0204081632653061 ; 9,7 ; 0,0000219914304539487 ; 0,0000236813223060693 ; 4,6 ; BDDaf322C87Db547AdA1B9F3a25B95bfDeFff261CA6daC66D8Bde8BFEBBdBDed ; < kHKh7iS2r16kT4V0JWv9u2M66JOu6PUX7S3Z2rsc0fG4QwLB3c83HwIbaHcc9H40 > > 15 // < PUTS 0,000213317926921459 ; quote ; 0,0000205527387420081 ; 0,000020141683967168 ; 0,0204081632653061 ; -4,7 ; 0,0000197922874085538 ; 0,0000213131900754624 ; 9,8 ; 3aDbaeFC3BeADcfC4dC3A6800bFebf22aEf3ae5FDBF4B3ad9BBCfD0C0dD6cadC ; < 5619B02qFs5uo664pDP9qyl2M0cMCNI66jPWGE36iT2v2260HI3158yr7mDm7HTE > > 16 // < PUTS 0,000221850643998318 ; quote ; 0,0000184974648678073 ; 0,0000181275155704511 ; 0,0204081632653061 ; -7,2 ; 0,0000178130586676984 ; 0,0000191818710679161 ; -6,7 ; dfa6d5DF1FfFEEdd4cCCB5cfe1a4DaadfaADC5a9Ebd96cdbaE3D2CbaB8DEedae ; < ZM50isNI2dAvTeEK2D5Cm8bp2aPK49r53L4eTmC70i48vHaXJ2lsNed8fZJiAz7k > > 17 // < PUTS 0,000230383361075176 ; quote ; 0,0000166477183810266 ; 0,000016314764013406 ; 0,0204081632653061 ; 7,1 ; 0,0000160317528009286 ; 0,0000172636839611245 ; -8,3 ; c5fd571BB4871DAEfE65bCcaaEc8ad1E1fbF68aDAffaff8C4eaaBDb8d14ef98B ; < KbRIpBTU1gl2bun39A6gt1n9e6Iutb1FPx5orGo6x1djpW613jZ0ejARKtK58BZ9 > > 18 // < PUTS 0,000238916078152034 ; quote ; 0,0000149829465429239 ; 0,0000146832876120654 ; 0,0204081632653061 ; -1,5 ; 0,0000144285775208357 ; 0,0000155373155650121 ; 2,3 ; 2Db9cC7e41aE8BabEee6c0fa8F3C7EE741Dec1608ded0f5EffD2cDa7efF7caeA ; < OYuXN3G8aoi07iWPSrnFFQj9BybYx5YGN7s7Y8Nm77J7l3C2284vU5SaLq1SNo94 > > 19 // < PUTS 0,000247448795228893 ; quote ; 0,0000134846518886315 ; 0,0000132149588508589 ; 0,0204081632653061 ; 9,5 ; 0,0000129857197687521 ; 0,0000139835840085109 ; 8,5 ; 5aCeFBebCbCd858CADA8a9E0dfF7aEAC5EF5d1AC66c2C9e6Df96dEEec87AAd18 ; < Non7Ua4nL2PYVBlTH38hYAQZDU3o5DayifW4vGmlNUYe9dL4W1lu2Gmn2N45HqJJ > > 20 // < PUTS 0,000255981512305751 ; quote ; 0,0000121361866997684 ; 0,000011893462965773 ; 0,0204081632653061 ; -9 ; 0,0000116871477918769 ; 0,0000125852256076598 ; -7,8 ; d95AeACB2FfD4a75bA92bdFE2b0AfcfAccC33F8eeaA2Dab0fb0b0bbcAd5aAc2E ; < w9fT9Mh557v7Z9fshCmhj4I1Y9WUlN63WM6C22ctADb2Mje7wzqB4SRRljLcGXxm > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000870979507048868 ; quote ; 0,0000197191686732794 ; 0,0000193247852998139 ; 0,0204081632653061 ; 0,4 ; 0,0000188909635890017 ; 0,0000205473737575572 ; -7,5 ; EF2EaCFE4BD66F89116A80B388eA14ddaBe0E6E3dDBfeCDac3fA7eDE36a74A7A ; < 4g625uJrTv3qq7G2NVYPnb9xF22C0EB0QbB83adv78sM4T63F9ooQR2XY8B71E7X > > 1 // < CALLS 0,0000958077457753755 ; quote ; 0,0000219101874147551 ; 0,0000214719836664599 ; 0,0204081632653061 ; -6,3 ; 0,0000209899595433353 ; 0,0000228304152861748 ; 0,8 ; 30ec9BdADf31c4fB2C73EF3CbeB3DE1E8aEdBBdDFa6EedccecFaEaEFBfA11eC1 ; < u8zTd1GR07k8v4K6oroPisuaARG2u8ry576h0NGiSQr01fXynW7PDeOF0yvP6693 > > 2 // < CALLS 0,000104517540845864 ; quote ; 0,0000243446526830611 ; 0,0000238577596293999 ; 0,0204081632653061 ; -7,9 ; 0,0000233221772703726 ; 0,0000253671280957497 ; 5,8 ; 9becE68C5CeBc8CEc5F3f5D7e1E6AAb4Ce4E0fBB1c9Fd3ECFbEc0Bc8D02B8C3A ; < BJDLW6503Hq6ruIVF52LFEL1AHXK5EL88e8kSR8DG758vmLX1L1bjc9BR43M071n > > 3 // < CALLS 0,000113227335916353 ; quote ; 0,0000270496140922901 ; 0,0000265086218104443 ; 0,0204081632653061 ; 0,3 ; 0,0000259135303004139 ; 0,0000281856978841662 ; 1,1 ; fA0C91b1CeDEEE2dA9be9e5A0af9CAb9a7dbDc6BAcb1c79f8fC2b0bd93945D1a ; < 9nZ4HPgI3Jo2IOTI930RuP9mhy7cJ3Ubxarg89haCJoK38EfL49PTO8H6m1B2Cr4 > > 4 // < CALLS 0,000121937130986842 ; quote ; 0,0000300551267692113 ; 0,000029454024233827 ; 0,0204081632653061 ; 1 ; 0,0000287928114449044 ; 0,0000313174420935181 ; 0 ; F3a3fCF5d6DfACfBFaDA84d6B9CCfAbaFDaCC9A50Aede9e6dDBFEca38Eae2C45 ; < 0J679tW9eku3C1II6Rcl9CQJ8MSHB6TAsO7DbLZB1xW4h34Yt4BQE4RFiLB2t5gN > > 5 // < CALLS 0,00013064692605733 ; quote ; 0,0000333945852991235 ; 0,000032726693593141 ; 0,0204081632653061 ; -9,3 ; 0,0000319920127165603 ; 0,0000347971578816867 ; 3,2 ; 3CaeD8BB6eC249EaF8A6cBeE6Df4dbEBAeE0dB7e7fBf66acAb4abB5C70c6F2FF ; < 1gBjEWw5qVLD87zfJjloehQIsHJp5ymx7296f12X9I0W6yDqY6u2dl4i8aKrJ94X > > 6 // < CALLS 0,000139356721127819 ; quote ; 0,0000371050947768039 ; 0,0000363629928812678 ; 0,0204081632653061 ; -1,1 ; 0,0000355466807961781 ; 0,0000386635087574297 ; -1 ; 98Ef2CEFe7F2aD4972aC1ff584efd8ecEAeb0fFE0FbEA7eefcFBc9dBe9be92F6 ; < 6m1cP7TZ8U86gUSqic9aOX9Fiw6bhM3434nTYjL993693HpK9VFaygyahcGp18w5 > > 7 // < CALLS 0,000148066516198308 ; quote ; 0,0000412278830853377 ; 0,000040403325423631 ; 0,0204081632653061 ; 8,7 ; 0,0000394963119957535 ; 0,0000429594541749219 ; 5,8 ; Eb802Fcc7Adfed5E6db7DDbD9DC4E4Ba96f7beAEABEdACF80E81919A8D3E4Fb1 ; < nh0OTlpvpDw599UXnFbzp051W5wr60lb0g6Hik4UyTmau3j3Clb55m0XPl5b0hER > > 8 // < CALLS 0,000156776311268796 ; quote ; 0,0000458087589837086 ; 0,0000448925838040344 ; 0,0204081632653061 ; 1,4 ; 0,0000438847911063928 ; 0,0000477327268610244 ; 5,7 ; 0cAF26Cc810BF2cC0E3c6cAAa1a6eaC50bafFcabFc0afAd5baceCAdAe112fc66 ; < b6mkB5jPhD5e3MIP163OJ5tgzPxw31rW8uDraBCdu296d1h1qOtvq2l6Ew49uS5m > > 9 // < CALLS 0,000165486106339285 ; quote ; 0,0000508986210930095 ; 0,0000498806486711493 ; 0,0204081632653061 ; 3,3 ; 0,0000487608790071031 ; 0,0000530363631789159 ; -6 ; c830b3BB2c25f2DDF9ABd25CfABcFa0AfDe2BceD9FdeA8d2671dAdBEee2Eff2B ; < VZ5q3fQ6SG2UC4CZ89XVc6a0J7VDp54fUFU2Jy944SaC076R3Sbk5li69zjn5BKi > > 10 // < CALLS 0,000174195901409774 ; quote ; 0,0000565540234366773 ; 0,0000554229429679437 ; 0,0204081632653061 ; 4,9 ; 0,0000541787544523368 ; 0,0000589292924210177 ; 1,7 ; 2f2A07Ff824e4eFdEB7B9fadD36e6bFfbdA7d5FbdDFcbBdEfFD82e33ec9daADD ; < YIrP552yW3iTZqQgL5721HW0418zr0QN1yX9NO7q29DBk4g6kZhCn8xm1kSG6bhb > > 11 // < CALLS 0,000182905696480262 ; quote ; 0,0000508986210930095 ; 0,0000498806486711493 ; 0,0204081632653061 ; -5,4 ; 0,0000487608790071031 ; 0,0000530363631789159 ; 3,5 ; 5c4Bd3CE8D6171df17FcCB477e08dbDf6fb825B7dAcCF5cbBe51bfcCe42f0C4a ; < u020GZpYobPf0Ato22l118hlB9G52z6DrK72md2m1cjZCGUpco84X5rk19LmFeG6 > > 12 // < CALLS 0,000191615491550751 ; quote ; 0,0000458087589837086 ; 0,0000448925838040344 ; 0,0204081632653061 ; 1,7 ; 0,0000438847911063928 ; 0,0000477327268610244 ; -3,4 ; 0BE4B6F3aDc53ea4fbB3BeCcE78Ce66F8ef2aee3FAB90E0fBcD7Bb8ef39F1bc6 ; < jVrR3x2gSfcq4XiWdUyES1t6OUsv2i96W5IXJOkMzh48pZ8243yOjC3Z77ufEfi9 > > 13 // < CALLS 0,00020032528662124 ; quote ; 0,0000412278830853377 ; 0,000040403325423631 ; 0,0204081632653061 ; -1,2 ; 0,0000394963119957535 ; 0,0000429594541749219 ; -3,7 ; bE2500F8Deb6FAaCC0C10acDFE75Fa4F9beFaECeeEcBbaCFf4efEFd7F0d1Ef73 ; < 5C4kbMuho75Zn3RaRIvZUV2mnaf40yDk4CJ6742jse1K2667d7bSi54no7p7Bmrh > > 14 // < CALLS 0,000209035081691728 ; quote ; 0,0000371050947768039 ; 0,0000363629928812678 ; 0,0204081632653061 ; -5,3 ; 0,0000355466807961781 ; 0,0000386635087574297 ; 0,9 ; 18DBF435C9edBd4eAEB2fc9DEd04F733D7a0dE3BDC7FB431eDdBbdA4FAea6CaE ; < 367lpsJu7pAQKS3j2uEMBq25B80zWD1Ft6TIZ6X4g9Uk13pULs45731wd777PSFS > > 15 // < CALLS 0,000217744876762217 ; quote ; 0,0000333945852991235 ; 0,000032726693593141 ; 0,0204081632653061 ; 8,8 ; 0,0000319920127165603 ; 0,0000347971578816867 ; 2,8 ; AE11342c0aA0ef1EFa848DEbCCCaEd8Bfa7026B7d6BDaD3ea0ADAcC3Fe6e5f99 ; < V603ir338pGWpK37fe3oXgYUJ30XZPqpx489J5rHxryg6kmad4qqYG89Foa29yWt > > 16 // < CALLS 0,000226454671832706 ; quote ; 0,0000300551267692113 ; 0,000029454024233827 ; 0,0204081632653061 ; -7,4 ; 0,0000287928114449044 ; 0,0000313174420935181 ; -1,4 ; f7c2ADf31EC2aD9FAAcbc029acEf8FBb4e70bC0aBAf5abcdcE3cBe3b9E3dCACC ; < xAo5RH5kXP898Arh4p31uz6j5aQM154Mum1Z43O0YQD1449tp95r832JuUnU6KMC > > 17 // < CALLS 0,000235164466903194 ; quote ; 0,0000270496140922901 ; 0,0000265086218104443 ; 0,0204081632653061 ; 5,8 ; 0,0000259135303004139 ; 0,0000281856978841662 ; 6,4 ; cEfaDFefdfb1C6C8BfE3EFfFf3C5cdedD0ac1DfFBC1aA45dbDCa96aD85Ffa0AB ; < yy9Hau1geuUyiyyMsxUxjq4092R3pWaaQXB152fOFmbk2srp32Nfv599h9AzFCq8 > > 18 // < CALLS 0,000243874261973683 ; quote ; 0,0000243446526830611 ; 0,0000238577596293999 ; 0,0204081632653061 ; 9,6 ; 0,0000233221772703726 ; 0,0000253671280957497 ; 4,5 ; Ba34eD0FBafFc1b6c3ceE3C2FdDCAEA00dcA35EbfedB1FBFcABfA3FdFafEba5f ; < mQ0Mfb3q918DnFI2m5MkXv456306b35pjHKm5T1D75ev2kgG7m3a2l0AR2mAlBEp > > 19 // < CALLS 0,000252584057044172 ; quote ; 0,0000219101874147551 ; 0,0000214719836664599 ; 0,0204081632653061 ; -3,4 ; 0,0000209899595433353 ; 0,0000228304152861748 ; 9,5 ; adec0AC62F6aFC1DeD19AdF80b59AB4d42fe77C4CDfdEEAFfDCFAD2DB9dCEFbF ; < tXdhG49y8vR15C7t571C21yoEkT14b3VY4lK25808XuV03oL9bl3PqUqt7Hobdrc > > 20 // < CALLS 0,00026129385211466 ; quote ; 0,0000197191686732794 ; 0,0000193247852998139 ; 0,0204081632653061 ; -5,6 ; 0,0000188909635890017 ; 0,0000205473737575572 ; 5,8 ; efCEcb4Dba55EF5f6FFfFbF989FF1ca7123f20Ba7Fac5c3FB1aF92b011aa5f2c ; < 6xmESCY9C3uEjrGMFPHAVKnh6nXeqwIEbMfW8u0hF01t83689XEeZPJjBzA26eyn > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000870979507048868 ; quote ; 0,0000197191686732794 ; 0,0000193247852998139 ; 0,0204081632653061 ; 0,9 ; 0,0000188909635890017 ; 0,0000205473737575572 ; -3,9 ; fcA3b1ABbECD3A72C58dF1ffDd8Deca6ae46aBbfaDc5baACDcEEdBd82e3f540b ; < DaN3Ctx1p2G59smhjGscmKBQUs2Rc5qWTZ89WCTdQc83O23da79hTj0V7328i4La > > 1 // < PUTS 0,0000958077457753755 ; quote ; 0,0000219101874147551 ; 0,0000214719836664599 ; 0,0204081632653061 ; -0,8 ; 0,0000209899595433353 ; 0,0000228304152861748 ; -8,5 ; Ba7CCD5A283BC0aeE7CAd1Bd6ceAA5a361Bc5DBfedFaB6af0EAAC9a06D2BB6Bb ; < 587a6Wn4ErJYOA2sovFP62pb4EUV641gj0Q47d1lfz9fVmyipm3eZBGngWAYLnnz > > 2 // < PUTS 0,000104517540845864 ; quote ; 0,0000243446526830611 ; 0,0000238577596293999 ; 0,0204081632653061 ; 3,4 ; 0,0000233221772703726 ; 0,0000253671280957497 ; -2,4 ; FBabdeaBFc4efbEACC2dFCf6dAFBbd0cfD91D53AC3BbCDAB7AbDe7892D866DDE ; < sTZFh5xS4W7aRL1160600LGcNkTGpno9tFg4MnOZi7k6b175NWhTE58sM4wrTmn1 > > 3 // < PUTS 0,000113227335916353 ; quote ; 0,0000270496140922901 ; 0,0000265086218104443 ; 0,0204081632653061 ; -5,4 ; 0,0000259135303004139 ; 0,0000281856978841662 ; 0,7 ; aa76707ba0f1e9BEa1e6eCbCFEE1dE8DfD1dcb583dbeBfDd53b4AFc9facEB4D6 ; < 25Z1OEX3nNGee3545G8m4OGL577LA0Hm59eLHvtwJ9Xg6I6ysMtkEl69Z2opQ66U > > 4 // < PUTS 0,000121937130986842 ; quote ; 0,0000300551267692113 ; 0,000029454024233827 ; 0,0204081632653061 ; -1 ; 0,0000287928114449044 ; 0,0000313174420935181 ; 3,5 ; D6b566aADdeDAC7ceAcbe64caec54BEf9ceddaf55e5CAdE9bbBF3bBD51A48D05 ; < 3YB1ksOMK4uh19YF1B3J6oFX2M9loUuLEU9fA1obVQFgFAJURiFvAI2COS0xYiDK > > 5 // < PUTS 0,00013064692605733 ; quote ; 0,0000333945852991235 ; 0,000032726693593141 ; 0,0204081632653061 ; 7,7 ; 0,0000319920127165603 ; 0,0000347971578816867 ; 6,9 ; 5f17bAAEc2decd4fbcfc5E0Ba1A9C535fCdFccC7BB7A5EEc93f688432747C6ac ; < 4vAKwxp2llWt2a1ptB5H0YNqbh683dZ59qSYB91cORW9S0bLH9dBiNyynp7cnjDq > > 6 // < PUTS 0,000139356721127819 ; quote ; 0,0000371050947768039 ; 0,0000363629928812678 ; 0,0204081632653061 ; 6,5 ; 0,0000355466807961781 ; 0,0000386635087574297 ; 0,8 ; Ca10dcDdbdCFcFaaBf5CDD84b41c4EFa11fE14f7Ac64149bF1fbDaaDfeE99C24 ; < zKU9D3j8BXr4Y3CQpom5nruiyN1O84hDnQ2Oy9731965Q5f3k74lbvK1jvr1Ti6h > > 7 // < PUTS 0,000148066516198308 ; quote ; 0,0000412278830853377 ; 0,000040403325423631 ; 0,0204081632653061 ; -9,2 ; 0,0000394963119957535 ; 0,0000429594541749219 ; -6,3 ; baD4CCD8b94fbeA0d56A4a2Dff0F41af89ed3AfCD5dddAff5fa85CAe9cAadEAF ; < fxqO31Q93oMnfg6RW9dNTjRC6ru1grf8rW8BRL3zH3W0j3ohjN268Ta9x4cR7FRC > > 8 // < PUTS 0,000156776311268796 ; quote ; 0,0000458087589837086 ; 0,0000448925838040344 ; 0,0204081632653061 ; 8,7 ; 0,0000438847911063928 ; 0,0000477327268610244 ; 7,2 ; 2AFeeFaFD774cDbaf8Cc178dacBF8b4Aaf8Dc916B31bEfadC7C9E1c1DedCcfd3 ; < pWs3kRfA09xsRrszC6827JX3D5q5X8u4S5AU40v89j92YMFnRrkyqYpl1sw9t5rl > > 9 // < PUTS 0,000165486106339285 ; quote ; 0,0000508986210930095 ; 0,0000498806486711493 ; 0,0204081632653061 ; -7,4 ; 0,0000487608790071031 ; 0,0000530363631789159 ; -9 ; dCeBC1ab2dCBde26B2A8BCa5eAbFe9bc0FADaadc2EF84aaBadfC0E436782e2bB ; < H41Su9Y1K9Hq0AZOJ8DZlO0hCjU7OvQ39045mR34z00033zZt4RHkrK96Y82985P > > 10 // < PUTS 0,000174195901409774 ; quote ; 0,0000565540234366773 ; 0,0000554229429679437 ; 0,0204081632653061 ; 7,1 ; 0,0000541787544523368 ; 0,0000589292924210177 ; -9,1 ; DA782Cb86Ec17dDFb4CBcB20BDa2aD2aabdF56EE17Be3C7Dd2fcd93Ba4c0DADb ; < JgUG2Onv2n9oyr6bkBrXkXyW4nmVYM3c324ZNgp3NDhiNlcp5AK2L7i88ZTEZT6n > > 11 // < PUTS 0,000182905696480262 ; quote ; 0,0000508986210930095 ; 0,0000498806486711493 ; 0,0204081632653061 ; 8,8 ; 0,0000487608790071031 ; 0,0000530363631789159 ; -8,3 ; EeF3Da1bec395FE3142240a720bb7fbcEdB6ced1cAe9Deef70Fa8FDAA80dcBBc ; < i0QPgKE1tZ94L5pK2qXL6Wgcw3GrE69D20azOO6r137cxP352yJKMjdl3GbZKb8G > > 12 // < PUTS 0,000191615491550751 ; quote ; 0,0000458087589837086 ; 0,0000448925838040344 ; 0,0204081632653061 ; 3,3 ; 0,0000438847911063928 ; 0,0000477327268610244 ; 0,6 ; EB0efA54CAAadAdc0ffccFC28A9ecEcDE0EfECDDddEe51b700100EbAf91DB1C7 ; < 9tzJJNWCV8L43YaDurn7QM2kgZ2qQzwYBLv9G283sDG49f0K6v2V7qJtpsoTAsjJ > > 13 // < PUTS 0,00020032528662124 ; quote ; 0,0000412278830853377 ; 0,000040403325423631 ; 0,0204081632653061 ; 9,5 ; 0,0000394963119957535 ; 0,0000429594541749219 ; -7,2 ; dFFaB8be83DfFa2a2FeA8a6CB7dFB4cAFAFfF91d6fa574b613C80aEAF1bbaDcb ; < iLihcdkpIKgTF76n0J965v23dtsem6m4O52gbH1VyjtGoKEy88UMRlLujr2v8wO8 > > 14 // < PUTS 0,000209035081691728 ; quote ; 0,0000371050947768039 ; 0,0000363629928812678 ; 0,0204081632653061 ; -5,9 ; 0,0000355466807961781 ; 0,0000386635087574297 ; -9,7 ; bE4bE4c3a72a60c34B002aFbDbAA4baaE9daDB0Df66DB1EbFcCCBCeCAE0a6eFC ; < zRMnq6pp8DLTXj259645gso1j9U2N69EqsIlu1bC48u7ME03V2w1zK5nyM48zkM4 > > 15 // < PUTS 0,000217744876762217 ; quote ; 0,0000333945852991235 ; 0,000032726693593141 ; 0,0204081632653061 ; -5,4 ; 0,0000319920127165603 ; 0,0000347971578816867 ; -4,2 ; 35ACcafde8eDAac0CFaBaF231F0018cbC1b6F54eCDbfbFd1AfC019CEFdDaCEff ; < 95eUNb1Q5Nu1DB2BjiJ9lRVJ2UtBV2IJ1m2lGHN2Xd5QI29WOhV99yFoDJ70lpzz > > 16 // < PUTS 0,000226454671832706 ; quote ; 0,0000300551267692113 ; 0,000029454024233827 ; 0,0204081632653061 ; 3,8 ; 0,0000287928114449044 ; 0,0000313174420935181 ; 6,1 ; DfdeFBA879Bee95aA8aA34BfcfDDdaF77Def08fBfFDE379fcCaC8ffFa66557D9 ; < 6I3VOuacFS157E11ekbz71L5y9s635lfwfc8aFzBSk8li4FvUHscmIv2k552kbbi > > 17 // < PUTS 0,000235164466903194 ; quote ; 0,0000270496140922901 ; 0,0000265086218104443 ; 0,0204081632653061 ; 3,1 ; 0,0000259135303004139 ; 0,0000281856978841662 ; -1,9 ; 1FF5dCc3F8EBBdEbD9A3BAf4E2ccFe6EfE6bd1Af4AbDf6cBAAC849Ae7A3dcD2A ; < 1Rrs1Q2ahjo8Kk7qx9rtujigjzFOwJkfO0Z88ZZy8ZQX18P6PR4aHz6RnbX6848z > > 18 // < PUTS 0,000243874261973683 ; quote ; 0,0000243446526830611 ; 0,0000238577596293999 ; 0,0204081632653061 ; -8,8 ; 0,0000233221772703726 ; 0,0000253671280957497 ; 3,3 ; Afe7D1ECa1aF14Ab6bEeC7eFdFe6b4Be7EC2e1eb55CDcbe77dde44CE7eC4a7Df ; < nEy5n9LoV5K330c0VTS3YS54GMVozv8x63TwardEIBZom61e6QDDnx7CNfI7AY3W > > 19 // < PUTS 0,000252584057044172 ; quote ; 0,0000219101874147551 ; 0,0000214719836664599 ; 0,0204081632653061 ; -1,8 ; 0,0000209899595433353 ; 0,0000228304152861748 ; -6,7 ; aF1Fc0d5BFfEb7c4F5935Fe0Eb8C0DfBBAad9D9E0DedAfAf5fD9db2164a65beB ; < kM65g0Kc610z6ir1ySI4FLP4p8TSd9qMVzx7tmCwh7I5d9N65R5c86Vjv983xm41 > > 20 // < PUTS 0,00026129385211466 ; quote ; 0,0000197191686732794 ; 0,0000193247852998139 ; 0,0204081632653061 ; 2,9 ; 0,0000188909635890017 ; 0,0000205473737575572 ; 4,3 ; d4c39a4D2CEB8D1C1fb3Ec14A9f2eF9ffBeB2e3a69d17ddBbda9CdB7113FDFcb ; < 7862T4H1rK6P7OxVy73OW8NkcU2VR1K8kBTOXIz8HLE6g2di1BwYzzxl4xIx87vW > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000218837188297175 ; quote ; 0,0000000336820214072433 ; 0,0000000330083809790985 ; 0,0204081632653061 ; -2,3 ; 0,0000000328399708720623 ; 0,0000000345240719424244 ; -2,5 ; 82E56A6b0cCD0EA8FCA3CBD5bCB7F256c18D48d9aA0f5393dFB8fbD1BEfFf8fD ; < P58h1K56N5ZYzp31uLVrW3zBS6cI60hjXDZ5SAhr903kC57VJdFFYoE1ofXWrPVH > > 1 // < CALLS 0,00000240720907126893 ; quote ; 0,0000000374244682302704 ; 0,000000036675978865665 ; 0,0204081632653061 ; 1,5 ; 0,0000000364888565245136 ; 0,0000000383600799360272 ; -6,2 ; B0cbfF6ac0EfDe39b39D3ebEf5169b8cDCAc6852feDaAfbdBDD8e58E8d0DFE6A ; < 73CPlhA9V035WZnRTprrqkl6h1k2u90Ev2h0205H1BBS5ZT172KrbGk0E6ArJ7OZ > > 2 // < CALLS 0,0000026260462595661 ; quote ; 0,0000000415827424780782 ; 0,0000000407510876285167 ; 0,0204081632653061 ; 6,5 ; 0,0000000405431739161263 ; 0,0000000426223110400302 ; 2,3 ; EB82b7226FE4B3eacb7abaD17e58c7cfEfcCddb4002BfBbB3456BCA8FaCfaC9F ; < oktWRmzpWv26TQuOEe250YRW5d6L6qpGP6r0ZPdaJr91966xO1roq8eZ6eXf6wud > > 3 // < CALLS 0,00000284488344786328 ; quote ; 0,0000000462030471978647 ; 0,0000000452789862539074 ; 0,0204081632653061 ; 7,2 ; 0,0000000450479710179181 ; 0,0000000473581233778113 ; 9,4 ; Ac1fa8D9DF6dD6F66FDabAAEA5baD4F462B5fCF9bfE2D237caAEB6Cf1Caa0cca ; < ilo2058tYaXp2F0ewrKKtRBLsbKk4bRdplrz40rPS7zi3K4L1x0k70iWL0t8pbkS > > 4 // < CALLS 0,00000306372063616045 ; quote ; 0,0000000513367191087384 ; 0,0000000503099847265637 ; 0,0204081632653061 ; 4,1 ; 0,00000005005330113102 ; 0,0000000526201370864569 ; 2 ; 37DceceDeA7bC54Efc3DFcEDc10cdFCc8dD70BEd6A12fA4B4d3D0E8Ed0cAfF22 ; < ne2kpP3Qs7bvt95a9CIoyJ50to8HDzRr9r5L9hXYd6eFsLAY479R4I7bG75j9o7F > > 5 // < CALLS 0,00000328255782445763 ; quote ; 0,0000000570407990097095 ; 0,0000000558999830295153 ; 0,0204081632653061 ; 6,2 ; 0,0000000556147790344668 ; 0,0000000584668189849522 ; 1,4 ; 6Fc7decC2a0cAABCd165cFf3DEDdFdcD66cE9Ce0dA5CcbbbAd7BDbe8BDCfD3eA ; < 4d326L02wDt3MADzENH47vdCW8J0jt44MiwEqUgs9fSi9oI27u3kR3nZS7I0JRnv > > 6 // < CALLS 0,0000035013950127548 ; quote ; 0,0000000633786655663437 ; 0,0000000621110922550168 ; 0,0204081632653061 ; 1,5 ; 0,0000000617941989271851 ; 0,0000000649631322055023 ; 8,8 ; E5aFceAFbeBa2FfA1eb3fb9eDCDCDcCa7A6FCb0fB52d62E1eFdAA60FeaC77CE5 ; < XYARkvq21Ki64O74z5NtNgc7XxiSJhTL3l4OJ870lLk3rdkWy8lP13pqg1bB8xow > > 7 // < CALLS 0,00000372023220105198 ; quote ; 0,0000000704207395181599 ; 0,0000000690123247277967 ; 0,0204081632653061 ; -4,5 ; 0,0000000686602210302059 ; 0,0000000721812580061139 ; 7,3 ; EDB9Fd1AB7Ac0C8e1a3BA3EeC41761faf0Fe6E9deEF35aeCdD079aCd1Efba0FA ; < MSz88ZE1b597VlGLWBEpsW5lxEs21dwX61Gv7yvR45QC2cO8rK3oaG4o5rVn7Cu2 > > 8 // < CALLS 0,00000393906938934915 ; quote ; 0,0000000782452661312888 ; 0,0000000766803608086631 ; 0,0204081632653061 ; -9,9 ; 0,0000000762891344780066 ; 0,0000000802013977845711 ; 3 ; FA230BD8fCf21fBf2A5504cBCEdf1dD7b2c9BBec99a8DfCb04BbCB483dEa2CD5 ; < X4F2Ji6sOkXry0rNstU71KX9DKFz291674ap4srLF6t5O1IxR7gJirL653JPP998 > > 9 // < CALLS 0,00000415790657764633 ; quote ; 0,0000000869391845903208 ; 0,0000000852004008985144 ; 0,0204081632653061 ; -7,4 ; 0,0000000847657049755628 ; 0,0000000891126642050788 ; -4,5 ; DfcdeaCD71EA80DC2dAe1Fe69c3bDAB3fd52Da94Ebebba5bcDaF1e74AabaBcf0 ; < u546CCr3F87arx0c442uW8jU4a8vR7C2e1jMc4b2b91q42awIYpCRf7hdqW0z2bn > > 10 // < CALLS 0,0000043767437659435 ; quote ; 0,0000000965990939892454 ; 0,0000000946671121094605 ; 0,0204081632653061 ; -0,8 ; 0,0000000941841166395143 ; 0,0000000990140713389766 ; 0,5 ; E51EDca652E8D5c5AbfaAC157a5fB8dDa44aFB7dEb04D6ed8f7F473785Ee3aAF ; < TGrW4qySMQQa550b91zU8eXLQ9cu816W81B8N51NvS8Ho60k04sf2PUj9fNGjaIA > > 11 // < CALLS 0,00000459558095424068 ; quote ; 0,0000000869391845903208 ; 0,0000000852004008985144 ; 0,0204081632653061 ; -9,1 ; 0,0000000847657049755628 ; 0,0000000891126642050788 ; -3,7 ; 62eA4CC2A55fE6c1eE1EcbbeaA6bbDeADfADfFa0aeEDaD3eBC7EEEA9C6FCcAFa ; < 73M6Zc9bui523mJ6C0ciWjcHOFzQnq59G1SKpNG32eYkooZsiztlNHSvFk9znB7j > > 12 // < CALLS 0,00000481441814253785 ; quote ; 0,0000000782452661312888 ; 0,0000000766803608086631 ; 0,0204081632653061 ; 3,3 ; 0,0000000762891344780066 ; 0,0000000802013977845711 ; -3,4 ; AD9cA8CfeBB49bfadBD8AaD83FFFBDACa3eAf64ABDec6C9810A576bbcBd4fA4E ; < 0EW2hJ5d30S1cWcc40TyymBXtcTfvwCq2e2n5397VIa1Tih5y86tqciCDUa538Zn > > 13 // < CALLS 0,00000503325533083503 ; quote ; 0,0000000704207395181599 ; 0,0000000690123247277967 ; 0,0204081632653061 ; -8,4 ; 0,0000000686602210302059 ; 0,0000000721812580061139 ; 5,4 ; 6fdddCEA85dBfd2eecEfA809D8a9BE37eaAEf1DE0eFB6BC16110bCf7Ba1CBaCd ; < 367tZ17Dxx153U6wvDFQcBTngMiXoFxKiMC05ogr1Rs8I05MA5u21QCfG5LT6y9J > > 14 // < CALLS 0,0000052520925191322 ; quote ; 0,0000000633786655663437 ; 0,0000000621110922550168 ; 0,0204081632653061 ; 6,1 ; 0,0000000617941989271851 ; 0,0000000649631322055023 ; 5,9 ; 78fc2e8cc3fE9AF697cAEA1cFB1A90FEaFd59Eb43A9eFBfD6EdDbECcdF47effD ; < 1Pqted0Ls12G9Ur6k6N6O3Y44wVFX23gX5IaE79D3i245PG0NvUDFKXEq8be53r4 > > 15 // < CALLS 0,00000547092970742938 ; quote ; 0,0000000570407990097095 ; 0,0000000558999830295153 ; 0,0204081632653061 ; 0,7 ; 0,0000000556147790344668 ; 0,0000000584668189849522 ; 1,4 ; 48aCeb46feaF52e00EeEAeF5caF0EFb0b026Ce39abED296982CaeeBBeE92f11f ; < XHRHxovhfoLM1DYYi6bI297IXnW1lS0a4e748Sg6eFu26yddw21vO65V4RTTg63v > > 16 // < CALLS 0,00000568976689572655 ; quote ; 0,0000000513367191087384 ; 0,0000000503099847265637 ; 0,0204081632653061 ; 0,4 ; 0,00000005005330113102 ; 0,0000000526201370864569 ; 8,4 ; C2d1DECbf97fDfeae4fc284ABDFEE9Bb04dccc8FdDE1cddA5EADBCdeEEdBBA48 ; < XOgGKmpF7vt2xE3dps3Pf8W8FxG75xsdkDX41XG1r90WR0IqqC8f1UPNJr7VEHpS > > 17 // < CALLS 0,00000590860408402373 ; quote ; 0,0000000462030471978647 ; 0,0000000452789862539074 ; 0,0204081632653061 ; -3,9 ; 0,0000000450479710179181 ; 0,0000000473581233778113 ; -6,3 ; a3Fc2E9DBa1B810580cFAafAB0Adcc449Eb70E4D46D6FaCDaCEd3fcB9F338fC3 ; < i9uNYaYmKzf23RYb32870H47sqD3nna0Sdpj8Oy1Nq1oP06E6MV54D88R7a2Ufnv > > 18 // < CALLS 0,0000061274412723209 ; quote ; 0,0000000415827424780782 ; 0,0000000407510876285167 ; 0,0204081632653061 ; 9,4 ; 0,0000000405431739161263 ; 0,0000000426223110400302 ; 5,9 ; e8BbeaD0EBedB50da69BDfCbBFA5b0bEDD4EecEcafDcceA0AAd91Cddf0Fdbc87 ; < GcYIBAwNRLS5IECi3T889S3KoDnQlaa0fhhn5sGmp28XSr4L8o2dqN5pdS8Rr12J > > 19 // < CALLS 0,00000634627846061808 ; quote ; 0,0000000374244682302704 ; 0,000000036675978865665 ; 0,0204081632653061 ; 0,3 ; 0,0000000364888565245136 ; 0,0000000383600799360272 ; 4,8 ; 1Fc9ddA7a168BD715a1DFad5f049b3EaeCEE536fFcF8aCd9ED8a06cd2c33fCFC ; < 7mB249VQSbR678i4kWxhujpHJTkgJ25G4vGCS318W2kIEgoK1310QT79W8hiDXUL > > 20 // < CALLS 0,00000656511564891525 ; quote ; 0,0000000336820214072433 ; 0,0000000330083809790985 ; 0,0204081632653061 ; -0,9 ; 0,0000000328399708720623 ; 0,0000000345240719424244 ; -5,6 ; B71b6cB6e75cBCCBc2cEE8AfFBcBCf66e0FefBEB8d6f7BB8cB1EA9EbCad2bFdC ; < UZ936806vcH765502xnJzvKlz0QyE9ey14Ly57myDT4lUG5A87kIb4QKSspRoT72 > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000218837188297175 ; quote ; 0,0000000336820214072433 ; 0,0000000330083809790985 ; 0,0204081632653061 ; 0,9 ; 0,0000000328399708720623 ; 0,0000000345240719424244 ; -2,6 ; bE2baA6aEB21DADA8A3df8bE6BD33cafceDAeE7B3D90BCbF4FeFEE18E1fDaBfD ; < Xpfz7A35l5AY1a3zgH8QCJkKzq4CMxVJIRMra56yJ6dk3JXw3JD3vVzHV1v0S05k > > 1 // < PUTS 0,00000240720907126893 ; quote ; 0,0000000374244682302704 ; 0,000000036675978865665 ; 0,0204081632653061 ; 2,7 ; 0,0000000364888565245136 ; 0,0000000383600799360272 ; -6,8 ; 9566Ec180F64ADDb12d85ADF6eD0aFcfC893edFfaee65f9eC0C2bf2BaeD88dcB ; < x2iz5Jiq1c8edNjU3CvG1EYygTQWi9vo43WE6137Nza37Aq9M8eGzX5Z5s1V7G1a > > 2 // < PUTS 0,0000026260462595661 ; quote ; 0,0000000415827424780782 ; 0,0000000407510876285167 ; 0,0204081632653061 ; -5,4 ; 0,0000000405431739161263 ; 0,0000000426223110400302 ; -9 ; ADD98eDc6cECfb9d1D3c245246Fc0fDcEfBEd73aaaaBcB179D4da7BeFdcABc2C ; < LkVP35kyJ61MWBjqEOZL8sTVFSKrSWMIh6LEnWNi0nw0VT35j1oOv7B8N37ffE5U > > 3 // < PUTS 0,00000284488344786328 ; quote ; 0,0000000462030471978647 ; 0,0000000452789862539074 ; 0,0204081632653061 ; -1,9 ; 0,0000000450479710179181 ; 0,0000000473581233778113 ; 1,4 ; 83fe70f2Fe2918bae13ae7CC39a8a667b1fDD4e351A7FDaD3E8CBe3FDcc694ea ; < 8VbHCR7a2H4F4KES5v0EVFeH7q63uGb7u85a1WLu8F39VW0s72kaDNyNwq7C3foh > > 4 // < PUTS 0,00000306372063616045 ; quote ; 0,0000000513367191087384 ; 0,0000000503099847265637 ; 0,0204081632653061 ; 4,3 ; 0,00000005005330113102 ; 0,0000000526201370864569 ; -5,9 ; EFEf62bccCBEDD0f1fA21BfdaBEeC96EBB18AEbDFfE2283Ebe75B7c437cDcff2 ; < tZZjvhEQ4uL1n94L2142T825k9ZfY07m9n1mPB1W5333Vj0PI9G6Gf25nGiHesd3 > > 5 // < PUTS 0,00000328255782445763 ; quote ; 0,0000000570407990097095 ; 0,0000000558999830295153 ; 0,0204081632653061 ; 2,4 ; 0,0000000556147790344668 ; 0,0000000584668189849522 ; -2,1 ; eE48fAE2394fE9F659b5BbDe5E35ebd5a5AA1DC828AeC2bBDeB3135e46A8AB8D ; < hFEZgmSkYEb1B54vi3F5ZGnjBIzkb2xLrCc9BG36AVXERd5prxB0MR8hO6RIq883 > > 6 // < PUTS 0,0000035013950127548 ; quote ; 0,0000000633786655663437 ; 0,0000000621110922550168 ; 0,0204081632653061 ; -8,7 ; 0,0000000617941989271851 ; 0,0000000649631322055023 ; 9,9 ; 2d5E8afd7FcFE0DC4eAaDD332C0e52CF5eAe2CA2Dc6AAeAEEA2FA1CAdEC2DEFB ; < QbLJrEhQFt8XX7Ea0A55qlnFobVqYEahvl6TY80f7oTqO3Mjz2sHW7v68W1brp5C > > 7 // < PUTS 0,00000372023220105198 ; quote ; 0,0000000704207395181599 ; 0,0000000690123247277967 ; 0,0204081632653061 ; -4,2 ; 0,0000000686602210302059 ; 0,0000000721812580061139 ; 0,8 ; A103CDD7de1A9BFe52C75bAfcCDED6EF3aBCE8a021ebb0dA0FdEbAF0153DC63c ; < yxMNV3HtxPkxC2id87m46SD1Pyk29hI3CjgR10B0Q51E7Ma3uyq4LozzDcp9xU2i > > 8 // < PUTS 0,00000393906938934915 ; quote ; 0,0000000782452661312888 ; 0,0000000766803608086631 ; 0,0204081632653061 ; -0,3 ; 0,0000000762891344780066 ; 0,0000000802013977845711 ; 5,3 ; FB77dad9CbF752Be4c9CC0fdCDdbcBA3316d0e7Bf20eEa8CFC2bebDb5515B9De ; < XcF8r2YFVH57w9Aq761xg51ulk4I6NY5M4Fco2v3p3JZGjW3KaIOcYHLG9vF11R6 > > 9 // < PUTS 0,00000415790657764633 ; quote ; 0,0000000869391845903208 ; 0,0000000852004008985144 ; 0,0204081632653061 ; 5,6 ; 0,0000000847657049755628 ; 0,0000000891126642050788 ; 3 ; 5E22a0C1530c2910aE9c1C2276A9BABb8CCDf7eFF799deb3db7fB8eB312A1dB2 ; < Od4MLFdH2nV7VyF6lWK4wXlnv47N9dlTo1I0y865iQx9J3195X6P2gI31KP4dTii > > 10 // < PUTS 0,0000043767437659435 ; quote ; 0,0000000965990939892454 ; 0,0000000946671121094605 ; 0,0204081632653061 ; -1,1 ; 0,0000000941841166395143 ; 0,0000000990140713389766 ; 2,3 ; a8B8A3BbBe8eDcCeBa6fECdBdCAf4Ff31Ea74a3cCf1C6d11bABE1F2D2f7b1a79 ; < z7J5P9LE20R9dzqsg3d7d4NCY2t5gp0P436UeBoNEmaG9J224EWFRD1ZQQ582vU4 > > 11 // < PUTS 0,00000459558095424068 ; quote ; 0,0000000869391845903208 ; 0,0000000852004008985144 ; 0,0204081632653061 ; -9,7 ; 0,0000000847657049755628 ; 0,0000000891126642050788 ; 6,2 ; 2DF6bFe7CEdFf8B7cE3E0aAfA8aCeC90bBFFEc69bCdd1Cc6aff7CBbaABcc37bf ; < 6KcJ0k1vn11GvEk20Tro2Xe6W5bZKrOU4Mta8Wku7i2K9Y4wjQt7RG5yvwCW11jX > > 12 // < PUTS 0,00000481441814253785 ; quote ; 0,0000000782452661312888 ; 0,0000000766803608086631 ; 0,0204081632653061 ; 2,1 ; 0,0000000762891344780066 ; 0,0000000802013977845711 ; -1,8 ; 1dfa67abd95d7FdaDebf3C4FDfDFEDAdC9FeccC7b5A3dcdFece9d65efcaFbdBF ; < 8mDKiajlP1VtRF0KU0VjL5y7Mdvam38UtFt99PCLq6xao7059A9LpD9jtu6f45ci > > 13 // < PUTS 0,00000503325533083503 ; quote ; 0,0000000704207395181599 ; 0,0000000690123247277967 ; 0,0204081632653061 ; 1,8 ; 0,0000000686602210302059 ; 0,0000000721812580061139 ; -6,8 ; C1dAdABCaC2bdbf64Dd6e1D7cc6fba4CE293B3FbEEaF8BDFFf0EEB2B0d8Ae8df ; < pjP5nmcaWImF1ai1dK8nrnuAo5gzaw8Crsj6X51Hcrty9UG51H0JqRj5CITLzl9M > > 14 // < PUTS 0,0000052520925191322 ; quote ; 0,0000000633786655663437 ; 0,0000000621110922550168 ; 0,0204081632653061 ; -6,6 ; 0,0000000617941989271851 ; 0,0000000649631322055023 ; 4 ; e9B3DaFEeafE1BFc45dBfA6DDB7dc0Ff83d6FDDf1F38B36ECF20b68Bd6DDcE66 ; < 2SLiKzdcAEAZZS5G1584ig90jlen9ZUkN4ggK7FA4N40i4B0YOpBt8PiI6Bz7WQu > > 15 // < PUTS 0,00000547092970742938 ; quote ; 0,0000000570407990097095 ; 0,0000000558999830295153 ; 0,0204081632653061 ; -1,9 ; 0,0000000556147790344668 ; 0,0000000584668189849522 ; -8,1 ; DfFDd3aAE4CAb4c94Ede73EcDc6DBca16cDD79Dda4EBc2DBa2b9F79dB2D4b928 ; < 4c2OP0U5hltJ9O195eSIsgeDcr9DqEGLTNswtK7duUx84frQMN5Qn5yd3z3KL3ke > > 16 // < PUTS 0,00000568976689572655 ; quote ; 0,0000000513367191087384 ; 0,0000000503099847265637 ; 0,0204081632653061 ; 2,2 ; 0,00000005005330113102 ; 0,0000000526201370864569 ; 1,4 ; e5CADacbcda5225fB84ACA29c42EC0faDc6EABDa2fE8F8e686bbBbAEf0BaCad9 ; < ia9s6a9gmLjj79d8z5DzmowJnTV3XqYhKiBffc8bV2L2g7H369pKAq2ks1CAII38 > > 17 // < PUTS 0,00000590860408402373 ; quote ; 0,0000000462030471978647 ; 0,0000000452789862539074 ; 0,0204081632653061 ; 6,6 ; 0,0000000450479710179181 ; 0,0000000473581233778113 ; -3,2 ; e13Cf6F0eB42A99BbB4B0319F03Ac1FFBCdA667FCFCCFEF7dEBb2682C9ab917b ; < 8Q1oeD4RA2Z7EWbiadoTEpWVPjbc4L69z8Ee397ACCk84Z24amgVAxvlo37tWk91 > > 18 // < PUTS 0,0000061274412723209 ; quote ; 0,0000000415827424780782 ; 0,0000000407510876285167 ; 0,0204081632653061 ; -4 ; 0,0000000405431739161263 ; 0,0000000426223110400302 ; -0,1 ; ebeDBe0cffe9e3E1C8fAdd5EDADaCf1b58b3Fd3D15C7E8b1Edf6bBaF8cbF3B1E ; < kwcz51tpWfXjmTPHW599EJS7lxuyUL501zX08k3ZU9A43VXztTJ6kN8nzQaBe4X3 > > 19 // < PUTS 0,00000634627846061808 ; quote ; 0,0000000374244682302704 ; 0,000000036675978865665 ; 0,0204081632653061 ; 3,6 ; 0,0000000364888565245136 ; 0,0000000383600799360272 ; 7,5 ; Ada20dF4dc575Cebb6eCDAb6cFd2eAF0aa25EA641ad76fbFcB8181AaBfbDa79B ; < Fjg5fLqMWvigd5ei45wG0rts3VGWZwMZorKXc8Re4AZ45Y0unccZN65M2ojd1FV8 > > 20 // < PUTS 0,00000656511564891525 ; quote ; 0,0000000336820214072433 ; 0,0000000330083809790985 ; 0,0204081632653061 ; 0,1 ; 0,0000000328399708720623 ; 0,0000000345240719424244 ; -6,2 ; AA51ca3Bf49cCFa30eefa01bAEB0ba60DB3BBC2aF510F64bBCFfe3abCE14D9BE ; < Xw1B25bzVZc83FI4R4Ub73a4P89Eidu1P8R2PLt8plHd4683pSMoLNtNyaCU3c3n > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000219078235968816 ; quote ; 0,000000071104758194321 ; 0,0000000696826630304346 ; 0,0204081632653061 ; -7,2 ; 0,0000000689716154484914 ; 0,0000000732379009401507 ; 4,3 ; F9E5eeaF34ea74f5B4E9Ce89eBAEeB60a54cec9bCdaEc6bBCdea95b1DD1b1ADa ; < PZVPOFsioFW5znF10b5Ol2pjuDPuA7mX7134i9LUU274EqEF7D7bBQ1m9WLvtsDH > > 1 // < CALLS 0,00000240986059565698 ; quote ; 0,0000000790052868825792 ; 0,0000000774251811449277 ; 0,0204081632653061 ; 4,2 ; 0,0000000766351282761019 ; 0,0000000813754454890566 ; -1,5 ; 70EBDc1f7AaaaE78eAea7c59dE947dC9e35db9AcD98CBfbbedD552eabc7F53fC ; < 4as2ausO2g3R8YIBGB9AbjtMk56l4EdfS3ZjuXhj2c59a1OX0VuZ8H0Ie1Eorl23 > > 2 // < CALLS 0,0000026289388316258 ; quote ; 0,0000000877836520917543 ; 0,0000000860279790499192 ; 0,0204081632653061 ; -5,2 ; 0,0000000851501425290017 ; 0,0000000904171616545069 ; -7,3 ; afdDfCe5C1e8AE2BBbfDfCC5Fd1Bd6CDcc0cBAaB8B765A4fdE20FdBdf92AbBa3 ; < 8bdg1ZO2Y2hAlp71v1z5sYzj3PoYkA85MtFKJhg062ar01yln5L7QmlLlSWy3ptv > > 3 // < CALLS 0,00000284801706759461 ; quote ; 0,0000000975373912130606 ; 0,0000000955866433887994 ; 0,0204081632653061 ; -0,7 ; 0,0000000946112694766688 ; 0,000000100463512949452 ; -0,9 ; E3edFDA0DA9EBabAfcbcdAa1Bf69e99CBc2CCb4F5eE69b810bB68De96b8DAfCe ; < 7oj11kvjDoGL75O55szEi78Fv1G31EdcyISB9DXTT4A21k2JG62j2Or4l7HWYn5T > > 4 // < CALLS 0,00000306709530356343 ; quote ; 0,000000108374879125623 ; 0,000000106207381543111 ; 0,0204081632653061 ; 5 ; 0,000000105123632751854 ; 0,000000111626125499392 ; 3,4 ; c3b3dd2dbeBe6ef4123a68fB37B02FDFb7EBD7DB148CbDEceCDB3dC5eb4FdFeE ; < fR46x9m3Hq036W95V3zj0ZQQ0l7PdwOnn3pq2Vk74C80799o8a0e2k715moXzDT5 > > 5 // < CALLS 0,00000328617353953225 ; quote ; 0,000000120416532361803 ; 0,000000118008201714567 ; 0,0204081632653061 ; -5,5 ; 0,000000116804036390949 ; 0,000000124029028332657 ; 7,3 ; a64EbCDBe50a7A42dbfABbf99Ec2daeb7C42Ecbc0CBd0CEEF151AcEb0b8D1CfF ; < Vkii0p8AgQJ1S05ypu9py0c2WQ6bQZ5oA1dZls2xim86z9c582ZI0RR80hyXGmFx > > 6 // < CALLS 0,00000350525177550106 ; quote ; 0,00000013379614706867 ; 0,000000131120224127297 ; 0,0204081632653061 ; -8,5 ; 0,00000012978226265661 ; 0,00000013781003148073 ; -0,6 ; b26c29BE3FBEeaa7fe0AeEdCbeE246EF918caE9f1EEdd8FDD5DeBeBE48BB05AB ; < O7Ic4tdeUZ0cJ1RUbAL3524rS17xSJ7TZcjB0PNT4a39QGx1M0aTUSbWbhBJ1aQn > > 7 // < CALLS 0,00000372433001146988 ; quote ; 0,000000148662385631856 ; 0,000000145689137919219 ; 0,0204081632653061 ; 0,9 ; 0,0000001442025140629 ; 0,000000153122257200811 ; 2,4 ; aDA7eF8d4785Addee2bBF5Ebce97CeaAFbb7E3Fe5eBbb4a3aD43D6f38fb4fc7B ; < 3Jttz0kvIKD3uyp0M5OwkPBmjr9v7T1QME8AXDr58d0IRz7Ah67EJ9Pn4Gj9TSnt > > 8 // < CALLS 0,0000039434082474387 ; quote ; 0,00000016518042847984 ; 0,000000161876819910243 ; 0,0204081632653061 ; -8 ; 0,000000160225015625444 ; 0,000000170135841334235 ; -3,3 ; bfdBb3F2cAF56aC1DbAfCA3c3C6D1CdebAe0Ebee6BA9aA9Dfbf04eBBbDfdfaBe ; < 04IR1vIo0YGnJ7B9mAuzDYJ4p7yjuce898G9S8N4waVX62P1XD6m80ZNsguQLH4G > > 9 // < CALLS 0,00000416248648340751 ; quote ; 0,000000183533809422044 ; 0,000000179863133233603 ; 0,0204081632653061 ; 1,7 ; 0,000000178027795139383 ; 0,000000189039823704705 ; -8,8 ; CbBa88af163A3F9cB7b2Ffdfdd6bEA836Df07bfFedD3Dce9740dFFFeedAf8be9 ; < D2FBKcnAGMZ48h540YpIGcf5xrT7mm536L6CT8b41v9XxGO8H49c5IU2cq5JNktj > > 10 // < CALLS 0,00000438156471937633 ; quote ; 0,000000203926454913382 ; 0,000000199847925815115 ; 0,0204081632653061 ; 6,9 ; 0,000000197808661265981 ; 0,000000210044248560784 ; -4,3 ; Bd31B9A2F8E2c3b0EbE1Dd9cE82f9bdFfeB484AdeCced1f64a2b17B8cfbacfB5 ; < 9jAC1OknY0Tl3q44dJtUE9uTmvwK90VGKKW1Xr0YD7ShwjHDBotM80EJnauYHeJm > > 11 // < CALLS 0,00000460064295534515 ; quote ; 0,000000183533809422044 ; 0,000000179863133233603 ; 0,0204081632653061 ; 9,1 ; 0,000000178027795139383 ; 0,000000189039823704705 ; -9,9 ; 6ebD5eEF09B08Bcac140EbaBfefeCaDFDBeBC0eC4Efd06ADFECBd4efdfC4eF7E ; < GLeOD0qX4X2j9WwH17WJ240dNl48Gc47EUw76yx7y7uE5w099u0sDG7EH469k0ue > > 12 // < CALLS 0,00000481972119131396 ; quote ; 0,00000016518042847984 ; 0,000000161876819910243 ; 0,0204081632653061 ; -4,9 ; 0,000000160225015625444 ; 0,000000170135841334235 ; 5,7 ; D2EAe33A078ecBD94A8Aeda56dBbDd6B6e833bBAcCA9c508ccbFDbFc0caf14ee ; < nb9C12ify18xkg3rpO0xoP10UxJpis1XW1IwY43B145E9nKJTy1OPe0ej96HWDBR > > 13 // < CALLS 0,00000503879942728278 ; quote ; 0,000000148662385631856 ; 0,000000145689137919219 ; 0,0204081632653061 ; -5,1 ; 0,0000001442025140629 ; 0,000000153122257200811 ; -1,7 ; fCd3eBC1FE93DDeCeA4e7BCfBD4B5feAbdeaCC4Dd7E93bEb5a54F27fBacBe2eC ; < OTaMUE9SGbvXy7DWs3977jgSrZpa49tV2g3aWz371n7zBwo9p33EPsp8g16tdz64 > > 14 // < CALLS 0,0000052578776632516 ; quote ; 0,00000013379614706867 ; 0,000000131120224127297 ; 0,0204081632653061 ; -7,4 ; 0,00000012978226265661 ; 0,00000013781003148073 ; 3,9 ; 99FE77f7dCB0f69eFDCDa32DFFcb4eFcBcecd4ffCbDdF8acfe89ccea1Ba1B7aC ; < pS0kUAe6L41VP98LbJag38zE38LKJ3xqUp3488dhl68b5V7veQzJomo4tH84Qf9j > > 15 // < CALLS 0,00000547695589922041 ; quote ; 0,000000120416532361803 ; 0,000000118008201714567 ; 0,0204081632653061 ; -3,3 ; 0,000000116804036390949 ; 0,000000124029028332657 ; -2,3 ; F1F2dfdebD5B7F7BEA7bEEfC2afecA7DDeEA1e6aeAdfbBf9bb5fCAcC2b9E0B6F ; < 96EYnJHzttoAI26qB770MUf6Gtaqe3o4NS1Z51aZq44yUf6H3xfk8205NiZJd8Ww > > 16 // < CALLS 0,00000569603413518923 ; quote ; 0,000000108374879125623 ; 0,000000106207381543111 ; 0,0204081632653061 ; -3,5 ; 0,000000105123632751854 ; 0,000000111626125499392 ; -2,7 ; 8d13F48aeDeFecEd7dFB8BCacF7e0FAFCaa2ab5CBcbeAAbceCa9CAFADeD3bABb ; < FP40dL8BG1O65D45lK3de00DY8D3hf1FhReiM74RdP6nsFg1i0zdMbkBzd9Zp25e > > 17 // < CALLS 0,00000591511237115805 ; quote ; 0,0000000975373912130606 ; 0,0000000955866433887994 ; 0,0204081632653061 ; -2 ; 0,0000000946112694766688 ; 0,000000100463512949452 ; 4,7 ; FbAceFB6CeAc97C5FC1bAD7B52dbfD9C37c4efcbAD4CD8cDEDf26eBeF216B1Aa ; < C2Su8JvC76xX9OkO219ovj3P4Zq024dY5aL8kO9880KwW3ESB2b0NtzHnfVf2uEO > > 18 // < CALLS 0,00000613419060712686 ; quote ; 0,0000000877836520917543 ; 0,0000000860279790499192 ; 0,0204081632653061 ; -0,5 ; 0,0000000851501425290017 ; 0,0000000904171616545069 ; 0 ; a10C1A35D4bB5EcBdaDDec3e09Bd8cbaDac831eB1EDbbDAaB0CDb403df0F5BD7 ; < dhPjeAafB95Vmtk4PKb4K77h6SysT5XlN8FEE6n0rk62mwiioaqzT7SV553m72l0 > > 19 // < CALLS 0,00000635326884309568 ; quote ; 0,0000000790052868825792 ; 0,0000000774251811449277 ; 0,0204081632653061 ; 9,7 ; 0,0000000766351282761019 ; 0,0000000813754454890566 ; 3,6 ; 6f77f69Acd5EcbBDD1a1a4151f7A3f2eEE15FeCCeeFdccB1358eE51cf5C79f5D ; < O70BG1GGZp178xIC2ftG094bJv4Ui7ZdFlF136cwu120gIc95oM522kJHVv6eCYX > > 20 // < CALLS 0,0000065723470790645 ; quote ; 0,000000071104758194321 ; 0,0000000696826630304346 ; 0,0204081632653061 ; -5,2 ; 0,0000000689716154484914 ; 0,0000000732379009401507 ; -5 ; 2FeEfbebBFDb2dfcacCdE2EC7EceADBc4ed0fE8DaB043ABDdEbCFafFa43bE2bF ; < Z2b0cPj5hJWCFWf25aRjZ9c7IO97IW0n804aKP02r3ZXbo54948Z3dvWh9jH613R > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000219078235968816 ; quote ; 0,000000071104758194321 ; 0,0000000696826630304346 ; 0,0204081632653061 ; -9,3 ; 0,0000000689716154484914 ; 0,0000000732379009401507 ; -1,5 ; Df7B3f7bb3FcFbfCF83D197AEf4DdF9BAaED5deB90fdAf3BA97F0bf3C59Bd383 ; < G70Ez9sON60kp6iIjVGwG6Dr9E0k3LJ5Xk04g40yCk592U176Se21fqlWvcKqMOs > > 1 // < PUTS 0,00000240986059565698 ; quote ; 0,0000000790052868825792 ; 0,0000000774251811449277 ; 0,0204081632653061 ; -9,4 ; 0,0000000766351282761019 ; 0,0000000813754454890566 ; -5,7 ; 5Bca90Ce9EBD88DCA19c983Eec2FA3b9c8eA3CfFbCD442EcdE4DBf2eEaDcfe1d ; < aG0U7f7452R9c7bKGTR6ijo1447Gp981iUJnTMh8OhQ1m5eSQFA8Ibg8X7plF127 > > 2 // < PUTS 0,0000026289388316258 ; quote ; 0,0000000877836520917543 ; 0,0000000860279790499192 ; 0,0204081632653061 ; 9,8 ; 0,0000000851501425290017 ; 0,0000000904171616545069 ; -8,6 ; 62Dc8BEdA2Eecaa95fb1c6FEfAFCcd6E81EDe00B8A3591cCEf8FB5fA53a48b2A ; < wr5glo849Cp3w0xP19xji7eXGxYOoMl4N3ALGo0FmwGVsZhuEyWYp6X15Z4Ly5E6 > > 3 // < PUTS 0,00000284801706759461 ; quote ; 0,0000000975373912130606 ; 0,0000000955866433887994 ; 0,0204081632653061 ; -8,6 ; 0,0000000946112694766688 ; 0,000000100463512949452 ; 1,8 ; d3FFcb5dDbA59eD0BD3888EDEeCADbA3546c36A3EC6Ffb483C6da088ebeF96Ae ; < hB0Z7Tr821ybDckN3j83kPcnv8m4O4b703eNdK2kju08Z0K7a088fMluvj0q9Fd3 > > 4 // < PUTS 0,00000306709530356343 ; quote ; 0,000000108374879125623 ; 0,000000106207381543111 ; 0,0204081632653061 ; -1,8 ; 0,000000105123632751854 ; 0,000000111626125499392 ; 7,2 ; fdCA53aC1ca4DbbcF9F2A2cBB57FB62dC5D6eEc5DFf06ed1c79FF9B010AaFacE ; < RZUS78n8G94r7TNFR8osdVJYKz7797CKI8UeQ6G424NGzFyVjollPjUxeg50r66W > > 5 // < PUTS 0,00000328617353953225 ; quote ; 0,000000120416532361803 ; 0,000000118008201714567 ; 0,0204081632653061 ; 7,5 ; 0,000000116804036390949 ; 0,000000124029028332657 ; 6,5 ; e9Dc9eB9D0aCaC5CFDcA0ba2fBcFeD1eCcce026B62B0bbc212DDBFE5A79Df0A7 ; < Gi1p9Hv0NuslaCDbrfLg59s17f1l9CP09W2004c0tQv19k9Sr1J03tToq8EPpqe7 > > 6 // < PUTS 0,00000350525177550106 ; quote ; 0,00000013379614706867 ; 0,000000131120224127297 ; 0,0204081632653061 ; 3,5 ; 0,00000012978226265661 ; 0,00000013781003148073 ; 8,3 ; 8cc5baFBAA4dBdCCfa0e7F45BFCFFDEb301Cc1E20C765eD4bEaDaedCBbE4f61a ; < jtLIa7Q0T4l87XY99NSLmvOH6F044sjU727I8VQ3566663kG9ZKWk9iZDUXcVXJw > > 7 // < PUTS 0,00000372433001146988 ; quote ; 0,000000148662385631856 ; 0,000000145689137919219 ; 0,0204081632653061 ; -4,9 ; 0,0000001442025140629 ; 0,000000153122257200811 ; -1 ; ebbDFFBeC3Be3ea9eEAfbd5fFDAafB6de165fcceeD7b1f15c45DFFafB6FB6B3B ; < 10IlV614AX4r4ljH51iDJk03U1usUyJqsCBGMA2bLZ513W5kvkoVhO1nvXp5GrEJ > > 8 // < PUTS 0,0000039434082474387 ; quote ; 0,00000016518042847984 ; 0,000000161876819910243 ; 0,0204081632653061 ; -3,8 ; 0,000000160225015625444 ; 0,000000170135841334235 ; -7,9 ; AEbFb8a7cCfC57eb1Bef2a5EF10BaBf6aEEde5EfebcBB02CBA5EDd3FcdDA2FfF ; < d4351dgydLWaaRb3y2kzlQW797swHw891Q2ZQrsPT4ot1m1M52SF09Lx6IRS38xR > > 9 // < PUTS 0,00000416248648340751 ; quote ; 0,000000183533809422044 ; 0,000000179863133233603 ; 0,0204081632653061 ; 2,5 ; 0,000000178027795139383 ; 0,000000189039823704705 ; 2,7 ; D5BFAB85BCbEaACA2EfadAedD507Cc8aaC0d3cF6FcD8d1b4Cd64CCb1013AF680 ; < 4M38qgK75ffddcX92729nu5bi8ZvzdWksmLWy5183l0oXq9Y4UGVOQK2cc2pg28z > > 10 // < PUTS 0,00000438156471937633 ; quote ; 0,000000203926454913382 ; 0,000000199847925815115 ; 0,0204081632653061 ; -3,9 ; 0,000000197808661265981 ; 0,000000210044248560784 ; -0,2 ; e7E1a056cA2c6D3aDE5abfd6a6E26Fb5fbfaABFA3F5A26bdEAB3c0fFC30BcbaD ; < 2038nmug9036WbqSaY18yQ40uO7e7GhHWoO90tA1O86e32jsk5mYcfExooKwNsUY > > 11 // < PUTS 0,00000460064295534515 ; quote ; 0,000000183533809422044 ; 0,000000179863133233603 ; 0,0204081632653061 ; 6,1 ; 0,000000178027795139383 ; 0,000000189039823704705 ; -0,1 ; f7eC70efbdd70fbC87a920dBcfFEd12fe2ced6F8f5F4ab5CDBA8C78dD06eAD54 ; < 54j1Ej126aImaf6PMDA9aUDQ39Md24bvlUo919i30x257VF2up0B0oFCqExhC9Yz > > 12 // < PUTS 0,00000481972119131396 ; quote ; 0,00000016518042847984 ; 0,000000161876819910243 ; 0,0204081632653061 ; 1,9 ; 0,000000160225015625444 ; 0,000000170135841334235 ; -5,8 ; bECAeFb343CEA9ddbF6BcEf6bFdAEfD54EfAaB032afacdD14d6DF46137B1782f ; < NeR57Ek6YuQD354GwzA3x3HKT5M5nt2dNrZRfHuOqrQ3H8F7i0hu1iyVMmRQMTIP > > 13 // < PUTS 0,00000503879942728278 ; quote ; 0,000000148662385631856 ; 0,000000145689137919219 ; 0,0204081632653061 ; 5,2 ; 0,0000001442025140629 ; 0,000000153122257200811 ; -7,8 ; 54a2c8b8ef5af34f0AE04247Bdd8b2966F262a9DCAFfB6D6bF4aAFeDeAB5CbD3 ; < cVMv56L82I42r94aEe7fp9eopM5zI31G02jxF97W3F6ki7mSg1i8G3C274414TOp > > 14 // < PUTS 0,0000052578776632516 ; quote ; 0,00000013379614706867 ; 0,000000131120224127297 ; 0,0204081632653061 ; -2 ; 0,00000012978226265661 ; 0,00000013781003148073 ; 7 ; E3acCCb0E0bc5e6BB0fbBa2f5f44dfBdD161DC40e9Bf35554A7dBeF1aB9EDEdb ; < 536rFx73510TI8IQY0DGV70X79yXKJpmVC513a6Fkl54f49Pw31lJ2xF6o9Om4bF > > 15 // < PUTS 0,00000547695589922041 ; quote ; 0,000000120416532361803 ; 0,000000118008201714567 ; 0,0204081632653061 ; 2 ; 0,000000116804036390949 ; 0,000000124029028332657 ; -1 ; 63ad4aBACEC5ECCfAEE4Dcb4a9bD4cfdAfC0ac1Bff85DA5c0265Df150DB9F681 ; < Q9aN1LCXsbGUyNxydyZ7DN0B2vbQL0M1fYfHW3QK2h69paBFhnD64qhnWa81YzWO > > 16 // < PUTS 0,00000569603413518923 ; quote ; 0,000000108374879125623 ; 0,000000106207381543111 ; 0,0204081632653061 ; 1,9 ; 0,000000105123632751854 ; 0,000000111626125499392 ; 8 ; aBEeFABDE7eCBcB8e7ed52DFfbfdBCDEA8f3AB496dd54d03396Fbeffa633C9a9 ; < WtTymXs8uGPxArXfnokuN0UrKB6EyCZCzCvgVW1LX755Lbsg4zC0HzsTNSNZhrsQ > > 17 // < PUTS 0,00000591511237115805 ; quote ; 0,0000000975373912130606 ; 0,0000000955866433887994 ; 0,0204081632653061 ; -1,4 ; 0,0000000946112694766688 ; 0,000000100463512949452 ; -5,2 ; b9eDafEc7Afcc1CAecaDaD0BEAE9dbe421c4A76Bb20ed30EE0c6eEd6b77bd5B3 ; < 0UZAgq4602VTB26GIgzHd1eyHjrBgKZUQSV50w6X0jQU6V6C0lJgnEyb4gdfIY26 > > 18 // < PUTS 0,00000613419060712686 ; quote ; 0,0000000877836520917543 ; 0,0000000860279790499192 ; 0,0204081632653061 ; -1,2 ; 0,0000000851501425290017 ; 0,0000000904171616545069 ; -4,7 ; C1b3EadBdDe81A42AFf2002FBe2CfBEa654ac3625dFed7feeEf5fac53dC0B37e ; < j0TG10K1r5eARis2WoJnoA10Bei80HZ5Ph43kNm8E7k4Ue2a9rYZnbq1iPosuWKu > > 19 // < PUTS 0,00000635326884309568 ; quote ; 0,0000000790052868825792 ; 0,0000000774251811449277 ; 0,0204081632653061 ; 5,2 ; 0,0000000766351282761019 ; 0,0000000813754454890566 ; 7,8 ; 8cB9cfDA3Ca5e9FEdF6cDbfC70EbBBd3bd1701B6B4EEf7eaa529fceACdfcEFe2 ; < CPDH66LH2KzL9BH94rKdy58IqmAzRM5q3MUhMcF2rinzA18P580vhu88Q1RhT8Or > > 20 // < PUTS 0,0000065723470790645 ; quote ; 0,000000071104758194321 ; 0,0000000696826630304346 ; 0,0204081632653061 ; 2,6 ; 0,0000000689716154484914 ; 0,0000000732379009401507 ; -0,5 ; 2dDc0A12Bf3cACf70eEb0c3CD3dBCDDa73dBA1C211F5A15EEd246e9315Cbb41f ; < K4567tpRv41hcLe5R6urXw9cKYkAzCX4rZsKow84M00Fm838Yjz60xLbe5mZE50R > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000219915224025948 ; quote ; 0,00000014760841724015 ; 0,000000144656248895347 ; 0,0204081632653061 ; -4,4 ; 0,000000142442122636745 ; 0,000000152774711843555 ; 3,9 ; 3A2ecb465FBdCeCA83F1EC1D81bBAFCCBA98E0e8be0c7B7DE5B4d231AF0E5E2e ; < Lj4504HrQUvP4NsK4AijNVK7c1VMjv3ayqq1fdb67HAe8M2MPjX47H3LL84UdYZl > > 1 // < CALLS 0,00000241906746428543 ; quote ; 0,000000164009352489055 ; 0,000000160729165439274 ; 0,0204081632653061 ; -0,7 ; 0,000000158269025151939 ; 0,000000169749679826172 ; -5,6 ; A6872CdeDb5fee6fD560c4BFCDeCD01DF8CCddCD6F14dc039bdDC8cCccAA1bfc ; < P1O0J1Rv2gvz356Q5JTl7L3l0s01MaAbsn5lm8G4pUh215i7hC25vCFGI5BwX9qn > > 2 // < CALLS 0,00000263898268831138 ; quote ; 0,000000182232613876729 ; 0,000000178587961599194 ; 0,0204081632653061 ; -0,3 ; 0,000000175854472391043 ; 0,000000188610755362414 ; 2,2 ; De22A3eb443EB1cd22c55F3C5faFcd8D3C8EC5EeE7ad4EBbc27E5bffAdabfACc ; < EJ9J8wIS4LMIg6zu4Ihvd6W12ijUA3Pn8cF5x62g123AcAbmbu41dpDbMBC2t6ri > > 3 // < CALLS 0,00000285889791233733 ; quote ; 0,000000202480682085254 ; 0,000000198431068443549 ; 0,0204081632653061 ; 7 ; 0,00000019539385821227 ; 0,000000209567505958238 ; -1,1 ; fAcbcdFbCD4eF81EC980A12F2C72e8cE1fcAeb2dFDcdC70Fd05DFA2aABa7c191 ; < 03D0JEN1Ngd2CYFQd092s9OvEQbg2h3Dc211aeyLIoLr7ixo4EThqoo1eqxv7hK3 > > 4 // < CALLS 0,00000307881313636328 ; quote ; 0,000000224978535650282 ; 0,000000220478964937277 ; 0,0204081632653061 ; 9,6 ; 0,000000217104286902522 ; 0,000000232852784398042 ; 0,6 ; BE30C25CDAba74AC42d3daffAc333935BaBcfecfEDFBa1D42EBe0CB183C6c1c6 ; < dq7VMU6OoJW859HHD15Ma5S8gU2Vps1xPp1ubic7cGs0Xs8ddyb58tGev625YVfV > > 5 // < CALLS 0,00000329872836038923 ; quote ; 0,000000249976150722536 ; 0,000000244976627708085 ; 0,0204081632653061 ; 8,2 ; 0,000000241226985447247 ; 0,000000258725315997824 ; -2,6 ; 7cFb1f6eFFe62Fdf9E5BAAff7f9bFBecefAe86A2BFaf13A4bdfd140EeC3d2dbA ; < DkKNYD9uDK9fbZaBJqC44j5S43BD2foWDqj9TxYFG0tBJX2Crw8702VtTT3i2zK6 > > 6 // < CALLS 0,00000351864358441517 ; quote ; 0,000000277751278580595 ; 0,000000272196253008983 ; 0,0204081632653061 ; 3,5 ; 0,000000268029983830274 ; 0,000000287472573330916 ; -4,3 ; a935a021DBEfbFAbeEB3C5593A624cfba563DC74a0bCd9dfEFC6BbbFEeFdfDAE ; < FqT23BbaG0iayFR1rUTY1UJ52vnAATdobmUC6GRoimk0GtTX5xvzENQi4eUS7a4F > > 7 // < CALLS 0,00000373855880844112 ; quote ; 0,000000308612531756217 ; 0,000000302440281121092 ; 0,0204081632653061 ; 2,3 ; 0,000000297811093144749 ; 0,000000319413970367684 ; -9,4 ; cdfAEfC5Af264fc28DDCb9abc76EAB39e6de4FE0dc1d712e7d4139FCADFCbAd7 ; < Ze1158E9e26tX8t6eGX82E5KP4SLUxRP8FbV9pBnSU57SNDk7zY66st261uNiXwQ > > 8 // < CALLS 0,00000395847403246707 ; quote ; 0,000000342902813062463 ; 0,000000336044756801214 ; 0,0204081632653061 ; 5,4 ; 0,000000330901214605277 ; 0,000000354904411519649 ; -1 ; 1e1EBbCBE1aFeef19EcE73EE0eFd96d95CCfeeB5DdF4CB4980DC3AaF78ff7FaB ; < tKj2N7yCQiI970l8PrrF2a5hW7Yd606b5iY6Mo4cliYOUj5pWxB0hE6fyfXhtOI7 > > 9 // < CALLS 0,00000417838925649302 ; quote ; 0,000000381003125624959 ; 0,00000037338306311246 ; 0,0204081632653061 ; -5 ; 0,000000367668016228086 ; 0,000000394338235021833 ; -1,7 ; Fe5a11db8BD937080ed8Feb0f78A17EC78aCEbc7d4c9eaBbA64Bb6da4fB5cec7 ; < Q1Jc0FLvfj8G044QgI4xapy3oU185kLhZiBNHW026x58RU9OcBuRDX210l4PzCHy > > 10 // < CALLS 0,00000439830448051897 ; quote ; 0,000000423336806249954 ; 0,000000414870070124955 ; 0,0204081632653061 ; -4,2 ; 0,000000408520018031206 ; 0,000000438153594468703 ; -8,7 ; B7ECFAFE3F1fFF5BfcEFe31DbAfA4AE2ACdf14Adf3FaDcF4DFd7C5f0DbACDBF4 ; < P793XC48792K6dcs5m1uP0eX1YY1Pw1qDsVaXG5QWf4CsLzgi7d28rW1vcXcA2GB > > 11 // < CALLS 0,00000461821970454492 ; quote ; 0,000000381003125624959 ; 0,00000037338306311246 ; 0,0204081632653061 ; -4,4 ; 0,000000367668016228086 ; 0,000000394338235021833 ; 1,6 ; 01aaE3C5fEDF417AaDfFFCcBDFFAd9D1aF6a1C0cCfd61DaEA1167bf390fC26EB ; < 3lG09v5F211v01mjxSIBGkHSx2y80XRhPRnvsb4tDAHw98OD7999CM1Kko4Et3nn > > 12 // < CALLS 0,00000483813492857087 ; quote ; 0,000000342902813062463 ; 0,000000336044756801214 ; 0,0204081632653061 ; 6,1 ; 0,000000330901214605277 ; 0,000000354904411519649 ; -5,1 ; aCC225bED9CD15010BBEdAe0bDD15E4DB9aAfBaf8aB9d7DbBc0dFEaEA7c1Ab0A ; < jAL9CPVJu440X3vy0nRfbvhA8gkZgBt4w8Z0wB2XHPwlpK3SvIE6m1R784vF68E5 > > 13 // < CALLS 0,00000505805015259681 ; quote ; 0,000000308612531756217 ; 0,000000302440281121092 ; 0,0204081632653061 ; -6,8 ; 0,000000297811093144749 ; 0,000000319413970367684 ; -4 ; DFEbffaE31EA9bC66BF085F4E497A77AaFF83c1e24CecabAA3531A63CC4ab8db ; < drjK0FXhI4La7tGo1ysIc77GDxZg7Y1yEK1JEO0Ez0g9q0eEYfjI4uG2FF974c16 > > 14 // < CALLS 0,00000527796537662276 ; quote ; 0,000000277751278580595 ; 0,000000272196253008983 ; 0,0204081632653061 ; -7,3 ; 0,000000268029983830274 ; 0,000000287472573330916 ; -3,4 ; 6ddDBCEDC256f1BBADAB221CbdFB3696ed12D68C6a5ae61acEbf6Ba6e17FfdCc ; < BBV5DjJicg1F6nHp35C7QnaHB27s551BoXkJ221xFovf58olUUv5x0Vg22e0cVO0 > > 15 // < CALLS 0,00000549788060064871 ; quote ; 0,000000249976150722536 ; 0,000000244976627708085 ; 0,0204081632653061 ; -7 ; 0,000000241226985447247 ; 0,000000258725315997824 ; -1,2 ; Bbd4da4aEb18a1aEFacCcaeB3bCEDA9E931Bc7F57b0D195BA4DdFb9F0db9dCc7 ; < DMsUsfrS708W842H0bdyHDG52748yiWZ5beku7iJ78OA7Q8y20032Cs5Wc7ky72V > > 16 // < CALLS 0,00000571779582467466 ; quote ; 0,000000224978535650282 ; 0,000000220478964937277 ; 0,0204081632653061 ; 9,8 ; 0,000000217104286902522 ; 0,000000232852784398042 ; 6,7 ; fdf63BCA4D6dC1b36A5c55487Ba9FC3c22AdbDC5BF62A0FaF0c6bD71d3bEecEe ; < FB0tVQ882iTleb0xId72Cny1eWvK6bcOLwt95f3271M8o4HXnicAnIu7v8pKq96Y > > 17 // < CALLS 0,00000593771104870061 ; quote ; 0,000000202480682085254 ; 0,000000198431068443549 ; 0,0204081632653061 ; -6,5 ; 0,00000019539385821227 ; 0,000000209567505958238 ; -1,4 ; 234e9CaB6DbD7aCeA8Abb0DDc73E127fCFB1EAf1beE5bd1bebcf2DcF2f7b69B4 ; < pC2ws3cvGGaU74808ppvg9933yC3dP3kRfp66baIp9Zoq1N76S79CFo9de9JWpY9 > > 18 // < CALLS 0,00000615762627272656 ; quote ; 0,000000182232613876729 ; 0,000000178587961599194 ; 0,0204081632653061 ; 2,1 ; 0,000000175854472391043 ; 0,000000188610755362414 ; 5,8 ; CB2c6f5B94cefc1FfA8a1AfBcE4Dd7EA8Bf5BEEc8D0e8BEe8A70F219FfDEF1BB ; < Ojh800Zmfm7662R8E3279I3P67uBs4u9y4eIL8gq6GP4IH6CAWZ8om858ES4gK91 > > 19 // < CALLS 0,0000063775414967525 ; quote ; 0,000000164009352489055 ; 0,000000160729165439274 ; 0,0204081632653061 ; -5,8 ; 0,000000158269025151939 ; 0,000000169749679826172 ; -7,6 ; d6AcAB357b39bd8E0fece3BBb8DccdEa12Cc34C6A9ba82E1CCdEFED74dDe94a1 ; < XnKT3p6wykeBlE5J2A95vX9whQdl2brslBJzhT8J5oMKLvT7Blj5RsU1c75C9nsQ > > 20 // < CALLS 0,00000659745672077845 ; quote ; 0,00000014760841724015 ; 0,000000144656248895347 ; 0,0204081632653061 ; -9,5 ; 0,000000142442122636745 ; 0,000000152774711843555 ; 4,1 ; A187Eb7D9cA8B6FF4CAA6eFaEeA6Fc85AffB5a61Bf5FfFb7a87515BcACDcDeFc ; < zsUGmdq8ina9787m2CL22TaV5IIoLsDXY09o3zTt69eS1L425NfTosp9G4oa0W6z > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000219915224025948 ; quote ; 0,00000014760841724015 ; 0,000000144656248895347 ; 0,0204081632653061 ; -3,5 ; 0,000000142442122636745 ; 0,000000152774711843555 ; 0,6 ; dfFbdc7e47EcbEf3aFfFda2Bf8fdea19AaafB84d07BDeAC6fcdEc66A67BeDD16 ; < 6EpiKFEcA1DrjThU4tlf312qq82lC78mapuw9Mg3BlC30nSu2m2Us0pS1Rn2jJ7k > > 1 // < PUTS 0,00000241906746428543 ; quote ; 0,000000164009352489055 ; 0,000000160729165439274 ; 0,0204081632653061 ; -2,5 ; 0,000000158269025151939 ; 0,000000169749679826172 ; -4,9 ; a04ABAD5faC6443Ea9fBC87cCd79bf88AdffDDfcBa39BaFECCEB6C9Eb4FFEDFF ; < K4ZSmk279xNws3DE8EM9c0aT70A5U8RJcXWXx5K586L7mAMY6OiSuTa3tNnHkm6N > > 2 // < PUTS 0,00000263898268831138 ; quote ; 0,000000182232613876729 ; 0,000000178587961599194 ; 0,0204081632653061 ; -7,9 ; 0,000000175854472391043 ; 0,000000188610755362414 ; 7 ; D9bF5EDd71CAbe4C0aBFafe3D67d5BDFDEeE472E9a54255De5e38B0Fad0773B7 ; < wEB7eZL6GUkOhUVqaJ7n96UoB4R3wz38hZ46f2uc94v50JQ3REBt1R4ZD5r60tzL > > 3 // < PUTS 0,00000285889791233733 ; quote ; 0,000000202480682085254 ; 0,000000198431068443549 ; 0,0204081632653061 ; 2,4 ; 0,00000019539385821227 ; 0,000000209567505958238 ; 7 ; a3Cb9F9c9c5d56Af5BCE4CcCbe53EB29E31e9BbbAf8236EFcbAFd8c24DEDba98 ; < 2c6d6xDyx87Oy1Dq47VB3YdtBzlgOQaf3DRlOu3896f626Zq5eFw3vW6C2pyvNQp > > 4 // < PUTS 0,00000307881313636328 ; quote ; 0,000000224978535650282 ; 0,000000220478964937277 ; 0,0204081632653061 ; 5,7 ; 0,000000217104286902522 ; 0,000000232852784398042 ; 3,4 ; f512BBcf437d4bE88DE7DAcaB6dD49f8DE9f283AcD463A6AAB8BFeA1Cad7DF1c ; < 1TkbU9014y96u5uj5n8MzZ7bZ3a1GDess6dEF6Y52W6M33SiUVDtMoX6odgdV2rk > > 5 // < PUTS 0,00000329872836038923 ; quote ; 0,000000249976150722536 ; 0,000000244976627708085 ; 0,0204081632653061 ; -1,5 ; 0,000000241226985447247 ; 0,000000258725315997824 ; 4,8 ; fe9ACD4d8F1cfDe2dC679f28be4eeb6AC9a8dBa612faD8E20fddC25efD7DBCB1 ; < EJrc5c54obWq46iJodoj1YBTmLdw3em9p6u4J3e100X565A60fzikW5jhwqXxO8j > > 6 // < PUTS 0,00000351864358441517 ; quote ; 0,000000277751278580595 ; 0,000000272196253008983 ; 0,0204081632653061 ; -4,4 ; 0,000000268029983830274 ; 0,000000287472573330916 ; -1,7 ; 8e4ed6bef7fE52fAcE5aB5Eb3bEaC7fedCEcB89B83Fd3CceC089442EAf57ffCc ; < 40kkaztQoZ02D30U7oE9ru132civp67l07z3X31M2tQqQDf923Kc0W6CbW5tEzs1 > > 7 // < PUTS 0,00000373855880844112 ; quote ; 0,000000308612531756217 ; 0,000000302440281121092 ; 0,0204081632653061 ; -7,8 ; 0,000000297811093144749 ; 0,000000319413970367684 ; 1,5 ; Efb9BAFF37daACd0bfaBdda4cCa62d58baaA0A00E4a93cFabEf8F6CC20c7FCBA ; < uv3E0sJus0QpV9I89gh3Q21U7PSu1D4Z2Df8w5Du1LOH46bd6YxbO3R1UG61yvV8 > > 8 // < PUTS 0,00000395847403246707 ; quote ; 0,000000342902813062463 ; 0,000000336044756801214 ; 0,0204081632653061 ; 2,4 ; 0,000000330901214605277 ; 0,000000354904411519649 ; 2,5 ; cCAC4bD4CcBbfc18Ed5Ca06eCA5e1ECEcEeBD8d1b8BDC11aa38aCdFA612AEfA4 ; < BHhX18RbsC3J2o6TPiHZDIn5m6JccYOlv9qH9lhl7Q39q0Q0aVxb1xYG0fjD8pKR > > 9 // < PUTS 0,00000417838925649302 ; quote ; 0,000000381003125624959 ; 0,00000037338306311246 ; 0,0204081632653061 ; 2,2 ; 0,000000367668016228086 ; 0,000000394338235021833 ; 3,9 ; ebf2Be26F006caECBf0EE29cebFdd3BffDCeD2fbb1C04eE16E9fBCb2dcA3Bc08 ; < 7HXyuwX8YGRt5Sht6ewACY8DFs68PaI9eUL76Fe9e5sjRWT5k977ysMT7q1k0C09 > > 10 // < PUTS 0,00000439830448051897 ; quote ; 0,000000423336806249954 ; 0,000000414870070124955 ; 0,0204081632653061 ; 8,4 ; 0,000000408520018031206 ; 0,000000438153594468703 ; 6,1 ; 20e2a60fFEDAA03FBFce979b6F0d6ff4f83bbE9dE3bfd1ec69Cede276CA0Bdb1 ; < I1AuGnt5OrOK2EtW1y11zdC9AjkAuC5BQJDAt34AE63uW026nPCV744YnQ1K6MDc > > 11 // < PUTS 0,00000461821970454492 ; quote ; 0,000000381003125624959 ; 0,00000037338306311246 ; 0,0204081632653061 ; -2,6 ; 0,000000367668016228086 ; 0,000000394338235021833 ; 3,5 ; FDb8cfA8Cfe8ccB5fC74B56Baa8C1caA3efD59A56fdcDAaceB9A0F0acc8Cb8Ee ; < 5SF9M0c165tsP78vd5587CM0u8pxCw9m4Eai3i2kPe4AkRid74Ixx0J9eNJXeetM > > 12 // < PUTS 0,00000483813492857087 ; quote ; 0,000000342902813062463 ; 0,000000336044756801214 ; 0,0204081632653061 ; 0,1 ; 0,000000330901214605277 ; 0,000000354904411519649 ; 5,9 ; f9dA55f5a1fD14ABE9bc1EFb93aebFDEb9A1A9ce96EbfF4fFDeeFb82cde7A665 ; < dsZkCiUYHtrc8QB63QbOzkYI6q81Zy8YQ6JrezsQb79965necc66Dyir22gpYDzy > > 13 // < PUTS 0,00000505805015259681 ; quote ; 0,000000308612531756217 ; 0,000000302440281121092 ; 0,0204081632653061 ; 4,6 ; 0,000000297811093144749 ; 0,000000319413970367684 ; -5,5 ; Dc0D4b379b4702F6DAcdE32D10E8BA99fdEE34b8AEd5bc95EeF5B4beB3ccBCFb ; < mYcI4u8y3nyerLVApA5BYrWlhcj53l14L42v30n90nlynh228nZ75D2I6ValhySJ > > 14 // < PUTS 0,00000527796537662276 ; quote ; 0,000000277751278580595 ; 0,000000272196253008983 ; 0,0204081632653061 ; -4,3 ; 0,000000268029983830274 ; 0,000000287472573330916 ; -2,7 ; 5BBCB2FbceDD4f4eFaC18BceaBDfaDde1fE40ced2Cb9beBAEFA9EEfbcD64bA85 ; < TQZDer90NFqi12sif74puk72Oa3yiL8uTYeyW813yLkxUTPCEfJ8Y8M4khk9SeV9 > > 15 // < PUTS 0,00000549788060064871 ; quote ; 0,000000249976150722536 ; 0,000000244976627708085 ; 0,0204081632653061 ; 0,8 ; 0,000000241226985447247 ; 0,000000258725315997824 ; -4,6 ; 3Ca41F9FDECD9B79a95a09D54AaA2CB71FA9fDaBaFDdACcBDbaA9Ee1abF1eB25 ; < BXhsA7319i7y73G98JBzFHod6lIpXlc0oHUe5GAOljJ1hMaY7o8oJNC45KqBybB7 > > 16 // < PUTS 0,00000571779582467466 ; quote ; 0,000000224978535650282 ; 0,000000220478964937277 ; 0,0204081632653061 ; 3,2 ; 0,000000217104286902522 ; 0,000000232852784398042 ; -3,9 ; cfE1dDcb60b9Aa9beF4AdC3Ff8B7fF9FBDCce220de59A09eAb10AAEC1fa7CeEc ; < A76QbgKW605SQYa1712BLR2fGw6ZTy9OBKqDtNx0clM07RoLWzI22Jt9fk86D2gk > > 17 // < PUTS 0,00000593771104870061 ; quote ; 0,000000202480682085254 ; 0,000000198431068443549 ; 0,0204081632653061 ; 1,6 ; 0,00000019539385821227 ; 0,000000209567505958238 ; 6,8 ; A6aA84dcFEECDfEa24BF5eFBeCEfC5Cf72b3e39cf30BaAE1B22A5EE1E6F3080c ; < nuj4PSYqrSlR2eEsdmYtk30qUbyRLSKCrOUT6Kk921299Z8tsOZS1cyS16UcZ0HK > > 18 // < PUTS 0,00000615762627272656 ; quote ; 0,000000182232613876729 ; 0,000000178587961599194 ; 0,0204081632653061 ; -6,8 ; 0,000000175854472391043 ; 0,000000188610755362414 ; 3,2 ; CAA9FACa1C89bbeCeFc95bCdfce04A4f6D2B2ACfFFc745aeBEAfDCBBFa3c904D ; < rzV8sexqWZGocTDL9jn6dzdcPc09M05ctabc5m1CpGZgfZ9bJDLQk6NR8N4G0I5V > > 19 // < PUTS 0,0000063775414967525 ; quote ; 0,000000164009352489055 ; 0,000000160729165439274 ; 0,0204081632653061 ; -9,2 ; 0,000000158269025151939 ; 0,000000169749679826172 ; -7,5 ; EfFD9AC4B0CEBA8cEcD2BA4dDb15cd2ffDdfbaFEBAF2F9BccFa70bCBdeb85Aee ; < 2xKM1VBb2ewdt1839mAyN53x4b5OF3wxdGb366rSQ2eF8lYRwq8v9Q17mQWWbAqB > > 20 // < PUTS 0,00000659745672077845 ; quote ; 0,00000014760841724015 ; 0,000000144656248895347 ; 0,0204081632653061 ; 3 ; 0,000000142442122636745 ; 0,000000152774711843555 ; -2,5 ; Db2Bd7ecB6FDBaCb6cbbfDEcbc41EDb62EeF4acF81399eEEdF298fbfcfDbc9d2 ; < 42zYM3wk7r8iI5DOOr47oP7JS8iEBl5G0639lv607ooEvNuFN6l3L0wD565i1XM1 > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000222760078744655 ; quote ; 0,000000316834354233107 ; 0,000000310497667148445 ; 0,0204081632653061 ; -2,4 ; 0,000000305111483126482 ; 0,000000328557225339732 ; -8,2 ; EcD1CdA28FCb4FC534E37Aae7C2ec14dE451dF27BB8CEe6BD4bcEA4cBFe6bfAd ; < z1va1ip6Cir7wjJr03f436696lLB2zP9l666muH7R5t3ut8q93N1DM8wG9vIZb7W > > 1 // < CALLS 0,0000024503608661912 ; quote ; 0,000000352038171370119 ; 0,000000344997407942717 ; 0,0204081632653061 ; -4,1 ; 0,000000339012759029425 ; 0,000000365063583710814 ; 2,1 ; d3BefEBdcBEBbddAbD1D283afad0181fb8ed6CBBB9d7Cd473A892F16120aBefD ; < f0J2m3g9sJljMbbtcVHn4t2Lf7U75o6V74KoIGliBSn1Kbl0Jj5v9234trswQ7b7 > > 2 // < CALLS 0,00000267312094493586 ; quote ; 0,000000391153523744577 ; 0,000000383330453269685 ; 0,0204081632653061 ; 8,8 ; 0,000000376680843366028 ; 0,000000405626204123126 ; 4,1 ; AA2eCDF719A2AddABeebbCbd5b405f8E1BCaAE77dc4FF3dD8FADFBAeE3cdfCEc ; < tyUA29q246dU7xBPxV76F45cb1cKKA8lYgS06MDca0SfA1kDHTY342yG03gS1y3s > > 3 // < CALLS 0,00000289588102368051 ; quote ; 0,000000434615026382863 ; 0,000000425922725855206 ; 0,0204081632653061 ; -8,6 ; 0,000000418534270406697 ; 0,000000450695782359029 ; 6,1 ; eBafaFC1aACC5C52b6dBD4F8A15b399dAf2cCCCD4C3AF7c62acd3b2AdccEdFF1 ; < HktRfbJGAd5B9tD350Hu7K4ye0Ci8A6fPEi1V3qmvFf930JJC018NNGz19f0A5DX > > 4 // < CALLS 0,00000311864110242517 ; quote ; 0,000000482905584869847 ; 0,00000047324747317245 ; 0,0204081632653061 ; 3,5 ; 0,000000465038078229663 ; 0,000000500773091510032 ; 3,7 ; DDDd56Ee8A4FaFfE7AeB4DdeceDeadbFE6ecffbdAdcaf1a5c9D9d5E6F0fCDaA5 ; < fW44ERFhrMP6TW5V82kAU8AUaga6d5hc2bY4sYs814F428uJclpsn9Co8hsA9R7H > > 5 // < CALLS 0,00000334140118116982 ; quote ; 0,000000536561760966499 ; 0,000000525830525747169 ; 0,0204081632653061 ; -5,3 ; 0,000000516708975810738 ; 0,000000556414546122259 ; 8,9 ; 7EC9Ceab9D2b80d638bbDCCaC7fAbcDeADA81BFaDABdad66B0F3fbEEB8e1FaCE ; < xkW2x1bKIztC3Ok1m4K147Nm4IKHTRuXC1Ell34EKBHOduV812dUpGI7V2o64dm5 > > 6 // < CALLS 0,00000356416125991447 ; quote ; 0,000000596179734407221 ; 0,000000584256139719076 ; 0,0204081632653061 ; -2,7 ; 0,000000574121084234153 ; 0,000000618238384580288 ; 9,2 ; ad32c9dA6DFD3eEe9CAd123B809FE91eF0Fd54b5aD00fbD65aE7Da6CDBBBBb0B ; < hnqjhR75rA2d93a8M84O0DbTxn1mU89PGtXNyD4qo6iLKLtsCY0XWZeQAGvRHqM6 > > 7 // < CALLS 0,00000378692133865913 ; quote ; 0,000000662421927119133 ; 0,000000649173488576751 ; 0,0204081632653061 ; 2,6 ; 0,000000637912315815725 ; 0,000000686931538422541 ; -1,1 ; EC9bABcAcc300b6B5C3DAAf57eC4cD55FF4FCdaa1A0601DD64eB5b28af4b5CDA ; < a3dU6sjIl81gQClmcBXlfxX8h7yOS3W7C1ncTdnKPh9U33aT6TZ1q6E8BPice6gq > > 8 // < CALLS 0,00000400968141740378 ; quote ; 0,000000736024363465703 ; 0,000000721303876196389 ; 0,0204081632653061 ; -8,8 ; 0,000000708791462017472 ; 0,000000763257264913934 ; -4,6 ; 12eefa070b3ed50ADE87deFdaAc3db7b77C49eFBFFEDE7e2FC6aaBEbbd2Dfa6C ; < wjMbftVX39vEoj29Q3Qa9oNJIrNeIm0leQ4a66v6M0BO00mYMPDRT6MVrLt3k011 > > 9 // < CALLS 0,00000423244149614844 ; quote ; 0,000000817804848295225 ; 0,000000801448751329321 ; 0,0204081632653061 ; 2,1 ; 0,000000787546068908302 ; 0,000000848063627682149 ; 8,5 ; DB0cF9336adeb1AcfCD8DCbc1cbc0f69d4efB4D6eC9FcBf34f0c20dCcBAd63cB ; < 4O1gaHzI4I4f2vE9NE4ne64Uv7xLRdFAHDjjmx2Lxxamzrbakt1tsvd53MXMTdHo > > 10 // < CALLS 0,00000445520157489309 ; quote ; 0,000000908672053661361 ; 0,000000890498612588134 ; 0,0204081632653061 ; -4,1 ; 0,000000875051187675891 ; 0,000000942292919646831 ; -8,2 ; 6B16AfA8B0BaA75DddAbFFaE86BB8fcDCDa6aCd7EbF3ed0cf5C2bfA57dC3fd9a ; < KmtU6ll00RE6A901LSY0Tj84TV4m8b6664P7gSX5pAaN8sVw2xx7uER41J9IvLsm > > 11 // < CALLS 0,00000467796165363775 ; quote ; 0,000000817804848295225 ; 0,000000801448751329321 ; 0,0204081632653061 ; -2,5 ; 0,000000787546068908302 ; 0,000000848063627682149 ; 6,7 ; FFDAdC1AfdCC8FD5fC66FAbeDb8c54AB096c7a4bFe3dFBacAAcDc488DeA1d412 ; < r57zAxrUxRf6vTUsjk41BU98RIUW0fj70BbBW3399qKU80g8HX4yri8zUQytv08C > > 12 // < CALLS 0,0000049007217323824 ; quote ; 0,000000736024363465703 ; 0,000000721303876196389 ; 0,0204081632653061 ; -2,4 ; 0,000000708791462017472 ; 0,000000763257264913934 ; 4,2 ; 26EFEA094FEcadbf7cA69B7DbD4eD8b04F76a2b2cED6EfDA506035fBeaF7DABc ; < P48wSVpkpTpuM0ybuIYfjGkBc6h2S1r96Af5VVZ27LkvP5y6VG4vtXT9Iw0SM55t > > 13 // < CALLS 0,00000512348181112706 ; quote ; 0,000000662421927119133 ; 0,000000649173488576751 ; 0,0204081632653061 ; -9,2 ; 0,000000637912315815725 ; 0,000000686931538422541 ; -4,5 ; eF2dc45BDaE9EC01B9B11AF0c04BdEaE62CeedAE43DbAfaCcf745AdbaBBC3CE6 ; < 9v6V5wByCx5jm5V7VEqVnH2i497N191vk464oDTaX8E2m28nH46V7SBWRj8OLP3L > > 14 // < CALLS 0,00000534624188987171 ; quote ; 0,000000596179734407221 ; 0,000000584256139719076 ; 0,0204081632653061 ; -9 ; 0,000000574121084234153 ; 0,000000618238384580288 ; 0,1 ; 534C2ce4E2CBFd8FcBB69c585BCd73Dd1C9DAEbDAc1Aa8AaDe9caafc4870DEf3 ; < I1Hc5r1z0vNI67t5B2h6J6i22CNJPJT8KL08mXTytnIZEDBSzxQlSKRI6EAI3mVx > > 15 // < CALLS 0,00000556900196861637 ; quote ; 0,000000536561760966499 ; 0,000000525830525747169 ; 0,0204081632653061 ; -7 ; 0,000000516708975810738 ; 0,000000556414546122259 ; 2,5 ; CBb0eFBeB4dbccABdACCf1e62bE08f0e4dFc4E74dA7fDAdaa0FceeBC8ffbA6CA ; < 10fj1kw5QmYPkFmxEI2Pso73G9n8L0bpRJqQGSkU1Ndp50z2P85Klinw18XGADSZ > > 16 // < CALLS 0,00000579176204736102 ; quote ; 0,000000482905584869847 ; 0,00000047324747317245 ; 0,0204081632653061 ; 5,3 ; 0,000000465038078229663 ; 0,000000500773091510032 ; -8,6 ; dAe0EaDcEb586C5b0b9D0e87bfaacDEbd0AbeEaFDFeafBCf4CCAbedc1DdAD107 ; < SOp27W4K8K3859fU17au4OzL4fY34WFwVpld1sBFb84o8DH1D7FxB34L5ilYXWp4 > > 17 // < CALLS 0,00000601452212610568 ; quote ; 0,000000434615026382863 ; 0,000000425922725855206 ; 0,0204081632653061 ; -6,1 ; 0,000000418534270406697 ; 0,000000450695782359029 ; 9,3 ; cfa3d0bAAeCBD4CdDeb6EA1e2Ccac1EDc9F8EE583cae3cC8Bbbbc88BbEfE11BF ; < 87qrXN7HxX4j48hd65GLhA4tNj1OwGs6Kvxcc06Q8bn206zNaQjn8tL9Kw67FPTD > > 18 // < CALLS 0,00000623728220485033 ; quote ; 0,000000391153523744577 ; 0,000000383330453269685 ; 0,0204081632653061 ; -1,6 ; 0,000000376680843366028 ; 0,000000405626204123126 ; -1,5 ; 5EfA4AAd8811f28BBcf3A42fbaE85a23CBadeB06ADf00cc6C5CE2715fe8CabCb ; < EjIA53pKprU5u91lM1Etbd8fN54pw9sGRUkUy5UeTgGm2QC99mxX254c4SNTjT7R > > 19 // < CALLS 0,00000646004228359499 ; quote ; 0,000000352038171370119 ; 0,000000344997407942717 ; 0,0204081632653061 ; -9,6 ; 0,000000339012759029425 ; 0,000000365063583710814 ; -4,7 ; 933dcbBDBd1ccf6EA465aDC1Ab64Fea2FBdbBaceb1Ff24E9DeDeA3EfEbeAFB48 ; < vFW9bz163Xo4iSV8cp5h3Rx5leGp7i90sfTVZEXIM0jsw12YJ9E9iNHuNBDUq0lz > > 20 // < CALLS 0,00000668280236233964 ; quote ; 0,000000316834354233107 ; 0,000000310497667148445 ; 0,0204081632653061 ; -2 ; 0,000000305111483126482 ; 0,000000328557225339732 ; 5,7 ; BafA81EFFCbFD548c12a3CAab6F109579f53A2eA9BBeBcF942DdFB4a68e3eF5b ; < yYoa7jU555Ly0pwKLScBLV74HUM4RVDhkB335t8BiXIxv7bJa0opI8dJ1V4yJ7VP > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000222760078744655 ; quote ; 0,000000316834354233107 ; 0,000000310497667148445 ; 0,0204081632653061 ; 5,5 ; 0,000000305111483126482 ; 0,000000328557225339732 ; -9,4 ; 7b43E24bbd6BEeDD37AbceAe59DECF740DcE5fad4baCe4b9BDef44aDc9dAEBDD ; < SV1qzv85rNauNu2XlyZ4u14I47Q622IQFK66O084Xq0Do7f508r7kZq089jKu0Tk > > 1 // < PUTS 0,0000024503608661912 ; quote ; 0,000000352038171370119 ; 0,000000344997407942717 ; 0,0204081632653061 ; 8,3 ; 0,000000339012759029425 ; 0,000000365063583710814 ; 1,4 ; 0bf710cD3D7a0b8Ce4be97cDdbabEEddeEdA6eB58aE9A5f2bEe730e9Df1Dce89 ; < G968ve105i70bI0ZOSIg8Hku06sdLMXnq385lY2y3iB6qSReGW7k98540lih2537 > > 2 // < PUTS 0,00000267312094493586 ; quote ; 0,000000391153523744577 ; 0,000000383330453269685 ; 0,0204081632653061 ; 1,2 ; 0,000000376680843366028 ; 0,000000405626204123126 ; -2,3 ; 331d5F2757b9DfCbB4AABDce92a0cbA06A8e4E6c81FeFCeA20Fbfdd885F34Fd6 ; < V8T6XKp7768GmFuGV027IL64gl99BO5r8e729nRY6FngKO931d470v0fsLeP0IEK > > 3 // < PUTS 0,00000289588102368051 ; quote ; 0,000000434615026382863 ; 0,000000425922725855206 ; 0,0204081632653061 ; -5,8 ; 0,000000418534270406697 ; 0,000000450695782359029 ; 7,1 ; 179bBaC6Ac29faD3A1FCbbD9eFEf4F3aDBbdcdbdeDaEd2fa8F5f7AcdAAADC84F ; < 2IJhN1z6kiv4086jmbmhAHYUrBr365398XhhOh0A48c6c0Rp225zTMz0s9CCa14G > > 4 // < PUTS 0,00000311864110242517 ; quote ; 0,000000482905584869847 ; 0,00000047324747317245 ; 0,0204081632653061 ; -4,5 ; 0,000000465038078229663 ; 0,000000500773091510032 ; -0,6 ; C6CAcA03A1dbcFf4cfFDb4BAFe0a9EaeAcFCdE6CeFb53F5D7C4a5927ACABeBF0 ; < jb7g3JE27yDu2elu11y2225dQn8tSJ26CWJ6St607g5U01oq8J6r61vc422Hb4Yh > > 5 // < PUTS 0,00000334140118116982 ; quote ; 0,000000536561760966499 ; 0,000000525830525747169 ; 0,0204081632653061 ; -8,9 ; 0,000000516708975810738 ; 0,000000556414546122259 ; 0,7 ; 68Cd4EADca01ed27bc6AfDCCAeebeBE5f2AAB1fAFDB8De6D2BeAA3ABebCdd37c ; < 7cxRQq1GA7A1f6o46GNpsO0q1FWsx3JTFDw67f6Dwvki927nSWc9Xc8RYnY17hAs > > 6 // < PUTS 0,00000356416125991447 ; quote ; 0,000000596179734407221 ; 0,000000584256139719076 ; 0,0204081632653061 ; -7,8 ; 0,000000574121084234153 ; 0,000000618238384580288 ; -3,9 ; e3d222dD8CbfB5Bec0E537B60E54dbC8Edec61EF6C81BdEba24Aa1ABD5Afbf4F ; < hTEA8N8Rx0De4t6Id7X5JL9DnU5oz88vZCdaEtjdJHl3nJ2Z6ahY24PKa3qYfhwn > > 7 // < PUTS 0,00000378692133865913 ; quote ; 0,000000662421927119133 ; 0,000000649173488576751 ; 0,0204081632653061 ; -4,5 ; 0,000000637912315815725 ; 0,000000686931538422541 ; -2,1 ; 5FC3de364DCEa3ABfEc52f43Acb513B4aFc2eDedF00aae4ABe2C6dbCf736bDFc ; < 2846YDJrJi870PW6J96J2f9037iyWmsJg48M8hftC609SZ6z0RW8PIjZj2pdaBf2 > > 8 // < PUTS 0,00000400968141740378 ; quote ; 0,000000736024363465703 ; 0,000000721303876196389 ; 0,0204081632653061 ; 6,5 ; 0,000000708791462017472 ; 0,000000763257264913934 ; -6,2 ; cAeBbFaECc99EE7bBafffcEe3eb1fdeccaE00edd0BA553BAaCfADCbbFaFadf05 ; < 5TskLQ6xG3f127x9wTlp3Wr6G1AmnF8d3G78oeYjK8Ru908tyv4m46LLWh80C162 > > 9 // < PUTS 0,00000423244149614844 ; quote ; 0,000000817804848295225 ; 0,000000801448751329321 ; 0,0204081632653061 ; -0,1 ; 0,000000787546068908302 ; 0,000000848063627682149 ; 3,4 ; 6ED72BadCAAEE674f36f8d8fA0F7bfBfed0dDC32aa6fAcaE3aBbeCEfd09fCceb ; < iwy19Hmpi9375ujG3B0kb7iDMrBq93n1ej8gi1xEby0e60jK66z8bRWzF889flp8 > > 10 // < PUTS 0,00000445520157489309 ; quote ; 0,000000908672053661361 ; 0,000000890498612588134 ; 0,0204081632653061 ; -0,8 ; 0,000000875051187675891 ; 0,000000942292919646831 ; 6,7 ; 6581BAed22eA5c5cE0Ae02dF5eAEaD0bFB8E3eb5Cd0aCCD33e5a6dbedDBF7BdE ; < eCD08RJlU4i321L2ZR6115W8G4w4SpH19658fV9cc8kljCg8ZHA5MH20XU3jPu9P > > 11 // < PUTS 0,00000467796165363775 ; quote ; 0,000000817804848295225 ; 0,000000801448751329321 ; 0,0204081632653061 ; 9,7 ; 0,000000787546068908302 ; 0,000000848063627682149 ; 1,3 ; bf9c1a937A8Bb2fE1ed288CFbEab7F014C8D2Cb3eee53c4ac4218faf1CEfDBf1 ; < W7q70j9tOSk37092DnaRJ1VXv0q4B5A17v1N038I40Ah9cUeEH2aH99sY2HZWUl3 > > 12 // < PUTS 0,0000049007217323824 ; quote ; 0,000000736024363465703 ; 0,000000721303876196389 ; 0,0204081632653061 ; -4,1 ; 0,000000708791462017472 ; 0,000000763257264913934 ; 0,4 ; B6Eee9eC95dc1E5cbbfB6FcEDAB7BAefB81efABbbb5ae8EAAb22B5cd54dDCA3E ; < fi1Qz79Pz8K8VSQndxUc05Pu7YKn5etOi3ZaMkV2I7RCW9WRvv0eXJg2RZgL2FcC > > 13 // < PUTS 0,00000512348181112706 ; quote ; 0,000000662421927119133 ; 0,000000649173488576751 ; 0,0204081632653061 ; 2,4 ; 0,000000637912315815725 ; 0,000000686931538422541 ; 5,4 ; aF073b90EC8dfeDe5E4140075ebdac0EAb8c9d8ECEAF63cbAeCAaaFcAe16F5dA ; < 7MO55PQ81fQ7wKcwm0648ZZ1fmk806aj1lYNJFA82VqJOqQ0Wo5rJM75eeuT9q6B > > 14 // < PUTS 0,00000534624188987171 ; quote ; 0,000000596179734407221 ; 0,000000584256139719076 ; 0,0204081632653061 ; 9,7 ; 0,000000574121084234153 ; 0,000000618238384580288 ; -5,2 ; decf8CBCEDCfab6b74f3BcBD1aAa3aFb193ba0BA547225CBBDD1BFEFfDAB88Fe ; < MULJ80G24r1X8k11F9DqYi6Crbpm20Jh1SQQ1v0k69JHj2TK0XS62D9ib9C35lG1 > > 15 // < PUTS 0,00000556900196861637 ; quote ; 0,000000536561760966499 ; 0,000000525830525747169 ; 0,0204081632653061 ; 5,6 ; 0,000000516708975810738 ; 0,000000556414546122259 ; -3,1 ; B6EDFEB30c472BdAA7e17fDAe90EC98aAeeda63ebC6eAd18D10Eec9Bb8d2bDCE ; < gRq43fEW1qXc4i5d5P9kwe5xfpEX4kG009DS1RC6Mc3Vm2IZMQb6HBNeaQruJ5ry > > 16 // < PUTS 0,00000579176204736102 ; quote ; 0,000000482905584869847 ; 0,00000047324747317245 ; 0,0204081632653061 ; -3,4 ; 0,000000465038078229663 ; 0,000000500773091510032 ; -1,5 ; DAE69A9E28ca4bE6AA0e45dfFBEAb8C6AA2a5DF7E4EeEf12e9dEC89eCbB1d5CC ; < 9rx275L4aWrc6OXC64892L53r2ras06XDl071al32Dvd539mEV0f8MdsB47qIYhT > > 17 // < PUTS 0,00000601452212610568 ; quote ; 0,000000434615026382863 ; 0,000000425922725855206 ; 0,0204081632653061 ; 1,3 ; 0,000000418534270406697 ; 0,000000450695782359029 ; -5 ; dfC0e04810acaBFA2Dc34eB209eAba93Ed4AEaABaCbd20dA2FFdc1bD6E8bCab4 ; < 713W2wuZ8I87c591L0C2E16y3xee7DFPSZWDll9k1c1N72OyJfPaMfY3rgF1jvY3 > > 18 // < PUTS 0,00000623728220485033 ; quote ; 0,000000391153523744577 ; 0,000000383330453269685 ; 0,0204081632653061 ; -3,2 ; 0,000000376680843366028 ; 0,000000405626204123126 ; 5,3 ; bD3eeABA7cffF4C2c7Fb8EbFeBcfeb7C83F38EADcfA1EaeBc1deE5AbDeba1A7E ; < plDQnERW5sM65fM2HOCA453ZO8ka9jrLjcIC8Cg05u78iNE6ct72N28hZz7GXHav > > 19 // < PUTS 0,00000646004228359499 ; quote ; 0,000000352038171370119 ; 0,000000344997407942717 ; 0,0204081632653061 ; 3,9 ; 0,000000339012759029425 ; 0,000000365063583710814 ; 0,8 ; Abb77cF7aEAcfceDB8d6fFeE7f14F8fB5aEefdccA6B87C5FDf0ed08beDDf4BDD ; < 2LFYP1tC4Q42pt8iK1V28tR7PdU1xn7WpOELDB11Ijx3OhVM123hzg54Kqa7Db3E > > 20 // < PUTS 0,00000668280236233964 ; quote ; 0,000000316834354233107 ; 0,000000310497667148445 ; 0,0204081632653061 ; -9,6 ; 0,000000305111483126482 ; 0,000000328557225339732 ; 0,2 ; c4A95DCDD5DcBdefBef7B39D9CbeB8CDACd82F49c9C00b9efaCbe3bc2d167BDC ; < 3s7TZ1D2392L4760JCl4U05Eb5728xCC4rbpPHtoSZayJky2Yp1Ic33Sl86X5QO8 > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000227444622426606 ; quote ; 0,000000514939655544496 ; 0,000000504640862433606 ; 0,0204081632653061 ; 4,1 ; 0,000000493312190011628 ; 0,000000536567121077365 ; 2,8 ; BD9A85FF6eBE1aA7b61bef6A07cADCdb73dcEeFA41c87A8F04Bb960EEAdFf793 ; < wo3s177H0CNMDcFULsgH4kQ0O7J8c84Z9e5CbrUT3Ts7al4LZKNag7hf2l78ja7s > > 1 // < CALLS 0,00000250189084669266 ; quote ; 0,000000572155172827221 ; 0,000000560712069370677 ; 0,0204081632653061 ; -6,5 ; 0,000000548124655568478 ; 0,000000596185690085965 ; -7 ; 9FD1D0F21f76d96c48Cd50e1cFDEEEcEf800FE1E8afE89Ad3E8E0c0a3a0c9F6F ; < CrObp7XmVuUEi8ynIq0yGFLPo5g9wso6Tt867tV6u164lTWTMZ2lL728IThb9Z4Y > > 2 // < CALLS 0,00000272933546911927 ; quote ; 0,000000635727969808023 ; 0,000000623013410411862 ; 0,0204081632653061 ; -6,4 ; 0,000000609027395076086 ; 0,00000066242854453996 ; 6,7 ; 4D56eA267e1bC73Dfff4CEdC3e7DcAAFedf569eCEfeA907aD97FF0fb5d4bcEec ; < w2dVBIecg9ec8mQUmazr1z8pw6gO83Oss1h7gULvqICY2gjOhm7VKR17lx8Y9x87 > > 3 // < CALLS 0,00000295678009154587 ; quote ; 0,000000706364410897801 ; 0,000000692237122679845 ; 0,0204081632653061 ; -6,4 ; 0,000000676697105640093 ; 0,000000736031716155509 ; 1 ; 5D9EBB2A5abfBEeaBD58E4f7Db35a5d54DDCeBb3bfbA48f43fFAEC0FBD1cFAfd ; < 5nJc5a3M9DLniVjgkHM12xvSoW19r1WDRy38cq0S11xkO53A8aiEHWv56J92tkM9 > > 4 // < CALLS 0,00000318422471397248 ; quote ; 0,000000784849345442003 ; 0,000000769152358533163 ; 0,0204081632653061 ; -2 ; 0,000000751885672933439 ; 0,000000817813017950567 ; -0,9 ; e4faD4aB0baD4Aaa7ced33eBb4BBB2FF6f90DcE7EC7E4FFfBEACeAD826aaf405 ; < cD18vsSKA4ly4NT8rqURMLW0hK49t9E13yHvJW6sth8399lV1Vt3dQz9Q8n5E6sM > > 5 // < CALLS 0,00000341166933639908 ; quote ; 0,000000872054828268889 ; 0,000000854613731703511 ; 0,0204081632653061 ; 7,4 ; 0,000000835428525481596 ; 0,000000908681131056182 ; -5,3 ; 4FaBeBfEC2bE736C20FF6061eccbbd64d86beaeA8e3Ac8b31b0D6ED9ec4bE6AF ; < O5MHODW5VhL4E6KxktxNwzg875El0BshxD7xszmp8nMV0t71rBg70PpnIqsx9cEF > > 6 // < CALLS 0,00000363911395882569 ; quote ; 0,000000968949809187654 ; 0,000000949570813003901 ; 0,0204081632653061 ; 8,6 ; 0,000000928253917201773 ; 0,00000100964570117354 ; -6,4 ; F9bDa90Eb00aD3BecEE7B0033aAe8cb3a244DCdEbEafF66AeaFc5bB56cC9ACCe ; < 04sa6WRV43CXaXXsvcn685i53AiVycG96G1c605VE5002YG98NcG18Yn1e435mFO > > 7 // < CALLS 0,0000038665585812523 ; quote ; 0,0000010766108990974 ; 0,00000105507868111545 ; 0,0204081632653061 ; -7,7 ; 0,0000010313932413353 ; 0,00000112182855685949 ; 1,1 ; 1Ce1dAFbB6aE0ACbE3cC2EEd6eEE6C5C12eF5ECafF4BDEfDff9fCB2CFf2eAEC9 ; < BiLDwvJlQ6408c0JuJZ7Qyzbc6FoKdms9nDFBJ1SQWO2839Tb16fT9p0vP1k5v16 > > 8 // < CALLS 0,0000040940032036789 ; quote ; 0,00000119623433233044 ; 0,00000117230964568383 ; 0,0204081632653061 ; 8,6 ; 0,00000114599249037256 ; 0,00000124647617428832 ; 7,3 ; 15949Fc10EE6fcaf699bcEf0b3E28dbC5A8Eb2Aa3DAcDe4fC02e6DbE3495b62B ; < 75C3RnratEt7Fh6q8G9ip7mv3uaBVFsVIrcLFKFUblyP4nCcnWv81QmKcNWXkJm3 > > 9 // < CALLS 0,00000432144782610551 ; quote ; 0,00000132914925814493 ; 0,00000130256627298203 ; 0,0204081632653061 ; 2,9 ; 0,00000127332498930284 ; 0,00000138497352698702 ; -1,1 ; DCCbA08ee15E1E5FF4FD0EeAdcAEEff0Eab4aCe7C3eFEDAbacF57D9E8d8dbffA ; < cS8nLoSGui6ewy1WN8UnkrjHc1FFjHsu1i30Rl7b2tgfQWhG6dX4G1E55by3D04C > > 10 // < CALLS 0,00000454889244853211 ; quote ; 0,00000147683250904993 ; 0,00000144729585886893 ; 0,0204081632653061 ; -4,3 ; 0,00000141480554366983 ; 0,00000153885947443002 ; 1 ; 58ceEad9dc4df8b8f1d9BCEEDaDdeDB88beFaC05E1dBacEDfc03bcFfBeFbf9ca ; < nOlIp038WrSQ8JkBMbue3dT6T2hdBBoA4bIJ7NaPIQ7o17m1Ki2M16y1Pin34151 > > 11 // < CALLS 0,00000477633707095872 ; quote ; 0,00000132914925814493 ; 0,00000130256627298203 ; 0,0204081632653061 ; 1,3 ; 0,00000127332498930284 ; 0,00000138497352698702 ; -3,2 ; Cce1b0E5ba02FEF5cb7dE3Ca73e14DBCA5B28e24Aefff38CE7c7A4FD4Bb5BAcf ; < vA0C1YnN1Oroj2ia8aGEKP7kSA8M6tzst599Y7FQWzaG625p686ML4LR674ld7vW > > 12 // < CALLS 0,00000500378169338532 ; quote ; 0,00000119623433233044 ; 0,00000117230964568383 ; 0,0204081632653061 ; 8,5 ; 0,00000114599249037256 ; 0,00000124647617428832 ; -5,7 ; eF78bF0DDDbBbf77EBee1c7FaFCfaEa1a8afcCFeC51eFEf77Cef3bBB1cCDdc4c ; < d6MLGcz7RE285wO4SsyZ206Pt81Fl99SZz58epb4rLdaA53O07msUkYcW0f6PvSs > > 13 // < CALLS 0,00000523122631581193 ; quote ; 0,0000010766108990974 ; 0,00000105507868111545 ; 0,0204081632653061 ; 8,4 ; 0,0000010313932413353 ; 0,00000112182855685949 ; 6,7 ; fdcEBD6E31BBaAAc23ACffDe09b0CeEbff2ad9eFbe13E5cc3EdC483C7dDCefde ; < m0BguQ02M1liKl0Wr4jpnmDJEuuez1SVe7g0jiwR7t4nb50LB96brWJ8uSr9TGsU > > 14 // < CALLS 0,00000545867093823854 ; quote ; 0,000000968949809187654 ; 0,000000949570813003901 ; 0,0204081632653061 ; -9,3 ; 0,000000928253917201773 ; 0,00000100964570117354 ; -9,6 ; Aa4c83D29dDCecbAEAcBc2fcadece7F09B3b3EEfF04DbFF2AF3acbcA8Dc3d6ad ; < 4HHasoGy00Q0SapKc2z9q5tT085x3U9r1097iPVkmnH9gx6nglu22o5e6IctrO20 > > 15 // < CALLS 0,00000568611556066514 ; quote ; 0,000000872054828268889 ; 0,000000854613731703511 ; 0,0204081632653061 ; -4,8 ; 0,000000835428525481596 ; 0,000000908681131056182 ; -3,1 ; 2BCd689fbcec82fDF5E85f30C5Edc7D4c29deefDAAF0EbdC3a5bF6C2cF0cbfDd ; < joQo5UBoZdHc2zAgozVUN8FCfF240KCLwB3rbTjN11zgBQq3MJOTu4hyZivDhFmI > > 16 // < CALLS 0,00000591356018309175 ; quote ; 0,000000784849345442003 ; 0,000000769152358533163 ; 0,0204081632653061 ; 2,5 ; 0,000000751885672933439 ; 0,000000817813017950567 ; -1,3 ; DCa33DA369B1fafA042Af0C6E34b36ACB6d57baa5F3E0baCdbaF5b9ceEdf52EF ; < 7qF30ZET4DswMS63lRejIc3iDo77XtpNiuP9yLsy8nu5xwB08b4Z6tNo50L7Coxc > > 17 // < CALLS 0,00000614100480551835 ; quote ; 0,000000706364410897801 ; 0,000000692237122679845 ; 0,0204081632653061 ; -5,2 ; 0,000000676697105640093 ; 0,000000736031716155509 ; 7,8 ; bAEe7Ccd9c030cD837b11a3eFDebebF0BC6Dc9aFB7a9fA4B7Bb273fBb0b8ECcE ; < D160uYzH9447gqYBM4OuBIuYg7Bgf72b1mOQ2Qe6S2U87I612k7XrwBH8I566nT9 > > 18 // < CALLS 0,00000636844942794496 ; quote ; 0,000000635727969808023 ; 0,000000623013410411862 ; 0,0204081632653061 ; 8 ; 0,000000609027395076086 ; 0,00000066242854453996 ; -0,2 ; CfF9ad0cc0f9AAEBbD433b8B4cEDCdc3f8A42Da50CAa0bDCfb25CACCe2BCDAD3 ; < z6s1n621VHm5fF9nr6K5nfyW406SjvlO4PJh40l3E6sWBfxo68CZxk28m2i3aldn > > 19 // < CALLS 0,00000659589405037156 ; quote ; 0,000000572155172827221 ; 0,000000560712069370677 ; 0,0204081632653061 ; -2 ; 0,000000548124655568478 ; 0,000000596185690085965 ; 1,4 ; afAf4DF6DbF6deED03eE3CF6228ED5bD1DDC6A6aCdA76Bc2dB8710c3CE2fACf6 ; < ZW59D4rHNeTrD02infT8gJWD11b1h6803R9BG16JsQ19c769PdhiABzp7M5gk3P6 > > 20 // < CALLS 0,00000682333867279817 ; quote ; 0,000000514939655544496 ; 0,000000504640862433606 ; 0,0204081632653061 ; 8 ; 0,000000493312190011628 ; 0,000000536567121077365 ; -7,9 ; DBcA4AaC141a29f8EcA2C4f5F31757BaBecB4abeDcb9bCbFdb6F3c6F6aDDEb6E ; < 6LMQOSoYZoJmZR9ubJLM28Y81au2x504KF85D42G6l6RS3Jk3vkYV8GPO11EH2t6 > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000227444622426606 ; quote ; 0,000000514939655544496 ; 0,000000504640862433606 ; 0,0204081632653061 ; 5,5 ; 0,000000493312190011628 ; 0,000000536567121077365 ; 1 ; BCF40eb4b0aaF6bbaEdB6D2aEecDacCCD7c6c3C91Cdf8cFBBFA5FbD8AA6dF88F ; < 30NOVRq91zbqNFE7U8Wv4840HM7X8UeXKTlGmZPeIeYEme9j93c023Y4xAskGfi7 > > 1 // < PUTS 0,00000250189084669266 ; quote ; 0,000000572155172827221 ; 0,000000560712069370677 ; 0,0204081632653061 ; 2,4 ; 0,000000548124655568478 ; 0,000000596185690085965 ; 9,6 ; dEE9a9bf2BEDdfaaDFcD2C04c24dfAa5E5Fe4f8d3AbD34ce7DCC2Cf1fC6Fb66a ; < J6OhCBQJt4LF67bV7G1RD5gg1URu0MR929C3351oa2MJeUR18dm601O31x541SJm > > 2 // < PUTS 0,00000272933546911927 ; quote ; 0,000000635727969808023 ; 0,000000623013410411862 ; 0,0204081632653061 ; 8,9 ; 0,000000609027395076086 ; 0,00000066242854453996 ; 6,8 ; Cb0D036c0fDCF5eefadd038B494E1A5dd31f40D9A58CCDaDee94C0AD2eBA0055 ; < nJaY154syK6mxHeQqjBPNj3N12SfC4D1AnNWp655aw5Zx9x2001bO0A27uLsrgR5 > > 3 // < PUTS 0,00000295678009154587 ; quote ; 0,000000706364410897801 ; 0,000000692237122679845 ; 0,0204081632653061 ; -4,7 ; 0,000000676697105640093 ; 0,000000736031716155509 ; 6,9 ; 56ca8fdcdb0E8cD40c4c3fa5AEabAf29bfdf5CaEee7ae40FFF40a14dafbdE6DE ; < z6714M5eH3PLQCJDxij25A19wsBK1uU7kgOI0eaAmwmk0lZHr23D8uSuChXz48nR > > 4 // < PUTS 0,00000318422471397248 ; quote ; 0,000000784849345442003 ; 0,000000769152358533163 ; 0,0204081632653061 ; 4 ; 0,000000751885672933439 ; 0,000000817813017950567 ; 2,2 ; 1D13f425b49c0f4D6fa2DE87Ef3dAF579B7C4A5ffc345F1F5EdbBaDcE8D2DA78 ; < B38CLM9D1xGcyWNQ0Pf434Yk1zUR5Ke4ZkC3B426q7dg03TP3EL7d7WT9hb3Hz0J > > 5 // < PUTS 0,00000341166933639908 ; quote ; 0,000000872054828268889 ; 0,000000854613731703511 ; 0,0204081632653061 ; 5,2 ; 0,000000835428525481596 ; 0,000000908681131056182 ; -1 ; CF3A30ecfAbaBbf66B391fAEaDF4a0AA5EAFF0CccbA7b5b2d86B61DC2FffE20d ; < p2v8FBWccYM90hcZ4Z09zN1XUhSYMX85497bcuvvPpCbtO5auaRTj9v624w6wzfw > > 6 // < PUTS 0,00000363911395882569 ; quote ; 0,000000968949809187654 ; 0,000000949570813003901 ; 0,0204081632653061 ; -8,8 ; 0,000000928253917201773 ; 0,00000100964570117354 ; -7 ; deE1Cdcb2ABb6F15Bb4dfFAd7a46EfC3B4BdfBa7E0DCDf4Cc90EBae4eB1adbe5 ; < 5y4652X40c681OM5EQMBGaJQ3vvvunK4jv1Zh6XsE3Cw22tX3CMb9b75PcI1YSrW > > 7 // < PUTS 0,0000038665585812523 ; quote ; 0,0000010766108990974 ; 0,00000105507868111545 ; 0,0204081632653061 ; -5 ; 0,0000010313932413353 ; 0,00000112182855685949 ; 6,8 ; 1BED1CfFBB2c7D5DFa75f5EDec7cAFb0FddaF9a8FFAcfaaFcaD9efDCb2bB6f2B ; < 876o5237Pdl1AkQ8P6mvo0dHcQISnk3ooPnWNJ3c7872c9P0uB41p5pk364SG1Ss > > 8 // < PUTS 0,0000040940032036789 ; quote ; 0,00000119623433233044 ; 0,00000117230964568383 ; 0,0204081632653061 ; 2,1 ; 0,00000114599249037256 ; 0,00000124647617428832 ; 2,6 ; fac1f840aAca5DCdAA556B6bfFbf300B1cB5c232EC0FE7630afafed0a4aEc22a ; < W7YsBgbAHI4x700Tr6024U2Y5jS017yvWMSet6vy0dJ92E0UomTacXUrBbytzmqj > > 9 // < PUTS 0,00000432144782610551 ; quote ; 0,00000132914925814493 ; 0,00000130256627298203 ; 0,0204081632653061 ; -1,7 ; 0,00000127332498930284 ; 0,00000138497352698702 ; -6,5 ; DDebbc9B37bBdbeC9eceBD6970466964fC5340eBF96010a6fc93f9Eaeb62D9CE ; < Yz5ExdmGRPr1IMuUWYZA650YRb721PCB0uiiEr8jV4L83YsbXU8Rc9TSSxQ1X999 > > 10 // < PUTS 0,00000454889244853211 ; quote ; 0,00000147683250904993 ; 0,00000144729585886893 ; 0,0204081632653061 ; 1,1 ; 0,00000141480554366983 ; 0,00000153885947443002 ; 5,8 ; cFe5baF8a9fbAf7aFd89Dedcd9a8d96eFC47E4aF3b9B1A3BcdcB6AF858CfD7CF ; < sUVEpxxRrWH33YlUwom5JG4bKi6sjo0p367xLRyvcm74Xfe1Fj4xsl90Iyv00kol > > 11 // < PUTS 0,00000477633707095872 ; quote ; 0,00000132914925814493 ; 0,00000130256627298203 ; 0,0204081632653061 ; -7,5 ; 0,00000127332498930284 ; 0,00000138497352698702 ; 0,1 ; dFDE56ed982806eb9dcefCAf4aecb42EA0ecDFDe7D78fBaDF95CC2aedCCb5ee8 ; < ZGNQ9BTGgOs43OBZea42xcdZymZH7i6PnbLx90a36P5Vmc2AE0J2FpyNw3z9VsMz > > 12 // < PUTS 0,00000500378169338532 ; quote ; 0,00000119623433233044 ; 0,00000117230964568383 ; 0,0204081632653061 ; -5,7 ; 0,00000114599249037256 ; 0,00000124647617428832 ; -0,8 ; 048baCEBECA2637DD0fbCDbB0F7AceeCD88d9FdAaFe6D1Da42AfFdC1a2CCaCAe ; < uALEgs3EVp55vRKIPRo873cEivPnqsmiEJe7S247Op6gBj5R40B5tbj1y9sW2fHm > > 13 // < PUTS 0,00000523122631581193 ; quote ; 0,0000010766108990974 ; 0,00000105507868111545 ; 0,0204081632653061 ; 8,2 ; 0,0000010313932413353 ; 0,00000112182855685949 ; 5,9 ; E9Cbb0d1fBfCBBbbfE4cecAbBed7B03bFCbCB9502Da9E4AAa0a52feC39ebA34f ; < Q3Dy0Pq10X27O2YBkg8jrbf625DtBQ7ZXL3v4KPC21xQtPXi87yc5KU3FPxeqLSN > > 14 // < PUTS 0,00000545867093823854 ; quote ; 0,000000968949809187654 ; 0,000000949570813003901 ; 0,0204081632653061 ; -4,3 ; 0,000000928253917201773 ; 0,00000100964570117354 ; 6,2 ; EcCFD42Cbeda17a2EF3ae3Dcca7fDdeFDfCF1ceAC7BBDe071a311FBd3ae43cAB ; < LDr8t667VIWPm2rtnjUW3K160aLHW4xkJ7Ul5AVEpTK9Y4jvebZ8iAriYj2P4OQD > > 15 // < PUTS 0,00000568611556066514 ; quote ; 0,000000872054828268889 ; 0,000000854613731703511 ; 0,0204081632653061 ; -7,1 ; 0,000000835428525481596 ; 0,000000908681131056182 ; 2,9 ; 0eCFbfaE1cECDeDAfDF0E37B61FbFFE1dCe4BA96edFfffDEB64f3aCEeeb5fe8A ; < BUU9656kJajRsQMJ2xRUNo8P7OPWnCBO6mB46h445va1a8nHxIpj2or6um3f7EDE > > 16 // < PUTS 0,00000591356018309175 ; quote ; 0,000000784849345442003 ; 0,000000769152358533163 ; 0,0204081632653061 ; 9,1 ; 0,000000751885672933439 ; 0,000000817813017950567 ; -9 ; 35DCBadFbbc10bdd5e5eD4eAE1aAC263BFBFCE8d2a4AbDCAb7b8eb1cDCdB4bdC ; < Pe3K1T2ZAM3Ww8Qt75rtDt52acqS4czn305eRtOgBBpML4j8STVZyJEM45hOLOSM > > 17 // < PUTS 0,00000614100480551835 ; quote ; 0,000000706364410897801 ; 0,000000692237122679845 ; 0,0204081632653061 ; -8,4 ; 0,000000676697105640093 ; 0,000000736031716155509 ; -6,1 ; 6dC0acb6da47Cb5C8DD4DDDeeCf1af2Afe2d8fbfFEeBeABf16BaCB43FaAace9E ; < gN4C0zQh2sE68HPmF3cw16uP65xRG0X9BD20uea3r6unbLu870QK5nh805gL62bS > > 18 // < PUTS 0,00000636844942794496 ; quote ; 0,000000635727969808023 ; 0,000000623013410411862 ; 0,0204081632653061 ; -3,6 ; 0,000000609027395076086 ; 0,00000066242854453996 ; -5,1 ; fcCc73aB60a57fCdEB0A72aF8ffdEc1AEaC9F902C79f1cC17cd4Ae2dbA60e61A ; < A6wY9T1xEUQEwxGQ3c4u7C1mZwumoNG2B34wGKw1fKzmAGV0d10qj0Rx9Cvo8jCw > > 19 // < PUTS 0,00000659589405037156 ; quote ; 0,000000572155172827221 ; 0,000000560712069370677 ; 0,0204081632653061 ; -2,1 ; 0,000000548124655568478 ; 0,000000596185690085965 ; 4 ; EbDDedF89aaCEcf700f1EcDDb27cbcDA03A9ddAB5CE02d457bA35ffFEcAC64CD ; < Cqv7XWCLbhWYVPxNKcDVkGy88d67WsGL52nlTxlH0owu35XV1iNQ11Ul5UbrfrXp > > 20 // < PUTS 0,00000682333867279817 ; quote ; 0,000000514939655544496 ; 0,000000504640862433606 ; 0,0204081632653061 ; 3,9 ; 0,000000493312190011628 ; 0,000000536567121077365 ; 3,2 ; F3BEbf9DF8aeDc40DABFDFdcecdf2f5e9bA52AeEf64bfc3A1ca7d2C1682bDeAF ; < T9N2TlT8rQOyx2p14G4totb4VT6nwlHBudpnTE3sQn42vPKFkDa8lAKNPFFL45M6 > > 21 }
contract VOCC_I018_20181211 { mapping (address => uint256) public balanceOf; string public name = " VOCC_I018_20181211 " ; string public symbol = " VOCC_I018_20181211_subDT " ; uint8 public decimals = 18 ; uint256 public totalSupply = 19800000000000000000000000 ; event Transfer(address indexed from, address indexed to, uint256 value); function SimpleERC20Token() public { balanceOf[msg.sender] = totalSupply; emit Transfer(address(0), msg.sender, totalSupply); } function transfer(address to, uint256 value) public returns (bool success) { require(balanceOf[msg.sender] >= value); balanceOf[msg.sender] -= value; // deduct from sender's balance balanceOf[to] += value; // add to recipient's balance emit Transfer(msg.sender, to, value); return true; } event Approval(address indexed owner, address indexed spender, uint256 value); mapping(address => mapping(address => uint256)) public allowance; function approve(address spender, uint256 value) public returns (bool success) { allowance[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } <FILL_FUNCTION> // } // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00748032419579064 ; quote ; 0,000115132369254167 ; 0,000112829721869084 ; 0,0204081632653061 ; 7,8 ; 0,000112254060022813 ; 0,000118010678485521 ; -4 ; 2Bfcfcce3AcBDA7c55adbEDfbF36Dbdc2ed9a8cD5dfc7efc70c8e36cCAfFFE7d ; < c1pQhuhu9dfcPUJ1VQ8688MsEtaXdu9WysMvDwV0c21Sv4Kh1D2309x91h797Cn3 > > 1 // < CALLS 0,00822835661536971 ; quote ; 0,000127924854726853 ; 0,000125366357632316 ; 0,0204081632653061 ; -1,9 ; 0,000124726733358681 ; 0,000131122976095024 ; -3,5 ; eCDccEB79D2faDDCfBdfFEae64BAD6e7Bfc06F0AEabDD58DEeaBc0eAE38AfBBF ; < 8EKm1eO16lEU2X8G1a41l9V7YYpHVKR0OkF9oAyqyvW8x5eYu6vc3v66ilIX5f2q > > 2 // < CALLS 0,00897638903494877 ; quote ; 0,000142138727474281 ; 0,000139295952924795 ; 0,0204081632653061 ; -0,4 ; 0,000138585259287424 ; 0,000145692195661138 ; -2,9 ; E00dE6a7Bc6Cab9D2BbcEE3da4EEdDAFDc6Ba4f4AbAF7BBE21c214CCE66a5148 ; < t8xHeh889Ag2Z72pA33cX1IxiDvX1AjIk2f1I8Jy4n19g08jBZfRKkEEV47YmFcm > > 3 // < CALLS 0,00972442145452784 ; quote ; 0,000157931919415867 ; 0,00015477328102755 ; 0,0204081632653061 ; -0,8 ; 0,000153983621430471 ; 0,000161880217401264 ; 6,2 ; 78FEf579B1bddb37DC9cAb5afdCaAd624260BC8eAecFDfe2DD7cdbe5b51fFEfF ; < tzy313l0cYC67XFJMHbxK6Ad7XqySLB3HzdduiT64D69AXHJKtOuu9Ahlfym4Uv9 > > 4 // < CALLS 0,0104724538741069 ; quote ; 0,000175479910462074 ; 0,000171970312252833 ; 0,0204081632653061 ; 3,4 ; 0,000171092912700523 ; 0,000179866908223626 ; 0,3 ; Ca827e4Af95De6eEB3e4cdF3bfA9f63DCD2f1fEBAdFaEB0f75bDddf3eaaAD4dF ; < VQ98b4z1fP60u8H17R4V0mz3nERx4xb2LMxwvi3gIlY0PxDy3wI53lE9x8S1A8E9 > > 5 // < CALLS 0,011220486293686 ; quote ; 0,000194977678291194 ; 0,00019107812472537 ; 0,0204081632653061 ; 5,3 ; 0,000190103236333914 ; 0,000199852120248474 ; 7,7 ; fd5F9cb60ecDfD7da2EaD78BcEfbAbbA0B76aAbD9A3FD49bc3fA0B0cea40aC6e ; < r423DtfUp3Luo2K3jRoSs0K91E8im45h8WBi5SgSSlOzM75l55ZDpU6FNJ03qXZz > > 6 // < CALLS 0,011968518713265 ; quote ; 0,000216641864767993 ; 0,000212309027472633 ; 0,0204081632653061 ; -5,6 ; 0,000211225818148793 ; 0,000222057911387193 ; 0,8 ; D20efA9aC8f6FADDbf8cdD9DFFEBaDAF0Cdb5Be73DCcEFcEfbf9DA87FC4AEfcC ; < g73WnMs2T1O10B2nv21xsZ9963m77iq06CDGuLS68s7e49COy20v4f6k1H0U1i8q > > 7 // < CALLS 0,0127165511328441 ; quote ; 0,000240713183075549 ; 0,000235898919414038 ; 0,0204081632653061 ; -1,4 ; 0,00023469535349866 ; 0,000246731012652437 ; 7,5 ; BB15037c11B0485Ff0BEbF428D0BCEAfBfAAaB62DF3CAD368d60AFadEDAc78F0 ; < IknYB9Be6bX0JpB7822M0o5nj37m0R8TUgseOINSe0O4ygg40lu9JE921aG9836G > > 8 // < CALLS 0,0134645835524232 ; quote ; 0,000267459092306165 ; 0,000262109910460042 ; 0,0204081632653061 ; -2,8 ; 0,000260772614998511 ; 0,000274145569613819 ; -1,4 ; FbFbc0b0Bf9BffebCa70bD0efb9f8E1F28FfCDcBbCE5ACd9fdc9A0cDD4BbF4Eb ; < 2jnrTdj9kzd15nQ97LvR419742HJrBd3Ip3XXRV69YYD4j159dQjc3glBjyEI2k2 > > 9 // < CALLS 0,0142126159720022 ; quote ; 0,000297176769229072 ; 0,000291233233844491 ; 0,0204081632653061 ; 6,9 ; 0,000289747349998345 ; 0,000304606188459799 ; -4,4 ; BfdD77BfFfB3FDFB84BbcED52Def0A64EF90EfBBCBbB83FefbED0bA0Ade4ddF9 ; < 75e9PH18Xawp8J5mS19ELQiqtLIeuRO4pey56z3Uk9w7M8M5nlVs9978f1hJW675 > > 10 // < CALLS 0,0149606483915813 ; quote ; 0,000330196410254525 ; 0,000323592482049434 ; 0,0204081632653061 ; -4,6 ; 0,000321941499998162 ; 0,000338451320510888 ; 7,7 ; DD6AACAC3B8ee7EDaCfbEcdfEB69ABD8FAdb27eecEFAAFCEa28DBdE8263Da5F6 ; < 7YEewJFX9UQzUF5G2Lcd7gC2P52Hy2JaA9Gd8V7Fpr8nu6MbdV0Dv6C0ZhT5gu2V > > 11 // < CALLS 0,0157086808111604 ; quote ; 0,000297176769229072 ; 0,000291233233844491 ; 0,0204081632653061 ; -7,4 ; 0,000289747349998345 ; 0,000304606188459799 ; -9,5 ; c67C8303dF5db299cbEf9409Bdd4aCADAbDdfCBFDa0Bf4f5FDCfED7dfC96C9a3 ; < 31437dcJF8Z6sV2NAwCHWM216Gsx39176xXfa65rc55B72gOwq173Jtg5V8wVE62 > > 12 // < CALLS 0,0164567132307394 ; quote ; 0,000267459092306165 ; 0,000262109910460042 ; 0,0204081632653061 ; 7,2 ; 0,000260772614998511 ; 0,000274145569613819 ; 7,7 ; f1FCABDDB6bE12cAfDb86b9AdbEED2Db5e1DcccaF24D3105f87947De3aFd3Ea7 ; < 1ldAtf2tFg9IyyU2MEJ44Q6703gMwi9bKJ5wJiyjNH3i9u24XtMx9029M2N11800 > > 13 // < CALLS 0,0172047456503185 ; quote ; 0,000240713183075549 ; 0,000235898919414038 ; 0,0204081632653061 ; 3,5 ; 0,00023469535349866 ; 0,000246731012652437 ; 2,4 ; A87FC92eCC32bEDAfd0dCADEb54f6c7747D0Dc26acb22f9DD8B6C2A6AdB02FBC ; < Gb3RsZY958LV4O782Tu3fCRFQfFuh5ufrrkf696kA2lW7EDiaWlwMC0m158q9ONh > > 14 // < CALLS 0,0179527780698975 ; quote ; 0,000216641864767993 ; 0,000212309027472633 ; 0,0204081632653061 ; -0,9 ; 0,000211225818148793 ; 0,000222057911387193 ; -8,1 ; cEdedEB1FFEA8277ACCaA114FdDcE9DddcB4eaCEeAaFDAFbEacBe949fBDDDA8a ; < O9SG3ogoG6lSK9J7Fe7tv0bgUF1rfnLv409F97q2Aj651YqEDeafn4i4Uw87eQ08 > > 15 // < CALLS 0,0187008104894766 ; quote ; 0,000194977678291194 ; 0,00019107812472537 ; 0,0204081632653061 ; 0,4 ; 0,000190103236333914 ; 0,000199852120248474 ; 6,5 ; 27f94AC707EabeEaa7b0fADEC0baCccecF2Ef5cfEEAdffb1bf0eCBaa2D51cB40 ; < AU0285OunPSXB8Q9p93hLac9f2QH7WH7n0YC55t7qNAqaeTt15Wgh5110FFEqT8o > > 16 // < CALLS 0,0194488429090557 ; quote ; 0,000175479910462074 ; 0,000171970312252833 ; 0,0204081632653061 ; -2 ; 0,000171092912700523 ; 0,000179866908223626 ; -7,1 ; CDaF4F3aC9d851A38C1aFDbA389606beaBEbDbeD1eBBDFFAFf52364d0FDfAF1c ; < 5Dv7KZu1jrTxnH2q8Ax7kl04lkUO61J76p2jNX4U8WS45bD6iRow63l4hSvb7UKV > > 17 // < CALLS 0,0201968753286347 ; quote ; 0,000157931919415867 ; 0,00015477328102755 ; 0,0204081632653061 ; 6,5 ; 0,000153983621430471 ; 0,000161880217401264 ; 2,8 ; 6f12f1ECD580B9ff555E1E9eefd12Ef9fe367EBDeB3E73ccDADDBbfA3eAFaa6E ; < 5FO3bZ01LVwBhN19R7fvw74026KktRTjgp371j8ku0vmCv1f6F8h0a7OvnRrb246 > > 18 // < CALLS 0,0209449077482138 ; quote ; 0,000142138727474281 ; 0,000139295952924795 ; 0,0204081632653061 ; 2,5 ; 0,000138585259287424 ; 0,000145692195661138 ; -1,2 ; 9E0DDE52cEEB4E4DEE0df01EBc1D4fecd8fAcEe0EAb4DeBf0BaFe21af2F1CDc7 ; < vBKouNBNEnvZLMkvM3d4ffLm82J6B182EL32v4w7jk1MT8hz6x6MEyjPU2BK9678 > > 19 // < CALLS 0,0216929401677929 ; quote ; 0,000127924854726853 ; 0,000125366357632316 ; 0,0204081632653061 ; 6,1 ; 0,000124726733358681 ; 0,000131122976095024 ; 4,2 ; Ae133CcB44Fa479d9eaE4fce1BBE6ddfbde38cF0Cc27Ec9dDFDC0fae05CffBAa ; < 5Ezp0r7pJAp1ON8soS8g52D40xcS6u65rX4kKb32MeLS5BrEj8Y14nUlFrzpDhsw > > 20 // < CALLS 0,0224409725873719 ; quote ; 0,000115132369254167 ; 0,000112829721869084 ; 0,0204081632653061 ; 6,4 ; 0,000112254060022813 ; 0,000118010678485521 ; 5,8 ; EFce69ABB0A69Bed1B9EC04CAcB26cab9CFB9FCBEbEdDa8dEDCDB1bc2C9aF6de ; < 3U782roz0lCnEhWHu3jL4YJ4w20349YD0X6S13ii4trMWIoR6S9UZ4zbjA99tDbX > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00748032419579064 ; quote ; 0,000115132369254167 ; 0,000112829721869084 ; 0,0204081632653061 ; 9,9 ; 0,000112254060022813 ; 0,000118010678485521 ; -5,1 ; EC140e8Bbd2B2BB9E2Bc2fB9aE9dBEe7AC18DcDc9bEfCF6bfF9EBA13fBcD63ED ; < 9axW7NtEZsM4TTX2WnPztS1JAP2sgTC0FKwl1I5vPj0ASImJEG4vAUbP08s4s63d > > 1 // < PUTS 0,00822835661536971 ; quote ; 0,000127924854726853 ; 0,000125366357632316 ; 0,0204081632653061 ; -1,6 ; 0,000124726733358681 ; 0,000131122976095024 ; 7,3 ; FEFdd480de976EbaDe5abdA7d4bB7dDc99d8F1c62FD7463aeF8e2fBbFCEfCdeB ; < B410EroyD3CMo9002SfU2lz0LrMUx8LxX591yok0Pcy11Y2xQTTf546G91GfHk3N > > 2 // < PUTS 0,00897638903494877 ; quote ; 0,000142138727474281 ; 0,000139295952924795 ; 0,0204081632653061 ; -8,7 ; 0,000138585259287424 ; 0,000145692195661138 ; -6,8 ; BAAcABf83CdCbe35C5f1e4f69fb6565cf0a8187C9FCCFB448ed0d897caBA8d8b ; < 3s8YRP7TpgHyCfpy6COCp6SoksrxRDlqx2f1YLDW1VJQ67AJuDzdF2Oz3W3i863l > > 3 // < PUTS 0,00972442145452784 ; quote ; 0,000157931919415867 ; 0,00015477328102755 ; 0,0204081632653061 ; 9,1 ; 0,000153983621430471 ; 0,000161880217401264 ; 9,2 ; fF14605FBecA1FED9C7cE7bAEC7a2beeedA9AAaFCa376FCeda6DD91fc5E1f8e8 ; < 0ti1IVWTmIoH8wY7AFGh2SOLLUDn6xXlgG1Ip3fBjFdetaTtMgfMhW7R2bQqtB7r > > 4 // < PUTS 0,0104724538741069 ; quote ; 0,000175479910462074 ; 0,000171970312252833 ; 0,0204081632653061 ; 3,3 ; 0,000171092912700523 ; 0,000179866908223626 ; 2,9 ; Cafb1eDD2CFCFc41ebbFFA9BF3bdcEbEEaFfcfDFFDeeed6c4B702FdaC5EBEd97 ; < oG081tg1cbJ2w72E86Cc7aqt7rcD2qdLo8N3nhi2K4dmmKlSCEYeUaI834wZ6tF3 > > 5 // < PUTS 0,011220486293686 ; quote ; 0,000194977678291194 ; 0,00019107812472537 ; 0,0204081632653061 ; 4,5 ; 0,000190103236333914 ; 0,000199852120248474 ; -0,8 ; 265ba79Dc9B3FEE6DF38cFBBCCFDa4aCcaACCdAF4C30Bd0eeDf5D991Be43bBA1 ; < zSkJM1Eq2z9t6h5676N89ecZgOzvgm39186qTtFHxa6d7f29D9gi2gPSi2YnN1Le > > 6 // < PUTS 0,011968518713265 ; quote ; 0,000216641864767993 ; 0,000212309027472633 ; 0,0204081632653061 ; -1,8 ; 0,000211225818148793 ; 0,000222057911387193 ; -2,5 ; fB43cE0fd9BC94B6BDB79DAdEB3c8Ac5e6AdE3ecdeaBc969AabeffE036ADc2cd ; < 6TzMOkObLYEFz5lOzf8hXB2v7W9sN7x0Z2EQu2C7JbZC6FdZ1Im2uvSeXLQqJvXW > > 7 // < PUTS 0,0127165511328441 ; quote ; 0,000240713183075549 ; 0,000235898919414038 ; 0,0204081632653061 ; -4,4 ; 0,00023469535349866 ; 0,000246731012652437 ; -5,8 ; 3EE2Dc7b94772a063343409adCCb5ec0Cdf6a90E5f7EbC0CAccEeDecaec0DADB ; < u7h305AF0Dh24M9106YSs6Mr205RRK6WT1Y232XJGkm8l1pHyM4R8TVl9l4o3o3F > > 8 // < PUTS 0,0134645835524232 ; quote ; 0,000267459092306165 ; 0,000262109910460042 ; 0,0204081632653061 ; 9,4 ; 0,000260772614998511 ; 0,000274145569613819 ; -4,3 ; F434ABea9BD8CBF4e8DDfdab0bBE8E1Ab1BEcaa7Cf4be89cBd5D4Cc6dEAcC0d0 ; < dp3u8q6nB8h3e1Pxll9bjTWm6i9dCB3ladO0OBR6TKvl7sND5DlPFRS3HP05zUy7 > > 9 // < PUTS 0,0142126159720022 ; quote ; 0,000297176769229072 ; 0,000291233233844491 ; 0,0204081632653061 ; -6,5 ; 0,000289747349998345 ; 0,000304606188459799 ; 3 ; 9aEcc83C3Bd2f4cF27D8edDF7B49fEccfeb5C5Adc8d63ab3f65b4DdCB0ffe0A2 ; < 7K6zv2rYYmB7VIOnI5MI6JEq5Nstf3Utfl3Lc1XSXuBW0QfH7nNxvO3P9gURj8m6 > > 10 // < PUTS 0,0149606483915813 ; quote ; 0,000330196410254525 ; 0,000323592482049434 ; 0,0204081632653061 ; 9,8 ; 0,000321941499998162 ; 0,000338451320510888 ; -2,1 ; 55c62764B760c1e1c77CE6be7bDD6ea1bEdAECBDC93CfD00aeCc391e2DDE2Eba ; < g9qd0cC1GoU06PTA762VqeNE0f50oxQNkj6O5Qo08NZ92uUad9oyog081eC09Pdj > > 11 // < PUTS 0,0157086808111604 ; quote ; 0,000297176769229072 ; 0,000291233233844491 ; 0,0204081632653061 ; -4,1 ; 0,000289747349998345 ; 0,000304606188459799 ; -6,5 ; 3FddC39eeaaB01c2EC3DB6dD95D77eAACf72bAed60D8d6A5cDACcC2029B5ed7A ; < 39lbM0zPWw1WUHyC35Yv5kVI4n2NQ07TU9ug4oN6xs07qK3bs4rR1ToAu9sKgJ9h > > 12 // < PUTS 0,0164567132307394 ; quote ; 0,000267459092306165 ; 0,000262109910460042 ; 0,0204081632653061 ; 0,4 ; 0,000260772614998511 ; 0,000274145569613819 ; -2,9 ; e2ADAcDEFE46E1B3ddF12BFfEDB34f8F9fBbFDeeDF906a3fdffBEfaceC8bB0c5 ; < m7n5dgqG3h8qSXpks053HlHn589m9HIVp086k229CNkdtIV806ApfdVyZCUz3hEL > > 13 // < PUTS 0,0172047456503185 ; quote ; 0,000240713183075549 ; 0,000235898919414038 ; 0,0204081632653061 ; -2,6 ; 0,00023469535349866 ; 0,000246731012652437 ; 3,8 ; A8bcEA2DfeB7fDfADF33f7BAacf2deb1AAADFd2bDB78ec0FeACABdcbeCB8dA0f ; < f8Fk4e5q391Z6KykD0vwD96M0N4g023516f51slQnBRxneUeO7Hg7LrO6Vmjtzax > > 14 // < PUTS 0,0179527780698975 ; quote ; 0,000216641864767993 ; 0,000212309027472633 ; 0,0204081632653061 ; 1,3 ; 0,000211225818148793 ; 0,000222057911387193 ; -9,3 ; 1DACDfAc5cF0BFdabbcCAfFd83C26739b59aAF754dEEd5AAc14a37f9d9D99DDd ; < 47JmEAoC6IN6Tt0N07b91vghof5AptIy4eLIZSBCkELUhi1a5eEUGE5m22914PDK > > 15 // < PUTS 0,0187008104894766 ; quote ; 0,000194977678291194 ; 0,00019107812472537 ; 0,0204081632653061 ; 2,8 ; 0,000190103236333914 ; 0,000199852120248474 ; -1,9 ; C5feA9f6Eec0ddec407Dc3cC5ddB15Dbf167daeBEc6Bbde0EF53dcF5F3eA09cd ; < VknoXNI40949yz7Ehyvs6471pd31MDtwrm7WFR1x729IR4ryNgFUQJ7Kh968nB39 > > 16 // < PUTS 0,0194488429090557 ; quote ; 0,000175479910462074 ; 0,000171970312252833 ; 0,0204081632653061 ; -9,8 ; 0,000171092912700523 ; 0,000179866908223626 ; -5,4 ; 2b36Bb8eCeEBD748df0ABcfcD6C0Cb2f8F171bc76Aa99FD1aaA6c7d8F3d3AFA6 ; < XJRLmhFmUEA257fArvoyd88kw5efmL3azf5282kIEd66756SYSMva1H4Xe9jW4r1 > > 17 // < PUTS 0,0201968753286347 ; quote ; 0,000157931919415867 ; 0,00015477328102755 ; 0,0204081632653061 ; 1,5 ; 0,000153983621430471 ; 0,000161880217401264 ; -2 ; ce7d7E95C94FEdD22Cd5cAcBc2b1b930FC7E230f24EAdcCDEc1fccAFAcBDccBC ; < V31x19F789D32xl3d4XzHetpLWiP7556j8aMUM1Z930G442khmKXVj5MVMLds44Q > > 18 // < PUTS 0,0209449077482138 ; quote ; 0,000142138727474281 ; 0,000139295952924795 ; 0,0204081632653061 ; 1,1 ; 0,000138585259287424 ; 0,000145692195661138 ; -2,2 ; dDDAea90e3DE0b8bb6cb1baDAFAeaD26c8Ad6E7e1AEdd4ABdeACeC73cE06Eb67 ; < iNw29htFHYif2VQJbY3Xz9L99fCm4GN6i75gz01hE68A6io495J4VHkezd2B65n9 > > 19 // < PUTS 0,0216929401677929 ; quote ; 0,000127924854726853 ; 0,000125366357632316 ; 0,0204081632653061 ; 9,2 ; 0,000124726733358681 ; 0,000131122976095024 ; 3,8 ; B5a0EdbcEAEa9Fcc2fA07efBAED218CFF76aCd61dcD394EEAD9b0eeD97efAdF4 ; < bliVRK47J20yt0Gbk19tST2b3k10k1KlUqY7A0HMXepkUtMRY0KGW8905u0bm4fv > > 20 // < PUTS 0,0224409725873719 ; quote ; 0,000115132369254167 ; 0,000112829721869084 ; 0,0204081632653061 ; 9,4 ; 0,000112254060022813 ; 0,000118010678485521 ; 8,6 ; BAEFDD1FeFcbc220C94FEddD233abFcBEedeC60c283dbBDF2EA7cBB2a58F42aD ; < HoI11h858gDV002fufF7xGexqkqmEqBeDFDs3x2ax3tGQr18d3sRasW3q8Ybae1X > > 21 // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00748931573642479 ; quote ; 0,000243075713169065 ; 0,000238214198905684 ; 0,0204081632653061 ; 3,7 ; 0,000235783441773993 ; 0,000250367984564137 ; -9,8 ; 76Fe2ac6fBCAe1Dd5068a7bb5d5DAaBe25Db71B4AB6ADa7eCc5ed7A6f2DE29eA ; < 3lqOFuSeum2z8165U412YLKrluNC4nO7T89pR7Ajbe8Pq5J26Yns3x1829sA9nNs > > 1 // < CALLS 0,00823824731006727 ; quote ; 0,000270084125743407 ; 0,000264682443228539 ; 0,0204081632653061 ; 6,8 ; 0,000261981601971104 ; 0,000278186649515709 ; -4,4 ; C31b7dcFE0aeb9DBeBB7A81a9CbeCF8b483BcA2b06BB2AD4703acbDd19A0B9E4 ; < O2Q2FY1nc9V4D1Cum1Wm730FICv6RJeYfpO3u73lK3b996x1VLIm3Q67k25kX7Oy > > 2 // < CALLS 0,00898717888370974 ; quote ; 0,000300093473048228 ; 0,000294091603587264 ; 0,0204081632653061 ; -7,9 ; 0,000291090668856781 ; 0,000309096277239675 ; -0,2 ; c2C99FECaa3bD8f1BFfdD094d3CBdcf8Deb8A08DbB2dE29F43d9FAEd7cDBe7C4 ; < M2n7rOpiqtAsXa3VQ10Fli46AZQ3l75ZOVyo0S5H01S198v02DyGptw6XST9uUxM > > 3 // < CALLS 0,00973611045735222 ; quote ; 0,00033343719227581 ; 0,000326768448430294 ; 0,0204081632653061 ; -8,5 ; 0,000323434076507536 ; 0,000343440308044084 ; -4,6 ; D9bF9f8f8ABcbA9eDfffd58292AfBDe2da9ae5e9A8dcE0a03b9Ea3bE1fBbCeAD ; < 78le1xjpE2xG1t0EXG7Jof1uqqF5S9372GfYoRsG6uwZe3G4U7ey39CDRFa3Y11t > > 4 // < CALLS 0,0104850420309947 ; quote ; 0,000370485769195345 ; 0,000363076053811438 ; 0,0204081632653061 ; 7,6 ; 0,000359371196119484 ; 0,000381600342271205 ; 4,2 ; 0Cc0b1ABDa2FBaE4dFb25DB7fa98FCEd5dAD9dA8B0fC3EcFe8dEbfEe9DddB5a8 ; < OGhd40w2biWJ0WanES8N2PAae5rOiGJLe5WdIDbcqXg6r0XQiQraH5IlFFKuH544 > > 5 // < CALLS 0,0112339736046372 ; quote ; 0,000411650854661493 ; 0,000403417837568264 ; 0,0204081632653061 ; -0,2 ; 0,000399301329021649 ; 0,000424000380301338 ; 4,6 ; CFaa2EEE9dc2D04bfafBFCa4e35EaBfb7badAe212cA4497B5dcf1eE0AB7bEd6F ; < 58n9voU450h02FpDq75TfSs9JFe8gE8Q0Chb2nRalu8r0vfpW4x8M0M12y96rIvZ > > 6 // < CALLS 0,0119829051782797 ; quote ; 0,000457389838512771 ; 0,000448242041742515 ; 0,0204081632653061 ; -2,7 ; 0,000443668143357388 ; 0,000471111533668154 ; -3,8 ; cFA9Efbf6fC0daE1AB72fEA4EfA8f1A5caE1cc4fe0C5Dc37DCB0DcFd5BEB8fbD ; < 1epTkpu57G8Th5bhGfLF54jYg1k07HB0nY513Ole43lVZ5DCc1C39mQ0PX73MqIX > > 7 // < CALLS 0,0127318367519221 ; quote ; 0,000508210931680856 ; 0,000498046713047239 ; 0,0204081632653061 ; -2,6 ; 0,000492964603730431 ; 0,000523457259631282 ; -9 ; eafEBDEd6cBad7cdAf77461FdEcF3c1FB19FeEE8dA2b78bAFBEB3EbabEbF8a6e ; < L54rQPVVJjAT1Wm2coyE8SovRZj41Z6EHbiFUalns5r78V237nAz9D3v1neaWW85 > > 8 // < CALLS 0,0134807683255646 ; quote ; 0,000564678812978729 ; 0,000553385236719154 ; 0,0204081632653061 ; -3 ; 0,000547738448589367 ; 0,000581619177368091 ; -4,4 ; febFDddAaF17CD9AAD1BfBd96DdED2BeBfFe9f1bA4bcde2feFeAFEEA2cacBA4C ; < 788U7es2rmrH0TJyIi76qT4778k1m4XHUhj11PLc1152U53YeDEv8QLUJL7tif16 > > 9 // < CALLS 0,0142296998992071 ; quote ; 0,000627420903309699 ; 0,000614872485243505 ; 0,0204081632653061 ; -5,5 ; 0,000608598276210408 ; 0,00064624353040899 ; -4,5 ; FF79A32eAFcB19bFBBABAF1AAbB9B7aAaFCEb35a066FdD37BcC3D8Bfb9bDDB9f ; < 9cr2QvpR918d497DVa18w9y132UKmoRVdGr5K2sAGNplakJK4hmS6e8R7Ui40K5i > > 10 // < CALLS 0,0149786314728496 ; quote ; 0,000697134337010777 ; 0,000683191650270561 ; 0,0204081632653061 ; -4 ; 0,000676220306900453 ; 0,0007180483671211 ; 5,9 ; 3FcbfDfEEbd9eAeDAF72E75d92bd1bddCdFCbbA4CDED6DbFeab4ccDcFAf26810 ; < Fys1CoEHmJ7dDgxjd5xO3V5j47TWXx5tvK9307D112ix4M7A0J556xqBY2Vjy2w8 > > 11 // < CALLS 0,0157275630464921 ; quote ; 0,000627420903309699 ; 0,000614872485243505 ; 0,0204081632653061 ; 9,9 ; 0,000608598276210408 ; 0,00064624353040899 ; -0,4 ; C5c5b1aa5ddfbF7CC5b2cE666A0db6dFCf9ABaAd1EdB1cbCecB0AEa9A849c46e ; < L2I06wh69c3P1riYwCMZKx3aW9JQ1f2g01bS9X83ogw9fw5VswY9rF5X576307E5 > > 12 // < CALLS 0,0164764946201345 ; quote ; 0,000564678812978729 ; 0,000553385236719154 ; 0,0204081632653061 ; -8,8 ; 0,000547738448589367 ; 0,000581619177368091 ; -5,9 ; D1fD09fEEbDC66ca8dccfEDa0Fad4ABAaFdD9D1CbdABaBB1EfADe2AedEcB6C4F ; < 4VJ5VkzINAq7Mdr179f9266q9Uzup9pyZb0umq2P5PJGyX78107hlj3vA0yUd2pQ > > 13 // < CALLS 0,017225426193777 ; quote ; 0,000508210931680856 ; 0,000498046713047239 ; 0,0204081632653061 ; -7,5 ; 0,000492964603730431 ; 0,000523457259631282 ; -8,2 ; f9DBe3dF8d4B3aA27Fd0dCB6ADEc13cbe5Fa8dCCA701b378eeD75ab20FfDB8Fa ; < 36Kst4DgCT64wb2RRa35DEgsCbBino2745v3ZP018Il1Wh5N9y5g4HoTz0Pn26D5 > > 14 // < CALLS 0,0179743577674195 ; quote ; 0,000457389838512771 ; 0,000448242041742515 ; 0,0204081632653061 ; 8,9 ; 0,000443668143357388 ; 0,000471111533668154 ; -9,7 ; 2A6Eabb4dC9cb8caD4ac36Db5fCc0a7F277Ad38aeACC55797d1c3eacFcDc5B9a ; < mL7TP4M19X0a39WVtZp4UPmru7muk4Vz6G7qA6mMuDNPceAsdCQE3ZH5TPlDh308 > > 15 // < CALLS 0,018723289341062 ; quote ; 0,000411650854661493 ; 0,000403417837568264 ; 0,0204081632653061 ; -6,6 ; 0,000399301329021649 ; 0,000424000380301338 ; 7 ; 1df0ec3dD8Fac2363CA40Df0Cbd0F36caC6B50dd1Afa8AEdFD9338da033920Dd ; < 63htXAQH58ughkkhFNog305PRrohxrkx7L8Dyk9Jm70S0SwW9gdQJJ8PgZVM54ZH > > 16 // < CALLS 0,0194722209147044 ; quote ; 0,000370485769195345 ; 0,000363076053811438 ; 0,0204081632653061 ; -1,1 ; 0,000359371196119484 ; 0,000381600342271205 ; -3,7 ; 4CFc5f5a5Ce0E1f02df6C6Aec5deaBDdaBfFDcEaaDeCce31cac1bc77FaD8BE49 ; < e7S9lA6X10kmJj90Hci08KgHJzicRgOHDNF6tL7JLOH7GrkpfgDzQ58brJj48eHF > > 17 // < CALLS 0,0202211524883469 ; quote ; 0,00033343719227581 ; 0,000326768448430294 ; 0,0204081632653061 ; -6,4 ; 0,000323434076507536 ; 0,000343440308044084 ; -3,4 ; B7ADdaC2fD6dA3AA24CacFe08bAA8E37d4EEcAaEb4E156Ebd2096ccb7BaBA637 ; < EwxKMYE2n7JWbrnuOH4y9TPsRo316p1u17pk1LA6a8Wr4n8oZhfp55204aqz466x > > 18 // < CALLS 0,0209700840619894 ; quote ; 0,000300093473048228 ; 0,000294091603587264 ; 0,0204081632653061 ; 2,9 ; 0,000291090668856781 ; 0,000309096277239675 ; 6,1 ; 8bBb9c9ddA1DBB3E7bf2d7eDF5EEa9000AEBCFBAA2D4aACbacbA9Af23ef3230F ; < yv1Dh4l92IhDLh7Omyou5Y9D230Q21m2490cF0bb9umM8s3tRP6S15B9ic2onx9R > > 19 // < CALLS 0,0217190156356319 ; quote ; 0,000270084125743407 ; 0,000264682443228539 ; 0,0204081632653061 ; -7,5 ; 0,000261981601971104 ; 0,000278186649515709 ; 4,2 ; bfc5A21fBDaccdEeADd1DC6fb16eCEC302daE1Dfc7cCA5156ac257bCbBCcDDFd ; < 51K2614yx5o4djvDT381YYhd4J2WKz879M14aXtu2CJvHuqrhB1SiPD99Dm4q89d > > 20 // < CALLS 0,0224679472092744 ; quote ; 0,000243075713169065 ; 0,000238214198905684 ; 0,0204081632653061 ; -2,7 ; 0,000235783441773993 ; 0,000250367984564137 ; -0,1 ; CD0E35FFc2A5Fcbb4EEE0A135F25e9827e8FD4CEDD2e7Ad41fdd40DCEeA8C6Cd ; < U5t61hr4I5hQ9I6JFmhFfcG301giWFyZoIWx5vb8pCsBxe7Gq3EG5gj8SoS52W04 > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00748931573642479 ; quote ; 0,000243075713169065 ; 0,000238214198905684 ; 0,0204081632653061 ; 6,2 ; 0,000235783441773993 ; 0,000250367984564137 ; -6,2 ; BD0edE6DE5C7Ea94abEFcfeaB3bEccFFBd95cE3E97aEf3e3A4d7DccF512f309f ; < j8O9ihsCoQ4T8D9844aG0ClPXv7aezgHvJ523m360vpzmFY1G77ecP951YSy64Yy > > 1 // < PUTS 0,00823824731006727 ; quote ; 0,000270084125743407 ; 0,000264682443228539 ; 0,0204081632653061 ; -3,2 ; 0,000261981601971104 ; 0,000278186649515709 ; -6,3 ; bFde1b1efb5BFe6DEad423E3F36aafEF4c3dDc6a6A59Ba5b0fa1457d42ba37fC ; < kMioYY08lQG3mSoJM0YGkYitgU7qz86KLN1Fi20A82y5760B4KUJ7565196Xs5S8 > > 2 // < PUTS 0,00898717888370974 ; quote ; 0,000300093473048228 ; 0,000294091603587264 ; 0,0204081632653061 ; 5,6 ; 0,000291090668856781 ; 0,000309096277239675 ; -6,1 ; EeAf7CbC78F5aeD0cBf67B4ceE3b7BA9034FeB6bB834D6efAf3be34e1cCc6972 ; < LO8mWUeQI9h7MyfOU343aOUXVZh5TX94PC86sNjFMXhz0qbF0F2wO6zuw6zQ9d5D > > 3 // < PUTS 0,00973611045735222 ; quote ; 0,00033343719227581 ; 0,000326768448430294 ; 0,0204081632653061 ; 8,7 ; 0,000323434076507536 ; 0,000343440308044084 ; 9,6 ; c2c4175E73AF5cD4ddbcbFE5Cbed7E38CEbF5fd2F3bee5A6DcAeB7Cb6Be7a68B ; < AfvVSnxhk9PTR73vO1fEG40nX2SguSke0gZMRlJC0LR3lB86y3yDICvVzmIjRUE4 > > 4 // < PUTS 0,0104850420309947 ; quote ; 0,000370485769195345 ; 0,000363076053811438 ; 0,0204081632653061 ; 1 ; 0,000359371196119484 ; 0,000381600342271205 ; -7,5 ; 8fE26fB0abE9a0e97efbD5cEfF42A5bDFEfd30babACfd4AAE29cc0fAEaAbDCAe ; < yTwj2FJDU4W8um84rwT90nIjqWp570lf28ccsdrG9eSRhBcXlOxaR2fR0NTW4Ei7 > > 5 // < PUTS 0,0112339736046372 ; quote ; 0,000411650854661493 ; 0,000403417837568264 ; 0,0204081632653061 ; 2,7 ; 0,000399301329021649 ; 0,000424000380301338 ; -4,9 ; 2b5Be7eac38ED675F7B41fd31c9Bb58FeE25Ad4Da699A9D0ADcFDB306dcBDacd ; < kkGbCj1Ff832LRG7HKh901lEWhs9g0z8XLucGlFo4cD2fMbX38YRsTgkO352bd7b > > 6 // < PUTS 0,0119829051782797 ; quote ; 0,000457389838512771 ; 0,000448242041742515 ; 0,0204081632653061 ; -0,2 ; 0,000443668143357388 ; 0,000471111533668154 ; 0 ; B5ACf3D0EC3C09E630A8a9BbEDEbA89FDaE5E680BEe375bA2bbC6EFb7CC44dA5 ; < 2q11BWwXz25g075i25Us4I9F989NG6NeAeH518Ee4Zgv7SyLFZOLxRx04Wu74R6t > > 7 // < PUTS 0,0127318367519221 ; quote ; 0,000508210931680856 ; 0,000498046713047239 ; 0,0204081632653061 ; -2,6 ; 0,000492964603730431 ; 0,000523457259631282 ; 2,1 ; bF3BBcCFfDE8ef2AbF726cBAAB1D02d332ceCDCFCbe8Bb7dfb3Ea6EecaD4c2cd ; < s8i4emWm4MO6aMO2hI85Q1kDG0cM10oRzk56y9Sj12j820z5Cy8255Yk0Tyv6233 > > 8 // < PUTS 0,0134807683255646 ; quote ; 0,000564678812978729 ; 0,000553385236719154 ; 0,0204081632653061 ; -2,5 ; 0,000547738448589367 ; 0,000581619177368091 ; -9,7 ; 3Fb5AB37574ccDa499CC5cf3B0ffdeC3bcEDCdfaeffedba6EAD543Adbf9cFe12 ; < z5ZUpW5W8EMzkGb0T45NonkuSFd17271jv36dHb2YcY4694199eDt6fovGqgFba1 > > 9 // < PUTS 0,0142296998992071 ; quote ; 0,000627420903309699 ; 0,000614872485243505 ; 0,0204081632653061 ; 7,8 ; 0,000608598276210408 ; 0,00064624353040899 ; 7 ; F5daF6E9d8DcABCae24F3e79eA816574c33ffD7FB5E2bBAFDEe2c8C1d16ddA8a ; < W5rfdl4enu188G8r797735I1rTeTSnzpfsLPCEZPNMjS3PiV34Dae0U8ELPFJ4Rd > > 10 // < PUTS 0,0149786314728496 ; quote ; 0,000697134337010777 ; 0,000683191650270561 ; 0,0204081632653061 ; 8,9 ; 0,000676220306900453 ; 0,0007180483671211 ; -6,8 ; 9EFe4a4edd6cF265Dfb24B1Eeca0b5d03FF3b5eCdEdbBbbE9Ab9C1AABAcE61dD ; < U2SIv69OcfybMFt2xjwQo1JvDqf85uTl1eQmIM44n66150r1fBBXk2Xysv6Q631O > > 11 // < PUTS 0,0157275630464921 ; quote ; 0,000627420903309699 ; 0,000614872485243505 ; 0,0204081632653061 ; -5,9 ; 0,000608598276210408 ; 0,00064624353040899 ; -8,1 ; E9E4bb0FA8A4DA47ab9bEeAEB3dcb930f6C3367bfdAA7F87EaBBADEDc6B8C1C0 ; < us26SY2fvcdO0iH164Bol8pIt94J8JR6mGJX4qD3RMScGuNVqjPHPZnaq90jlRi9 > > 12 // < PUTS 0,0164764946201345 ; quote ; 0,000564678812978729 ; 0,000553385236719154 ; 0,0204081632653061 ; -6,1 ; 0,000547738448589367 ; 0,000581619177368091 ; 0,4 ; CafFF6AcEaBc5DF26AE0dB4AE6CBcca1aeacdd3eE37cF670cAC9dfBdaEfF7BAc ; < FWjFROqiSXD80oL531pstUZ34ZiIWt8m1H78i17H1A1P6t8A8Fj7JMZ68S18Zv0l > > 13 // < PUTS 0,017225426193777 ; quote ; 0,000508210931680856 ; 0,000498046713047239 ; 0,0204081632653061 ; -6,5 ; 0,000492964603730431 ; 0,000523457259631282 ; 5,2 ; Ec529BdabFa5ab2e0D2CcaaF11AEDE7cdfc22AEd1ECaAaefaDAC6DF0A28cEb7D ; < b2IUYa9magN9BJ23zrfuEBrzpXZ6Qkh7z6zUR9Wf1O7C7jZm6V0515jAp0L80Pl9 > > 14 // < PUTS 0,0179743577674195 ; quote ; 0,000457389838512771 ; 0,000448242041742515 ; 0,0204081632653061 ; -4,9 ; 0,000443668143357388 ; 0,000471111533668154 ; -5,6 ; 40Baf9b3ccAfeC7f8E62Ed0d1345Fcf33ca8efcE8aeccFFDbe27F0cBb3fad80a ; < O9Ou7OP9Ewr1e215lGR4jP2bztf2SF789Lms6l216sy7979w950TogqQYdvl4El5 > > 15 // < PUTS 0,018723289341062 ; quote ; 0,000411650854661493 ; 0,000403417837568264 ; 0,0204081632653061 ; -8,2 ; 0,000399301329021649 ; 0,000424000380301338 ; -8,3 ; 01FDEc6d2D7F7bcE65D6E3aAABFfbbaEDBdADfcEF0eedDA2cDa2DAE0236Cd8Ad ; < ZVA48BDa0A3HXox657X9xl2PEAOHb5391c54jec66745yfA3EbO2tt4YNO7J90x4 > > 16 // < PUTS 0,0194722209147044 ; quote ; 0,000370485769195345 ; 0,000363076053811438 ; 0,0204081632653061 ; 0,1 ; 0,000359371196119484 ; 0,000381600342271205 ; 3,3 ; 01D3aCBa7c2CF5DdE74c41dEaBcBeaCFEc22EDf2deFCeA03A75ac9e2BbF23bD1 ; < NCPbdtr8qixvr36NG5Al0e67aqB02Wdi2sI97wmRBeosUT0td4Vso9G6Zt05m097 > > 17 // < PUTS 0,0202211524883469 ; quote ; 0,00033343719227581 ; 0,000326768448430294 ; 0,0204081632653061 ; 8,5 ; 0,000323434076507536 ; 0,000343440308044084 ; -1,5 ; ACaaFb4b6bdc493eCDeb4FC0812DD0aDbEaCf46faDcFBbA5110AC2B1f27fc8a9 ; < N52z38Q1G3Yr7X6nJb7UYtJY5jfZv41o8QIvMTQ0k54ACA5Jv85V71r4mj5SUr92 > > 18 // < PUTS 0,0209700840619894 ; quote ; 0,000300093473048228 ; 0,000294091603587264 ; 0,0204081632653061 ; 3,8 ; 0,000291090668856781 ; 0,000309096277239675 ; -7,1 ; 4eeEe4bB2F3FAaa5AbfDF99cad1d0BDD5FFab66B4Bc0FCc8Aecb18eeB37E9FBD ; < D5Ymn2y81tRYhNu7J7pKi29BFqo2vir3EN410VaAdjjLC9cOlz6Et09N7K6ffr8E > > 19 // < PUTS 0,0217190156356319 ; quote ; 0,000270084125743407 ; 0,000264682443228539 ; 0,0204081632653061 ; -0,8 ; 0,000261981601971104 ; 0,000278186649515709 ; -9,6 ; Afc14C771e06Ce0Cc8b1AA7D8bc2F0AdBbb0C9dF0Fc197D0dEadeAB2DDcedBE8 ; < 4EN4MtYn0K4a5YM8n3tSEXD5kI3vE60c1tOI0uof0XR5h6Ts80gv2EQ9b165hEH2 > > 20 // < PUTS 0,0224679472092744 ; quote ; 0,000243075713169065 ; 0,000238214198905684 ; 0,0204081632653061 ; -4,4 ; 0,000235783441773993 ; 0,000250367984564137 ; 1,5 ; 4ACeFd00afdC5ccBFFE252bF6d75d9EFCBacEBa7beBf95EFacF6Ae418abb0beE ; < 84HvJi2Z0187BvIgUv7QCK118V4bNm1O0YO35UArjyaZ3PG21ISG664m5z2xVBj4 > > 21 // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00751774854330296 ; quote ; 0,000504595790765017 ; 0,000494503874949717 ; 0,0204081632653061 ; -5,7 ; 0,000486934938088241 ; 0,000522256643441792 ; -1,6 ; Daf9B1Dd0bBEdF4BCAa0C2d270fA16b7FEecc3bC2bFf4C92FdAbB9D5fA9B34c4 ; < UKbOnPbxGPRjRye07gFwRKUTT2OQJGgdArQ546x06Q2B31NgLNN4s44mvkf77Pn1 > > 1 // < CALLS 0,00826952339763325 ; quote ; 0,000560661989738907 ; 0,000549448749944129 ; 0,0204081632653061 ; -9,1 ; 0,000541038820098046 ; 0,000580285159379769 ; 8,8 ; 2D9FC4Cf54b2fD77Ee34825d7a7CaabFF06D5f9aC333AAbD5ACF410aDeEF0f8c ; < rklXl5e61x8401q18i3dD7Dc1k5JyWRyVO0Cd3bhRA5GigwnM1hFbV2ZaK48yj3f > > 2 // < CALLS 0,00902129825196355 ; quote ; 0,000622957766376565 ; 0,000610498611049033 ; 0,0204081632653061 ; -0,9 ; 0,000601154244553385 ; 0,000644761288199744 ; -2,3 ; bbDeDdFD4fF4dFEf6bBB1F2F97dff1CBfA2A9929bDfC6C896Bbe2f7bdfD1CfFE ; < fXt80MjHUSVrMrWHPWslgjuAaS31cmNsO8T3FT82j9JEll54agH3015lq1NXRzwO > > 3 // < CALLS 0,00977307310629384 ; quote ; 0,00069217529597396 ; 0,000678331790054481 ; 0,0204081632653061 ; -2,9 ; 0,000667949160614871 ; 0,000716401431333049 ; -1,7 ; 8D5AFF314c75158fA89A4dA74adc2D546cB62BEefbB3FAa4F0eDEeAB3EC8fa8E ; < XMZ0hIxc5423GcGvRza62F37c8fV362TEzM76977Jk7d3PD97ToL8FY1ygfy5pW4 > > 4 // < CALLS 0,0105248479606241 ; quote ; 0,00076908366219329 ; 0,000753701988949424 ; 0,0204081632653061 ; -1,4 ; 0,000742165734016525 ; 0,000796001590370055 ; 6,2 ; 9BC47bDAFe4885DBEcccF7beB77Bd7ce55AB8e16Ba90FbCBa5edb6EDb13cEeac ; < xMyWc40Y2HIO2rVcBcSX6QWcvHqVyGyOy5j60xC35oEwR0FouUds7Wj0en5oTQ1a > > 5 // < CALLS 0,0112766228149544 ; quote ; 0,000854537402436988 ; 0,000837446654388248 ; 0,0204081632653061 ; -4,6 ; 0,000824628593351693 ; 0,000884446211522282 ; 0,1 ; 8403Aae1FA2E7dCddf0bfFDEF3dA7beCbBABcAAfACeCdABBba33Bbf6CfD7a55e ; < lJAfMLPxq9N1T4Jyn5M2nj158tjE9t9rl1CuWjzX9gfloJCfv3pbBO1wH8t18KEc > > 6 // < CALLS 0,0120283976692847 ; quote ; 0,000949486002707765 ; 0,000930496282653609 ; 0,0204081632653061 ; -3,7 ; 0,000916253992612993 ; 0,000982718012802536 ; 0,5 ; DBfdbd8e0d1f3bcdBAEe9757d39eF1A5A1ffdBEddbefBBCDCc2FdAFFeFcdfD9E ; < 1fJOu5sss7He1g4XDb412gM3Y7OHOJnD3htNwDesF83f5W0ouJXImYPfl3Qcq7DM > > 7 // < CALLS 0,012780172523615 ; quote ; 0,00105498444745307 ; 0,00103388475850401 ; 0,0204081632653061 ; -1,2 ; 0,00101805999179221 ; 0,00109190890311393 ; -8,4 ; 64aCffcbfdcf98b0E21fCbFBBb31e9dBABf8cBE0D7DdF1Ae9DcC4ba9e2CE13Ef ; < s25b8tskW6864DO80P6036doUWCni44Ce6pGwhkK1T6T5K6j195TCJ98nafI7Z7S > > 8 // < CALLS 0,0135319473779453 ; quote ; 0,00117220494161452 ; 0,00114876084278223 ; 0,0204081632653061 ; -9,9 ; 0,00113117776865802 ; 0,00121323211457103 ; -9 ; Cbf4eEF221C3C5B47BfafcebACCACfFdB5a23Fb9caEEd1cf5eDA0ddBA9efD5fD ; < bKPozSB6YhcjpaLHQ222D7EVC9ve787qS4Ch1W3cjDU55fxp0rEh4AhzQuWiuSnd > > 9 // < CALLS 0,0142837222322756 ; quote ; 0,00130244993512725 ; 0,0012764009364247 ; 0,0204081632653061 ; -4,5 ; 0,0012568641873978 ; 0,0013480356828567 ; -3,6 ; b93fBD72cCFc7ed0AebedB0eeacA5E3aD9dAA8DfCbAbCCA103CDcECaE1Ea3fA8 ; < M6Nuz0fjtrX4xfwogL7v52YawAwc9pfy5q039Eqz9U6ZulB35UY84INF5230lmqL > > 10 // < CALLS 0,0150354970866059 ; quote ; 0,00144716659458583 ; 0,00141822326269411 ; 0,0204081632653061 ; -2,2 ; 0,00139651576377533 ; 0,00149781742539634 ; 4,7 ; acbBbF61fa3dAbcEeEFdcBdcAdF202A3e7EB07baeECdAA8BEac2BAbFEfd21ab6 ; < 34t5XORJ0YhaelWa2T4HMYhv3L05v61st1T9wM7i63WD3I4usmfzRz47027Hf5uh > > 11 // < CALLS 0,0157872719409362 ; quote ; 0,00130244993512725 ; 0,0012764009364247 ; 0,0204081632653061 ; 9,4 ; 0,0012568641873978 ; 0,0013480356828567 ; -8,8 ; e53C1b4DfA79DaAcab0bF4E3F857D63EcFfCfCF9eCbCbDEEdeE3DEb6A86F86db ; < CA21p81r7EVAFshdGQ03U6oWr0RZ0BhUn34o73pMDz3jy5Jov1zA1Vs4gXeh0dM2 > > 12 // < CALLS 0,0165390467952665 ; quote ; 0,00117220494161452 ; 0,00114876084278223 ; 0,0204081632653061 ; -6,3 ; 0,00113117776865802 ; 0,00121323211457103 ; 8,7 ; Eb3bceac8CdEFaCAAbFe3cDCC8DeAfF3bBb61d2F69dFfecAEf4fE3fC37ed6aCC ; < IE4dY5zUfjCs7KYgfq7srBcYZsqKEf20RvT712QKU8dQaXpB4u504i2kAs47Tax6 > > 13 // < CALLS 0,0172908216495968 ; quote ; 0,00105498444745307 ; 0,00103388475850401 ; 0,0204081632653061 ; 0,5 ; 0,00101805999179221 ; 0,00109190890311393 ; 1,6 ; fE1e49C5DcbAf8f6b375ddEBB6a4DE971Ecf0Ba3CeB2cB6767ee130bfdaeac9D ; < Tyf77c3j102b2EJ5o16jGZcdL3N26NlD9i5K8zC0uX8cXy7EIGfQy5kAwgziqmim > > 14 // < CALLS 0,0180425965039271 ; quote ; 0,000949486002707765 ; 0,000930496282653609 ; 0,0204081632653061 ; -6,9 ; 0,000916253992612993 ; 0,000982718012802536 ; 1,4 ; b83D08bAeE2A1e6FafEC6FfbDceEDDFD4feB688a5BAFE5a0DDdaa67b3dfc7e7b ; < U97pCP6363h3pdR0Qm1xV56O2qqfmL5VlipfiwK8SuEPPml0Lx25yCAEQYlyTGHe > > 15 // < CALLS 0,0187943713582574 ; quote ; 0,000854537402436988 ; 0,000837446654388248 ; 0,0204081632653061 ; -4,8 ; 0,000824628593351693 ; 0,000884446211522282 ; 6,6 ; Df5C8b4Dbe32AdBBBCE1139BaDa8EAE13eaffdbA6AA5Fcfb41BcF59dE6eEe3cb ; < 6kHp632iaXZhElsuyO7D76DB3omb358M7L6KorCRsW2LMLgfCTfPv4HF758R1zL8 > > 16 // < CALLS 0,0195461462125877 ; quote ; 0,00076908366219329 ; 0,000753701988949424 ; 0,0204081632653061 ; -9,7 ; 0,000742165734016525 ; 0,000796001590370055 ; -7,7 ; 5fFeeB4eBeD1Eaaf8CDBA937BCbb781d0BBEBaE1AbD952ceDEEE175CCaB54Daa ; < hv7dbxm9R8ZSFssTq23gFTK7CF1UMjzGmKsa7hK36tlCn3BMIdggFnBgb7WB5CjI > > 17 // < CALLS 0,020297921066918 ; quote ; 0,00069217529597396 ; 0,000678331790054481 ; 0,0204081632653061 ; 1,7 ; 0,000667949160614871 ; 0,000716401431333049 ; -7,7 ; 4AAceF0BB7cDFcb5C4eba40EceF911ae6af1401dDBD1fbaDc4FbbDed37Bc21eE ; < Nsrf6547Fovq9Oa08Dcrq53JV9eJKr8Pho0kLBd3Z8SzGWQoHApExC0yJ65NA393 > > 18 // < CALLS 0,0210496959212483 ; quote ; 0,000622957766376565 ; 0,000610498611049033 ; 0,0204081632653061 ; -6,8 ; 0,000601154244553385 ; 0,000644761288199744 ; -4,2 ; 0D716eFD3ddC2c9eECbfa54Ecfa26FAdC9aDd35B0ca6Be4aA5faD5b09618faaf ; < 07wm3HH2Z6sCD2o1F2H014Yib7qwj33Y50ZY3ZiiRl5vT1kA7R5T6EWSU3kFQFpE > > 19 // < CALLS 0,0218014707755786 ; quote ; 0,000560661989738907 ; 0,000549448749944129 ; 0,0204081632653061 ; 5,3 ; 0,000541038820098046 ; 0,000580285159379769 ; -0,3 ; CfCfC2bcCfd3cbDaCc3dfd5A42bEF5fdEd5CAcEe9DF31C5a3eEFeebCcAd7FDCb ; < 7g43XOB7ielQufRtPcLB0mlwO35sbrfj0llLhQuX1KQ4V0OAu7S96U71901k4ep4 > > 20 // < CALLS 0,0225532456299089 ; quote ; 0,000504595790765017 ; 0,000494503874949717 ; 0,0204081632653061 ; -6,4 ; 0,000486934938088241 ; 0,000522256643441792 ; -4,9 ; Cdcf721feCbFcF51AecfCe250BBBEdcfbB09bEAeB40bebF2e2980a740C50EBce ; < EXqi0ij0A655lyi6v854Aw96Q79gpAD06Fu7z4x7S1HUA242k6x1SPpGBNraq4o4 > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00751774854330296 ; quote ; 0,000504595790765017 ; 0,000494503874949717 ; 0,0204081632653061 ; -0,4 ; 0,000486934938088241 ; 0,000522256643441792 ; -6,7 ; f3f7E3a2CfDBfe0dd7b7B9Cdfd6e49eC0EaFB92aDB5aCCF04Ce75AddeEDb3fD7 ; < 82Gj8Z3CW7H1t0aGG5lXDUmIOj1b4KiobGevF32Lq1mz8R5r9111WI8LY2a6DjQB > > 1 // < PUTS 0,00826952339763325 ; quote ; 0,000560661989738907 ; 0,000549448749944129 ; 0,0204081632653061 ; -6,6 ; 0,000541038820098046 ; 0,000580285159379769 ; 0,8 ; dCFbADD5d2acAf8FE39eFD3B2EFbcC4ccfeb3bfC20AAcEcebfb8Fbb63F9f4DFD ; < 6za4v6OdmkEV22S8TWNR7QwsivsZrcQSpI323ON4r9leeF5rqRZLbLbeRGWH4kpR > > 2 // < PUTS 0,00902129825196355 ; quote ; 0,000622957766376565 ; 0,000610498611049033 ; 0,0204081632653061 ; -9,5 ; 0,000601154244553385 ; 0,000644761288199744 ; -7,2 ; CFEc1aa9Bccbe23dCFcE4c9BAbC4EAAdD9BeE36065C5DdD2Dda6fbafA1afE290 ; < D672LH7F7s8R0k1m4oQ639TTL0s1xDzoA2q0Flh8c59hE39ibYX6x6donROSs10m > > 3 // < PUTS 0,00977307310629384 ; quote ; 0,00069217529597396 ; 0,000678331790054481 ; 0,0204081632653061 ; -2,2 ; 0,000667949160614871 ; 0,000716401431333049 ; -0,9 ; Ae800E01DC7FdbE85da7Ac9bE066c168afb2FC6D1E5afcAC8CBABfe6CBE7FcfF ; < 7D2hVdtx4rj2E5AGXaCW0XAMtv647amv0c7GmwjBP42pXWcfsB6pXAT39u826xCj > > 4 // < PUTS 0,0105248479606241 ; quote ; 0,00076908366219329 ; 0,000753701988949424 ; 0,0204081632653061 ; -3,9 ; 0,000742165734016525 ; 0,000796001590370055 ; 5,6 ; A5f0A582ed525CdBcddFe2aa7EB5cB29FcAcdfcCb1FfdcBB9f4f5CaBd39dacBF ; < Zc41T66jWO5p0CQ8XYsG4yKzv7csi3251sHWGAJHWqSI4Kw05yu73JxG865511DO > > 5 // < PUTS 0,0112766228149544 ; quote ; 0,000854537402436988 ; 0,000837446654388248 ; 0,0204081632653061 ; -1,7 ; 0,000824628593351693 ; 0,000884446211522282 ; -9,5 ; D17a54DaEDddceDFa03a731a9E40ED5dBEa01EFB4Da88aCB34e4Fedfbb0A0D0B ; < R6hod7pGE7d3Y86lGIj097X87cam5g2oW9gE67Wht3aD5x3lXJ4RKXx0SaW6c88L > > 6 // < PUTS 0,0120283976692847 ; quote ; 0,000949486002707765 ; 0,000930496282653609 ; 0,0204081632653061 ; 6,6 ; 0,000916253992612993 ; 0,000982718012802536 ; -1,6 ; dccBE21D26ebA2ABC7D7aCAA6EFB7eecEDfB0Ecabb1ECDE08EDBEDDA56A59aD0 ; < 4bm2ZOFJEfi0D3GPn9yW86131XxBO3l7yNA8OGbDcjAz49O5T9KXf0M4k6Ut9bC2 > > 7 // < PUTS 0,012780172523615 ; quote ; 0,00105498444745307 ; 0,00103388475850401 ; 0,0204081632653061 ; 9,1 ; 0,00101805999179221 ; 0,00109190890311393 ; -8,3 ; 3AC2FbadDD1d4B148F155DFb61DeF3BefcabE68f80E3d1aDffcdB7bf8bFB83Eb ; < MsJ6s1se42Ry0nQsfN92m2ov8p1RJ0H7nJs2R2CjNlPqMZ665Wv1iOj2Q80mHs6n > > 8 // < PUTS 0,0135319473779453 ; quote ; 0,00117220494161452 ; 0,00114876084278223 ; 0,0204081632653061 ; -8,7 ; 0,00113117776865802 ; 0,00121323211457103 ; 4,9 ; 840FEDd2E8F1BDcbfFab5AdbDDAeDa6cEdAa34FEA0E96f2DcBdddbd0bFF7EE68 ; < 0nJu82N62213VZ0J6sS192do9GZOSRD3Y51oUD6mxbq1JD3R438033f5M8C04jcs > > 9 // < PUTS 0,0142837222322756 ; quote ; 0,00130244993512725 ; 0,0012764009364247 ; 0,0204081632653061 ; -0,1 ; 0,0012568641873978 ; 0,0013480356828567 ; 6,9 ; 46eE53901DcaDeDFDE2DaE795dBDCFFc2B1e49c5F7bd8FCfBCF9aFccccBF6e1d ; < paOS78FG0IG190u7205F0Lma5Fl201hioXS9zQF9IQU61HIhPAzknTvb52lVTfB5 > > 10 // < PUTS 0,0150354970866059 ; quote ; 0,00144716659458583 ; 0,00141822326269411 ; 0,0204081632653061 ; 4,6 ; 0,00139651576377533 ; 0,00149781742539634 ; -7,9 ; 52D899CcdafFCE38Cebc57aDA8DDbee0CA0c200A1AB30dD3f3f28cecBaFABDb1 ; < x2d6Irm761E2CnfxVF8PK4440NdQQ41fb4jdvDU3BHcH9UPj73AnaiJxt620S2Dc > > 11 // < PUTS 0,0157872719409362 ; quote ; 0,00130244993512725 ; 0,0012764009364247 ; 0,0204081632653061 ; 5,1 ; 0,0012568641873978 ; 0,0013480356828567 ; 0,2 ; Fc11eFdCC56CbD237dddFFEff0A330Ebac9769Bfa49aEE2E3eBc56F176DAe2da ; < bLF9KuCL6C83Gb0x21NkneNPar48f3ZG6Vlb4514Wl0thc3ZeSCs2626ga3yjhSN > > 12 // < PUTS 0,0165390467952665 ; quote ; 0,00117220494161452 ; 0,00114876084278223 ; 0,0204081632653061 ; -8,2 ; 0,00113117776865802 ; 0,00121323211457103 ; -3,2 ; 33aA28f3B69cc332bfaE3c3fEA7aBE9da711415bBeae1109ED1bcFB6FDebf3fa ; < luI3KVryF0n663302jXo1S7Bc3KC2Ayyr30u4K6DvMAv1dgxLsQx62K1Zo3A0e89 > > 13 // < PUTS 0,0172908216495968 ; quote ; 0,00105498444745307 ; 0,00103388475850401 ; 0,0204081632653061 ; -3,3 ; 0,00101805999179221 ; 0,00109190890311393 ; 0,3 ; EC6cfDc0Ec8C01eAeAFEaafeF1CB27c21a06CCf0841F0AA3Feaf7E9E2Ff7AD7A ; < GKE6L37Bb2jIE8t2c6b9IWq33Hxc7hI9AjoODM7LxZtfop057yOBf9Q9kal16g0x > > 14 // < PUTS 0,0180425965039271 ; quote ; 0,000949486002707765 ; 0,000930496282653609 ; 0,0204081632653061 ; -4,1 ; 0,000916253992612993 ; 0,000982718012802536 ; 3,9 ; E1E1A6AcFE1bed3BBCeECcc75db9D3FDcBCDBD845ffbbEEC5dB462Eb02a7E5DD ; < Ul3sEaru7BZ96Y1M3pgrjjyiP4Psm967tZK4QZ8x8S6Fris7n5qWvm2NJSOv8Oh8 > > 15 // < PUTS 0,0187943713582574 ; quote ; 0,000854537402436988 ; 0,000837446654388248 ; 0,0204081632653061 ; 3,1 ; 0,000824628593351693 ; 0,000884446211522282 ; 4,2 ; e2DBabc5d5B64C6eD14ADFFab54FcaBa394988Bd5CcbE3fA2AcC2bA3C049FFdc ; < x3B2H6FlnODSUbTSYrXauRN75196wL39t45p2r7HGVSxRPDgVoL1kItK098HZ1Fj > > 16 // < PUTS 0,0195461462125877 ; quote ; 0,00076908366219329 ; 0,000753701988949424 ; 0,0204081632653061 ; -8,5 ; 0,000742165734016525 ; 0,000796001590370055 ; 2 ; aEc4FfFC0fea03eBeF1FA0Bca522b6EEdD9ba1FF06bF30EbB5FFcDcc990f6c1c ; < tQ0D92r5N2Uai7dpUFK21T8RED3Qp98D78a6dEsep2sXSjLq1zl2D1C8juO01fR0 > > 17 // < PUTS 0,020297921066918 ; quote ; 0,00069217529597396 ; 0,000678331790054481 ; 0,0204081632653061 ; 2,3 ; 0,000667949160614871 ; 0,000716401431333049 ; -7 ; 091fc6E103b1b38dddaB1FC6DBD20AEcec0eF1EFD4fEcbD3faFeE9AfFb59bfEB ; < otH22CPk2g84FuZm2H7H06qbfOtssROnb5OleRZJ3PIBmu85zBz8eGR4UIIO7n0b > > 18 // < PUTS 0,0210496959212483 ; quote ; 0,000622957766376565 ; 0,000610498611049033 ; 0,0204081632653061 ; 8,1 ; 0,000601154244553385 ; 0,000644761288199744 ; -3,5 ; 62bBffAc32EC8dC59AEBf54AFBE8DbcB7b46e42FaebDD66c2Ed2fB2ABfDDFDAb ; < 9dg21oFD9gqnVxZ2GVCN371a6Tm3kaoa47qrOaqbbNRU8pT704886yx1uTB64j9B > > 19 // < PUTS 0,0218014707755786 ; quote ; 0,000560661989738907 ; 0,000549448749944129 ; 0,0204081632653061 ; -8,6 ; 0,000541038820098046 ; 0,000580285159379769 ; -8,5 ; BB98DD83fEbe8abBB86bEfeA1CC6E1d19FDd2bB8eF780Bbdef213BE0a1bC7eA3 ; < K0ugV32BozM82fEW95pATF2UpXJxVkczs3HfjAVMb4UzWX8b33q6yHdD0TrU7wpY > > 20 // < PUTS 0,0225532456299089 ; quote ; 0,000504595790765017 ; 0,000494503874949717 ; 0,0204081632653061 ; 9,6 ; 0,000486934938088241 ; 0,000522256643441792 ; 0,6 ; 26DfEfbEFDDB97D1c99aaa0dEb2c1FfFD14A739A18Ed9DebdCDa3e1A4BEBfbBD ; < suwe0evS0j7s1zXMTJ9cNEL4JwY6Cg56xbXbau6ts0O8BcsfAp1OM01Y1Y11H7S0 > > 21 // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00761680730540522 ; quote ; 0,00108334771541015 ; 0,00106168076110195 ; 0,0204081632653061 ; -7,2 ; 0,00104326384993998 ; 0,00112343158088033 ; 4,1 ; DcbeBe8CdB9EfDbBDFBBD7D1A2E8fC2AD6EdFfAADb3c9eD8EB02Ffb23f2A4eAa ; < AyxYZpZ60Ovwgrq7fOmD1VA13MZgKq7T3c86B54uSFR2YReE60aN47PcN6BFgORH > > 1 // < CALLS 0,00837848803594574 ; quote ; 0,00120371968378906 ; 0,00117964529011328 ; 0,0204081632653061 ; 7,8 ; 0,00115918205548887 ; 0,00124825731208926 ; 2,4 ; e7e08dedad604FcbFeD7EEFE0AcEbCcfdFfdBeaBBFA4ED0deBaedD7DCBbF44F9 ; < DE8cAS0Q7oud850KRLwFiiUVszirxw67v26ym8Iy1hU9760BX0M81570ggbM67w0 > > 2 // < CALLS 0,00914016876648627 ; quote ; 0,00133746631532118 ; 0,00131071698901475 ; 0,0204081632653061 ; 8,5 ; 0,00128798006165429 ; 0,00138695256898806 ; 9,4 ; cBceEe92AeF14F31CbFCED5DCe7C6f100DDEaC4D7F6C1dF8EEcbAdb5ea1CF7Be ; < ypH4K6E959t615Lf4yZ7qrfa5v2n9vR1uwfMXUA3wCkyzsKPX7f2IAid8bFe9m5W > > 3 // < CALLS 0,00990184949702679 ; quote ; 0,0014860736836902 ; 0,00145635221001639 ; 0,0204081632653061 ; 4,3 ; 0,00143108895739366 ; 0,00154105840998674 ; -6,4 ; dEFb3aaA48bBee9fCCcdCaAEbcFAFeaDbfeA5d5Cc8B2CC5EcD9cBdAE4c823C1B ; < 2Sc1wVHjfpiR6oo8v70W7HIfG6O1dfc7QU4Grd1jICb1386paU09JP86i9RqGDKZ > > 4 // < CALLS 0,0106635302275673 ; quote ; 0,00165119298187799 ; 0,00161816912224043 ; 0,0204081632653061 ; -5,4 ; 0,00159009884154851 ; 0,00171228712220748 ; -0,6 ; d00afC5ADCFbBCC3BEAbB240a6afCbf0eFB6fEBAeBdbB21AD0dAbFBbCec9adAb ; < 202MZ7zm6S6WDx5ZNJOr42Et2MLO3vTd4c4fxz5N0Ur1niV88o1SF1l4Jvf4Ki1b > > 5 // < CALLS 0,0114252109581078 ; quote ; 0,00183465886875333 ; 0,00179796569137827 ; 0,0204081632653061 ; 9,1 ; 0,00176677649060946 ; 0,00190254124689721 ; 4,8 ; b83aBCDfDacB4AAd9FA7C2a70A36a5755e1Ea3cfA48eDEdcbC2bD7BcfdB2bd5A ; < Q8iPy9Nx9H20i72X03Bt7EdAt43dX0rwvh610k80ekcfF4712OY7FWQDpTQ2e2PY > > 6 // < CALLS 0,0121868916886484 ; quote ; 0,00203850985417037 ; 0,00199773965708696 ; 0,0204081632653061 ; 6,8 ; 0,00196308498956607 ; 0,00211393471877467 ; -9,6 ; c4B9Cb14Ce4BB62FAEC7DECefAba32Cc3aF01D8BF8BfF917AD4A88bb7aFfbFB4 ; < 80yI4FXzzU6Vw0eFeTZquI000oQblD9bVn4pTesYkn4LYs5DCFrzv0B1VGdnYFmK > > 7 // < CALLS 0,0129485724191889 ; quote ; 0,00226501094907819 ; 0,00221971073009662 ; 0,0204081632653061 ; 0 ; 0,00218120554396229 ; 0,00234881635419408 ; -1,7 ; FB3Abe009EcCCEfF1Bd84DFfbB1Fc2eCC6bEf9dAFEfdAF2EAdcEEbC1CfABAD2f ; < ScRc24ZF3DCD9lly9KfDxHy56D51xIqLydXQ9h7308RAr2CK72q5KcArLZ5k1Ro6 > > 8 // < CALLS 0,0137102531497294 ; quote ; 0,00251667883230909 ; 0,00246634525566291 ; 0,0204081632653061 ; -5,3 ; 0,00242356171551366 ; 0,00260979594910453 ; -1,6 ; E21ACeA877f8aFF31f5ADDB9a56Af2Ba7AaEe9EaBab3c8dddDCeDdF4E7aCbbEc ; < U1p636ctIIiGxH5Z9xJd686GQnLc3d3D4MStg5SMbD52E9GP2ETa6xyrEl7gaF3f > > 9 // < CALLS 0,0144719338802699 ; quote ; 0,00279630981367677 ; 0,00274038361740324 ; 0,0204081632653061 ; -0,9 ; 0,00269284635057073 ; 0,00289977327678281 ; 9,8 ; 0fdeD9faBdCBD75fdF331Ff1202BC955fADAbdFdEddeFA3Cb9e0A7b5EAEdc6Da ; < m2L58nuR5v63LesOoul6EleK2879TZwPCpOw2Gy2T02BDH0QxFtymf34Ztm6m7jk > > 10 // < CALLS 0,0152336146108104 ; quote ; 0,0031070109040853 ; 0,00304487068600359 ; 0,0204081632653061 ; 5,7 ; 0,00299205150063414 ; 0,00322197030753645 ; 8,5 ; b11d7A3D2B45BC9efd920afF90bd92efB2B4cB152c79b6DF7f9cE6EDFB6bfbfA ; < Y05OQbV8j07C5MCA7Ar5Z085l2f6x0fjCuls6RYRI1CJCergASElKP30ODDRV3q9 > > 11 // < CALLS 0,015995295341351 ; quote ; 0,00279630981367677 ; 0,00274038361740324 ; 0,0204081632653061 ; 5,7 ; 0,00269284635057073 ; 0,00289977327678281 ; -2,3 ; 9c0AEFCc74e6Cb1F3fb1AcB4eDDBc139497aE25aA7FDc7abe2DBaCdd2AAfb5ef ; < DLQ4p723wMu2k496PB1smNc3WbH4OD53WZtcp7UP89q8n6ytx8GSMv84Fxq4n2y4 > > 12 // < CALLS 0,0167569760718915 ; quote ; 0,00251667883230909 ; 0,00246634525566291 ; 0,0204081632653061 ; 3,8 ; 0,00242356171551366 ; 0,00260979594910453 ; -7,5 ; 2bdeD7f0a94771b2Cdd82C4DEbCcF61CEAdBfBf3cfb4FCcACB1bAEbDdd7d3C4B ; < m87I3pVTNx3sUyGqnu9Yku499Ye89Y2289l0i7Dj0Wwc5piP46D2b1PbkQpD5sQd > > 13 // < CALLS 0,017518656802432 ; quote ; 0,00226501094907819 ; 0,00221971073009662 ; 0,0204081632653061 ; -3,1 ; 0,00218120554396229 ; 0,00234881635419408 ; 9 ; 6E86d2C5e15A4dccc1eF4F8BaC38B1B5faB9b6CCFdCfdEB9DE0ffaCadFb1bAEA ; < OLXXFYtUfVAgfPag158Scw1VEtq93L2y6Wr4P5kUzfAyWiuss9Aw2vt5Wj482v42 > > 14 // < CALLS 0,0182803375329725 ; quote ; 0,00203850985417037 ; 0,00199773965708696 ; 0,0204081632653061 ; -5,9 ; 0,00196308498956607 ; 0,00211393471877467 ; 0,8 ; 164D6Ecc3faebfeBFFD72CD0dADd21EaEeDb96bace06Be1C8aEA6A4eEbeDCafD ; < 5JQgFVkE6DEka1xPW865LQgWIEoCC4TJmTm2W015iOFMHiofM8mr66R735ZI8JXu > > 15 // < CALLS 0,019042018263513 ; quote ; 0,00183465886875333 ; 0,00179796569137827 ; 0,0204081632653061 ; 6,3 ; 0,00176677649060946 ; 0,00190254124689721 ; 6 ; d4FBAda7c9a67bCCfE4ab0AFB8f9E8B1dAC3c5Ad54cCcAb48be14eeAedAacc5D ; < JtMySF77qrERsKyLAfLXUjj77hqi4p1OzADLND82FAa47cDM3B7Olb1gJhW8f53n > > 16 // < CALLS 0,0198036989940536 ; quote ; 0,00165119298187799 ; 0,00161816912224043 ; 0,0204081632653061 ; -1 ; 0,00159009884154851 ; 0,00171228712220748 ; 4,8 ; 5BcDdFCE0c068feb0bDA8CBD8eDcdaecB1F31Fe8cCFbD27EbD5C5f1Abb6F3D31 ; < 0fs22Sv1xTP9z69x3gZxOn8v5UPGRruy7j5jWfpU77F5pvTz9uO1phe9KHjRIA2i > > 17 // < CALLS 0,0205653797245941 ; quote ; 0,0014860736836902 ; 0,00145635221001639 ; 0,0204081632653061 ; 8,3 ; 0,00143108895739366 ; 0,00154105840998674 ; -7,5 ; A1fAdbeCd153e5B5054eADFADdFEFA25aA5AB4539ccCadda72Fbfe2fcAa9FFEe ; < Kb7czXITdMqN13UA2aPgc0BcLv8zjk7y7QrqE6EIy3iCgnREkryw1x7NN6Ejy2KR > > 18 // < CALLS 0,0213270604551346 ; quote ; 0,00133746631532118 ; 0,00131071698901475 ; 0,0204081632653061 ; 8 ; 0,00128798006165429 ; 0,00138695256898806 ; -7,3 ; e6F4A35a9147D2d082B0fFBFD88E7D5FcCb96Babb23D73BADFFC1C847cb0FaaB ; < 9ah61NSANNa2OfYCKbm10J4GZB1jTZ2Vlv7GFYqUfmgYf4n25f70idgr7q746k3Y > > 19 // < CALLS 0,0220887411856751 ; quote ; 0,00120371968378906 ; 0,00117964529011328 ; 0,0204081632653061 ; -3,1 ; 0,00115918205548887 ; 0,00124825731208926 ; -6,8 ; E0f88F43d3B92dDDbeD7cCF8daFed5Bb97cbDEF45F8678CFACEB4bC8bcDab9EA ; < Imo446yyWU85nPpfwai9k4z141C0NRf4a78j8f9B3IZyIf1LLyBlMyL2mLYd7i4v > > 20 // < CALLS 0,0228504219162157 ; quote ; 0,00108334771541015 ; 0,00106168076110195 ; 0,0204081632653061 ; 8,6 ; 0,00104326384993998 ; 0,00112343158088033 ; -6,8 ; Bae0dF9dCe7EA9D7B1F9a8f5fefeedA1BCea1daA131BbFBFfa1ECeB99f4B95a4 ; < JbV48KCIUrn0AZnMv7cs05Ze379zTU6eB9lDsqDqWPiIFTd9lQ48RoACHcL9ivtD > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00761680730540522 ; quote ; 0,00108334771541015 ; 0,00106168076110195 ; 0,0204081632653061 ; -7 ; 0,00104326384993998 ; 0,00112343158088033 ; 3,4 ; fECa9C1C77eccFEff26eeeFbbdfAA4b1ED15c01FEaCc2AcAA62EDB9eCD8dFD4c ; < Y4xR2S846zQ91WcwpXe076q778t2VfCy72e9O4JfAjuJL46vev7gegoC2K2aa497 > > 1 // < PUTS 0,00837848803594574 ; quote ; 0,00120371968378906 ; 0,00117964529011328 ; 0,0204081632653061 ; -2,8 ; 0,00115918205548887 ; 0,00124825731208926 ; -6,7 ; a4ead4f05bdAD836B44B2fAC0d7E260aFb1CCE3ad90abB3F9FACcd7BfFaabCEa ; < O4w7L94Lm8AwJhNl968INF1qFHNHZaOi8xjyOI42g896qz3dZxfJE64iV4DWT5ir > > 2 // < PUTS 0,00914016876648627 ; quote ; 0,00133746631532118 ; 0,00131071698901475 ; 0,0204081632653061 ; -1,3 ; 0,00128798006165429 ; 0,00138695256898806 ; 5 ; 89Dbbeddd9aCDb5CFe7cFDa8b02Beb8f126eC1dB917ADADb2e0B2ffEAfBBA5C1 ; < blYPPf203T4GU9hDtG40E86wMFgHPPU2LigeGZHuVf5fhnKV23NCrDuTTAx1d67K > > 3 // < PUTS 0,00990184949702679 ; quote ; 0,0014860736836902 ; 0,00145635221001639 ; 0,0204081632653061 ; -6,5 ; 0,00143108895739366 ; 0,00154105840998674 ; -8,3 ; df57B56Aa89509a3dfaC9bcbAe74fC5aAA4aE6bDeC0a0ff4b0EfeeE4aE089B4a ; < QSzYcH5X10694vnw0vuF65s60OadNh8d6fR4HmQjwM3mc9yy3ml076RKWbfnrGm0 > > 4 // < PUTS 0,0106635302275673 ; quote ; 0,00165119298187799 ; 0,00161816912224043 ; 0,0204081632653061 ; -0,3 ; 0,00159009884154851 ; 0,00171228712220748 ; 3,2 ; bC6aEBCa37Dd32FD26EE7afaEc26F873DBCced5f0cfAfA8c8EE5F0CbCBEdeB72 ; < mBn97vdjJ22Ikq9ChT44QM73zCFMayBCfI3bJ812HcW2PeY070M4gk4Sp8S34pvV > > 5 // < PUTS 0,0114252109581078 ; quote ; 0,00183465886875333 ; 0,00179796569137827 ; 0,0204081632653061 ; 1,7 ; 0,00176677649060946 ; 0,00190254124689721 ; 0,8 ; cf9e7bDFDfcccA7E503D9D51D3F9FbfC8C4C7bC8e6edd8eE3Aa51aF71BcE816c ; < ztj7p28JIJrrUFhlmhX87i9VKqG9Boi45D938Ag0UxHxTIqUZ4aAC1QzqXVLORgT > > 6 // < PUTS 0,0121868916886484 ; quote ; 0,00203850985417037 ; 0,00199773965708696 ; 0,0204081632653061 ; -4,9 ; 0,00196308498956607 ; 0,00211393471877467 ; -7,1 ; eBDa9EfbbeD4ABbf8Efbd4CE9393AF4c1ABc28Dd046eDCFF4ddF2a96Dd8DbE66 ; < v5521V2R7p78H2K25srC1IAUx5276V755u9K285cIi4JkDoWMkD1Q09OU06X5uwJ > > 7 // < PUTS 0,0129485724191889 ; quote ; 0,00226501094907819 ; 0,00221971073009662 ; 0,0204081632653061 ; -4,6 ; 0,00218120554396229 ; 0,00234881635419408 ; 9,9 ; 68f7cCA547d6cfcF4CaBb6c9e50E24F9bdebdD4027ef84618FdEc4BD4d2Caaa4 ; < G8d0RBmh7Aoud4C49eH6xr4i00wxDinuixP0cIfmgApxbhgM1vqbSlUv81xnI155 > > 8 // < PUTS 0,0137102531497294 ; quote ; 0,00251667883230909 ; 0,00246634525566291 ; 0,0204081632653061 ; 4,6 ; 0,00242356171551366 ; 0,00260979594910453 ; -3,4 ; efABaeDBacF3Ea6BABEADB8cCf195FDEdEceccD59D3436e9f729Fc18f2cEEc7e ; < 06550393C1ZQ4b6fR2EVzb0UxqdWf43e9rslHPyemNxVl9dN06IMadi1C9dJCXI6 > > 9 // < PUTS 0,0144719338802699 ; quote ; 0,00279630981367677 ; 0,00274038361740324 ; 0,0204081632653061 ; 4,8 ; 0,00269284635057073 ; 0,00289977327678281 ; 0,3 ; 2bAEbCcEA3cd6eA86FeaAADadef1caE76bb3BD1A3bCDcC5fEFC7C1aEB66E4F7F ; < h7cle39kGqpOQEu3SL6Du0Kek3NmXm6d26H3Lw50CrJyt6A1ul842iLccOdXUZ15 > > 10 // < PUTS 0,0152336146108104 ; quote ; 0,0031070109040853 ; 0,00304487068600359 ; 0,0204081632653061 ; -9,8 ; 0,00299205150063414 ; 0,00322197030753645 ; -3 ; bB29CBa5d1FB74bACc9D7905beE3AaFAB1Dc5BeFe9BA9d6a1BdFEeA2Df1BA4DE ; < 5a7l0wt8XJUa1Cu5L1WZ8g67z602GqKsOMkE5pL78XYjRxoSA9W5hyfb9ayV6SJz > > 11 // < PUTS 0,015995295341351 ; quote ; 0,00279630981367677 ; 0,00274038361740324 ; 0,0204081632653061 ; -6,3 ; 0,00269284635057073 ; 0,00289977327678281 ; -7,3 ; ad2DF0eBC2E6D09Fba51AC727F2AbDd6EeE3fC27a7Ca9bA06fF37e7c4D1c357c ; < EN2jh1dEvY6D696GsP93XsD79OTlB1wm8dbPw2EbaV7Px0C08D602c2P6660FXMo > > 12 // < PUTS 0,0167569760718915 ; quote ; 0,00251667883230909 ; 0,00246634525566291 ; 0,0204081632653061 ; -6,5 ; 0,00242356171551366 ; 0,00260979594910453 ; 4,3 ; dA8fdfdfA8ddFd4fA068FCFcF9ACD7FC8cbc4beE9aFECa4caaCc3aB88fdBBDAD ; < G5FZUu2t1MRzc10GhX9n8Cm9mVi52rE05v36E0HFnG3BUsI26oq60Bn0bR1eKg48 > > 13 // < PUTS 0,017518656802432 ; quote ; 0,00226501094907819 ; 0,00221971073009662 ; 0,0204081632653061 ; -3,4 ; 0,00218120554396229 ; 0,00234881635419408 ; -5,5 ; 0aFdfaD6F7dBe94Ce9DA54CFE19Ee0c253DE8DAaBbAeFce9dCd86fd4f2bEf2Ec ; < G6HxsrSN3C16J6NzdpB4aXLGNJB9kMUMw0u9nQ01HvfYlixAzlf0uoiAC9MTg70q > > 14 // < PUTS 0,0182803375329725 ; quote ; 0,00203850985417037 ; 0,00199773965708696 ; 0,0204081632653061 ; 8,3 ; 0,00196308498956607 ; 0,00211393471877467 ; -9,2 ; dF18BDDefFE3E9cDa63DBdEBeDb5C9dcBfae5Fb7CE3cc6F14ba4c7bDAADeaBc4 ; < tt97k6qYDd2gKh7H2n4NE3F102h54c2t7NZu94dg0iBNi16809cgy52zfHAXJbNt > > 15 // < PUTS 0,019042018263513 ; quote ; 0,00183465886875333 ; 0,00179796569137827 ; 0,0204081632653061 ; 5,6 ; 0,00176677649060946 ; 0,00190254124689721 ; -4,4 ; DA158178bacDbfea08aCBBfB772eFFBe51AfBeB9CFdeEFF5BcC12BBeEeCB7a9d ; < HOO7GMEHE70Ver7umZ7A4g6aM5u86H41Bf9FtY6jn06AEzdyKP42iS3dkcMJoUmp > > 16 // < PUTS 0,0198036989940536 ; quote ; 0,00165119298187799 ; 0,00161816912224043 ; 0,0204081632653061 ; 3,2 ; 0,00159009884154851 ; 0,00171228712220748 ; 4,8 ; ccb925bECf64EAfcbAeFc1Ed6bDcBFAC6cCAAEfcfC2CcfE01EF4Ef7A9DcffCaB ; < zh2dcMO612X4fx4OL35Z7qy01IV1D4wFC42uC3iJ2CsvMyVFx2AvN0s9Y37NvONZ > > 17 // < PUTS 0,0205653797245941 ; quote ; 0,0014860736836902 ; 0,00145635221001639 ; 0,0204081632653061 ; 4,9 ; 0,00143108895739366 ; 0,00154105840998674 ; -1,6 ; b1fcF7Db6CCEccBBEcfa4ABBEce3fC7faD0DaFcAdBdaccda7f77A7eE2D891C76 ; < idA6fVXx1V8o6OdL54otd421X1uKNhk2H3hsIkuzve8mB0fBHj2XT9z57P7D9VpI > > 18 // < PUTS 0,0213270604551346 ; quote ; 0,00133746631532118 ; 0,00131071698901475 ; 0,0204081632653061 ; 5,8 ; 0,00128798006165429 ; 0,00138695256898806 ; -6,9 ; 7CabF0f391bEaEFFD79D942eA0B4CcFbecDffB0B3e05FDd08BDfcfEfcDEFBDF9 ; < g465a3NRhVF9G3554IP1ox9G1TzZ4k2kI72i96taSsB71D1N4900d7QUNJJ7zvB4 > > 19 // < PUTS 0,0220887411856751 ; quote ; 0,00120371968378906 ; 0,00117964529011328 ; 0,0204081632653061 ; -5,1 ; 0,00115918205548887 ; 0,00124825731208926 ; -5,7 ; 248C8cfB36FCCe7f2033EbD934a8798fBFfCcBeF04dDf4DE3FCDeBA807d6BA4B ; < VfLosxfNLhuk8n2x55zfh6wscm1D67ez636VTNn4thjOnhvleY75Wi8y30rOUmIq > > 20 // < PUTS 0,0228504219162157 ; quote ; 0,00108334771541015 ; 0,00106168076110195 ; 0,0204081632653061 ; -4,3 ; 0,00104326384993998 ; 0,00112343158088033 ; 7,5 ; b5f3589131D10Bc42dd95aAA2decd0ce700FbfBABd6Cf0EFCedB5E16Bc9adCa2 ; < 9vEUC3Z75bq419zcP9jA34Y1vnI0UwbQjeM4aij982PzlX1pf0P6IATHk0mbF4Ia > > 21 // RUBCHF // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,014946153209359 ; 1,14 ; -0,986889339290036 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AFd30D0bEa2Adcf6eCdBA34bFf76E0C02DAd403E115b719d28Ed8dFeDA1D53da ; < V6gY6D0njHa9yXGgaRc8fr4ZlNwVS8tiDG5J0jQ5x8oN2WjbkR82fGaFBk1XKLQP > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0149486805291157 ; 1,14019276829845 ; -0,986889339290036 ; 0,0146986805291157 ; 0,0151986805291157 ; 5,5 ; -8,1 ; -1,5 ; -3,6 ; -6,8 ; 7,8 ; -0,22 ; RUBCHF64JA19 ; CD1FDC4b84e61dD33EB56a2EbE2AA2F4ac1edebcDaC2db4C1bae3E807a3bc259 ; < 1u607k6m5cU8af1O8ZY4wDbDEe4sBke199LfBV9i18xdXD5Oyr8V9ABz090O5n19 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0149556501017816 ; 1,14072436413638 ; -0,986889339290036 ; 0,0147056501017816 ; 0,0152056501017816 ; 0,7 ; -3,9 ; 8,8 ; 8,2 ; -9,5 ; -8,2 ; -0,33 ; RUBCHFMA1912 ; EE3Ec99dE4f5C2aAfEccebbfE9c8b5E268ACb8eb7455ec06bAdD5DB48fc6fD1e ; < r2aL5QHj1N1E845jjU6txFwqYwlOSaV3kkLaG1d1V4NiSVftIwQ7M0wOQ79DK1KO > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,014965646681381 ; 1,14148684131588 ; -0,986889339290036 ; 0,014715646681381 ; 0,015215646681381 ; 9,1 ; 0,3 ; -6,3 ; -7,7 ; 3,6 ; 0,8 ; 0,89 ; RUBCHFMA1963 ; BFcAca309A2b0fBDE72FD3aAbCc26e80EadECd2dEEE5EdEB1eF6A8DBBbb5B234 ; < B96A386nx75n80T6l7Q9sy282z1VPiyZ5TSPcLLTyYNjutTaFY7G02U91p1P2t80 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0149786314728496 ; 1,14247724078969 ; -0,986889339290036 ; 0,0147286314728496 ; 0,0152286314728496 ; 8,8 ; 4,3 ; 3,5 ; -1,3 ; 7,4 ; -2,3 ; 0,67 ; RUBCHFJU1931 ; b3DEcE9c6CEEDD3e2eD28DCC85bCa5C05BadA1C5b4fAf3ACDEffdbB4CDea0eFE ; < FA7nOTIzwlwE6e5bn76Y1lIr0a6M4fN4wd4sTA68n49HT6SVOAD1UF82412R9cr1 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0149945673604794 ; 1,14369273160151 ; -0,986889339290036 ; 0,0147445673604794 ; 0,0152445673604794 ; 5,6 ; -5,6 ; 9,2 ; 6,2 ; 6 ; 2,2 ; 0,63 ; RUBCHFSE1938 ; AdEaB89A5aD9991cbF110ECbeeaE0Aa50BEae7bc69CfB0ebfA9c21feD5aB67dA ; < 0xPt6569id8V5Yg4NI595iQ8WyZB8C9mUe4JVLKs4USVP9g8713kh56L65DUOPx9 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,015013028967582 ; 1,14510086865204 ; -0,986889339290036 ; 0,014763028967582 ; 0,015263028967582 ; 3,9 ; -5,4 ; 1,3 ; -5,4 ; -2,2 ; 1,8 ; 0,02 ; RUBCHFDE1955 ; A9cAaEd9D62bc47e8aFEA335E5ECFA684271fcefc47E6F0485c8Cbb3FAce972f ; < 3xzgouKG6s9rRDxe0aKLdZCTS4vZkbTs7wPk0YK88BNb54tRawV3KURh29KOStN7 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0150354970866059 ; 1,14681459761818 ; -0,986889339290036 ; 0,0147854970866059 ; 0,0152854970866059 ; 3,3 ; 0 ; -6,6 ; 4,1 ; -1,2 ; -3,7 ; 0,2 ; RUBCHFJA2075 ; EeAd9b8d6CbaCDA34AA6dfae6AeDECee7A8eefaaefeadDB0CCE9d7EAA5CbCEfF ; < p8csxy9oXM0og8ooTiS9zGS0UUWOAl5jG9hR3d4Q75daP0h8fPeA11hBbx3fe9p6 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0150591024109638 ; 1,14861506556408 ; -0,986889339290036 ; 0,0148091024109638 ; 0,0153091024109638 ; -6 ; 6,9 ; -7,2 ; 2,9 ; -5,6 ; 6,5 ; -0,8 ; RUBCHFMA2057 ; fAbb816d064d62a4DCF68dE8BAEdBBbB9cB2ddEDDE6AA2e17fD02dF4DBEFbddE ; < d7hh5dr87CvEqBN54XAT2FuCqXClM7921N9Op36m28tr3V0ToOuD23sd8g2L672W > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0150883835506387 ; 1,15084844955004 ; -0,986889339290036 ; 0,0148383835506387 ; 0,0153383835506387 ; -6,1 ; -8,2 ; -7,4 ; 2,5 ; 5,3 ; 7,8 ; 0,69 ; RUBCHFMA2040 ; FdA2a7D5F5dd4e413EdbfFeA6aD010a2CD7A76C0ADFAa41c1a0d6fF9d874100b ; < UWAuplA3IDHcq81EJVhxI9m9EJj8Ola9DSgx5SBe4S17Q5QwloG4X391E4yEo07A > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0151192830471923 ; 1,15320527177564 ; -0,986889339290036 ; 0,0148692830471923 ; 0,0153692830471923 ; 7,6 ; -6,5 ; 7,9 ; 8,4 ; 1,7 ; 6,7 ; -0,73 ; RUBCHFJU2015 ; 5CFBE0faC4CD74C63dFb3cd4070dCF22d3DfeC02EE5A6d46fD4C9dbfcBeaFaEf ; < rg6553u53L7I1mnY3e5hpxQBYx1L4ObR9GDc7bb7tiSiE91eVMiDf848K0yOumJi > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0151538068439612 ; 1,1558385331751 ; -0,986889339290036 ; 0,0149038068439612 ; 0,0154038068439612 ; -0,9 ; -9,1 ; -2 ; -0,9 ; -3,7 ; -9,6 ; 0,42 ; RUBCHFSE2010 ; fB71e972bC6be3641b1E0abEaD2F31AEbC147FBA3dA5B1e6C954bebeAf2bb7d5 ; < C193IXDL5f0nPyp7XwPMQ8V4GsrIAimiyP6WKZrr557rBIrxJzGc9nnmI209ED53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,015191797437719 ; 1,15873622037777 ; -0,986889339290036 ; 0,014941797437719 ; 0,015441797437719 ; -9,7 ; 9,3 ; -4,9 ; -4,8 ; -9,6 ; 8,7 ; 0,3 ; RUBCHFDE2011 ; aEE6dFBe040c6cF29BcFE996FE16AbFc1c9cCCbaaaA2Dd37f81fD2BbacfE23ac ; < 3mh2X5CV10Vb44R2NrE19c5a599c4ls65gT7sE145IldKSqZnMQNb5fsi7l1H01g > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0152336146108104 ; 1,16192577535265 ; -0,986889339290036 ; 0,0149836146108104 ; 0,0154836146108104 ; -0,3 ; -1,8 ; 1,3 ; 4,3 ; -4,3 ; 0,9 ; -0,27 ; RUBCHFJA2186 ; cdBdDfE2bbCec93d408749ffdfF7F0Cb1AbfEDc6Dcf7fb7C8D745cd2eABBFbfE ; < amhfY01JLIi3y9JZ6A2g55ZyQ79xWAjQE1DT29OHVFoucNk1e3y8jUSCuEyDrn45 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0152766842115595 ; 1,16521085775252 ; -0,986889339290036 ; 0,0150266842115595 ; 0,0155266842115595 ; -0,2 ; -9,4 ; -4,3 ; -2,6 ; -0,5 ; -9 ; -0,95 ; RUBCHFMA2182 ; 62F6De947de144bfdEcEFbdBBD3DB2fFc6FCECBEC0869eeEdFBff1CdA6EBfBAd ; < O6dN43xLzAK4Z8XmV78hNB5fkwGlPt7r6KW6rs8PzB3Yi8Cm0ys3F6paP3dMJbPN > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0153252484233068 ; 1,16891503504928 ; -0,986889339290036 ; 0,0150752484233068 ; 0,0155752484233068 ; -2,7 ; 4,1 ; 7,3 ; 1,8 ; -3,4 ; -2 ; 0,9 ; RUBCHFMA2184 ; A67EdCBaFd2fd8ecbCfFf2fBe9EC5FbFd51eceF136FEA6EEDA45fCAdCEbecaec ; < h6T0SPTG9VGtsTfJgvwug7b9R5IkF7QfvrxU8vK0iYoN9GyKlc4rbVky2qmPG99d > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0153760013772586 ; 1,17278615604574 ; -0,986889339290036 ; 0,0151260013772586 ; 0,0156260013772586 ; 8,4 ; -1,7 ; -5,7 ; -2,4 ; -8,2 ; 7,9 ; -0,55 ; RUBCHFJU2166 ; B55F4A5f4dd344DE1FcADD0Fc6Fbbd8D7FAFac04BfADDe6eCBabFAde447bb96d ; < w86k3l61V7c10qcTy86vbObF5ah83ide0XR9694423S392bBy055QYm6Wk2oAIdH > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0154296560938046 ; 1,17687860552124 ; -0,986889339290036 ; 0,0151796560938046 ; 0,0156796560938046 ; -8 ; -1,3 ; -9,1 ; 3,8 ; -0,9 ; -0,1 ; -0,85 ; RUBCHFSE2130 ; bed1CffdEFED8B3C47eA6070e9Edc54d7d5bEeCACc2AEBAAeEBA91Cbc4DCaBf7 ; < 2dO91xmhq6UyCxmGgJ4O97397KAWzIz40Kiz6v7FUOv8KM9qVbOTArP50ZetY2sM > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0154876151709832 ; 1,18129936496737 ; -0,986889339290036 ; 0,0152376151709832 ; 0,0157376151709832 ; -3,6 ; -7,2 ; 8,5 ; 1,7 ; -4,3 ; 1,4 ; -0,27 ; RUBCHFDE2122 ; 8E90cB92aabeD2af1E2AedE5B8bd00AFEeeBE1eAadEAE3dbfCF078CB114ABf1e ; < K9gTC43B5qZJKU4U5QKSxvkDkw5A7D0mB9yBZi2r5RP9IK8Fe6zXq0vO71u64770 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0155504053487386 ; 1,18608861084479 ; -0,986889339290036 ; 0,0153004053487386 ; 0,0158004053487386 ; -1,5 ; 3,5 ; -5,4 ; -3,7 ; 0,9 ; -7,1 ; -0,76 ; RUBCHFJA2198 ; 0afCebcFAC661ccdaCb9aA0eC6FFeDfCA4c6aB8CFCc02060aF368eff6edEcace ; < e33be7Nayq9nhbn7woJr2sJE3a71OG4rJZ5AT977S4CjtqQxzTF955DPQMx47WnG > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0156163878634258 ; 1,1911213484121 ; -0,986889339290036 ; 0,0153663878634258 ; 0,0158663878634258 ; -6,7 ; 7,5 ; 9,9 ; -6,9 ; 9,6 ; 9,4 ; 0,11 ; RUBCHFMA2155 ; Ac5d5FCEFe8e8091faf94fD6d58EC177FBb9502Ac1eb9A0DfAbab8F563Aa5cFC ; < WG0p6GVMFtgyHcH687Wjbn9Zx95GZXgB9h7e5L7Gy0jJnJQ0hy350927jKbbh28t > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0156861166079418 ; 1,19643982518901 ; -0,986889339290036 ; 0,0154361166079417 ; 0,0159361166079417 ; -2,3 ; 1,9 ; 5,3 ; 7,1 ; -0,4 ; -7,7 ; -0,03 ; RUBCHFMA2154 ; 465FB33B22cf925ECCDACbeB081eFec5Ccd4E3dfaBA30aBAcBDACA8FaB3DDFB0 ; < fV88bGs44453lmT4zgJ7LBVH7RP0hnN4G9Cl39Ry35uk6U9ikYxlKKo7EO719yyv > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0157581646195643 ; 1,20193520129677 ; -0,986889339290036 ; 0,0155081646195643 ; 0,0160081646195643 ; 9,1 ; 3,2 ; 7,2 ; -1,2 ; -3,3 ; -8,2 ; 0,59 ; RUBCHFJU2177 ; B0BEfb5b02dcccE1ccBBDED5cDD9eAe07BF1FbFBAd6cABBcf9CEae79bddb50C8 ; < yIik5102Vh3pYtN0DZczhrtp9IkCvOVS4a5ILfBVLISR5QLCoOfs1efHkK6Ql5tE > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0158349093511495 ; 1,20778881411484 ; -0,986889339290036 ; 0,0155849093511495 ; 0,0160849093511495 ; -6,2 ; -8,5 ; -4,4 ; -0,9 ; -3,6 ; 6,1 ; -0,7 ; RUBCHFSE2133 ; 15a2dCFb3edACad1F8BBFDdcabaE4b0EcdffBef1E48AcE9FCce3df4ceEB2be0b ; < ivCOjJeA5xl0Za4rHMKkO2E5834v3rLI3yF9YsAxDr6212VkzYkWHi6XO79qrPOx > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0159129635780687 ; 1,21374230712682 ; -0,986889339290036 ; 0,0156629635780687 ; 0,0161629635780687 ; -1,9 ; -5,3 ; 6,9 ; -7,8 ; 8,4 ; 6,1 ; 0,81 ; RUBCHFDE2164 ; Ca7FB9BD9Dc3be75b12dAcDFeDbccfEAFF5AeDE9cFAa1Ac18bAfeDcb6DF97B3F ; < A8hRo8do5rfvuKT8XQA7xZoxi6y8js53ksEPca46HzssK005l771Fu7cglP15Wss > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00777520267436931 ; quote ; 0,00176032308181758 ; 0,00172511662018123 ; 0,0204081632653061 ; 1,1 ; 0,00168638951238124 ; 0,00183425665125392 ; 6,8 ; 3D6178Dc5b6A1B6DF4FbcafbeAADBa28ACcBacfAF31bADd1eEBb74FC0ABCFEbD ; < qwz4b9nclWmmHa8x7abKj0BrWwN1A4VE26rUDmdcdZv7c8NiV0oA1EwQ05iy0Y80 > > 1 // < CALLS 0,00855272294180624 ; quote ; 0,00195591453535288 ; 0,00191679624464582 ; 0,0204081632653061 ; -0,4 ; 0,00187376612486805 ; 0,0020380629458377 ; -3 ; f5d8bdf57fFDfCeF4F4fF1E4AB8DfABc626B1c3FaacCFBa1bCC0a3DAAbfa3Cab ; < 2N96aaUsu39vQ8BSIU06649574uQd7X78BJQDk2w5fh8PDRjgguV629HM3tp0nd2 > > 2 // < CALLS 0,00933024320924318 ; quote ; 0,0021732383726143 ; 0,00212977360516202 ; 0,0204081632653061 ; -5,3 ; 0,0020819623609645 ; 0,0022645143842641 ; 1,2 ; DeBdDe0FEe72d571F1894C53edFbC1aee9D26719b84E4Cd7cd5Ac23dA6BBAAfC ; < sBTd5P435XGhHr7lxTW82h5gQ694ky8Qd403x36B6xR0yTWD1L08tjZ2681I9uQx > > 3 // < CALLS 0,0101077634766801 ; quote ; 0,00241470930290477 ; 0,00236641511684668 ; 0,0204081632653061 ; -0,6 ; 0,00231329151218277 ; 0,00251612709362678 ; -9,2 ; FbaDAFFBdeBCda4C7BfDD0D3c6aD8C3BeA3F2fFdDC4e1BfA1368E0dBBD9DEC5B ; < U6038o03IKjs8VkS0pY9Ye3Cg3uVkQ139TwjNF1he3o0F3n980otdkYkC5647d5f > > 4 // < CALLS 0,010885283744117 ; quote ; 0,00268301033656087 ; 0,00262935012982965 ; 0,0204081632653061 ; -6,8 ; 0,00257032390242531 ; 0,00279569677069642 ; -9,3 ; A2F2fE0a7Fe8EFdA542c013e5B6187fac72D59D86AdCdBC1EBfbc0efdcFB3b4f ; < laeJHcVyO9Tl87N9Ly4U1opM0Y7ppS28A73fc1ZkC6nhi003nW16uay21s5v91Bt > > 5 // < CALLS 0,011662804011554 ; quote ; 0,00298112259617873 ; 0,00292150014425516 ; 0,0204081632653061 ; -3 ; 0,00285591544713922 ; 0,00310632974521824 ; 4,7 ; F9CAeAF7dabFAedF7B7bAAEEaffE0eaD1A2cDF1beF13bC5d5E1FdD4Bb8B65EE0 ; < EyiVx4Hbw8Nxw6JirLUka4BxuQ87LJdQo35BcLbs931hZEv426fA634424ffR0jo > > 6 // < CALLS 0,0124403242789909 ; quote ; 0,00331235844019859 ; 0,00324611127139462 ; 0,0204081632653061 ; -4,1 ; 0,00317323938571025 ; 0,00345147749468693 ; 5 ; CaCBCBABb1AAb2dCbefEAce57bCa5Edfb9fFdA19DbFA00aaA3AafAcaBEbdb2fE ; < 3ED63FauGztB2IyuC4fH7TnECh45VYg86k4yYDvy20an10i34v6aY76VGu5yHvA1 > > 7 // < CALLS 0,0132178445464278 ; quote ; 0,00368039826688733 ; 0,00360679030154958 ; 0,0204081632653061 ; 4,3 ; 0,00352582153967806 ; 0,00383497499409659 ; -6,6 ; 15EE06EcabeaeAEEFbfdA5fdBA9f7Fcc17A5Eaaf11607C149fd1be6c77CFd68F ; < 5Pt357bg6AvG22yOoe466nQ0X38jkZX0F4tyV6k7Kja46PeCl0gV52UTj45NVdwz > > 8 // < CALLS 0,0139953648138648 ; quote ; 0,00408933140765259 ; 0,00400754477949954 ; 0,0204081632653061 ; -5,1 ; 0,00391757948853118 ; 0,004261083326774 ; -4,2 ; fBcCbCCD494DABE13BAcb050C5edCBE50cCaA5cfDaA26C0fD5d99A0fDfca04bd ; < 4IP33iA1zMpYIjXBgc862EA6abh9VziXr66fW6RWLPJQ6JOcinN88qrQ9a4X9T4C > > 9 // < CALLS 0,0147728850813017 ; quote ; 0,00454370156405843 ; 0,00445282753277726 ; 0,0204081632653061 ; -7 ; 0,00435286609836797 ; 0,00473453702974888 ; -4,2 ; 1EaC66DfABe29BCcFbD5a1eCBcab659A3745F3cDCcEA2DCAEdEcc5eb747cE2A9 ; < zzXfsIfv2KgxYsWxd42D32HfT0630Z9Gl4WLT4Zb1EjL1rPU73EL8sK2Ze1sdN16 > > 10 // < CALLS 0,0155504053487386 ; quote ; 0,00504855729339826 ; 0,00494758614753029 ; 0,0204081632653061 ; 8,8 ; 0,00483651788707553 ; 0,00526059669972098 ; 6 ; ceBAD8aAb9200FA9D9BA6bF35Aed9ADdc6B14eaf5edafBAbCc3C2B60dC4da2d1 ; < M8G5bMQ15t8DLVw0IVdR2rl4pG634sZZv9kpE2sfOV9B7F13G1n99clu8dXQnUUc > > 11 // < CALLS 0,0163279256161756 ; quote ; 0,00454370156405843 ; 0,00445282753277726 ; 0,0204081632653061 ; 9,4 ; 0,00435286609836797 ; 0,00473453702974888 ; -3,2 ; Eb9ca4BD4d556Fe5D112AD47a7b5fFcBbb9BacCb4BAdaC0466C6Df83A26A9EeB ; < Mu908tXW1ORpS5wZ6YT9S95HwRkM9Endrb4lGrrGfKD0T854uucsGy6I0NoNVyNt > > 12 // < CALLS 0,0171054458836125 ; quote ; 0,00408933140765259 ; 0,00400754477949954 ; 0,0204081632653061 ; 4,1 ; 0,00391757948853118 ; 0,004261083326774 ; 2,3 ; 2aF86eD4F6DfCF8Db49cfdFBaE41c4Eef2AfaAbBAeeb9c4cC6CfF2c35bc0bd93 ; < j44X5HOycs7XDkb9j620rAK32p2H53JmzFGzy9lo0m97637aAHQun24Zd8fg800M > > 13 // < CALLS 0,0178829661510494 ; quote ; 0,00368039826688733 ; 0,00360679030154958 ; 0,0204081632653061 ; -7,2 ; 0,00352582153967806 ; 0,00383497499409659 ; 4,6 ; Aeb9d9bAB5EDeaFaCAeBDAFFcD3cd5AceEBaDe0ffF0Ccb641b4cB3e987eD52CF ; < volGDE84mizH3y1G5TmI80jamrlY1gXzND2LB7wsZ68CG66ZAHwS2u9pDYlRekwk > > 14 // < CALLS 0,0186604864184863 ; quote ; 0,00331235844019859 ; 0,00324611127139462 ; 0,0204081632653061 ; -8,6 ; 0,00317323938571025 ; 0,00345147749468693 ; 7,8 ; C0DFB8eDFEA9faCeecCABCeceb4BFD6F3B95afAECE7Bc8ce049FFee86463e7b2 ; < mDZH1Cs7sB5xlI0FABzAbQf89S79xC0o44vnhxGEPnXfb6uB3bJty8R8QOGTPxyT > > 15 // < CALLS 0,0194380066859233 ; quote ; 0,00298112259617873 ; 0,00292150014425516 ; 0,0204081632653061 ; 7,1 ; 0,00285591544713922 ; 0,00310632974521824 ; 2,1 ; 9ceea9b0F79FD5DF7eC6A14FbeB4Ab8Adfa4cc35cAAe1Dc6Db4D4fB7CF1E4cA0 ; < 4m58rXNXvcNW05CrVY3mI0QUgMluSNBC0qPaTgn1d8NNBt6j70G6m0Lwe8CM14xL > > 16 // < CALLS 0,0202155269533602 ; quote ; 0,00268301033656087 ; 0,00262935012982965 ; 0,0204081632653061 ; -3,7 ; 0,00257032390242531 ; 0,00279569677069642 ; 7,3 ; 80b1eb5dD7D6dFBc7B51cf9B9C3fE2eb9A6eaB7Fe71C46DCD2E1a0faeCA7Efe1 ; < 0GR8OLELn0Q1hVI0QJP4g50tgOq6Yy7Qo32FmZAi98Ob7MtS8HdTrx1e9kxckDhs > > 17 // < CALLS 0,0209930472207971 ; quote ; 0,00241470930290477 ; 0,00236641511684668 ; 0,0204081632653061 ; -8 ; 0,00231329151218277 ; 0,00251612709362678 ; -9,9 ; 84f9fc00e2FdEA9945Fd3C8Fe087FB8ebdF0d133EC46542cCe8e79BA9DABDaab ; < 34I6P7SWuCkZ2M0k8Ui4h8U0CSI92jo1f4OtcPsD4ubWE0Eh081WD2yP81FK24S9 > > 18 // < CALLS 0,0217705674882341 ; quote ; 0,0021732383726143 ; 0,00212977360516202 ; 0,0204081632653061 ; -6,6 ; 0,0020819623609645 ; 0,0022645143842641 ; 7,1 ; D4aeb0374A12dfBC6DFfA6bcDf62bbE234C5e14b6FbDBFDcDa84BdaF2DcaFa4d ; < svN9314t4BWecAvGqb6eZSeA91AF6JJdxUDbN09PeaDzC53QmqETTlWR5X9AuKJ4 > > 19 // < CALLS 0,022548087755671 ; quote ; 0,00195591453535288 ; 0,00191679624464582 ; 0,0204081632653061 ; 3,7 ; 0,00187376612486805 ; 0,0020380629458377 ; -5,7 ; 2A5289a437FDCeDE41E8fFC4fe86AFF9dd84CAa5c8E0F9C68f4cd3d485Ceb68c ; < SST37jQ3cXalNB27U4846H0Xe53i9Ez7orl3JR7qgD5WZ2K1gm5qX776bp5Or2EW > > 20 // < CALLS 0,0233256080231079 ; quote ; 0,00176032308181758 ; 0,00172511662018123 ; 0,0204081632653061 ; -8 ; 0,00168638951238124 ; 0,00183425665125392 ; -8,7 ; dCCD0c0bDd55F8eBc1Cdb4ed32EabA7C9b7EfFdEbE6dcd43aaDCADE480dccfF4 ; < KM89C0R0T7L4JuIHIJ1vO38T3wW12QS9257L7H82v9CWZv4JGYM80k70oY36Qcb1 > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00777520267436931 ; quote ; 0,00176032308181758 ; 0,00172511662018123 ; 0,0204081632653061 ; 4 ; 0,00168638951238124 ; 0,00183425665125392 ; 9,9 ; 2EFEAC3aff2A5CD87CDF1dE2B7AAFCd4CeE390Ee7cDf1EAcdF8e20aBe9F7d009 ; < 5C7v5Afjo2XDwR4k3W05iJIAanWWs81IaE63s9Wc4gpU5t7MSyD9hlinWE91L76R > > 1 // < PUTS 0,00855272294180624 ; quote ; 0,00195591453535288 ; 0,00191679624464582 ; 0,0204081632653061 ; 3,3 ; 0,00187376612486805 ; 0,0020380629458377 ; -8,5 ; Dc95aE7aAFc01243e1ccCcACaB601b6843a3DAD225ba92E6CcddbfAf4ce8EE6B ; < 4oB807G4PJB31rs1U5oGX07uJZxApP01fUG6N34541c4363YBgMgllt6g886405e > > 2 // < PUTS 0,00933024320924318 ; quote ; 0,0021732383726143 ; 0,00212977360516202 ; 0,0204081632653061 ; -5,3 ; 0,0020819623609645 ; 0,0022645143842641 ; -8,8 ; bcEEaf2ABbF91bcF1dbFAcf4d421eCcbbBbBeb1BDaf330DfBaE4cde51eEA82Ca ; < 5I2raF3bjm29K30N2y4zqH7H7LY19Czn50e3K6UW1i0hbrWmfHw4gFYY583C1Z5L > > 3 // < PUTS 0,0101077634766801 ; quote ; 0,00241470930290477 ; 0,00236641511684668 ; 0,0204081632653061 ; -2,1 ; 0,00231329151218277 ; 0,00251612709362678 ; -8,3 ; deAAEbdb0dBD26cbeba9BBDC71b6DDF9c8cFbAA6dEb6cbbEBa1DDFE9dc57f7eF ; < WP5EOLADJmIo2A3eTKN7znDrRRIcK6dDN690u3yf5lvPzQ4Byg6C4k2iuQF28Q38 > > 4 // < PUTS 0,010885283744117 ; quote ; 0,00268301033656087 ; 0,00262935012982965 ; 0,0204081632653061 ; -0,8 ; 0,00257032390242531 ; 0,00279569677069642 ; 0,5 ; E5A59E0EE726fD90Fa6AaAAcf8CA3eC2Ba0C7f6b8b2EE6b5FA16B2De42ced4fb ; < uD9k91XXF9q0ZvF17lgxpVWhmQQy3C2QFl7MU3uy0p9KUcQcRwrx1PFGlt7W06Y6 > > 5 // < PUTS 0,011662804011554 ; quote ; 0,00298112259617873 ; 0,00292150014425516 ; 0,0204081632653061 ; 9,8 ; 0,00285591544713922 ; 0,00310632974521824 ; 4,7 ; A0dCf76ee7FDDA03739Fa0Af5fb5008CABBb5c2C18aD3adB0E1Ab9EdAcaBAaf4 ; < irecGgv0FB8c731SCMQ4Ee3L5eXyM3D7LAmC3s9KH4i3R8rjWiao2TP76E5V1wER > > 6 // < PUTS 0,0124403242789909 ; quote ; 0,00331235844019859 ; 0,00324611127139462 ; 0,0204081632653061 ; 0,1 ; 0,00317323938571025 ; 0,00345147749468693 ; -1 ; 711bFd2edcE2A8FdBc7AF0310CEEAe822a8ceaFEd3d27FAeE07CC0dF86A7da1D ; < haAD65D1dY51fIJJBnT2l3RKb9Fk91GYX0hn1096EBA2jAA1bZ93Mp2AUSx1Rp4m > > 7 // < PUTS 0,0132178445464278 ; quote ; 0,00368039826688733 ; 0,00360679030154958 ; 0,0204081632653061 ; 9,9 ; 0,00352582153967806 ; 0,00383497499409659 ; -8,6 ; DDadde3EA13dD2BebbB0c0d0A14AfdCa6bFC4EA2FeB63E0def0a2Ff7de89DDEB ; < 65r7ZJqx1VEd1P8Qq0Fpa5LCQ6BY3dPZjvp7k20Jmv4C4xpQU6piC7oT554xm60I > > 8 // < PUTS 0,0139953648138648 ; quote ; 0,00408933140765259 ; 0,00400754477949954 ; 0,0204081632653061 ; -0,4 ; 0,00391757948853118 ; 0,004261083326774 ; 2,5 ; a4ce2fcEEDcAfF0aAccd2bdFC8AeeC9ee6DaAb32Cb02E3149ebe714BbE01cBFF ; < 7161PSAZmkm7EmI1TDwW7m6DN81Do1l5ZBw7M80k83F7g4lAMKLt1QKa1AmOIPz0 > > 9 // < PUTS 0,0147728850813017 ; quote ; 0,00454370156405843 ; 0,00445282753277726 ; 0,0204081632653061 ; -8,1 ; 0,00435286609836797 ; 0,00473453702974888 ; 4,8 ; dAd2dC01dEff4FfdA8DBbc8FCCc0ECF2Cf655cB997840fD291FaacEcbFf3C3cF ; < H216c542I6ROSe3Yev0oMXKCn755YbrBsW7vA0u24KZS06sYmZtCXBcxodUy40jd > > 10 // < PUTS 0,0155504053487386 ; quote ; 0,00504855729339826 ; 0,00494758614753029 ; 0,0204081632653061 ; -8,9 ; 0,00483651788707553 ; 0,00526059669972098 ; -2,8 ; F1aBcf10AdBE4BBeD3c8Afbbb2EaEe6DF3dFFCeA5DD2e02Feda210F8Ab2FBD9e ; < 1o5L0ha54bD1iz86KZ5Q424IDS0v38PPLCI4ePlXC5mDoYE4306nShDyby53FC9Z > > 11 // < PUTS 0,0163279256161756 ; quote ; 0,00454370156405843 ; 0,00445282753277726 ; 0,0204081632653061 ; 6,3 ; 0,00435286609836797 ; 0,00473453702974888 ; 3,2 ; baDcA1dea65D35aA73be3Cb2e3bAb1aFaABE6a4Ee2aA68CeC0E2B78Ae6d5A3fD ; < rcajo1Mhiaj4sm5Ek930C3v5mkTfAT641szOkpQAEMdL7FEu15244Y85RCM51c3x > > 12 // < PUTS 0,0171054458836125 ; quote ; 0,00408933140765259 ; 0,00400754477949954 ; 0,0204081632653061 ; 5,8 ; 0,00391757948853118 ; 0,004261083326774 ; -8,9 ; 06E97a9DA1CA7f7f931DD5cEFeCcb5EbA1FA49Ed0cB39eB1f76cedef58DFabaf ; < bEj2FHeoIIlBbjvsHR61GahSrHZ9OJ5942eDlNVKUkC38Q4feT75qdpU3F7oZA91 > > 13 // < PUTS 0,0178829661510494 ; quote ; 0,00368039826688733 ; 0,00360679030154958 ; 0,0204081632653061 ; 3,3 ; 0,00352582153967806 ; 0,00383497499409659 ; 9,9 ; 0dBE790B7Beea899Ce9eac5d8bCB7Da7cfaea82CE97d7FCC4eeCCeeDF62dBb33 ; < Esl0TAx3RjP72vcC7dfrhz9CHLoPiVhC8nsBE1L2PJKrIyi0O04SW6GAQTAq3PeP > > 14 // < PUTS 0,0186604864184863 ; quote ; 0,00331235844019859 ; 0,00324611127139462 ; 0,0204081632653061 ; 6,3 ; 0,00317323938571025 ; 0,00345147749468693 ; -8,9 ; ADDAF763c7CEaff685617dD1cD4a635aFCeF66383DCaF71E0cdDdb8ABBa6AA6e ; < aFoRJtL5HgFx18fr37EvYAjiQuNWKa99LFc57I36Sj3r0xtG4HZ67vQgClcEGrg2 > > 15 // < PUTS 0,0194380066859233 ; quote ; 0,00298112259617873 ; 0,00292150014425516 ; 0,0204081632653061 ; -1,8 ; 0,00285591544713922 ; 0,00310632974521824 ; -1,4 ; aCc8DCCeEA0aDca9F9BC0Bff3d71cccecC3D1873EECAFBaB55ACbCf8b730cBd0 ; < 5H0fPMDqkRdHZd7OH155BBKJ1T9OD6OC74t7Ut3ewfEd73ohsDMi06F3A0Qf3St3 > > 16 // < PUTS 0,0202155269533602 ; quote ; 0,00268301033656087 ; 0,00262935012982965 ; 0,0204081632653061 ; 9,5 ; 0,00257032390242531 ; 0,00279569677069642 ; 5,8 ; EBBCdd3C1cB5AeC4E2b4aaD78Eca6f8eDBc4AeC59C64Ddde9bbAf9B3c9e13ba3 ; < 85tg79b5xE0jC5WK7K23P88Ao5V75hIE38mkiT22RuC0nQ5p3wGeG0daUQ1JiVd3 > > 17 // < PUTS 0,0209930472207971 ; quote ; 0,00241470930290477 ; 0,00236641511684668 ; 0,0204081632653061 ; -9,1 ; 0,00231329151218277 ; 0,00251612709362678 ; -4,2 ; 87FCFa03c0dAACCA6bbA8FE86f95fdABF547FA3ECce46CDb8A7DeFCDae1BE7fa ; < 1ram4njIcB0928qCKVjZQ1Kwh6409SsY4IwByc6gqvF2K9wG57YNY3zW4MVk1W6Y > > 18 // < PUTS 0,0217705674882341 ; quote ; 0,0021732383726143 ; 0,00212977360516202 ; 0,0204081632653061 ; 7,5 ; 0,0020819623609645 ; 0,0022645143842641 ; 0 ; bAFBBB1Caf7B9113a3dF81EEf9F96Dfa1bBB6A0d51ea0aAA2Dba49F5FFE2CAcA ; < 56RElap0A33zO0KvIm1X2BFuUaFezOFBp71fYRK9UZBWSvW01YGqnVWbuULRk5bU > > 19 // < PUTS 0,022548087755671 ; quote ; 0,00195591453535288 ; 0,00191679624464582 ; 0,0204081632653061 ; -5 ; 0,00187376612486805 ; 0,0020380629458377 ; -4 ; C161eabdeA18E93Fc999FcE1Bd04D1A9Aa2caAAC5aaFBDECe4d4dCC2b1FbDde4 ; < 85vN38oNsVZoyJdV5gI0CNB37l007fsj6ULqw63IrRSM7Z2ex10vlnEv44pQF8C6 > > 20 // < PUTS 0,0233256080231079 ; quote ; 0,00176032308181758 ; 0,00172511662018123 ; 0,0204081632653061 ; -4,4 ; 0,00168638951238124 ; 0,00183425665125392 ; 7,6 ; 2eCC8aEd7C6B3dCcd4D9bfC9AaCAA9AdbA3f9bD6a6db72D0Dbe6C1a26F9FaecA ; < 7T6pCp0l6yrj2vr3tmGMlZLqF4cu2Z3wzVXZ5iTd90jlg40Vftdd517yD3W2T90i > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00665509714736838 ; quote ; 0,000102431001937635 ; 0,000100382381898883 ; 0,0204081632653061 ; 3,4 ; 0,0000998702268891944 ; 0,000104991776986076 ; 7,4 ; dfBFE3ADADaCDB2FdBF7cddBAbAfC3cdC6DdBcaC3B23dFdBfADFAEe141DC5af4 ; < 3d42cnjjCnuTznsAqA25m0dumKWaK5ZgiJ28JhqqARJplD0g7KOdpXs3K1ec5Zc1 > > 1 // < CALLS 0,00732060686210522 ; quote ; 0,00011381222437515 ; 0,000111535979887647 ; 0,0204081632653061 ; -6,4 ; 0,000110966918765772 ; 0,000116657529984529 ; 9,4 ; bc8C0fcAEBFaeF191BFBAdFE7DF7B4AA85223A562eC9F5FC2FEc4cdAc3BfFdfd ; < 88O7BxLT2cYJDWKgmPvDL31hHjO6Gt71yIyaH5O5gqiB5741397uA5Dp6sMP44X8 > > 2 // < CALLS 0,00798611657684206 ; quote ; 0,0001264580270835 ; 0,00012392886654183 ; 0,0204081632653061 ; 8,1 ; 0,000123296576406413 ; 0,000129619477760588 ; 2,2 ; ECc4fF966aA6a8f6EBdcA7aD4BeEBEbcdA4AAAc560BbFCFfDEe4ceDdE89a3d5A ; < 06NVt2Fb4jMbN669BgI3KD98a52LY8Ud6pH7t75wsFlP2irq7qSV6V12q5a5tBeq > > 3 // < CALLS 0,0086516262915789 ; quote ; 0,000140508918981667 ; 0,000137698740602034 ; 0,0204081632653061 ; -9 ; 0,000136996196007125 ; 0,000144021641956209 ; -6 ; cC2f73516Fb82eD6be8b2f5EbeCfeaC3bcccC3FD66b9aD1DDFD2CFaEb45f58e9 ; < R50WR2m4146W5Ie5K75q09FO5t1SOuWF5VZi7ssp0oHRrR0i5pt59wZ3vR0U4vMf > > 4 // < CALLS 0,00931713600631574 ; quote ; 0,000156121021090741 ; 0,000152998600668926 ; 0,0204081632653061 ; 1,4 ; 0,000152217995563472 ; 0,000160024046618009 ; -7,7 ; c5dBC1Ff8eCDC17A9a7c5cFf6fdBdaDABeDbB6C3BeDCcCCb8d77E7befbbFaAb9 ; < 6K08mW7W5b43KSG1wJtqS7kR047UXzUtG1h9IVS4364KktvY2OJInQUgfT7opl8K > > 5 // < CALLS 0,00998264572105258 ; quote ; 0,000173467801211935 ; 0,000169998445187696 ; 0,0204081632653061 ; -5,3 ; 0,000169131106181636 ; 0,000177804496242233 ; 6,8 ; bc415CFBce2aad7ACFab4BfCBB3dfEAEEFDBBd2DF0aB1Cd46500f155a4ECdABd ; < Q41SyD9wktT0HH4UjtAq5s172fOX7u0IxMv51Z2jWcfT6iwxZBOZ98y1nl2qu2qx > > 6 // < CALLS 0,0106481554357894 ; quote ; 0,000192742001346594 ; 0,000188887161319662 ; 0,0204081632653061 ; 3,5 ; 0,000187923451312929 ; 0,000197560551380258 ; 7,5 ; 5cdacC8E0CcDe638Abf41c9Ae4FFCb8FbF192CfDaDc6E7Ee6dDeFe8FcddEddDb ; < QuqkA4Cth80C7EnRE97TUToUtR4K9iMRrLAoN9mp25ED4x6Pv1PhmZUU91DfdEOq > > 7 // < CALLS 0,0113136651505263 ; quote ; 0,000214157779273994 ; 0,000209874623688514 ; 0,0204081632653061 ; -9,4 ; 0,000208803834792144 ; 0,000219511723755843 ; 4,9 ; bDfdbf950eC027dDA84327669e7Ad593CFFAa0F3CFdFadA80A00aedAB3b2Fe3C ; < eAC72h6950d9v6lXw3YQdNyo0m5k5g7uU3ejM1T3CqFM17Lx4sMZ7Ep3Eveyk9G4 > > 8 // < CALLS 0,0119791748652631 ; quote ; 0,000237953088082215 ; 0,000233194026320571 ; 0,0204081632653061 ; -1,1 ; 0,00023200426088016 ; 0,000243901915284271 ; -3,4 ; bF823FB54976AC8b2C5A3dad9d9EaCDcF0c3E1EF448ba9FAdc8Cf70B11EBDA5D ; < oX2Pao9Wz9qvvWmv7KiqQ8m4v2wcm4dLxF40QEh20dDk5U2hZ5Gv2VAi0N57BEqe > > 9 // < CALLS 0,0126446845799999 ; quote ; 0,00026439232009135 ; 0,000259104473689523 ; 0,0204081632653061 ; 0,8 ; 0,000257782512089066 ; 0,000271002128093634 ; -2,8 ; 4e9b5cDcb4e78Ea3aDEC6bd6A9ABb84afBcDFBcFBEcbeb5ffae3F8af9eddD5e8 ; < x3q9F8Qw703zL8yHtN5rjFa7RYiD7tmd0imt92JpE7m6ki08dIqEpJTEY1i74x4x > > 10 // < CALLS 0,0133101942947368 ; quote ; 0,000293769244545945 ; 0,000287893859655026 ; 0,0204081632653061 ; -8,1 ; 0,000286425013432296 ; 0,000301113475659593 ; 9,1 ; d9dc45df9DDCDf39e90dF9db7EBb2d9CcBC5E15bCbDc2Ec3bB1fEdbf3c61fEdB ; < 17589185dsBg64Ti6myxvp1uss8pUPO2JGt3ayl5vbctnZbE756tT5q6Mq0H7Zlk > > 11 // < CALLS 0,0139757040094736 ; quote ; 0,00026439232009135 ; 0,000259104473689523 ; 0,0204081632653061 ; -6,4 ; 0,000257782512089066 ; 0,000271002128093634 ; 0,2 ; 6fF04bd0CdfE2A77aF7FB9917BCf99a190853efcF1b4eeD6a8E0BD2CCeC4a44a ; < 902124ET1OExmmju4gbWu766B3BPCQWGN7qxW1t2037n8WQ5gRxmsZa01EQgeVxj > > 12 // < CALLS 0,0146412137242104 ; quote ; 0,000237953088082215 ; 0,000233194026320571 ; 0,0204081632653061 ; 7,6 ; 0,00023200426088016 ; 0,000243901915284271 ; -3,5 ; 2A1CFeC1DED76dFcDce64EaBB6c2BFAbBEe69bEDc3dCbCFd4cfEfebFdEBC644C ; < C7u9dJ9LcL57GZf40X3ZrH8s0KpO80G85KO3rRSlOuj8TwkAlSdq5C8gR5J0R1PM > > 13 // < CALLS 0,0153067234389473 ; quote ; 0,000214157779273994 ; 0,000209874623688514 ; 0,0204081632653061 ; -6,9 ; 0,000208803834792144 ; 0,000219511723755843 ; 0,5 ; 4abeDdADb01dDE33eeDBdFf5ADbE0E3FeBaBAAb50cACb9fc3f7baCB3c952Dc6a ; < 9MFxGb0Biuz11T0r0ISAt74B3224v97HdX7UhxsnxRnx1n6r0hqH9XZ90msBKVKf > > 14 // < CALLS 0,0159722331536841 ; quote ; 0,000192742001346594 ; 0,000188887161319662 ; 0,0204081632653061 ; 5,1 ; 0,000187923451312929 ; 0,000197560551380258 ; 0,1 ; Cc42cEaE4FDFeD3DA436eCb8eBFC2eEf2f3f6Caa4c54CFbCa5C57bceA8cf327E ; < 0nV1qIP7H1l7r5F10m3OAMk1o4Lro1lJzD6Cije1x37IC69MvOBtU4ID70MO9Qsy > > 15 // < CALLS 0,016637742868421 ; quote ; 0,000173467801211935 ; 0,000169998445187696 ; 0,0204081632653061 ; -0,4 ; 0,000169131106181636 ; 0,000177804496242233 ; 8,3 ; FB2AFEBF85A5A1dFA7c3F1D66b9f66abaC9EE9B0fC7B45FceeeF27bcCC4c9Cc5 ; < 2DZq8qL3g3f77580g1Y16kI6E988VOqXyxaMTK6pm38y36zSM6PT9FYRlQkQdtlG > > 16 // < CALLS 0,0173032525831578 ; quote ; 0,000156121021090741 ; 0,000152998600668926 ; 0,0204081632653061 ; 4,6 ; 0,000152217995563472 ; 0,000160024046618009 ; 7,2 ; 5a3e1Cf53F9aae2AFfaffcEBDD1aCdDe0a0dc2f795Fe499dfb3AdB822Cdb49e8 ; < tY7szKAK2hH3Hah6wU4e30zTh15LFr5j182xL78z7L4784vgMt5p50033v9E2R5k > > 17 // < CALLS 0,0179687622978946 ; quote ; 0,000140508918981667 ; 0,000137698740602034 ; 0,0204081632653061 ; -7,5 ; 0,000136996196007125 ; 0,000144021641956209 ; 1,6 ; f9f5bC4DA7e16e2d9eED0fcc739450191fb802E87842bBEd09ABde2EEBcf6fc9 ; < JiTz60bmim7cuuC1V5BFF3lbTAcfqRN35076W6fkQ3Vjk8ug8jXOC177I2qOE4gV > > 18 // < CALLS 0,0186342720126315 ; quote ; 0,0001264580270835 ; 0,00012392886654183 ; 0,0204081632653061 ; -1,1 ; 0,000123296576406413 ; 0,000129619477760588 ; -5,5 ; aCAd60Caf353FccBC7cd6D5dfbDbD1AE040FafD51b33A8DBcCa09E92FAbe0aCF ; < 02724VSxz3CFCeZA7o2654UTbtNU4ni4NXh8Cc844es7LI87VG02DDH8rkP5g1RE > > 19 // < CALLS 0,0192997817273683 ; quote ; 0,00011381222437515 ; 0,000111535979887647 ; 0,0204081632653061 ; -9,6 ; 0,000110966918765772 ; 0,000116657529984529 ; 1,4 ; Be6F85758ACDAd9D8cE2DcBbCbAdfc08fC7f2Ac64CeAfdbF8E4a6FD23AbEEF9e ; < 8fpcL7tpi58EI2mn1sO2157JY80w0AlBBnha9zpoB0L6pez2vMw5t6k6VX2y5qC3 > > 20 // < CALLS 0,0199652914421052 ; quote ; 0,000102431001937635 ; 0,000100382381898883 ; 0,0204081632653061 ; -9,3 ; 0,0000998702268891944 ; 0,000104991776986076 ; -6,5 ; EaB62FDFDC14E0Ae3dF9aecaDeB0aC02E58Effbac811F26Dc5ad2EE7c2FB2Fbd ; < mXiZq8CCib7MSXzQ8LQKmdV8GjTnPda3fpSgke53BI63sNjpHLBQL76Hn8SE8v3q > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00665509714736838 ; quote ; 0,000102431001937635 ; 0,000100382381898883 ; 0,0204081632653061 ; 3,6 ; 0,0000998702268891944 ; 0,000104991776986076 ; -0,1 ; CB0a5DaadEfAc7f9Fe81FBf1dD7bD0BAc8EF4BEf3DF2820b6BBcF1Bb7b48abCD ; < 379S11RK4vaP4mY91sk5BZawY90GBP8emItDIn9R5Q6q031v5n3o6Q7n0S3PLgB5 > > 1 // < PUTS 0,00732060686210522 ; quote ; 0,00011381222437515 ; 0,000111535979887647 ; 0,0204081632653061 ; 3,8 ; 0,000110966918765772 ; 0,000116657529984529 ; -9,2 ; f0cF0EaC9cEaC5Adcdbd3ff14D9daC674e2D929d1B4dE9FadfD9cc64EbddEDDe ; < U060ZIqP87614A6573M2Vi77nZ8Ex5x45m1GPE8L4de548f2Af1aXj79yk3PWod2 > > 2 // < PUTS 0,00798611657684206 ; quote ; 0,0001264580270835 ; 0,00012392886654183 ; 0,0204081632653061 ; 3,8 ; 0,000123296576406413 ; 0,000129619477760588 ; -3,4 ; fcCe9CCFA7Aa1FEfdDDecEaBfCFd72ffCe45f4BB4Ba9BEE8Dc14eD45c8CCFfe2 ; < tEZCyC0B77n816InaRxmYhuEM9nchM2vQ3qdAXi9318l4r6f56n4pM7nN9io07kJ > > 3 // < PUTS 0,0086516262915789 ; quote ; 0,000140508918981667 ; 0,000137698740602034 ; 0,0204081632653061 ; 8,7 ; 0,000136996196007125 ; 0,000144021641956209 ; -1,2 ; DFaCF58EACE2cCdAcd9d9D4BbaA6be1BCd7db13DEd7B0B7A1e63Bb1c8eAEfFCB ; < iMUpaxgN11FBq2eM2ZV2Wei59IFv1LhU9H8ICGX2tX006XUICm1IW3YWZK8u9Bq8 > > 4 // < PUTS 0,00931713600631574 ; quote ; 0,000156121021090741 ; 0,000152998600668926 ; 0,0204081632653061 ; 9,2 ; 0,000152217995563472 ; 0,000160024046618009 ; -8,5 ; 8A0Ed83ef9ffEFCCF7C5fCeBf5f72AC3BaF398571FADca8a6AceABEFDa0B9B81 ; < U5p22ZT65u1Owg3r3aV134051x4bSb8E2DWyD6A0w4hK1ns20T12EvGGfW03ilyN > > 5 // < PUTS 0,00998264572105258 ; quote ; 0,000173467801211935 ; 0,000169998445187696 ; 0,0204081632653061 ; 5,9 ; 0,000169131106181636 ; 0,000177804496242233 ; -1 ; AcA8fAecbFF9BEd0bda51C5EBa80a07D229AbfCFB0Da2Ad4Ae28F2AD7dfAC0Be ; < b5w8ZY3ZQ6P8HXuS029w9nWYxSSGLv81S7J8yvN7M523xHoRet989U99i0lPzD6m > > 6 // < PUTS 0,0106481554357894 ; quote ; 0,000192742001346594 ; 0,000188887161319662 ; 0,0204081632653061 ; 4,4 ; 0,000187923451312929 ; 0,000197560551380258 ; -7,6 ; cBaE2dC0Eb3590DF6e4Bb1e89AAAceEaC3d7dceCBeB0cE7BBfcCbCDbF5df1B5B ; < FghlG40o2ie2H84w1Cwmon407hpX4Ts0NhP9N9e5xzWB833l2nO7k44I75185b5V > > 7 // < PUTS 0,0113136651505263 ; quote ; 0,000214157779273994 ; 0,000209874623688514 ; 0,0204081632653061 ; 0,9 ; 0,000208803834792144 ; 0,000219511723755843 ; 9,4 ; DFB8FA58de2Bd3ec6ea8eFb8A7DFbAfcB4f2bC9fBd7d2809c9aAdd03cceCDFfC ; < 2SK2piOFIjcC4Hxvjcf5V97LCA9y9hlQTeysk4i1raagZMMkQ6d8S88cyZ0L6369 > > 8 // < PUTS 0,0119791748652631 ; quote ; 0,000237953088082215 ; 0,000233194026320571 ; 0,0204081632653061 ; -7,1 ; 0,00023200426088016 ; 0,000243901915284271 ; -1 ; 3Bb4Df1D4DAb1aC4CbCcfBb97BFf1A9CDEAebd280E5bed4ea9FeE1dce50FC8cD ; < 63N8qwSFidYLtY06I0SdLfQnML06cNImjt0NFd50SNKtMDdDj08R81nD7mlXNy2l > > 9 // < PUTS 0,0126446845799999 ; quote ; 0,00026439232009135 ; 0,000259104473689523 ; 0,0204081632653061 ; 7,7 ; 0,000257782512089066 ; 0,000271002128093634 ; -8,3 ; ACA2Ca8b1bAcbb7bAD04e3EefB9bF237e5eCbFBB78B8cf0953A1D3Afee7bDBae ; < M357foLDsBiU4LZLPGx468lCEZ6QCD7Tq4Jr60b3aWa4bXrybEZgQsfJMJpyAJpo > > 10 // < PUTS 0,0133101942947368 ; quote ; 0,000293769244545945 ; 0,000287893859655026 ; 0,0204081632653061 ; -1,8 ; 0,000286425013432296 ; 0,000301113475659593 ; -9,2 ; D491aF14f4D6Afb5F4dc1CfC2cbCacd2decAAbEbb08A75B1AF3FAFc1cDabdEdC ; < GQ6D30Q4dqidnNFqvQHsrd5l2Dfc4M1Ao43X3W7U9G6Ewe5L3RF2v12Mlx2UBftM > > 11 // < PUTS 0,0139757040094736 ; quote ; 0,00026439232009135 ; 0,000259104473689523 ; 0,0204081632653061 ; -4 ; 0,000257782512089066 ; 0,000271002128093634 ; -7,2 ; 15dFD0afCB4A9d41604fCEB5fD3C9baebFda3D5B74CCbaeEadCAC57Eaaaa5b32 ; < 7nBQVIsdBZc8zEL3tnIkw31pa5zknzoz6w6sLcO8voT466E8HR3ao448AdFaM70J > > 12 // < PUTS 0,0146412137242104 ; quote ; 0,000237953088082215 ; 0,000233194026320571 ; 0,0204081632653061 ; -5,2 ; 0,00023200426088016 ; 0,000243901915284271 ; -8,6 ; cB0b06ab75C2a0f5AbcA37cBEfFcc2fBaF7e8b3Eef1Ac7FfaaD0a7Fd1b1f36fe ; < zascLqI5Q3iFZ39294gh91g2GPGn05N2ie59kfNKPYFGa3nF2B4glI46ra2c3O78 > > 13 // < PUTS 0,0153067234389473 ; quote ; 0,000214157779273994 ; 0,000209874623688514 ; 0,0204081632653061 ; -7,4 ; 0,000208803834792144 ; 0,000219511723755843 ; 0,5 ; 6b7FdA8a2CdF653D5eCF0BCE59D0fee0Dcbedb30FB6D0EC96d5FeddDabdcfB5d ; < vX1qn2F2r1wEC76kr9ZpUk6Xs36rG4pz58QuZqjzpzz91Uz7s5z2f2960dH7ght1 > > 14 // < PUTS 0,0159722331536841 ; quote ; 0,000192742001346594 ; 0,000188887161319662 ; 0,0204081632653061 ; 7,9 ; 0,000187923451312929 ; 0,000197560551380258 ; -4,7 ; D9BC4AD593F2bf9e0CEf9dEFFfbCBb3a5e4ebecCBA76eBc6Da5E50EBab6D48eC ; < iM97yx229373Kg1Cc70GpaDsHT5ur0578AqL9KmI5czJW4UhjDz76x3nR28r4H01 > > 15 // < PUTS 0,016637742868421 ; quote ; 0,000173467801211935 ; 0,000169998445187696 ; 0,0204081632653061 ; 4,8 ; 0,000169131106181636 ; 0,000177804496242233 ; -8,9 ; 0B989E3CeDfeD7aAcbBfBB6B788B6Ca15b76BcAcADEfE0F27FACBdFEdFB7ffbf ; < ZAEIoFyMl38c90AP1PCEpw7O79CvMUu94Z1wk3S89wzb3Y75I42y223B1u2BRA54 > > 16 // < PUTS 0,0173032525831578 ; quote ; 0,000156121021090741 ; 0,000152998600668926 ; 0,0204081632653061 ; -9,2 ; 0,000152217995563472 ; 0,000160024046618009 ; 3,2 ; dBbDBDaBCcABfb64Ebb5AbdDE3D2C3de94ac34Dc5Df349fdfbda9A6Be9FCCDdc ; < w1ljFmFImdzj8C45i1FCrMVpD3Qf6jRu692luGyUEa9Ugwk375yJ0rRwLK15XOj2 > > 17 // < PUTS 0,0179687622978946 ; quote ; 0,000140508918981667 ; 0,000137698740602034 ; 0,0204081632653061 ; -6,5 ; 0,000136996196007125 ; 0,000144021641956209 ; 2,4 ; Ff87b9F4Cb211ddce8bF98f7FfCbfc9fbfDF6D9bcd2Dbf98e90fb8DBcEb7dEa6 ; < 4H2EY5uwwNq48sY6pMA14M0f5N17vgJouS4ffH9TeGUV31tcGM9UdjDZ49vPMbzv > > 18 // < PUTS 0,0186342720126315 ; quote ; 0,0001264580270835 ; 0,00012392886654183 ; 0,0204081632653061 ; 4,3 ; 0,000123296576406413 ; 0,000129619477760588 ; -0,2 ; eBdD2fCbE7ac5cc5dd1cAFa5A855AfF3f6E39EabE43aAce4ADeDDcDF00Be3CFA ; < 2lDD9kuyMVrpvcl7rYBmPW095oqEAXdprPVGBq98TjMt9s8cB201n117F9O35zV5 > > 19 // < PUTS 0,0192997817273683 ; quote ; 0,00011381222437515 ; 0,000111535979887647 ; 0,0204081632653061 ; -6,7 ; 0,000110966918765772 ; 0,000116657529984529 ; 9,5 ; 140DcE3bE8542ECeB6Ea4DAaC6E2A7d43a8debbDDEc96b8a1ba70Bf96DDECfb8 ; < 5cl56f7y9I78C3u3XqKLRmfjZCRwZ7X7npv2f20AXBig3455h7l5j9Y75ikX0E6j > > 20 // < PUTS 0,0199652914421052 ; quote ; 0,000102431001937635 ; 0,000100382381898883 ; 0,0204081632653061 ; -0,4 ; 0,0000998702268891944 ; 0,000104991776986076 ; -1,9 ; EeD5Eb9eA41c0cdeBfe0bdEd5D60c5eA9DFeDfFcadFD9fAAEE0Df87F6fAddbB4 ; < 3zG4vb71zOOyalfjmev1UMU8vnI6f545u743IDqN041iLCD8TEq3yr0355TRR4m3 > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00666235450285885 ; quote ; 0,000216235585354108 ; 0,000211910873647026 ; 0,0204081632653061 ; 7,7 ; 0,000209748517793485 ; 0,000222722652914731 ; 2,3 ; 9e5fcfE5A31ABC2d325D43bDF5cFAaa9e9efDd6ac10239BDB0CEFcCb2DfbEEce ; < tZRMG54icG0e9WH92Zyq65p5jFlb2xtD1YM88iPbeJhwz1htWN78sddMe2pH42wx > > 1 // < CALLS 0,00732858995314473 ; quote ; 0,000240261761504565 ; 0,000235456526274474 ; 0,0204081632653061 ; -9,1 ; 0,000233053908659428 ; 0,000247469614349702 ; -8,7 ; 4fC17adb5aBEFBBf2BCeE7eCc9ef3C178B095FDF0BDb7bBadd4Ffbeedc9DC6D1 ; < IscQ95m4n5StEA720vSrSxWC5i9W2FoNJ1OMYuA86nooGZFjh86820ZBc6G2HYs6 > > 2 // < CALLS 0,00799482540343062 ; quote ; 0,000266957512782849 ; 0,000261618362527192 ; 0,0204081632653061 ; -5 ; 0,000258948787399364 ; 0,000274966238166334 ; 3,9 ; 5daE3aFdA18defefef3CDF649E4F5Aa0beD4EeAAeBECF8CFb4EEEfAb1Be8D2c6 ; < t7Gb3AZwewKlM0h3Tb49lB8a2fgjPRo9M6ul6juPb7AT78t740W3zaR8W3MZfj10 > > 3 // < CALLS 0,0086610608537165 ; quote ; 0,000296619458647611 ; 0,000290687069474659 ; 0,0204081632653061 ; 9,2 ; 0,000287720874888183 ; 0,000305518042407039 ; -3,6 ; ffFCf193fCdfCF80bAEE01fdbEbfB9C4DbcCC49edFC23ec4FdD8BF1DF0fFc9ed ; < 3MDMbOalber3965ja6wq2G4FYSC7r60yPX2dSLdsNTK4PrscS4wdZ1DXirL72O8P > > 4 // < CALLS 0,00932729630400238 ; quote ; 0,000329577176275123 ; 0,000322985632749621 ; 0,0204081632653061 ; -2,7 ; 0,00031968986098687 ; 0,000339464491563377 ; 9,8 ; 3dAaaf08c2aBBa227Adb43dfe0Adfe7b7E26EA3Eace820AEbDb4eAE1Bfafa6FA ; < 7Nqk1DCAcjsuX7Qli6k3KYmHCD06vVZ2sq65g14O66WQ97Lqxxw8yjJmexEGZ2vK > > 5 // < CALLS 0,00999353175428827 ; quote ; 0,000366196862527914 ; 0,000358872925277356 ; 0,0204081632653061 ; 4,5 ; 0,000355210956652077 ; 0,000377182768403752 ; -2,6 ; Df1fCf242e418ac40Cc5112ee7bDd4B3fC85e77bc6C1cA9AF1EFAf1f656DAe44 ; < tq8o6YTazG76TlbxQv7cskZ5j5TCGN792H0h1v47v04WScJa4u0rvMVN0o2Xs3h8 > > 6 // < CALLS 0,0106597672045742 ; quote ; 0,000406885402808794 ; 0,000398747694752618 ; 0,0204081632653061 ; -6,6 ; 0,00039467884072453 ; 0,000419091964893058 ; -1,7 ; f4a23E8FeBeBDd3EFf9e3a7dA2c5cFDA1B78FEeaccFFC4d116aFA5DDA44fAEBF ; < 93e4Rs04mWTI6T9fx58o4GS6h6Y60nStuBOxAzI4vRuS47hgFd3F46GIwH63a8b1 > > 7 // < CALLS 0,01132600265486 ; quote ; 0,000452094892009771 ; 0,000443052994169576 ; 0,0204081632653061 ; 2,8 ; 0,000438532045249478 ; 0,000465657738770064 ; 0,6 ; Cba2e2d3DEd9CBa2AadcAF0ef5bF2c4efbac205ACBbc4fA9AD8a19EBAeca6c1E ; < 0yWSMqv14KxxsbZbvvtADyujcY571KWJfV8C083d9Fq658bD0Lk0M9AS1n8z5zkT > > 8 // < CALLS 0,0119922381051459 ; quote ; 0,000502327657788634 ; 0,000492281104632862 ; 0,0204081632653061 ; 7,3 ; 0,000487257828054975 ; 0,000517397487522293 ; 6,8 ; c6fFCf2053AEfc2Cb63ede8B7BbddaE0d1ef2d35Ca1Ffd0DCDfdcBaEe9cc8eA8 ; < dRqX16llEZGtFcs3T4442Bz1T6afkQM5o73jo654ircN6H5kh52rqhk40flK5cyG > > 9 // < CALLS 0,0126584735554318 ; quote ; 0,000558141841987372 ; 0,000546979005147624 ; 0,0204081632653061 ; -1,2 ; 0,00054139758672775 ; 0,000574886097246993 ; 8,6 ; BeCB8C85Ed2EaE1e2deCDCf77ce4EcfE3bf5cE1Bc27f0Fbc4edfDAe2bF3DBffF ; < M5fLy7I6l12G46O7jad9UUtAaLbIb2D76i7oQqXB7G9L3k14i9Tk7f8Dp6PaTvcH > > 10 // < CALLS 0,0133247090057177 ; quote ; 0,00062015760220819 ; 0,000607754450164026 ; 0,0204081632653061 ; -5,9 ; 0,000601552874141945 ; 0,000638762330274436 ; 2,5 ; B12ecbCDe9319C96Fda9aBFaCb7Fa44efdAaf1B2cfe0aE3cc6dFABb7dF5DB5BD ; < JSqmc2H89ZV0fae7Zl2JxG7r0786vmNhb62tN6g20FxTQ6XzN0Uh35R7xQTc90hH > > 11 // < CALLS 0,0139909444560036 ; quote ; 0,000558141841987372 ; 0,000546979005147624 ; 0,0204081632653061 ; 2,4 ; 0,00054139758672775 ; 0,000574886097246993 ; -5,2 ; 7D820BC8Fa13D7ef0CdCA8B770CF5DDD946CCCc5DeeAB70ceB75bDbCFe66cbea ; < er328ql2cr9f8bCFrXgcj7cymThQGINO6DIWc5PO5jCqBrBW9H4Ojo4l1XQSBmqa > > 12 // < CALLS 0,0146571799062895 ; quote ; 0,000502327657788634 ; 0,000492281104632862 ; 0,0204081632653061 ; -8,1 ; 0,000487257828054975 ; 0,000517397487522293 ; -5 ; 0ba7e29CE4dfbF8fADBDAdBF01a1E4d900fB60eF1A7B8AeFf2b753a8AA7CA9eC ; < D9mv813mRVt0tQ39G22N6ob4661sQgt8tG75U5SQq1CLaq504Sn1Fz6704r25MNj > > 13 // < CALLS 0,0153234153565753 ; quote ; 0,000452094892009771 ; 0,000443052994169576 ; 0,0204081632653061 ; 2,3 ; 0,000438532045249478 ; 0,000465657738770064 ; -4 ; fAfD6E4dBBabbDcbd6bCBFdcAA9bFabAf8aefAF8eddEaa4fafE5b99fAdf2A9cb ; < Bq8kBnh5o8K8W797mB4ZOeTKFVRnfpU2AZT745n72AC741M6f35205Oxbu2yZMlX > > 14 // < CALLS 0,0159896508068612 ; quote ; 0,000406885402808794 ; 0,000398747694752618 ; 0,0204081632653061 ; -2,4 ; 0,00039467884072453 ; 0,000419091964893058 ; -1 ; D2CBDdfbF90fB6e4Cabfdb36B890Da1EfcAedD7faEc37A5Ed42ccdbD9ADdaAb1 ; < 9Z4bz5O390Pu1VhdqBVGiFbnWNhLCfJy9h216bNMKpKz8r183nU230Oz1M5LoJXY > > 15 // < CALLS 0,0166558862571471 ; quote ; 0,000366196862527914 ; 0,000358872925277356 ; 0,0204081632653061 ; -4,7 ; 0,000355210956652077 ; 0,000377182768403752 ; 9,5 ; B0A62A06Bc1Db30BCEea9DCeCCB1BFCADDAbFA2D8CEdaEcba68aaa39ECABBEdE ; < Q1A7vvMp8aT4IJGOcWfocfYB2F5Je9xlW69f6QnSJemcb1Ef2cdu0Lu1X0YIQ9iA > > 16 // < CALLS 0,017322121707433 ; quote ; 0,000329577176275123 ; 0,000322985632749621 ; 0,0204081632653061 ; 0,7 ; 0,00031968986098687 ; 0,000339464491563377 ; -7,2 ; D1edbaD8d66eE46FC4eFe0F0CcFEEaee3Bb0Aac5d520DFADEaAd8Af4321894Cc ; < SjvmHO9r1ugM4RJ45utF7g99I6oV0x18dAnCEw3hMM7GqQ8E3u7mqctq87QOlmTF > > 17 // < CALLS 0,0179883571577189 ; quote ; 0,000296619458647611 ; 0,000290687069474659 ; 0,0204081632653061 ; 8,8 ; 0,000287720874888183 ; 0,000305518042407039 ; 8,8 ; d1A1d8fEBDdF2DCcF56DB5DcbEddA7bB1Eed8ADcDDEEdfAddb3Df3Cab9bCaFbC ; < fxebMG4c57o0iskBwNZ4mKQB5JPzljz4CXM9xVC0g2y2HKPBi5hM31BY9WB3LopY > > 18 // < CALLS 0,0186545926080048 ; quote ; 0,000266957512782849 ; 0,000261618362527192 ; 0,0204081632653061 ; 6,8 ; 0,000258948787399364 ; 0,000274966238166334 ; -6,2 ; 42bABCA1fdF16cB7AfeaD72bAAFe10f8fD9bBBd273ACcC942A3FCa9D28E7B4f8 ; < DE4Ddjvra36on4MB5H6c1XezW9899WL8j4buEBZz0A5Ef67CmGn4Ip3zehiIBwV1 > > 19 // < CALLS 0,0193208280582907 ; quote ; 0,000240261761504565 ; 0,000235456526274474 ; 0,0204081632653061 ; -3 ; 0,000233053908659428 ; 0,000247469614349702 ; 4 ; A7d905Bba1DfD6a2aAE8cbB13a9E9AcD3Bc8afcf4E4fEaBdfC4EF7aeebE9aEf7 ; < Zy24t8osWecMOiRe67Ki7hs61Fh5uJO8u7Ez7kFd1Hj3cg6zPmj48723Rf8xn0Pw > > 20 // < CALLS 0,0199870635085765 ; quote ; 0,000216235585354108 ; 0,000211910873647026 ; 0,0204081632653061 ; 4,2 ; 0,000209748517793485 ; 0,000222722652914731 ; -4,6 ; dAAa803b35ADA1ce8a1Bf7FeC7FBaF2c63Eadccf6Ac8e0a10Fa6D5beffDa9E8b ; < w9u0MI5WKAVMg59niipmCQv2P97JZ6jC98cDxxN7nIwlw4pYIK0XBuo93214b5Uo > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00666235450285885 ; quote ; 0,000216235585354108 ; 0,000211910873647026 ; 0,0204081632653061 ; -5,7 ; 0,000209748517793485 ; 0,000222722652914731 ; -6,4 ; 0b43eAcbADEbDaFFaAEe3Ec4af5ec2A1c1eB4dFbcF4AEDeccdFdaFf6Bbd71B4f ; < VB8jS3WfI4fP8FT98BAb1uM27MwxFF3F2clzS59g21zN9kiT7vcL955SG4eLIs8c > > 1 // < PUTS 0,00732858995314473 ; quote ; 0,000240261761504565 ; 0,000235456526274474 ; 0,0204081632653061 ; 2,2 ; 0,000233053908659428 ; 0,000247469614349702 ; -4,5 ; f3a270650EfB8a1adb25FA58f84Ed0DaF62B4edEeB3Da8bf9bC5B55bCF27DDf3 ; < uTuQNN8YXi05pf8lrz4S1T0hf4W5OczLB29xyelM07TNkzfBYYX1bCW39gJ1WtLO > > 2 // < PUTS 0,00799482540343062 ; quote ; 0,000266957512782849 ; 0,000261618362527192 ; 0,0204081632653061 ; -8,4 ; 0,000258948787399364 ; 0,000274966238166334 ; 6,6 ; DBCfC29ad4AE2Cfa2CE6FfAdEE4cea00dD92fdf8bC2aBcFdAB6CAbBdEFEF02D5 ; < mm9B7cmGsfA9J4w29c65J50Fk18yy4TByxd7h17sPQc90X7f59v9bmEN9O4M5CIa > > 3 // < PUTS 0,0086610608537165 ; quote ; 0,000296619458647611 ; 0,000290687069474659 ; 0,0204081632653061 ; -6,5 ; 0,000287720874888183 ; 0,000305518042407039 ; 6,9 ; 62fB8a1d22FcD3AEAD7D4Dd3Eeead0A83ed5f9ea3fCd6DA8d9CFfACca4aefE20 ; < 9R5j7EW7F08ys694A04Q4j956PSSO0x7cSmKvqeufpCmH6dM9z2b7I2TRABLd7s5 > > 4 // < PUTS 0,00932729630400238 ; quote ; 0,000329577176275123 ; 0,000322985632749621 ; 0,0204081632653061 ; 9 ; 0,00031968986098687 ; 0,000339464491563377 ; -9,5 ; 79B5FEBfEeFdFA98e8d1A9CfcF52DDCa3a9CdfBaEBFE79cAF17DeA6dE2FaCc5B ; < Ii2pwr07H39A2mDDct5l5Z62RBsQSuuxvh0R4j3iI5B7F3LZ51skfvk0873NFCzN > > 5 // < PUTS 0,00999353175428827 ; quote ; 0,000366196862527914 ; 0,000358872925277356 ; 0,0204081632653061 ; -5,1 ; 0,000355210956652077 ; 0,000377182768403752 ; 6,2 ; DdEDeAe0c3fFA9aE9AdbecdDEa8473Ba5846Fc2AF332E9aCE4Cc4BA1DeE3FEcb ; < 9uH81jp8e84ZVmaa4eqkgM1k4666uBX9g5fQ65jm7YR27iA49219Tv7f6aD6p71i > > 6 // < PUTS 0,0106597672045742 ; quote ; 0,000406885402808794 ; 0,000398747694752618 ; 0,0204081632653061 ; 5,5 ; 0,00039467884072453 ; 0,000419091964893058 ; -8 ; 6f778E2dEd10ABAB6b0F1ca8F2c3DAFfbc8AABeE8b45Be4adb7C87A1bbEEC8da ; < ozB8J67oZ1404KGP6008O7y1Nc3pAR3yt00XwX2zfNMX86Jwb8JCnsJQoC6rMvzo > > 7 // < PUTS 0,01132600265486 ; quote ; 0,000452094892009771 ; 0,000443052994169576 ; 0,0204081632653061 ; -8,9 ; 0,000438532045249478 ; 0,000465657738770064 ; -2,7 ; aBb7FEcFC3F5e8d11baFff2FaFFa0DC4EacDAfbadE66CbDAddB147aB8cBcF23D ; < QW5korD529896toEyq97fV696hM1fCILd71aA38e0590lgYaaox4xuQ1KV46Pjpw > > 8 // < PUTS 0,0119922381051459 ; quote ; 0,000502327657788634 ; 0,000492281104632862 ; 0,0204081632653061 ; 7,3 ; 0,000487257828054975 ; 0,000517397487522293 ; 3,4 ; eFAAAcB8F386d9ffbEF66F3e1abaFd8d1f57FcBEDF31c9ee5EFEd0E5EBbE45eD ; < x2C5leafd18BGbn6FAt8r3j55l11NZLD2p2EQX1i8Hu14geqIW90s8c037YV6u2M > > 9 // < PUTS 0,0126584735554318 ; quote ; 0,000558141841987372 ; 0,000546979005147624 ; 0,0204081632653061 ; 1,3 ; 0,00054139758672775 ; 0,000574886097246993 ; -6,7 ; D8cCB44E4bB6Acb8e73a9d2d9c9D6aCdB1dc922EccCEb3a15C60acF76AFfAA1a ; < cKi53dz0Th4oKVC457GlBHYMdKOF31cjIKslt4YyL8ywf19a7ZA8n9vmpLNPRU8d > > 10 // < PUTS 0,0133247090057177 ; quote ; 0,00062015760220819 ; 0,000607754450164026 ; 0,0204081632653061 ; 6,7 ; 0,000601552874141945 ; 0,000638762330274436 ; -3,5 ; Dd0F7D004Bbde8b0Fa1FcaCbDC5dAFdAAeF3f342FBeADDfb0bF292B98EcC41cF ; < Qf06UiYheu32RS7T5k9tMK7BnA4KQtrLpLX54kD33x08oQ7iSNeNW07t79Y7608O > > 11 // < PUTS 0,0139909444560036 ; quote ; 0,000558141841987372 ; 0,000546979005147624 ; 0,0204081632653061 ; -9,9 ; 0,00054139758672775 ; 0,000574886097246993 ; 1,9 ; 3ea43E5BcDFB1A1CA16DA6C648cD8AEE98452E1bf99ca0Ff4bFf3Bb6dE42ee3f ; < j76W8vHs97dWbUc52BYWZ31AO5W0842KbXJ9m7I9rD8A1XsX1I5unwhIb4p8Te4L > > 12 // < PUTS 0,0146571799062895 ; quote ; 0,000502327657788634 ; 0,000492281104632862 ; 0,0204081632653061 ; -0,4 ; 0,000487257828054975 ; 0,000517397487522293 ; -7,2 ; C5BbD1Dcd9DE3cbeFddedB7Cf3B7DFFE938Be7f71DfcDdd5f7b9B906E719aab2 ; < znDr7yj8z232DvCkdrUmgdX6j54j9Fz06QUBqtXdcq0rkN7o4JTQz5b721t6D1qM > > 13 // < PUTS 0,0153234153565753 ; quote ; 0,000452094892009771 ; 0,000443052994169576 ; 0,0204081632653061 ; -1,9 ; 0,000438532045249478 ; 0,000465657738770064 ; 9,9 ; cFB4aC20bE3daeef4BEEAAEDD4DA1aa5F0c6c1Ce7C4BA7bCf7Baab8A4292F05e ; < 832UnA2M4V9uMsD1Y7p59WG7tt42Dp4RHaaL3obO152k45GcOBin210RMYcc721b > > 14 // < PUTS 0,0159896508068612 ; quote ; 0,000406885402808794 ; 0,000398747694752618 ; 0,0204081632653061 ; -3,7 ; 0,00039467884072453 ; 0,000419091964893058 ; 1 ; ee60cfc48EFfbbFCE9E2e7f40de7814eAcE7BaEcaf73FdE0e1fcfdF9e5BC03fb ; < h86aUo0H69wc4dYp45g91HSEuWKBx5we0G8p07l8RXT0Fa33c0n3QzwgoxAFhHVc > > 15 // < PUTS 0,0166558862571471 ; quote ; 0,000366196862527914 ; 0,000358872925277356 ; 0,0204081632653061 ; 4,2 ; 0,000355210956652077 ; 0,000377182768403752 ; 4,9 ; 63c9DBBDbfcfa24e3aEcEE3be1DffEEcfDCD41B3b4B3a7b4d272dbDBA2bafb4a ; < r4hWpH4ILC7jb17Dv9F2Tks3774zngQkb465muz1bWAgt2tEJcSYdx5NQC3599QZ > > 16 // < PUTS 0,017322121707433 ; quote ; 0,000329577176275123 ; 0,000322985632749621 ; 0,0204081632653061 ; 1,5 ; 0,00031968986098687 ; 0,000339464491563377 ; -6,2 ; eebCc56d54bF6E0c9Ac800c9bc9EABeccaEEdcD1B1d9f2A3FD6bbACdd4d8daee ; < 4DNXGTep6Gf880g21N4d12L6lmkkDG0AEtI8K7927aIXi90Z2Mv7WXeaHEy7x5cq > > 17 // < PUTS 0,0179883571577189 ; quote ; 0,000296619458647611 ; 0,000290687069474659 ; 0,0204081632653061 ; 2,3 ; 0,000287720874888183 ; 0,000305518042407039 ; 8,5 ; CaDEE76eeCaD7ff1d00BF1FfBc5CEea89bf2F848C193EfedAbABcDBCCC7d5FBA ; < 8e492j3Lbs51agwWW4PYdRLRkmnygXMLw6QL1fwLIyH6SGII4Q47jaKnUA33nkIu > > 18 // < PUTS 0,0186545926080048 ; quote ; 0,000266957512782849 ; 0,000261618362527192 ; 0,0204081632653061 ; -0,9 ; 0,000258948787399364 ; 0,000274966238166334 ; 9,4 ; cc442A81733A7Ea8f57AFdecBEC65dEF26b80F1CaFc4E51CcAbCdE290fCcFeDb ; < lJ1x8Is47yb0E9LI6xr5t8V92t905TAO8uH8tySp48zEc9DBBpG056k91WbZ3Wp5 > > 19 // < PUTS 0,0193208280582907 ; quote ; 0,000240261761504565 ; 0,000235456526274474 ; 0,0204081632653061 ; 3 ; 0,000233053908659428 ; 0,000247469614349702 ; 5,8 ; A9bF3eAAdeC6dcaEDBA6eFCdE3ab10BFd0EBa04C55bDdbABDd6deeCc72FAE2FF ; < rDD6wkPjY2IjcLb7PF2vr1cd2ylmjhO1yl4N0Sf4kjwEVT5IR36myHR8w680Onpe > > 20 // < PUTS 0,0199870635085765 ; quote ; 0,000216235585354108 ; 0,000211910873647026 ; 0,0204081632653061 ; 9,2 ; 0,000209748517793485 ; 0,000222722652914731 ; 2,4 ; 7bdFbaeDF0dBB81aBFDB7aBEEaCEEfcB84F78aFEc7892A76bBFAFeACc6eCeBC6 ; < 6ahAV2EapDy48eDGq2yup4Vm69jGuudZt2t7j432xNa6VIUZ52SOGwF5yd6at6Te > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00668629207478814 ; quote ; 0,000448787933957853 ; 0,000439812175278695 ; 0,0204081632653061 ; 2,8 ; 0,000433080356269328 ; 0,000464495511646377 ; 6,9 ; E1C99EBB88ABc0CDD625ADF3f21d72DfF23F0daAcc4bFFC4f0E4afa3DDE6e5Bf ; < 9cQG14yjv9IjAOYFks34tSrbXYPb21283O05E1wk8t3x1oql5ihH53iWpQO6M6T1 > > 1 // < CALLS 0,00735492128226696 ; quote ; 0,000498653259953169 ; 0,000488680194754106 ; 0,0204081632653061 ; -6 ; 0,000481200395854808 ; 0,00051610612405153 ; 4 ; 5fcb0D1caA1Cb74CDE0bbFb37dcfFECCFcde0bbFBFa54BA5c0d1eba1aEC5E9A2 ; < 2RXE4V6HdU0A3R3r88zS4FnzgGAM8P9pj55M3zYn69HML42RmzXDA14jz8sj3oTK > > 2 // < CALLS 0,00802355048974577 ; quote ; 0,000554059177725744 ; 0,000542977994171229 ; 0,0204081632653061 ; 5,4 ; 0,000534667106505343 ; 0,000573451248946145 ; 7,8 ; f6ab1E9a7ef349CCbdADA5FacF8FC07FCAdfc1fcceDF5dCaBBcBB0ddd4960fB7 ; < 5c4oSRnH7QXeAv54GIbuZXjLeG0go9r3g9pX2jE4h8zt82SucVvu0Jzt3UDNas13 > > 3 // < CALLS 0,00869217969722459 ; quote ; 0,00061562130858416 ; 0,000603308882412477 ; 0,0204081632653061 ; 5,6 ; 0,000594074562783714 ; 0,000637168054384605 ; 5,1 ; C55FFAc9CD27ef7dd4EDEDa9F0D86f8BffbEbea8D66807fc9FEC54BcfDFCf109 ; < GE9CtV5Ehk72E0Q35iktFIRf2bbZV27d76EUjr4Fw0smbK1Q12831UdJ9K9F34X4 > > 4 // < CALLS 0,0093608089047034 ; quote ; 0,000684023676204623 ; 0,00067034320268053 ; 0,0204081632653061 ; -1,3 ; 0,000660082847537461 ; 0,000707964504871784 ; 0,7 ; aE21e5BCE38BA7F1eCcef7e6E63a03bcc51dBeCCac67f9eAAa3BCB1FAebf4DC9 ; < vnl596o2yn2V91CNs0aGIA31mH2CW15Wl7b2WAkkYSir61BFpY7wJH991s053Psk > > 5 // < CALLS 0,0100294381121822 ; quote ; 0,000760026306894024 ; 0,000744825780756144 ; 0,0204081632653061 ; -6 ; 0,000733425386152734 ; 0,000786627227635315 ; -2,7 ; c26cfD3A9a5aEaBD03360b8d1cD9cfcCE4Ab1F32eD9fDD2b34c5E5cCaEe8CDAe ; < EwKtygOyhdqi2pi90tiL7K0X9J5dijR7y6nT8amEl75DHX7hwOj5qrNlfn3XlI01 > > 6 // < CALLS 0,010698067319661 ; quote ; 0,000844473674326694 ; 0,00082758420084016 ; 0,0204081632653061 ; -1,8 ; 0,00081491709572526 ; 0,000874030252928129 ; 2,5 ; fbE66Ac3bBab9Daaafa2D27BDC203628Fda8F0a4Ffa2aF7f5E1b0cdE8A05BFEF ; < STZzhuVQKvtf3zVCw87u0Z9xazEd5B1rFZ4i3G1V286t2x4lm3Fje1V23en353NF > > 7 // < CALLS 0,0113666965271398 ; quote ; 0,000938304082585215 ; 0,000919538000933511 ; 0,0204081632653061 ; -9,4 ; 0,000905463439694733 ; 0,000971144725475697 ; 2,5 ; 6e81acb9cDF6Fa6AFCbcd7FacCb5EeB90E0b2277783ada28CcEFBB931C3Bee2a ; < AJ74m98TpqKGtNLbPXv58N3zfNr4w73irx7g7U2yxaXu1TMOW27p1zXiv679orjB > > 8 // < CALLS 0,0120353257346187 ; quote ; 0,00104256009176135 ; 0,00102170888992612 ; 0,0204081632653061 ; -2 ; 0,0010060704885497 ; 0,001079049694973 ; 0,6 ; 4a9Cac7828dFd245bC5f1da4Be7E7aFbFC61Fdefe62EAEaB51b375dE1cdfDD9b ; < 5r82fB8Md1T097bcA9n9u6DXUAI1p5vFcY7ZljtLgHuZ1G2c252d7h371ZKF0WTn > > 9 // < CALLS 0,0127039549420975 ; quote ; 0,00115840010195706 ; 0,00113523209991792 ; 0,0204081632653061 ; 7,3 ; 0,00111785609838856 ; 0,00119894410552555 ; 3,3 ; 0D376bFAeFfc5FbF9bd437A4B5CCfeA67BFDBcCBE5dEBE2afFd7b7713cbbBCaC ; < Oj4M0T1j2sAHSjJ2v4Luk6J2uK25kE81WRHhav894422n3OO1UNiUrgFaQ3W2vWx > > 10 // < CALLS 0,0133725841495763 ; quote ; 0,00128711122439673 ; 0,00126136899990879 ; 0,0204081632653061 ; -9,9 ; 0,00124206233154284 ; 0,00133216011725061 ; -9,8 ; 8B3fdCdC81bcfAfa9aaD9c3df11345bCcBEDDEE9caF99eAAba4f7FBffABA1BbC ; < 95t06hIq1I315nP2qJ9mONKjiSNZIt1i5N3PbF8rR9OyzRM3QzUM1rdJX8J86z5e > > 11 // < CALLS 0,0140412133570551 ; quote ; 0,00115840010195706 ; 0,00113523209991792 ; 0,0204081632653061 ; 9,1 ; 0,00111785609838856 ; 0,00119894410552555 ; 4,2 ; BAdaCa0e9Cc3d8EA48fDfFCEE8EdD0d2aAabb35B92fc1EbbeD5DEDfd91cF54Ec ; < e23l0t5Da9yq3jQaZyT0hWhiRHK53PVL798GslrC00r5uTke40W2gB0r5d9x5rRD > > 12 // < CALLS 0,0147098425645339 ; quote ; 0,00104256009176135 ; 0,00102170888992612 ; 0,0204081632653061 ; -3,6 ; 0,0010060704885497 ; 0,001079049694973 ; -8,5 ; cbefedd68dca3f6aEaB9211dbF084A1fCF3FF6AEE8eEae2CC7DEFBEfBD7Ba0Fe ; < 8NsOxKv90o6wPeS585x68lJ86y7W2606gbZU210hGDsd0a1S2ElYn79xp3R2BR2D > > 13 // < CALLS 0,0153784717720127 ; quote ; 0,000938304082585215 ; 0,000919538000933511 ; 0,0204081632653061 ; 6,9 ; 0,000905463439694733 ; 0,000971144725475697 ; 0,5 ; b7CCDCAD6a5B2BEeaAA8aaAb1CaC8fcc3ea050f2ac8E8A5eBBca95b5D86f4B91 ; < JyWTqBVMv8D67MI8SbuuK0AUv8bM62hyHsnyWXAklYm0lxU2ZvWmU9W89jn09P51 > > 14 // < CALLS 0,0160471009794915 ; quote ; 0,000844473674326694 ; 0,00082758420084016 ; 0,0204081632653061 ; 3,6 ; 0,00081491709572526 ; 0,000874030252928129 ; 2,6 ; Ba145876ac2Bcf3BfAEddFd4C8bddfd19711AB410EFEfb34EdCAAC0AFafabC6e ; < Yr8y5AM0Yp2e8U3mMi522wtt11zyRh9xNO3V8gvEM6a1fYCkvVEN507qDpDU3Bsf > > 15 // < CALLS 0,0167157301869704 ; quote ; 0,000760026306894024 ; 0,000744825780756144 ; 0,0204081632653061 ; 9,8 ; 0,000733425386152734 ; 0,000786627227635315 ; 7 ; E3Af25AAfD130E6FF8DC10aB4fCD7daad5fea3be6CeDF4BbF2CfBE30A76B2faA ; < qesrL9Xs94N9bMKH6FOF7rT5B9JJ4z20cf6n36Y8UmnU5x3xB07FwQD7pv4Kp81s > > 16 // < CALLS 0,0173843593944492 ; quote ; 0,000684023676204623 ; 0,00067034320268053 ; 0,0204081632653061 ; -2,7 ; 0,000660082847537461 ; 0,000707964504871784 ; 6,5 ; 848e7eFcDcE0a93AffD5fBaECce0CebcdEbfDfda143dbDd0cCee7aFaE0bBD8cC ; < 346221e893RJ04KiXgUnV00q5VUji3mx6DSbL0h9vL6gX1hZi9y9ZLcK67V17P5G > > 17 // < CALLS 0,018052988601928 ; quote ; 0,00061562130858416 ; 0,000603308882412477 ; 0,0204081632653061 ; 4,9 ; 0,000594074562783714 ; 0,000637168054384605 ; -5,6 ; dbdB26CBcBEcDBDF3FdEA0F5FCC9E3c7c7Accd3caBC249Eb7C567E3e93C7AFE2 ; < kWOa78lCy798dVP86iE8RjU577VWCuEC40K0m3W4E1YhL3mO2nBAT4n6JcW8rkQm > > 18 // < CALLS 0,0187216178094068 ; quote ; 0,000554059177725744 ; 0,000542977994171229 ; 0,0204081632653061 ; -7,1 ; 0,000534667106505343 ; 0,000573451248946145 ; -4,9 ; f27FcDE1fa055dCc13DB2bEA5dfAdFAe7a4a7E752581dEfcc4BaaD4aBfe29E96 ; < XTHN81N47HX8aID23yIU1v946G71BJMG5w1PSA9s6UE0G8MCinsC0PiXsD3G3x8x > > 19 // < CALLS 0,0193902470168856 ; quote ; 0,000498653259953169 ; 0,000488680194754106 ; 0,0204081632653061 ; 2,7 ; 0,000481200395854808 ; 0,00051610612405153 ; 4,7 ; Cb85eFd5Fa4dCabCc9058aEDA3Aebb8cB8078CA1fAcEA0ceFe03954F5ACea98a ; < 8SZXN6a3DRy922y97MhVcHTc9JMgsMBsfH3JR3kL79w105pY7ki475oO7S6CvGOo > > 20 // < CALLS 0,0200588762243644 ; quote ; 0,000448787933957853 ; 0,000439812175278695 ; 0,0204081632653061 ; -1,2 ; 0,000433080356269328 ; 0,000464495511646377 ; 0,6 ; C61E7D6F3Bfb1daAEBbbA1CCC988fbfDDaFBcfC9DAD8De24dcB9A3C6a763EAFd ; < 7Kce4d4F5JAXyeFVSdAasl2hU8cL15u15SNdboRy4HEL1fXKnohHD7OJx4oa592U > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00668629207478814 ; quote ; 0,000448787933957853 ; 0,000439812175278695 ; 0,0204081632653061 ; 0,9 ; 0,000433080356269328 ; 0,000464495511646377 ; -8,5 ; 5DCCF7aCEFdDA8E18B1fA0eba5C0F8fc06dbCAABDeaecbfdaee5eb0294eCC9D7 ; < rrGq57g67Qaj444RVZTyx92PvqGy6yMb83S82G8eZ1lRtB28253Z8NR1Y1cc1c3T > > 1 // < PUTS 0,00735492128226696 ; quote ; 0,000498653259953169 ; 0,000488680194754106 ; 0,0204081632653061 ; 6,7 ; 0,000481200395854808 ; 0,00051610612405153 ; -0,6 ; 22b214aC68F73addcF316E7aFfb7e6dBFfbED3Ad8C6AD4e7CBCCADD75c74DB7c ; < uTOIwe6klRbfTxPAav3beDzjUDV7fE09ut3H2GhuQ6Kjp2t2I7pfp7ouP6qMQD0p > > 2 // < PUTS 0,00802355048974577 ; quote ; 0,000554059177725744 ; 0,000542977994171229 ; 0,0204081632653061 ; 3 ; 0,000534667106505343 ; 0,000573451248946145 ; 3 ; 5470fBFe22b56619e614edEc1edDaa3fefDf8c1e6ACeD6c5dEdcfDFb6BD4CCfd ; < 5AL8M29ekMW056ghju72Gfn2Nt0wieZi2QU7JNjPba56MNaT8LJkq19C9KO4zd4f > > 3 // < PUTS 0,00869217969722459 ; quote ; 0,00061562130858416 ; 0,000603308882412477 ; 0,0204081632653061 ; -4,4 ; 0,000594074562783714 ; 0,000637168054384605 ; 4 ; AbD0FA8b54Cbac90a7bAC4Fed22Cf4B6a78E3eFFdCEfE7fEDBd9e8BeAcdccF5F ; < qL1dSFxFB0iMi3uB6XHfK0570If54St2L177yAA9O19gob84v12it30C4TQ2Sw69 > > 4 // < PUTS 0,0093608089047034 ; quote ; 0,000684023676204623 ; 0,00067034320268053 ; 0,0204081632653061 ; 6,8 ; 0,000660082847537461 ; 0,000707964504871784 ; -4,1 ; 0bd3BBfEFa7faBAAa2DB0e42fB49A8bDBa5B1bfEb7bfcBFF84A8e781dDfDcE4d ; < u7GB9cqbPb4bHH3w8jJsMN4t0hXcuR1KsZ8WLS3b5l3h66ecgZ03zzjNj7b5IKwL > > 5 // < PUTS 0,0100294381121822 ; quote ; 0,000760026306894024 ; 0,000744825780756144 ; 0,0204081632653061 ; 7,3 ; 0,000733425386152734 ; 0,000786627227635315 ; 8,2 ; bd95B7a44CEd723ebd32dcCDC35c0aCda69bFCEfB6d5FBc0c106dDdE6DDFeD4c ; < 8uBKk6zJ2NVOYAsPxv55Rt09aQ6Bt6dVgGUDDzcmm9iwRCZaFc7b7wN559QjCV86 > > 6 // < PUTS 0,010698067319661 ; quote ; 0,000844473674326694 ; 0,00082758420084016 ; 0,0204081632653061 ; -8,4 ; 0,00081491709572526 ; 0,000874030252928129 ; 3,9 ; E3Ff1Dd2eDb023AAF2478ABbFeBfefe8E4ffEbdDff1D5cD7bDcceB7EBFEd8E90 ; < 781Whbfm9t5EU0cEot7929nE4l0C1YPI63OTe31jc1QIZ6g7KRf4SGeIjO7UeBlw > > 7 // < PUTS 0,0113666965271398 ; quote ; 0,000938304082585215 ; 0,000919538000933511 ; 0,0204081632653061 ; 6,8 ; 0,000905463439694733 ; 0,000971144725475697 ; -2,2 ; D0bdb4BAEdBbBAbF72BfECB9AFeE99ef0B9FF33DbcE96f3b88b07BA1eABD3b5e ; < HUdrL8yut2HeQKZOf3Oq9h1Z2U61jMSo9xSyZ9v6P5PdOLx5GpbOc637ue4F14jJ > > 8 // < PUTS 0,0120353257346187 ; quote ; 0,00104256009176135 ; 0,00102170888992612 ; 0,0204081632653061 ; 8,7 ; 0,0010060704885497 ; 0,001079049694973 ; -0,3 ; 9Adf5B3aD2aFdB9CAfE300c1b326e4eFCDBbaE74F7BfC33FFBE5D5b2CCfcdCfD ; < 7i62IvmP46vS32B302Av99COGX84US70y4FI0YEAFaV9JoT5pT698Rm74CNrIsOp > > 9 // < PUTS 0,0127039549420975 ; quote ; 0,00115840010195706 ; 0,00113523209991792 ; 0,0204081632653061 ; 3,4 ; 0,00111785609838856 ; 0,00119894410552555 ; 2,4 ; fc7Ea6cC437Af8EeEbAFaeDAAafbEacbf76DC7DAeBf4E9D08A1eDCfCFdcCF7Ba ; < 21Fz8tcR2M0inQ9l525b0535ELiDbj8razt26r0hO6C50dk4eL0Q8dvfP8MH6u9P > > 10 // < PUTS 0,0133725841495763 ; quote ; 0,00128711122439673 ; 0,00126136899990879 ; 0,0204081632653061 ; -6,6 ; 0,00124206233154284 ; 0,00133216011725061 ; -3,2 ; b3dfc8191CdadC5cd0d8976DE5b237CEB5cc020CaEbAFaaEbfAa6bFaea5c4cF9 ; < xIN2jkL0Uvgz6AT6cFNMTD4t9ur7o3bS57ZardEZruYFMJ1r7pISSIVr24qvICx7 > > 11 // < PUTS 0,0140412133570551 ; quote ; 0,00115840010195706 ; 0,00113523209991792 ; 0,0204081632653061 ; -8,7 ; 0,00111785609838856 ; 0,00119894410552555 ; -7,6 ; 0b7AFbFEafE4eDEA3C03fe5f2ceCC9FaDB50Dccf30E44EaCFf0edaDA81dAbF8e ; < C0nqb4pMO356L7NDG9APY23T2guXA4Vk46c6W0XJ60os3686S70Mzz78ylBNMLNp > > 12 // < PUTS 0,0147098425645339 ; quote ; 0,00104256009176135 ; 0,00102170888992612 ; 0,0204081632653061 ; 1,8 ; 0,0010060704885497 ; 0,001079049694973 ; -5,2 ; e6A68AC7E2687ad0bcadAE5BCcCCCCcBCBE82debeDabd0B2CBf1aFc0AA7d0Dcb ; < 0m5Zwc43hVH2jZbhPQ9LPn4Q1BSTRM4PFw4E9ntfCln8OKmW0ATTM7Kip3ri1y2J > > 13 // < PUTS 0,0153784717720127 ; quote ; 0,000938304082585215 ; 0,000919538000933511 ; 0,0204081632653061 ; -8,8 ; 0,000905463439694733 ; 0,000971144725475697 ; 8,1 ; 75Ddac7fEAfbf4BCFd3aecaBeFD7eb21cBd8Af7F323Cc108b7e271fEc553ddcf ; < 5c18wJLZ2KE1AZBcK6343N9054zHxB2gy1O70OyoQt74k52r66n7LzITV4xkyK1T > > 14 // < PUTS 0,0160471009794915 ; quote ; 0,000844473674326694 ; 0,00082758420084016 ; 0,0204081632653061 ; 3,5 ; 0,00081491709572526 ; 0,000874030252928129 ; -1,2 ; 7A16DA5E5dAfAa52FAE3A56EA7b0BADaFD611519C45C4bDD94a9EbdBf9Cccb94 ; < GVj1e72jOGCrw18L34ou4jqV5yCkoyG6764Nnr3IoVDAnc6uIK9RKd8a32Ue269k > > 15 // < PUTS 0,0167157301869704 ; quote ; 0,000760026306894024 ; 0,000744825780756144 ; 0,0204081632653061 ; 8,2 ; 0,000733425386152734 ; 0,000786627227635315 ; 7,2 ; cbA0B5DcAA2EFFB6e5Cbd70cabc7CFEA3Cf3bcbcaeafedfBCCcfEBcBAAd11Efe ; < 8TzZ9WY6LK1J0qS4j3JIfI2s8w1Xo6nOoY22st9eFaXwDm44FI08V121KFwmDX5V > > 16 // < PUTS 0,0173843593944492 ; quote ; 0,000684023676204623 ; 0,00067034320268053 ; 0,0204081632653061 ; 5,2 ; 0,000660082847537461 ; 0,000707964504871784 ; 7,7 ; 82b7dedDebF30AbFBDdfbA00A56AbbF43bEd2cC33eFAE83D6A9C8EaAE1eFdCd3 ; < YqGr5k8RL6VhDt6vp3K6GD46iwi0iiG693F5dKq1Fs6DT5Hoq35G7Tf3g4ssNV41 > > 17 // < PUTS 0,018052988601928 ; quote ; 0,00061562130858416 ; 0,000603308882412477 ; 0,0204081632653061 ; -8,3 ; 0,000594074562783714 ; 0,000637168054384605 ; 5,4 ; b0bf8A60cFCaCbCfb1Cd9BD9d64aE6AfAbeBDBC14f3fDFCAa18ecAefAA31ABF3 ; < 4FcW5LjVR1IeGHa22nElovaXtw35V83bZXRdUO2hevo25MJEkfP5RxaAWA58XCC2 > > 18 // < PUTS 0,0187216178094068 ; quote ; 0,000554059177725744 ; 0,000542977994171229 ; 0,0204081632653061 ; -3,7 ; 0,000534667106505343 ; 0,000573451248946145 ; 5,5 ; 9EfF407dDDa0DcbFB4bDFeAcd2CDaba7E2B8EC9ACCcB8eDdeac461E74beD4B99 ; < oQ97P4r61qMQ0N4fpU1n59g5k6a5EI9xtH6amV9X23Ni1wlf457hn3r5o9f9m1Zr > > 19 // < PUTS 0,0193902470168856 ; quote ; 0,000498653259953169 ; 0,000488680194754106 ; 0,0204081632653061 ; 7,7 ; 0,000481200395854808 ; 0,00051610612405153 ; 2 ; ADEaa4bBffd4DDcBcfFdfEf1f56cFc13FeccFfafcdcbbd2ee21942ce2BD3fF5B ; < 4BJr4K2034yr07B4M8gBKzHgwJcBtE7r96GtGX0ZC6L82337vlNe96158bjV4PIS > > 20 // < PUTS 0,0200588762243644 ; quote ; 0,000448787933957853 ; 0,000439812175278695 ; 0,0204081632653061 ; -3,8 ; 0,000433080356269328 ; 0,000464495511646377 ; -5,6 ; DBAeafBB1532c0CAbBebFAd9e952A3Eb268a8BEDA9Ea4fC3CAa9cB8bbdEc2A32 ; < 8JUqRPvMj4fOu8S6oRnKCb9ZbW7jKD93FHoYK1Kq5BBzGw1W762L205OHBwozk34 > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00677403735681808 ; quote ; 0,000963479526310727 ; 0,000944209935784513 ; 0,0204081632653061 ; -5 ; 0,00092783078383723 ; 0,000999128268784224 ; 7,2 ; 754d08BDeD78FA9b19dCCEeFAFd0bEEFf5BbccD8F2BCfAAaADAaBA6DAACb0a31 ; < fC45712bbo9fM9HhVxq8N6A1QJnSKxUkr1SVd9K0Vvh5qs4OXGxES3BmE06pK17n > > 1 // < CALLS 0,00745144109249989 ; quote ; 0,00107053280701192 ; 0,00104912215087168 ; 0,0204081632653061 ; -4 ; 0,00103092309315248 ; 0,00111014252087136 ; 1,3 ; 2F19beaeF3CEC949beDFAeAC2FA5d4f8F9d2cFEcc6E655e9EcDdDeeAA2e5faE8 ; < A0JlDe71w8459A1aPBF1U5Q5h34045R7G494qj931NHbM05ssHo66o3692pteLPs > > 2 // < CALLS 0,0081288448281817 ; quote ; 0,00118948089667991 ; 0,00116569127874631 ; 0,0204081632653061 ; 4,8 ; 0,00114547010350275 ; 0,00123349168985707 ; 8,5 ; 0afBCAeDE5Bb9fC7efFbBdFBDF0c5ee6C1deCf24C409c7D1d7EaB38A79b5D3Ea ; < CQ16403GLj6NeP218o4uDT5JW3N8IvI1P9Hl3301Paoxn4zAtWpNVp4qY24mntq3 > > 3 // < CALLS 0,00880624856386351 ; quote ; 0,00132164544075546 ; 0,00129521253194035 ; 0,0204081632653061 ; -5,1 ; 0,0012727445594475 ; 0,00137054632206341 ; 3,5 ; B7bCE7b7Ee5cE9F52FbfDef9cE3dFa0Ffad7BC69aB4AE003c6da92969d4EC045 ; < Gx17F485AP9E396SCZIF3KVZC4ZLjsS8qtZM5r5bL2OE63E2HscgebIgeCG71DlY > > 4 // < CALLS 0,00948365229954532 ; quote ; 0,00146849493417273 ; 0,00143912503548927 ; 0,0204081632653061 ; 2,6 ; 0,00141416062160834 ; 0,00152282924673712 ; -0,8 ; a3EB5325C67BbbBA7Dcc823e8A5aB9AFB329FDb5bC0bbB3ca9C6EdaBBEBB0CAc ; < 9KmQn83d1I00a3OCWB3d2vhJ1qwuQSXrc0t8xhitHBC9m4z8DqNDqtYqJksiTEXK > > 5 // < CALLS 0,0101610560352271 ; quote ; 0,0016316610379697 ; 0,00159902781721031 ; 0,0204081632653061 ; -5,2 ; 0,00157128957956482 ; 0,00169203249637458 ; 4,6 ; bffA6dE110fCEf3CFed1BDCaabd9395e4f3CF6EEa1Dd575bBA3Fb0df52C566ca ; < W2X8s3G6KPcPAbgs7LlC1BVxXO68prEOBKlLETB6LO6mGsck2ejvD0dn8PITAb76 > > 6 // < CALLS 0,0108384597709089 ; quote ; 0,00181295670885522 ; 0,00177669757467812 ; 0,0204081632653061 ; -7,6 ; 0,00174587731062758 ; 0,00188003610708287 ; 9,8 ; c8b6e64AEfac6c2Df2B4baB4eFfD0DD5f3f8Ead7CbBadADBfEFE4Ed02C00eACB ; < 41OsqEY1SlJ61EE05N4nFS47qCiTT9Ij45gTcOvYK275qsSf1b53Fk4ZLpyiU4mL > > 7 // < CALLS 0,0115158635065907 ; quote ; 0,00201439634317247 ; 0,00197410841630902 ; 0,0204081632653061 ; 8,9 ; 0,00193986367847509 ; 0,00208892900786985 ; -0,1 ; 7ba96DAFbcB365cBb681e0bBc7dbeFa9f000EEE1a0cDAdd6eBf5F6B87733bea5 ; < MtMmq9QXo3h9gDaDt3R25loa4w6Tskp1o18D0Iija14f0Kpybso0E4ET6Sztyzr0 > > 8 // < CALLS 0,0121932672422725 ; quote ; 0,00223821815908052 ; 0,00219345379589891 ; 0,0204081632653061 ; 7,6 ; 0,00215540408719454 ; 0,0023210322309665 ; -6 ; 9D818f4AcFFDc548BFF9D151a3Bacf3Ac6b2deBc03FEEBEeAf3EfeFd6cAEa8EB ; < l51Y5qu4LzZg1U8ya4p4tIl1TXjEjYi4H7v96VIP4ijezAy77ZSMv0g1PJ5U4WqU > > 9 // < CALLS 0,0128706709779544 ; quote ; 0,00248690906564502 ; 0,00243717088433212 ; 0,0204081632653061 ; 3,7 ; 0,00239489343021615 ; 0,00257892470107388 ; -9,7 ; 44d8cCddC5Bf6A3adFaCadd837C3B4AeFe8CE7dfa021D1FDDA3D7Dfc6Df00aFE ; < 1CPzD3USl82c32Oz2usUCs0b7p1oAPv0gCrEpEvj1IU9V6741nYRAWSa2vMUyc2Z > > 10 // < CALLS 0,0135480747136362 ; quote ; 0,00276323229516113 ; 0,00270796764925791 ; 0,0204081632653061 ; -4,7 ; 0,00266099270024017 ; 0,00286547189008209 ; -9,3 ; c8E8d2FcDe4BCE9b6FB6cC0DFDf8a54dbBaBF87076AAacf2f6Cce706BEAcdA5A ; < uGU68XsB9vmz1XAt3diWf927kkxg3FoCz85P67U7874cXema2FBS9vn9VlJm17hU > > 11 // < CALLS 0,014225478449318 ; quote ; 0,00248690906564502 ; 0,00243717088433212 ; 0,0204081632653061 ; -3,7 ; 0,00239489343021615 ; 0,00257892470107388 ; -1,7 ; aca2aaB7D70D0BdBac2Dc3DEEa62C84CbFaA5bAcBac04cb5dbfb6bfb7BB3Bad4 ; < iJDqaLN02xYlW9nEFz43EQxLM1hzBAU78707lE9U18Gll1tQwSy8dc2G7n73X94R > > 12 // < CALLS 0,0149028821849998 ; quote ; 0,00223821815908052 ; 0,00219345379589891 ; 0,0204081632653061 ; 4,4 ; 0,00215540408719454 ; 0,0023210322309665 ; -4,5 ; D73cE1c2D7D85AbF1a61AcFbfE1AbAaFCABfec1FdFD28CFAeFDBFeBcdDfeAE1c ; < 538129m2y0o4v5hToWvo9DKlsNI9X78T0PK6C5yMdO732tF52lycw6ewfMj5Ib95 > > 13 // < CALLS 0,0155802859206816 ; quote ; 0,00201439634317247 ; 0,00197410841630902 ; 0,0204081632653061 ; 5 ; 0,00193986367847509 ; 0,00208892900786985 ; 9,4 ; 9E8Af5403F1F4De0E53dA6Ab0870BDffebAebBbCfdF7dbaf235A2cFBda6EccaC ; < 9Ha4bSqJ7tLHQP3BXfG0cY19wecU8B47B047c64UGFA0380Q7TMi34NQD8okQ2Lh > > 14 // < CALLS 0,0162576896563634 ; quote ; 0,00181295670885522 ; 0,00177669757467812 ; 0,0204081632653061 ; -8,1 ; 0,00174587731062758 ; 0,00188003610708287 ; 1,9 ; 9afC59fCd0521fEbdF9F83DEf6F02d7df3Db8ba9F0a3901DEeCFBDbda7Cbe198 ; < 2Yb0Bb9SoOiZRt4K60Ox9kVjx713v5uif62k0ygOI8cTI7knaGl3XGd1Fw1358Ko > > 15 // < CALLS 0,0169350933920452 ; quote ; 0,0016316610379697 ; 0,00159902781721031 ; 0,0204081632653061 ; -9,6 ; 0,00157128957956482 ; 0,00169203249637458 ; 5,2 ; 433CdDF3DbAD8B7Fee9Cdf0EaE1AA8bf5db736aCcec22cAbAFdFD07f637bDfc3 ; < Qw54w173c9E29KoDSfgxZrD8O84zwvvXvFl2JkK9gG7kxlevuQX878ecPPy6r6L1 > > 16 // < CALLS 0,017612497127727 ; quote ; 0,00146849493417273 ; 0,00143912503548927 ; 0,0204081632653061 ; -0,6 ; 0,00141416062160834 ; 0,00152282924673712 ; 7,2 ; 2B4Faec0cBDcCdc5DC468b8a0d2c10D9CE08Dde1bA4e9e576Ed349Bb9eEAaA7b ; < 7Wcq2a9tQyTXUlcqjLeqVlZ4ux5V1d81Zqk20s96o4PdPig1RB08mjGRanuwT9c5 > > 17 // < CALLS 0,0182899008634088 ; quote ; 0,00132164544075546 ; 0,00129521253194035 ; 0,0204081632653061 ; -5,3 ; 0,0012727445594475 ; 0,00137054632206341 ; -7,5 ; eAB567F12Eaafc4a680FbA64fcFfc0fedC339E5cAaEAFeFfE3C58CEEDFE19ADf ; < AyjobI46bQyGMnR78jtS8gBn9Har3ikeyqcQj4qs0Usg75gOiX2ICeclU3nWNx6l > > 18 // < CALLS 0,0189673045990906 ; quote ; 0,00118948089667991 ; 0,00116569127874631 ; 0,0204081632653061 ; -8,6 ; 0,00114547010350275 ; 0,00123349168985707 ; 3,6 ; D6Ee4cE4abF5ec512AD8BBbF16FFDc8BDe333a7e53D5CB1b4aFEAc8B66aa9FB9 ; < i972C12CQUj0ZkR0h3A0K3767539gXg9gJFIn2EoAdukJ6Aa2NU4eA8KB55mlN70 > > 19 // < CALLS 0,0196447083347724 ; quote ; 0,00107053280701192 ; 0,00104912215087168 ; 0,0204081632653061 ; 8,4 ; 0,00103092309315248 ; 0,00111014252087136 ; -9,9 ; 7bE027D59bece1fdCDE0FEFdfd4EFFbcb2D2ea7F9aCc4aD2E2cFB5Ec643DafBD ; < 4VPM5MoVhR20KI9dK3V7W7dR4br2H7DTEpeq1D0TknshR1W1HT4XfPg2BQtX1Yf3 > > 20 // < CALLS 0,0203221120704542 ; quote ; 0,000963479526310727 ; 0,000944209935784513 ; 0,0204081632653061 ; -8,4 ; 0,00092783078383723 ; 0,000999128268784224 ; 9,6 ; aA4d94cbF9fCbbCB27AE4C6FC461Db7c7ba57078dDcaeDFEcDaEECfBfd3eed30 ; < C63lA6s8zuQ8mf2ZyWbk91B06No8ul6Pr5tzs7ugf1c05BwX36mQQh44xE1eiP8X > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00677403735681808 ; quote ; 0,000963479526310727 ; 0,000944209935784513 ; 0,0204081632653061 ; 0,3 ; 0,00092783078383723 ; 0,000999128268784224 ; -6,4 ; bA88FC05aFBa3bCC14FEB4CDDAa76EBFa8d3bbF7b127ad34F29de4d4f0FcA1dA ; < Y9tDR9r4645scDk0dQjFNoE5Dw9cqX9h2tj0K7F021o6wU9qfU4EJpquV0H4fO55 > > 1 // < PUTS 0,00745144109249989 ; quote ; 0,00107053280701192 ; 0,00104912215087168 ; 0,0204081632653061 ; 4,4 ; 0,00103092309315248 ; 0,00111014252087136 ; -6,7 ; 9cDdED07aCbEb3Bb11edCcDe597F9f8a9Ab07edB9e954e5197Ee5F6DD6CD98bB ; < k5H5ECD73z4z9Q17W193ZADoMPcna5lmIJRczlOtRg8xpyy57ByERtZUeUYiEAx8 > > 2 // < PUTS 0,0081288448281817 ; quote ; 0,00118948089667991 ; 0,00116569127874631 ; 0,0204081632653061 ; -2,1 ; 0,00114547010350275 ; 0,00123349168985707 ; -3,5 ; c7Bc148cB13e5cC65dbfcE36D9fbbe9DAa9a2fCa446E395cd0A364FcB794AbAa ; < e7T65E36l2Z97QOrnID5Gti00qB6Ok3pG616W7evi53764R363omX7ZLz0K4NQ55 > > 3 // < PUTS 0,00880624856386351 ; quote ; 0,00132164544075546 ; 0,00129521253194035 ; 0,0204081632653061 ; -1,3 ; 0,0012727445594475 ; 0,00137054632206341 ; 8,7 ; E32e09cF71e75c827cd98ceEBf9b9AC2c73aCEada993Dfe4d71fEC21Ecda7b5E ; < KU98t15mXltlAZMz16XM140Z02gDbTjS5160098jC19VLs2L3a03343KJpiUICEs > > 4 // < PUTS 0,00948365229954532 ; quote ; 0,00146849493417273 ; 0,00143912503548927 ; 0,0204081632653061 ; 5 ; 0,00141416062160834 ; 0,00152282924673712 ; 6,8 ; 00accab3eFdcdDD7A2CaBc2D0f5feb6effdeB880A7EBDAeC8aA6DfeACF6Ff4BF ; < 7oa0G3a9P9PJx2xQI84Qk7SVr9moVrAyBv67JDZ4DoaK2K6rH2IQK3Z3wSQcF1rS > > 5 // < PUTS 0,0101610560352271 ; quote ; 0,0016316610379697 ; 0,00159902781721031 ; 0,0204081632653061 ; 0,3 ; 0,00157128957956482 ; 0,00169203249637458 ; -6,9 ; d7Ee7bde5fccF6aE03cAeC0FE6eFefA7e6aB508D1faCd4B02F70A5aD6BB4FAcC ; < 6hfHqUc8660oQ8H54dWFA8VoT74kYiuP1j1UR6ry1DZGAu632ND9OiY988bt5ZBr > > 6 // < PUTS 0,0108384597709089 ; quote ; 0,00181295670885522 ; 0,00177669757467812 ; 0,0204081632653061 ; -3,5 ; 0,00174587731062758 ; 0,00188003610708287 ; 3,2 ; a9dc7BB9CD7feCa6bF484D41b3cBEc8cC9FEfc80bE95cEfFEAc2dFEcDACBD7b1 ; < u2zg84yK53b3ry1sR05Za3j8R3HI6b0N909G831y470QAZw0cOO88S8a9t32gM0D > > 7 // < PUTS 0,0115158635065907 ; quote ; 0,00201439634317247 ; 0,00197410841630902 ; 0,0204081632653061 ; 2,7 ; 0,00193986367847509 ; 0,00208892900786985 ; -8,3 ; eEdb4fc84095efEcdAdf1A5Bb51e66dECf1e80e0Eff5DaDFBadDccCed430d5FC ; < pA1S68c3wHs10cNLak1Hn0Dn08u159Y4RB6DlgmA8QAfVI2O8pNCpSzUoD92gPS6 > > 8 // < PUTS 0,0121932672422725 ; quote ; 0,00223821815908052 ; 0,00219345379589891 ; 0,0204081632653061 ; -7,2 ; 0,00215540408719454 ; 0,0023210322309665 ; 9,6 ; cA3AAdFeCCB0Aa3D5CFeEdBeCA2FEcc6dAAaA9e7aEeBa58fc67F1A2C967aA3ca ; < M1WEA5EKPsCJ1KsmY1qouCEVqGPWKn51phB58oeR4077k30KUN7FzwT8CdMU8igR > > 9 // < PUTS 0,0128706709779544 ; quote ; 0,00248690906564502 ; 0,00243717088433212 ; 0,0204081632653061 ; 3 ; 0,00239489343021615 ; 0,00257892470107388 ; -5,8 ; FadC39BB78c2EeD03A94cBeAdFD07dAafA8A220eBcfeF7c9CAbB5DD2ae3EDe8D ; < FMoi24352C3vfs1jYEO8Xtab66VE0y4st4YMomhT9oxlnF79J54P235o47D87xYG > > 10 // < PUTS 0,0135480747136362 ; quote ; 0,00276323229516113 ; 0,00270796764925791 ; 0,0204081632653061 ; -3,5 ; 0,00266099270024017 ; 0,00286547189008209 ; -6,3 ; B804cFB46FCAeFe8aFCE0e8AcfAdFFafbafaB14fbBaeEE11FdD6Fe3de38731fD ; < 25P906Xq1808tPlwOH1D8bgYnKHGl7p7rSP6HZ5O4c3kEmK25CXB4peeb08R82Y4 > > 11 // < PUTS 0,014225478449318 ; quote ; 0,00248690906564502 ; 0,00243717088433212 ; 0,0204081632653061 ; 8,5 ; 0,00239489343021615 ; 0,00257892470107388 ; -0,9 ; B8EBCdBe3FAf13E0AB1CEad87FADf0Af10Ee6f9dBAcEfE8f2e3DE304fF36c818 ; < tmaV0a643P7elT3TiOCVvps9NHp4EXhmRc34QXqSG9M0i9N262C4y2GwXo1cXX5A > > 12 // < PUTS 0,0149028821849998 ; quote ; 0,00223821815908052 ; 0,00219345379589891 ; 0,0204081632653061 ; 3,7 ; 0,00215540408719454 ; 0,0023210322309665 ; -8,2 ; 125fedbF694AfAfebDBDDdfC3acF0b1F9eCbBb7f8DB3b0acBA0cFbddf3DA2B9F ; < 83sg4DaOWWJ53P5wf43AD8A37Rn5G8iQq6i30pRC69Rut67CvVe7A0l2W8BiBMH0 > > 13 // < PUTS 0,0155802859206816 ; quote ; 0,00201439634317247 ; 0,00197410841630902 ; 0,0204081632653061 ; -9,2 ; 0,00193986367847509 ; 0,00208892900786985 ; -0,5 ; 1cdeaDBA6BA9cba5EF5eDBB4bDeB541fcd286Ded5C0Ff0C9bDB3BFCcFF2BBdc4 ; < rdld06Hu193BcJJH0vS5vAaxJd6sqW9ktf2Kkp0YC2E4jZhzbeyJUC0BRPT2DIh9 > > 14 // < PUTS 0,0162576896563634 ; quote ; 0,00181295670885522 ; 0,00177669757467812 ; 0,0204081632653061 ; -7,2 ; 0,00174587731062758 ; 0,00188003610708287 ; -7,3 ; 8DC4c1eEf0BDEEAa6e3CCAda87Bd1Bb58DAD66DaDaBD7DDdC163E3e3dDF76319 ; < 4mrRQ64n5J86625jSjz74856ROBiG5vG7v461jsB8V5hIhB6w61tTv0ew9VhP77y > > 15 // < PUTS 0,0169350933920452 ; quote ; 0,0016316610379697 ; 0,00159902781721031 ; 0,0204081632653061 ; 2,8 ; 0,00157128957956482 ; 0,00169203249637458 ; -5,6 ; decaBcfABA97c5CbCcb676d90CDECCAa9F2D91eEefe9d42D0CfaeC4EDDcF0d33 ; < iJ33Qqt562OO3gG3XU5Uc9767p8CTXPp7RxOHXEy26h1n85ypDz5BkUoN26f037L > > 16 // < PUTS 0,017612497127727 ; quote ; 0,00146849493417273 ; 0,00143912503548927 ; 0,0204081632653061 ; -9,7 ; 0,00141416062160834 ; 0,00152282924673712 ; 6,5 ; 90BDd6eeAd6E4eF6dAb1Eb1caFebb39cDadBF8CBfFF9C1c70FdaB3eaec3ADAac ; < 99gE8GcFAS1H01JzD7oZe0cW8kP74g6afLwk3e94PPI9VQp78ue94B8w9EecsUdS > > 17 // < PUTS 0,0182899008634088 ; quote ; 0,00132164544075546 ; 0,00129521253194035 ; 0,0204081632653061 ; -0,3 ; 0,0012727445594475 ; 0,00137054632206341 ; 6,4 ; e42cdDc2fDBD86A6cbC0F11DBCbeEeedFFdffeA4CC6ae8FcdfCb2eFe8fa8ff1D ; < mH8h0y6UVvR175VRwut2fp69P9fQwmgTP5gga09MF9fIdslX0k2Fbokwo0dfRQab > > 18 // < PUTS 0,0189673045990906 ; quote ; 0,00118948089667991 ; 0,00116569127874631 ; 0,0204081632653061 ; 4,6 ; 0,00114547010350275 ; 0,00123349168985707 ; -4,6 ; 2BbbFe1D0ADCBb1aDcc5Cd2f2daBaAD6d272cd234Bd4AeEb3cF84accEba4FA26 ; < VaKeMqt651WxP2599ZwUsOhdS7Y8PjD3748Q93fk4wlbNGWLh7i5O122f4tn4kLm > > 19 // < PUTS 0,0196447083347724 ; quote ; 0,00107053280701192 ; 0,00104912215087168 ; 0,0204081632653061 ; -0,4 ; 0,00103092309315248 ; 0,00111014252087136 ; 4,7 ; 6523D75C77CBffFECEDBD647E3EbA65ffAaAFbD8AaCdeA97cBDF3cc90DeaB241 ; < mRmeq30XB8f0taaQ47Jk1Z4vrMQFD9C256O18i944Pov3rhMTHzdefk1s08cJrc7 > > 20 // < PUTS 0,0203221120704542 ; quote ; 0,000963479526310727 ; 0,000944209935784513 ; 0,0204081632653061 ; -3,2 ; 0,00092783078383723 ; 0,000999128268784224 ; 1,4 ; 76ac23bDfbCfbCDcC6AB7FaeddA28Bedb700134ceEdD1Df356eEb4cfEac94eeb ; < 3j4zW6DTo7ZXj6ZTU8JrnZzBw0c8Mto767OLCuTRj9fr0zZ10D6L2tiFGdZ79Kit > > 21 // RUBEUR // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,0132965072962213 ; 1 ; -0,986703492703779 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 15fcd2A7507ADaEe1d657DF6B5aDe72Affdabbf08aedFBFE4BD0Dc7BcAFfFcb2 ; < bYLA26b7V241GH6zjtJCz65B4pr3W7N8P7F6M1ggAaJq7mZ1k145dVp90T44ujz8 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,0132997263141371 ; 1,00024209499864 ; -0,986703492703779 ; 0,0130497263141371 ; 0,0135497263141371 ; -0,5 ; -1,8 ; 2,2 ; -4,2 ; -6,7 ; -8,3 ; 0,41 ; RUBEUR89JA19 ; cDDCAFC1Daaeea0dF3D9Eff3C632baBb933B7cCFAa1abD1cDb0Bd1cEabbf1e7b ; < 8G9HW8Uh7fl4son0dO7CmW4ix23yvC80tNi4yEpyJeYvdZcOJx8eN2L4OX2JI7kX > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,0133064856779417 ; 1,0007504513402 ; -0,986703492703779 ; 0,0130564856779417 ; 0,0135564856779417 ; 9,5 ; 2,8 ; 5,5 ; 5,6 ; -8,8 ; 2,6 ; -0,52 ; RUBEURMA1969 ; a8DbaeAAAbC2C7B949E0FeDdAcceEe83aaD4DfccAdddAfCadCA5AD1bDFc8329e ; < PiJi8b0jgY300MLfE3F67i1y6gmIcJ2tFiQVuqr3fpbePXrn9r8944kBPAEh5Dwu > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,0133139029115318 ; 1,00130828456849 ; -0,986703492703779 ; 0,0130639029115318 ; 0,0135639029115318 ; -4,1 ; -4,4 ; -7,9 ; -9,2 ; 6,5 ; -1,7 ; -0,83 ; RUBEURMA1956 ; E8Bc7ae2dEfFBCF3de0BbbC7BDEfA7C1DDECaFbDacA6fEA9cf28Ee86cAefeA7C ; < WRC2mfG5mhHSNNr7uyxjObLR59Ei90E1g6j7a2oX6yb473sMfllrsOQ9ZjGEjApI > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,0133247090057177 ; 1,00212098627618 ; -0,986703492703779 ; 0,0130747090057177 ; 0,0135747090057177 ; 2,5 ; -8,6 ; -7,2 ; 9,3 ; -2,2 ; 0,9 ; 0,5 ; RUBEURJU1934 ; 82EC5AbaCbD46e5dcDCF29Af5D96d4f420aF6efacD3cBa503dA55A6dcEBc10d2 ; < pK92vlUA5I0xHQcgvsQTcwdMp2eAJ5PfOWAylH0qsC756kM4h9qa49q4AyxFZfp7 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,0133378192950867 ; 1,00310698125042 ; -0,986703492703779 ; 0,0130878192950867 ; 0,0135878192950867 ; 7,7 ; 8,1 ; -1,3 ; -9 ; -5,3 ; 4,8 ; -0,58 ; RUBEURSE1923 ; AC631dc2fCB6AEeBeb0c5dCDBfFeEfa5837f9D7Bee5FfA7e67BfF4Fa2379bccb ; < XUV7281Kjk52B9o19IIw2nb5kRGeIYoKXl9Y6g6eSogFK8EQkd2jiyJ5L9PE8p3t > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,0133544011351234 ; 1,00435406363583 ; -0,986703492703779 ; 0,0131044011351234 ; 0,0136044011351234 ; 3,8 ; 0,1 ; 0,4 ; -9,3 ; -0,1 ; -6,1 ; 0,19 ; RUBEURDE1949 ; 43da3Ed243BA6AFD46dd25eeec11ad1Face46F5d44C9eaFacfbA60Ba709aAD8A ; < 2VTE2W17wOZ268ic528RqtTHUwE0ZG26wr2ajY8b9L1wO3fx0258AfSl273NzY75 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,0133725841495763 ; 1,00572156669869 ; -0,986703492703779 ; 0,0131225841495763 ; 0,0136225841495763 ; -0,7 ; 3,4 ; -2,7 ; 4,9 ; 4,4 ; 4,3 ; 0,16 ; RUBEURJA2023 ; BBEC3EcB9fC45b965c5FFFbd6b9FAbAe7dAfC3BBCfAAbFE88BECB7cbDFd33DBf ; < 099flzN1u2645l24083tNZw25KRNujR5uot43v68H18a6S7JLtq7745xXY1xiql3 > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,0133959590655124 ; 1,00747954083546 ; -0,986703492703779 ; 0,0131459590655124 ; 0,0136459590655124 ; -8,2 ; 9,7 ; 7,3 ; 1,9 ; 4,9 ; 8,3 ; -0,56 ; RUBEURMA2076 ; bdCE8aedbEa5Dd2Fb7ABBf48EAAbC73AD241793dd4adC0B5DCC38FDB8AeAcA8a ; < 1Gd8u52U1663nHI715F8WCsmnr52l29p9f0scI7F493krV9GIp15jh964sajJrzA > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,0134197558437418 ; 1,00926924227354 ; -0,986703492703779 ; 0,0131697558437418 ; 0,0136697558437418 ; 7,7 ; 5,8 ; 3,2 ; 1,3 ; 6,5 ; -6,7 ; -0,35 ; RUBEURMA2053 ; 6F5cd15fC35031cfC873D4A2dDF69ADdCE1Ef1AEdaC0FbBD2Cb6aaEDe7cCcbAE ; < jb5XRf6MjzzPgB3PHR4J9hSu42vVRFnTHIh9X2l316p441ZMH1o118TeLRcbkAVM > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,0134472247383142 ; 1,01133511520997 ; -0,986703492703779 ; 0,0131972247383142 ; 0,0136972247383142 ; -6,1 ; -2,6 ; 4,5 ; -1,5 ; -7 ; 4 ; -0,91 ; RUBEURJU2033 ; dAe0A122A18be4a8FFD6cf0493B5cAff5FdCAD9dCd9BE4F0D5C4B6feAa0baf24 ; < MjD53K3MjYalR9iXjTWSDDK8do4X0Hu3T90V1PQWBlK72r9AKo3YM4Oh73J6uaZ4 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,0134783473740113 ; 1,0136757776865 ; -0,986703492703779 ; 0,0132283473740113 ; 0,0137283473740113 ; -8,2 ; 1,8 ; 9,8 ; 1 ; -9,1 ; -7,6 ; 0,13 ; RUBEURSE2024 ; eAB9fde76f5f20C6E1FC5ffcf52bfEacCcbF914DCf22321CAd673c6aCEeFA5Bf ; < u377P2V2i7z42M8gIZEub6py3TDsE7Me487l8KX5Ke7Upxt05GMpv7XggK5nVy2X > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,0135124071578255 ; 1,01623733637671 ; -0,986703492703779 ; 0,0132624071578255 ; 0,0137624071578255 ; -9,2 ; -6,1 ; 5,7 ; -6,4 ; 1,4 ; 7,9 ; 0,16 ; RUBEURDE2033 ; efaa38De8f4bd4d1Ba0C9FBE07AbDDC7E3b6fCF3Fa4DEfBCBCeCf287fD8Dfaeb ; < T4rMaU5S1lQU7DK78AFfV1MUEz9mf0zp3H44f59T3P9zrWEA54zf63chP1RQ59lv > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,0135480747136362 ; 1,01891981193335 ; -0,986703492703779 ; 0,0132980747136362 ; 0,0137980747136362 ; -5,8 ; 1,3 ; 6,3 ; 7 ; 7,9 ; 5,1 ; -0,02 ; RUBEURJA2147 ; 7Bafd65aDcAC8F6D41DFECefB4DbBa67ACA6aaABaCAeCCCBfaed7C8FB1d05CbC ; < Qk4S7ik7uI1o7b1BAFSxqWYZqfA0cU9bkZk032DU714xaoR0fI522GIT53YTZGSw > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,0135877471869995 ; 1,02190348820859 ; -0,986703492703779 ; 0,0133377471869995 ; 0,0138377471869995 ; 5,3 ; -0,7 ; -3,2 ; 7,4 ; -8,1 ; 9 ; -0,46 ; RUBEURMA2137 ; EF6b4CD6AaCAf6213BCfd3CE9Ffda4A4dcCfadaDbEEF24D4cAcF5ADD68EBaee9 ; < mS3W61bVRKZfV8wH1kK8zui4cMih1mZx90nDafG6Ko3o0rv73l1AUp879ntT02TE > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,0136296378848299 ; 1,02505399208883 ; -0,986703492703779 ; 0,0133796378848299 ; 0,0138796378848299 ; -6,4 ; -8,1 ; -6,7 ; 5,9 ; -3,3 ; 9,2 ; -0,78 ; RUBEURMA2148 ; 0f9A3185EEF7f6D7DCFEa319443aA7Dcb0CcD25ecbd8f7cac8D2dEb0FBda9Fd7 ; < voJuA39Qz1A1Ag5613gYvR0B5iLHiiLXzrJJAYd63rT70E9D2hj9k6wW0ZfVY213 > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,0136744347080411 ; 1,02842305903349 ; -0,986703492703779 ; 0,0134244347080411 ; 0,0139244347080411 ; -8,4 ; -8,3 ; 0,2 ; 7,1 ; 9,3 ; 0,6 ; 0,12 ; RUBEURJU2145 ; bFdDB71fD78eDbdAacdAC4E27EDeD2DbA6fBD6CdFf1fD9daEDeFD4EdD2BbD6aA ; < 135DD5uGE3y5W84QGzn14l7M1XD9K5ytryh6FX41OyzNVvPxjVAzQ3SN25U19ur7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,0137219193246273 ; 1,03199426879019 ; -0,986703492703779 ; 0,0134719193246273 ; 0,0139719193246273 ; 7,9 ; 6,6 ; -5,9 ; 9,4 ; -5,1 ; -2,2 ; -0,82 ; RUBEURSE2188 ; ed4fE59DC2A51abff67AF5de347BDD0BBcdBdCBaBeDDf4B04ACB3d69FFB16BA1 ; < gGltiiN4zsIBa6MX0GbKFdmIyTdQ9RrsY9y6UL8KP6bz3Dh0hVwCU28Ai3xddsh4 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,0137735870544065 ; 1,03588008095335 ; -0,986703492703779 ; 0,0135235870544065 ; 0,0140235870544065 ; 2,2 ; 1,3 ; 3,7 ; -9,4 ; 1 ; -6,9 ; 0,13 ; RUBEURDE2157 ; C1BaacDb78F9CC789ECcEFbE1ee6CFDcC4b6E4cDC672CfBcDdfDEBeeb92DC7dC ; < 5y9jRK1BX81Bkc4HVK1l434p5e3oOGnj60O2mJscnWjf2rdeq5EoF4FtfLuFSFj4 > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,0138273621494039 ; 1,03992438325014 ; -0,986703492703779 ; 0,0135773621494039 ; 0,0140773621494039 ; 6,7 ; -7,2 ; 4,9 ; 9,6 ; 4,6 ; 5 ; -0,73 ; RUBEURJA2192 ; 8bAAb6D3b9656c5d3FeABbd265aCAEf2753F931Bdf9B9aDAb00EEdfFdD498EdD ; < ynQmk85aTuCkPFEC3marmrzvU9Ck4NF3ekW11i8cY6htI1mrc5TAV8104E6gVG0l > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,0138851486029677 ; 1,0442703706795 ; -0,986703492703779 ; 0,0136351486029677 ; 0,0141351486029677 ; 1,4 ; 1,9 ; 9,9 ; 4 ; 2,7 ; 4,2 ; -0,61 ; RUBEURMA2155 ; EFc1Fb943Cd8cB5769DFc40dCCE3AD2FEdBbdDE11cDf94EeFF465F15DfaEbdDF ; < T769B35nmiWFZ4uX21zG10NW9GjwXL98299F9aiJSS8T3G2fvNO0MD088evVe9bv > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0139448977957612 ; 1,04876397125162 ; -0,986703492703779 ; 0,0136948977957612 ; 0,0141948977957612 ; 5,9 ; -3,9 ; -3,2 ; 4,4 ; -8,2 ; -5,1 ; -0,51 ; RUBEURMA2177 ; DEef3Bd9f26CEE67DD4Cd4De8Be3eB8fbFEeaD8bBb2B2e4F0DEed51CdcfEFbc9 ; < SaMSJ85cm3jOgdPHLwIzaNsj33b904ZgZCau50u9eqf7GTjKZyMYcd3v2u9Z1D5q > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,0140087111398478 ; 1,05356322737693 ; -0,986703492703779 ; 0,0137587111398478 ; 0,0142587111398478 ; 4,4 ; -2,6 ; -9,7 ; 0,3 ; -9,7 ; 2,3 ; 0,52 ; RUBEURJU2189 ; FF61BAf95DEEB5e30EcBbbd458B0db3ca2affEA63D8Eb69Bf43D9C4cDbAEf2ea ; < Mua1KvrMstTVrF4z88K2CB25S01sv66HSJN052J7mu2rWokRVgre9Yp452fT5pnJ > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,0140747784172671 ; 1,05853199668961 ; -0,986703492703779 ; 0,0138247784172671 ; 0,0143247784172671 ; 7,5 ; 3,8 ; -2,1 ; -3,3 ; -6,2 ; -6,6 ; 0,58 ; RUBEURSE2129 ; 14944ACa7088701bE04A5c8ccfCfF10a91CDE8FC91DceDf3AAaEe0bF04BCEeab ; < R5FJJV313KcmuNU6138D9wPGjk64nyzfvRo1Lo1P536FcJWaIuosPcTwv6q1y2N5 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0141464647824408 ; 1,06392336478175 ; -0,986703492703779 ; 0,0138964647824408 ; 0,0143964647824408 ; -5,1 ; -7 ; -3,5 ; 4,8 ; 2,8 ; 7,5 ; 0,52 ; RUBEURDE2190 ; cAfed9aA90CBE47f5d0becAcdffbf2bCD5c7aDE57e8dDcffB64Df4aFcbd9a8Ab ; < 3SiD5sCOwzgP0AE6b4zQyE0gbLLm80weV6afuaFZsf8556y7k545dy752Xc7Y8cV > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00691368107470194 ; quote ; 0,00156527268623392 ; 0,00153396723250924 ; 0,0204081632653061 ; 8,1 ; 0,00149953123341209 ; 0,00163101413905574 ; -0,7 ; 4dBfde73FEfbE1Ba2BCcbe9f2Ccefc7d1A7da8b9Be22cE3ca69e4daFC3dacFf7 ; < nCSOAD1Sk0TQ2HRv4KxZl4IXt8BPAHc4ODxaf7fxqsibY8Du38WimMX9dfM22zqZ > > 1 // < CALLS 0,00760504918217214 ; quote ; 0,00173919187359325 ; 0,00170440803612139 ; 0,0204081632653061 ; -5,5 ; 0,00166614581490234 ; 0,00181223793228417 ; -5,3 ; ad4Ee1D5dD1ECdCcbf7e4fa3dF54D7BC4EFC7F86ddf57c9B7158cC1bC8D3C585 ; < omK651re5Sb5ZcM99Uw308iK8W826STyF2s8u8NN42XZ11lMGB75QyP4Se65yYDl > > 2 // < CALLS 0,00829641728964234 ; quote ; 0,00193243541510361 ; 0,00189378670680154 ; 0,0204081632653061 ; 1,4 ; 0,00185127312766926 ; 0,00201359770253796 ; 6,9 ; 55cE3EEDA12BEB2EEeD8B42aFAfA914bc3F9FF8add0fEe578F1ff4F26AEFfedC ; < hL5NsaaWBAc279kE2EzUU7pt71S4Ueeg2GgZp67gwh7j0c0DgdHX114e6WhSkKP4 > > 3 // < CALLS 0,00898778539711253 ; quote ; 0,00214715046122623 ; 0,0021042074520017 ; 0,0204081632653061 ; 6,6 ; 0,00205697014185473 ; 0,00223733078059773 ; -1 ; 0Ddb1A7cDEf22aBe6FCbeFecCCb9DCe5aAD30d4f1Aeb3E17D4c95fAbEB2c7b5E ; < e72QhBl470LrLu3git36DN23oq8DaFiSdy8R2017X6jfT3wX0i3UKk2OLw7rJ69a > > 4 // < CALLS 0,00967915350458272 ; quote ; 0,00238572273469581 ; 0,0023380082800019 ; 0,0204081632653061 ; -5,9 ; 0,00228552237983859 ; 0,00248592308955304 ; 7,2 ; fBECFec0ABaF9f6B828BEbD6CacB7DF6f0F136eeCAA00bd97cdDbfcAAfDCeafB ; < r4GcRXpkHtA31utW9i6I0zg9Y0ejOxM9K2i2Vo11yMJe41bHf7h3HuNfyND7liF8 > > 5 // < CALLS 0,0103705216120529 ; quote ; 0,0026508030385509 ; 0,00259778697777988 ; 0,0204081632653061 ; -7,1 ; 0,00253946931093176 ; 0,00276213676617003 ; -1,4 ; D0ECF2f9C4EE2d2AAdEa2f02bEE57bEdFce0c4F7FDBb0CEcAEA6AaD48d0ACcec ; < 05P56517ex3xQMQZJ7K2842GE5hd8s7cu9Amu70zDfV884V8BYc2u39Pgj9Lzn2B > > 6 // < CALLS 0,0110618897195231 ; quote ; 0,00294533670950099 ; 0,00288642997531097 ; 0,0204081632653061 ; 5,1 ; 0,00282163256770195 ; 0,00306904085130004 ; -6,1 ; B6b58ee2Ea3FbE8327A1FD9a6Fb6ECc8BEe45DDaFFCF4cEFa87A63ED74Fdf2cB ; < 6f2lcQwZ33857cxc3VXK1skaWqb2Y1o3G3S4882YbkAO67EYg3S56dndHdVv4P6E > > 7 // < CALLS 0,0117532578269933 ; quote ; 0,00327259634389 ; 0,0032071444170122 ; 0,0204081632653061 ; 7,8 ; 0,00313514729744662 ; 0,00341004539033338 ; -2,6 ; e3Cb32EEDBFF70eD1CEFBcaeFCfcfD8dC79EAAB991eC6afC04Eb7DcD1E1deDCB ; < 7qzg0If8dA1dNizf5Z4NJ4m77ruP4XxqNx61762Y6r45v0UzO353j1Q6woV3nzaq > > 8 // < CALLS 0,0124446259344635 ; quote ; 0,00363621815987778 ; 0,00356349379668022 ; 0,0204081632653061 ; 4,2 ; 0,00348349699716291 ; 0,00378893932259265 ; 8,4 ; FdC2FdC9A5CcADfF9e5dB2EeeaAd7BC0C7cC2cfaAfAcb05181abcb3EDFcFAbaC ; < 91f6ZVn708L0JUhn797lybX7YQTg54SSj44rWt3Kh0UNBtbgyc7Jmfq38EZCulX3 > > 9 // < CALLS 0,0131359940419337 ; quote ; 0,00404024239986419 ; 0,00395943755186691 ; 0,0204081632653061 ; -7,4 ; 0,0038705522190699 ; 0,00420993258065849 ; 2,8 ; Bfd2c11DAd77AfBcC4Cece97cbACCBc757fBEF660Db2c4cDB92cDabB6EeC7aAc ; < rPgXuwI4NR63jMeLsE6LSE1J24kFXKc1Y2ftK73DZi69wYeEDzoZj5Z2BZSz174x > > 10 // < CALLS 0,0138273621494039 ; quote ; 0,00448915822207133 ; 0,0043993750576299 ; 0,0204081632653061 ; 6 ; 0,00430061357674433 ; 0,00467770286739833 ; 5,3 ; 62Ce9CbfC9FfBEBF42edFeC0AF6715Db5E7b6DC1dB2FBbE9B6AC0AF6Fa1dDbAf ; < z0c2VcfxDC885B9xw1D84Jyj59kegkQH9w51E92TgK629ET6XJ7ASVPsr1BQ4ku6 > > 11 // < CALLS 0,0145187302568741 ; quote ; 0,00404024239986419 ; 0,00395943755186691 ; 0,0204081632653061 ; -0,4 ; 0,0038705522190699 ; 0,00420993258065849 ; -5,1 ; BBDBcfEAe3B9ccD9fecBFCBcFE5Bf9B6D8bd4caB703c61c8A57DCABF7ede2eAe ; < N3PUAZf66H9S74Z9120T5kJ2rVF82sw9QB89XkNIcBRRS30D0654cO1Q6hztqy8W > > 12 // < CALLS 0,0152100983643443 ; quote ; 0,00363621815987778 ; 0,00356349379668022 ; 0,0204081632653061 ; -8,5 ; 0,00348349699716291 ; 0,00378893932259265 ; 6,5 ; 2dfca3F1b1caCcb2BCCD2f9EFCCb6bddDbf4b06dF7808Aabcfe55d12CC83fCAd ; < C311p36I2GhZLALFnjHxzH8Z5tX3Vu0OHBGXE1w9836lk0nqKP2Hp5lE7aW485Mi > > 13 // < CALLS 0,0159014664718145 ; quote ; 0,00327259634389 ; 0,0032071444170122 ; 0,0204081632653061 ; -3,9 ; 0,00313514729744662 ; 0,00341004539033338 ; -9 ; ef9DfDFBcf7FE83aCd2dCdd0Fd2fF30b66dbC2AAcEb2eaADDD9ffcd3EDb71Caa ; < 06wIW8ly1bf59G8q3a8G94FX32I8Z3Rko0e1GN36DT3R7Q7YJyqpaT5cww9rt8N7 > > 14 // < CALLS 0,0165928345792847 ; quote ; 0,00294533670950099 ; 0,00288642997531097 ; 0,0204081632653061 ; -9,7 ; 0,00282163256770195 ; 0,00306904085130004 ; -0,1 ; A4ddCc4fef58BeDb9dAe26dbFfbe038cFd6D0C3a8BA0BcdEadACdFcDbA6ac66D ; < f6l326N1t39Zlx3VB2mD65gmJG0N95xX0CnT5Y9s8S78i2z5TDNd00ax62C6yD3K > > 15 // < CALLS 0,0172842026867549 ; quote ; 0,0026508030385509 ; 0,00259778697777988 ; 0,0204081632653061 ; -3,7 ; 0,00253946931093176 ; 0,00276213676617003 ; 5,3 ; fcd44BBC84De1BbFFCE5ACE3Dfea29C5eFAF5EaAF6cfA63B2bEfcD8CB5EdD30b ; < zuY963eEYiAUaD4QyCYJgh3BID1mIBPj32RkmpajAW550MA7Yg9gt4C9Jl4ffY5X > > 16 // < CALLS 0,0179755707942251 ; quote ; 0,00238572273469581 ; 0,0023380082800019 ; 0,0204081632653061 ; -8 ; 0,00228552237983859 ; 0,00248592308955304 ; 8,2 ; EB4A89ce8beBbd4E2C5877c6dfBEe1A0417cbEe2bfd7dED21C4df3b6D6FD5AB8 ; < W6QtBjEkn149z0uPAcViRqc58997UV9x18G6A0KAr3h30S84w5NSZY23TJ23j1jb > > 17 // < CALLS 0,0186669389016953 ; quote ; 0,00214715046122623 ; 0,0021042074520017 ; 0,0204081632653061 ; 1,1 ; 0,00205697014185473 ; 0,00223733078059773 ; 8,8 ; Ebf2F979CdAbdb1384A54Dccaef8d6B9d7fe5BBAdbDBa9e9D27Ffb2cCCf2bbDD ; < GzKd3abS20dL5BS7RR17lebB3VDqLZeE9G7S7L4jR2FK5WgM3O298fu5TV28e8y5 > > 18 // < CALLS 0,0193583070091654 ; quote ; 0,00193243541510361 ; 0,00189378670680154 ; 0,0204081632653061 ; 0,4 ; 0,00185127312766926 ; 0,00201359770253796 ; 8,9 ; CeCc8AEDEdbB7acAaFAFEF22F17ae8aaCEF1d9C81D7C3bE9BaeDdcfcbcfeB05A ; < Pyn7ES9sGMP39g66WXQ9Yd69YpaUo1Q2DOxrXUzBtwUgP9eddhVhCVY5v3z1AtIi > > 19 // < CALLS 0,0200496751166356 ; quote ; 0,00173919187359325 ; 0,00170440803612139 ; 0,0204081632653061 ; -6,7 ; 0,00166614581490234 ; 0,00181223793228417 ; 6,7 ; 0cfD8690C2dEACaBe13Fdcccc32de92cbE085DAdbCAFac67c6CB3324483e01B0 ; < Phft874bFLE3rT0LAU2tH00TI987qYXA8I5y4nD6iJiaugqla2MxSE0k4QMqKcZs > > 20 // < CALLS 0,0207410432241058 ; quote ; 0,00156527268623392 ; 0,00153396723250924 ; 0,0204081632653061 ; -0,6 ; 0,00149953123341209 ; 0,00163101413905574 ; 7,1 ; 6e8DB8bDe7FEcEa14A52aCdeebcBF0Db2b190bcD6BaB3cEFe9ed68DBbf6D7ccC ; < x35fyXWdh8OswVa2oTTgP27k0y2ECqgJg49a6Z3lva51jDp3eBITfH3052iJyJqr > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00691368107470194 ; quote ; 0,00156527268623392 ; 0,00153396723250924 ; 0,0204081632653061 ; -0,4 ; 0,00149953123341209 ; 0,00163101413905574 ; -3,1 ; AF8FD37bE5eBaaC3fAfD73F92A1d8aBda29aC7F6A1dEDcd6318faAc1AB38452d ; < 4iSachU495gtpUxsYiaXGw94QtrswJscnB93E0t7O12l9299Gt94L9v1OiL4R04A > > 1 // < PUTS 0,00760504918217214 ; quote ; 0,00173919187359325 ; 0,00170440803612139 ; 0,0204081632653061 ; 5,1 ; 0,00166614581490234 ; 0,00181223793228417 ; 0,1 ; 081Ce4aADbBAEbBDddFaaad4cbD6d13cdC04bBc3a789AE99A9B0EF4Af5C2BEf4 ; < 4X3FW6siAU73b1FS66wWZh8e3xxD90ATHdwBx2RpspKK2j6PVV7t0uLbbiuqa0Ep > > 2 // < PUTS 0,00829641728964234 ; quote ; 0,00193243541510361 ; 0,00189378670680154 ; 0,0204081632653061 ; 0,9 ; 0,00185127312766926 ; 0,00201359770253796 ; 3,6 ; Fca8aB96cdb4EbF6bb1b0d0DeBe9eAA122CD0deCfAcEef7E462bdEFbcfc4CD1A ; < 544yWtKdVmF25979ZNy4hbZ301N33nTvY8806M2Ig17Q45YZBvp276gP63sT5ie3 > > 3 // < PUTS 0,00898778539711253 ; quote ; 0,00214715046122623 ; 0,0021042074520017 ; 0,0204081632653061 ; 6,3 ; 0,00205697014185473 ; 0,00223733078059773 ; -2,8 ; bc8b68bd66F7CBfAEeFb6A0EcC2AB6Db4250b0E16cfCbAdfb6bfAdcDd93adBfe ; < 0ws5kC9OBf9aM7Wx8234eMZ4zeoeEcr9ZCRmxn2631tgjQUy2q5s92E3Z61zT729 > > 4 // < PUTS 0,00967915350458272 ; quote ; 0,00238572273469581 ; 0,0023380082800019 ; 0,0204081632653061 ; 9,5 ; 0,00228552237983859 ; 0,00248592308955304 ; 2,1 ; Afff0E8Bcf4aDAEc855fdABEcBf7F5efcbea0Df2e6c2fBfBBc9Cb302a4BAAE83 ; < AahqeuLGP15sHl8lp2kvAjsH1NQAxQ9soE73Abo19DXHoe7nJ4d5xu6Ty1v9bstv > > 5 // < PUTS 0,0103705216120529 ; quote ; 0,0026508030385509 ; 0,00259778697777988 ; 0,0204081632653061 ; 3,5 ; 0,00253946931093176 ; 0,00276213676617003 ; 8,3 ; 65bbf70DDDeeA264aDeb4FdE0E17eCDcdFCDEB7bb6eEa9D04aCF6a8E4EF3ee73 ; < K3FerY0M50vZ9WVc6PC7Li8u0lI2qagfxCeGp2w9CkO51hxr3Gb094465QQj7541 > > 6 // < PUTS 0,0110618897195231 ; quote ; 0,00294533670950099 ; 0,00288642997531097 ; 0,0204081632653061 ; -3,4 ; 0,00282163256770195 ; 0,00306904085130004 ; 4 ; 1ba0BbB474AFF88831cd1dEfdde84dcecf3fBCBaeA035ECD3B3edfCaC0Ead88C ; < X16lxU3buff6v6FI9P9bv62C5AfDWI9hCCyN23TxM86m1XGsG4fG1nh0wGUNo4wm > > 7 // < PUTS 0,0117532578269933 ; quote ; 0,00327259634389 ; 0,0032071444170122 ; 0,0204081632653061 ; 8,7 ; 0,00313514729744662 ; 0,00341004539033338 ; -9,8 ; dfd31FFE4AE8a9d2bfe9Ab0B1Ad55004cfDF7ea80Cabbed2E6E0C43CCB2DAacb ; < C88N5X086h6m7cuY1MQKnq6710rKcw6fn7rmVIkK56HVtjRg84Vmt897upFkvUsL > > 8 // < PUTS 0,0124446259344635 ; quote ; 0,00363621815987778 ; 0,00356349379668022 ; 0,0204081632653061 ; 7,7 ; 0,00348349699716291 ; 0,00378893932259265 ; -6,5 ; D1daE255c1ECAf6cBE6a7eDf79cB3ECf6BB246A6ded2C8a3Ba9BAfAaAAb46daa ; < Y22e2L577i090csGoE269K629e383dkF9dp9J7lx73P3tJ7k9J1MDrJ45Wqm8vPo > > 9 // < PUTS 0,0131359940419337 ; quote ; 0,00404024239986419 ; 0,00395943755186691 ; 0,0204081632653061 ; -0,3 ; 0,0038705522190699 ; 0,00420993258065849 ; -7,7 ; ADF6eC5523BF9bcEBE9EC5cFFcB9E1Eb5a0Ef7CEedbfecC9D4F92Baf1F2eaAC2 ; < 49YIfWil38LlDE9805n0T8n18nV4QXZ808D3svgjfZcjDW8m6LK3rnz0m5IiIi3e > > 10 // < PUTS 0,0138273621494039 ; quote ; 0,00448915822207133 ; 0,0043993750576299 ; 0,0204081632653061 ; 7,2 ; 0,00430061357674433 ; 0,00467770286739833 ; -7,9 ; d85ddF018cFc69b8d9ea1fc13adbFd2Dca3EBabD4aD1eDdDaBCaC3A56a2FEe4f ; < mK7o9MFKq8gXL8U0UJ0U6M19OHcFFgyrR96GWa8w2u42J2X09hUMYSwmoh6IDovf > > 11 // < PUTS 0,0145187302568741 ; quote ; 0,00404024239986419 ; 0,00395943755186691 ; 0,0204081632653061 ; -3,2 ; 0,0038705522190699 ; 0,00420993258065849 ; -7,9 ; 4ec5849baC4A0cD759D2BF1dED6512390cAB238eEBdDE5b9b88F0ae5E79Ae8C1 ; < 588ex93tRdm0m6sTy2PA4dK5lWr8vpgM1XG5PNZR2YjYam4JTE0OgKYLkxLh325k > > 12 // < PUTS 0,0152100983643443 ; quote ; 0,00363621815987778 ; 0,00356349379668022 ; 0,0204081632653061 ; 3,5 ; 0,00348349699716291 ; 0,00378893932259265 ; 1,9 ; e2F4D36BD9deF08B1Dc51f855c78cAFe2cFCB4CBEeBEB9C51104B6fDE3Bb72B5 ; < 12s1bpkVETe05ZC012W84U8819Av8YV536oHjqfV4o2TpBjuHytSvuicArx3D9vu > > 13 // < PUTS 0,0159014664718145 ; quote ; 0,00327259634389 ; 0,0032071444170122 ; 0,0204081632653061 ; 4,7 ; 0,00313514729744662 ; 0,00341004539033338 ; -1,7 ; ee0c7A269dE6FFCA2CBdAca76cFCE8B1DCddbEFEefA03cFeB02FDabE83ddfA98 ; < v8h5R63qcGGRQ09e2t8fTXg75h3344Y2fbqh0f2HQ7kvk9I3tOlWQzTkGOqxQjOY > > 14 // < PUTS 0,0165928345792847 ; quote ; 0,00294533670950099 ; 0,00288642997531097 ; 0,0204081632653061 ; 3,4 ; 0,00282163256770195 ; 0,00306904085130004 ; -5,1 ; 50eb7ADCC573fBdFdcecBc8ab4c0dDCEdB7d0F5d1F2De9D23BE619A9b8Cbbab8 ; < J3NHxF60x3XY2BhCp5LWOOTGs9j26DxZcaFEvT91pA5XEqWl4Xk9xP6Jh5S5o98V > > 15 // < PUTS 0,0172842026867549 ; quote ; 0,0026508030385509 ; 0,00259778697777988 ; 0,0204081632653061 ; 1,3 ; 0,00253946931093176 ; 0,00276213676617003 ; -8,7 ; fECeFf3021Bdc5BEa4A035D3DA9DaDabFFCebaEaE20dEF5FBf23AFcbABC19a26 ; < mbE7uZI197hWQ5B4xron8uo8sPWfnob7q6OlhzqhjIsw95sU08P0749Jzy4uwab6 > > 16 // < PUTS 0,0179755707942251 ; quote ; 0,00238572273469581 ; 0,0023380082800019 ; 0,0204081632653061 ; 7,5 ; 0,00228552237983859 ; 0,00248592308955304 ; 3,3 ; 1c3FFfb5EcD0E481A6Adb50f61A3dd11EC47eCCEAA77C2fBa2bAaacFaE6FBe3f ; < e84em11vLwQDa5fBL1avUQ70NO3XZx982c1ObL8e4SFRInLGT0XMmR32Rfu818j5 > > 17 // < PUTS 0,0186669389016953 ; quote ; 0,00214715046122623 ; 0,0021042074520017 ; 0,0204081632653061 ; 5,2 ; 0,00205697014185473 ; 0,00223733078059773 ; 0,6 ; 0CFe8dbdFBEB6bcbf4f02BcABFb3F5E1aeEEecceC1C5C42bffdEeAE811bc4Cfb ; < s90K9t44204Zmn6Ai42LRtJgT7qi4S37MywEGO58BL5U0cvHgcxhgLz755yE3u4D > > 18 // < PUTS 0,0193583070091654 ; quote ; 0,00193243541510361 ; 0,00189378670680154 ; 0,0204081632653061 ; -7,7 ; 0,00185127312766926 ; 0,00201359770253796 ; -3,5 ; 7A5fF3DdCeEab83EBFbaf4abaF8DDcc7Ae8FbCdD3FeA8cDEdFBCbE8b109CaE4E ; < 9N22aAH8pDY4a659oiLjyO8AnL6Om6TqMPOsfIhc11d3dDi0CZ60X1He0tVgrBwa > > 19 // < PUTS 0,0200496751166356 ; quote ; 0,00173919187359325 ; 0,00170440803612139 ; 0,0204081632653061 ; -9,8 ; 0,00166614581490234 ; 0,00181223793228417 ; 2,6 ; FD5FF93CCAe1AFc25DBcaDbAab3d2d5d9FAfdACf09e16D2bd8791ACd46CFbEd2 ; < 7MC06Sr99eK87cBSe1iV964Z2Moy3e359c33p72Y0Q8h2mZVm957Ec0GY5yX81Bd > > 20 // < PUTS 0,0207410432241058 ; quote ; 0,00156527268623392 ; 0,00153396723250924 ; 0,0204081632653061 ; -6,1 ; 0,00149953123341209 ; 0,00163101413905574 ; 8,6 ; 4d7d5dEe5f7CAf6EaCDCDbB0Ba2C221e9566fAec5EB5A4e726E6fedacAeECCd4 ; < 4hq4AeTLodUO04xTO00N2A8DQ54mda67a4714E41N8Wt4t10C9BEJn4u3G0VioU6 > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,500444645932081 ; quote ; 0,00770252414984179 ; 0,00754847366684495 ; 0,0204081632653061 ; -2,7 ; 0,00750996104609574 ; 0,00789508725358783 ; -9,3 ; d5Ffb7ea899bCCB7bFDe26cdaD5ADe2Eaf13B8aBbeFFEaBa7CbD4ecC3eEf76fE ; < B6Jk9454fe5QjknsPYpynlRuuX373ZVY4yN9aPFcq0fS92g9ispZOD0Tg453D967 > > 1 // < CALLS 0,550489110525289 ; quote ; 0,00855836016649088 ; 0,00838719296316107 ; 0,0204081632653061 ; 1,4 ; 0,00834440116232861 ; 0,00877231917065316 ; -9 ; fd590f0391d0A4EF4cD0efC0E3Dd1E4dDCc1446d4d4D7dAdEdCcBcd1Cfe69eDd ; < 3kYbr0Kdr7Z9ovoUixhrCuFf611526LOd7ZiWzHA0G41lLzJ03mXM6OI7Gv4BUU0 > > 2 // < CALLS 0,600533575118497 ; quote ; 0,00950928907387876 ; 0,00931910329240118 ; 0,0204081632653061 ; 1,1 ; 0,00927155684703179 ; 0,00974702130072572 ; -7,3 ; CdBDF5ef5BBeB42a4a8d5b959fBE43dBEbABcb2ddaef5aa539DfAcAEd8fc1BdE ; < 2tOtI6507RcMcD9fDqF3ZNPDkNJfa95kE8Mn33JbObNc7v0BWsQ06WyBAaY19GYG > > 3 // < CALLS 0,650578039711705 ; quote ; 0,0105658767487542 ; 0,0103545592137791 ; 0,0204081632653061 ; 7 ; 0,0103017298300353 ; 0,010830023667473 ; 0,7 ; 7dBBf7B5daC62B9cbE4692D8ffFaECDfe7EE5068b1eB6FcAc3c8b2c39F46b17f ; < CBz9tiVYFmCH3q649Wja59Ctt6ND3pv19W4EkWt8ABTAN4eKEah64821XKH5Rni1 > > 4 // < CALLS 0,700622504304913 ; quote ; 0,0117398630541713 ; 0,0115050657930879 ; 0,0204081632653061 ; 2,3 ; 0,011446366477817 ; 0,0120333596305256 ; -7,1 ; deb80CB261dcF6afCaCA69fbaFeaE935fBdE7cD4Fbc0aCcAFd7eCeb2CE7adfAa ; < cQGm0xB8o999AI1Yr636994K10K4MAfrFouCT676zaS94P16437k2CP1Q46HKBmu > > 5 // < CALLS 0,750666968898121 ; quote ; 0,0130442922824126 ; 0,0127834064367643 ; 0,0204081632653061 ; -5,7 ; 0,0127181849753523 ; 0,0133703995894729 ; -0,3 ; a78FCEa5BEEDEdd8ff5Db9F34d0b60f8fa7d6C698BbA39BBCf8D55bA1Ddee6C2 ; < V4Nez2eKAcQ5Tjv2yrF2t3LVBUlWhBx00n510p4tJ6uhX89E9xep8kdu5uxq8xf6 > > 6 // < CALLS 0,800711433491329 ; quote ; 0,0144936580915695 ; 0,0142037849297381 ; 0,0204081632653061 ; 4,5 ; 0,0141313166392802 ; 0,0148559995438587 ; -3,1 ; cfB012F914eAcdB98dF3b5Ffce4f00dce3DDB3F0dFFA1dF02BE9Fdd8fd6DEd35 ; < qkmBXpPIcM34wqgFaXKg4FTgCnDj420ZRiPO6Gmgna2HJ0m6ZE8zJ3r5p4x52jGu > > 7 // < CALLS 0,850755898084537 ; quote ; 0,0161040645461884 ; 0,0157819832552646 ; 0,0204081632653061 ; -1,6 ; 0,0157014629325337 ; 0,0165066661598431 ; 5,9 ; 8BAFf5DE5edF5E5a5b2c7feBBEaA1cEfF418bc9d649adb3ED4DBc695fDe1a020 ; < 98q3njf65IIL26dtveKw2dk7SvBm9ws5s5989cf1OQH1003892DSmN7s6Ib97QdR > > 8 // < CALLS 0,900800362677746 ; quote ; 0,0178934050513204 ; 0,017535536950294 ; 0,0204081632653061 ; 4,5 ; 0,0174460699250374 ; 0,0183407401776034 ; 4,4 ; CFACf145Dbd1D7A0f1c93f0eD8aF8cdC6F2Fe5Bc939b2b2646E46c6df3DCF382 ; < V5a9ujfhpJjMlgSacpOkpXC30U0Gv8M24h930B3nT18MB9CaCKSTRbC0zyJGmNAE > > 9 // < CALLS 0,950844827270954 ; quote ; 0,0198815611681338 ; 0,0194839299447711 ; 0,0204081632653061 ; -0,1 ; 0,0193845221389304 ; 0,0203786001973371 ; -0,6 ; E6Ffca6CADfBCBBB79cDBCcacDfDEE394EFB87BEBD3FcBC97C1fC860aeDEF27C ; < rFmeVC9k5QqUI99KJZs8pV9W60iLDJk84vdXi8ZT9m2bAA3MkROOJhB092KHDGc8 > > 10 // < CALLS 1,00088929186416 ; quote ; 0,0220906235201486 ; 0,0216488110497457 ; 0,0204081632653061 ; 7,4 ; 0,0215383579321449 ; 0,0226428891081524 ; 7 ; ca1eaCB1cccaC57fDbaeAb43522B32653DCa0CCdAcBD9dBbCaD4b7aba7F7ba6e ; < huCGNk8v4CZ8Ev9eCL3I8AQM4IQeiLgAiWox3enCDcGKLCbDarugdzQ3i1297ED2 > > 11 // < CALLS 1,05093375645737 ; quote ; 0,0198815611681338 ; 0,0194839299447711 ; 0,0204081632653061 ; 6,4 ; 0,0193845221389304 ; 0,0203786001973371 ; 4,9 ; 33aBc4C27FcF1A9Ace7c1CCb118afc2C6C649C0d8e6e1Cc0fe39bbDB3fBbffe0 ; < hliBvpWr1ZGE0T6X0S4cvy49A7rzs05Y0Yym4O8ny890vpvFI09BXK54590LL5t1 > > 12 // < CALLS 1,10097822105058 ; quote ; 0,0178934050513204 ; 0,017535536950294 ; 0,0204081632653061 ; 3,8 ; 0,0174460699250374 ; 0,0183407401776034 ; 9,1 ; b5bDCa4DEfba3eaE52BE0e8dc31Eb9EA4D2dfe6e1C2a4Ec17aFaBFbCa21eba04 ; < 9kr6Ru8xC9VYZP7E5IZJJOl7y5Cs8uQToKJ8P6sIIfoc3UBAPPj22870P9ANy9QM > > 13 // < CALLS 1,15102268564379 ; quote ; 0,0161040645461884 ; 0,0157819832552646 ; 0,0204081632653061 ; -2,6 ; 0,0157014629325337 ; 0,0165066661598431 ; 3,8 ; f72B04C497BCA2A73f06fEfBfdFF4E8E18bb1cBFFA1c41BEFE2824F8c6cEabC6 ; < Dgp8QipHD317bmoOm3RKmOf7Zu7jOTs9aCD7ijYe16S6vtX7Qn47C62iNBOE58NA > > 14 // < CALLS 1,20106715023699 ; quote ; 0,0144936580915695 ; 0,0142037849297381 ; 0,0204081632653061 ; -3,3 ; 0,0141313166392802 ; 0,0148559995438587 ; 0,7 ; a1F3E3f0EdFC0f5eDEbCF5CfAB0cABd85A876DDACDbb2adE3ac53Ca56c06f40f ; < 91d22hZc0MYRxbv5HQ63UjN2T4zo2sLxmF2Y4d856P5CG016tEd58sRQtA6L85gb > > 15 // < CALLS 1,2511116148302 ; quote ; 0,0130442922824126 ; 0,0127834064367643 ; 0,0204081632653061 ; -4,8 ; 0,0127181849753523 ; 0,0133703995894729 ; -4,4 ; 4bFf38aEceBBDd3AFFF5A1c0c9bdBdEcBF3ff5FCea7116f0A7FDeBdC7fADebB9 ; < 1vR430033STlo4dY60WH0D5KZizU55jF4G0taJ8HAoVTEUdZspjizCvw511oOoMW > > 16 // < CALLS 1,30115607942341 ; quote ; 0,0117398630541713 ; 0,0115050657930879 ; 0,0204081632653061 ; -9,5 ; 0,011446366477817 ; 0,0120333596305256 ; -8,7 ; cAe2ade6a9aad8B7C34CaDcfc67e4cEde3b2A1caCCbAc3CECCfbF0BD8FBAFd5B ; < mNra8V6nCnERPTAVCfNFHvS549e8y7U14iJawga7H8M15c4srZh6w2i6y4jyBUex > > 17 // < CALLS 1,35120054401662 ; quote ; 0,0105658767487542 ; 0,0103545592137791 ; 0,0204081632653061 ; -9,1 ; 0,0103017298300353 ; 0,010830023667473 ; 8,3 ; d2EbabfCddCbdAE49Eb4f0BDAFBEB06F7fd3EDD460DEDedDDb9CDFBbDf4eD4fc ; < 2WW8m49VCTs4Z0smvARj7v072UaJ2cDeHkj5Rbj3kvurGtop6xA4vUvLWxtpuO8Y > > 18 // < CALLS 1,40124500860983 ; quote ; 0,00950928907387876 ; 0,00931910329240118 ; 0,0204081632653061 ; 5,5 ; 0,00927155684703179 ; 0,00974702130072572 ; 2,9 ; dfaEca96dCE9BaCaafecC7E9faFbEbBcdC9deABfbf1ca3Ccd6fF17EE123AfFEC ; < ug15oF8V57s5219DuCd9dge5rTixZvrd53V4g862hla0P0i0Tt3Sv0QjzbJD3Yiz > > 19 // < CALLS 1,45128947320303 ; quote ; 0,00855836016649088 ; 0,00838719296316107 ; 0,0204081632653061 ; -0,8 ; 0,00834440116232861 ; 0,00877231917065316 ; -3,7 ; fDBE3Ae75F7b58CB3Ec9EffD6d9bCFBbdfaAeFaA4b052d7aBBFfDb8b1edC4c59 ; < N13u9Cve8s2R186Ve9W0Z9P5fiyWJuumF5rESjh0x227OJSEaSt38E2k9mVA1lZ0 > > 20 // < CALLS 1,50133393779624 ; quote ; 0,00770252414984179 ; 0,00754847366684495 ; 0,0204081632653061 ; 6,7 ; 0,00750996104609574 ; 0,00789508725358783 ; -6,9 ; 4A2BF5c2eE3ace6cf3b1E2a40dC0FfbB7FDA4e6Ee2174cE8eF10b64fcb4bF473 ; < LKLPZ56j7lXFtSXBG44208gZ9o31imt6e5trDHMDVc03B8iZIT3UxN063orno0hg > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,500444645932081 ; quote ; 0,00770252414984179 ; 0,00754847366684495 ; 0,0204081632653061 ; -8 ; 0,00750996104609574 ; 0,00789508725358783 ; 0,5 ; dFbA3cdE3e9b3BAB43dFaabBdAEEE6C5Ce31c55CCf1c2EBAC74d947bbdF24E0e ; < 24Bhl6hyXwI54gYb5DGpjvcKI5a4xcyZ7m9KHx0DuQGAsCS3sbMS8NWIAOd2925q > > 1 // < PUTS 0,550489110525289 ; quote ; 0,00855836016649088 ; 0,00838719296316107 ; 0,0204081632653061 ; 8,3 ; 0,00834440116232861 ; 0,00877231917065316 ; 4,2 ; 9A1D4ed6BFd3e1fdf4d4aFFcAccEadBfEa61EDcBcb8E4fe62dBbFEbEFddFcabC ; < mmnCViT74kEAR4y9GTI3xvGi3b8Hk9065B863Q1ej94UGU497l7b8kZxBM9KO7Pt > > 2 // < PUTS 0,600533575118497 ; quote ; 0,00950928907387876 ; 0,00931910329240118 ; 0,0204081632653061 ; -9,9 ; 0,00927155684703179 ; 0,00974702130072572 ; -9,7 ; D79EA2275BFE6A6A5Cda7E009f0Cd4AaBbEc54b1eabbfD0D12EAEcFeCEBBE1a0 ; < w70v4CfICqomw8wr1Hjl3Q2D1qrhH2O5Q04et57sG8JZQjm2dJ5N43Ik4tP15S2U > > 3 // < PUTS 0,650578039711705 ; quote ; 0,0105658767487542 ; 0,0103545592137791 ; 0,0204081632653061 ; 4,5 ; 0,0103017298300353 ; 0,010830023667473 ; 7,8 ; 00b1fAb9Bf7EdfF75ceecfEABdDFadF5dAE3CaafCBC5A73c350ABffEBBF1ca3e ; < Xal0MytGS29m3JM89kF33NwBruV0OZ7a0Jz318xBfFO6KNPJ354BW4eT24O6r8TD > > 4 // < PUTS 0,700622504304913 ; quote ; 0,0117398630541713 ; 0,0115050657930879 ; 0,0204081632653061 ; -0,8 ; 0,011446366477817 ; 0,0120333596305256 ; -1,1 ; 2cAC6a07A6EDBB7b64ADafbb0cEeEb0a6F5bEaAfa3dfA0C3CDd9bACeEBa3B1aa ; < V0y5eD079S6ak3dQfh6cXBKv28l0p1Ezef51MLwKZ9L9zVi6oM5NnhCrZMr1xRL5 > > 5 // < PUTS 0,750666968898121 ; quote ; 0,0130442922824126 ; 0,0127834064367643 ; 0,0204081632653061 ; 9 ; 0,0127181849753523 ; 0,0133703995894729 ; -0,6 ; a4dc01cf8f4C11DBbE0BFeCCBDBbD7AdBFb5aCE3b4C6f9EE4a5Eb9AAbAd634d9 ; < Ex35h4WZxK8cEz4kxtVeF3gXRums4tKAEyu40Z0Fnl5JX2P29DQp3653U39i1Rp8 > > 6 // < PUTS 0,800711433491329 ; quote ; 0,0144936580915695 ; 0,0142037849297381 ; 0,0204081632653061 ; 2,6 ; 0,0141313166392802 ; 0,0148559995438587 ; 6,5 ; b93D9F7deEeFBdcEdfA1Aaf001f55f3Ca3fb1ebc9AE6EAe99aeF846b70e23FaE ; < 28yxW1eM7tmk3tlD0lg18Gh8A1CF77C5J45z7gkrYPisW2U78hNzdq88HdM2l169 > > 7 // < PUTS 0,850755898084537 ; quote ; 0,0161040645461884 ; 0,0157819832552646 ; 0,0204081632653061 ; -3 ; 0,0157014629325337 ; 0,0165066661598431 ; -9,9 ; 5dACc05fE80b83b8f9Bfcdafda1a9CF17Dfed0AdaddfF8aAAD33C094bAEb5fDC ; < vsTHbjPCq0AL09306AQ3UhU6GTcG41oaPvk4wppaPXVx1S0xxktNdm4MUV92w998 > > 8 // < PUTS 0,900800362677746 ; quote ; 0,0178934050513204 ; 0,017535536950294 ; 0,0204081632653061 ; 8,4 ; 0,0174460699250374 ; 0,0183407401776034 ; -6,2 ; 4eBBCf1CBAcD6cc0AA83CFcdafDFfa9D7BDBcd06c5b2DEcc1CCaEfc7CbFCd2C1 ; < 1m1EduhX64IzE2Js8CegZdQ730kJzzgC7tgSpcPy1P9C5nCUoLQHYoMMdf0gCsxr > > 9 // < PUTS 0,950844827270954 ; quote ; 0,0198815611681338 ; 0,0194839299447711 ; 0,0204081632653061 ; -7,1 ; 0,0193845221389304 ; 0,0203786001973371 ; -4,3 ; B06D0fbCCd56cc6F8Af87eE6cFBb1F13CbFaF7AaDDC7eDb69ceaAba2bCaedfdC ; < S52602PCe5VMWZ938QqDUh0DHOQ2X3T08zr2S53p0Hp938sr1e7iRVA6K38bo2H7 > > 10 // < PUTS 1,00088929186416 ; quote ; 0,0220906235201486 ; 0,0216488110497457 ; 0,0204081632653061 ; -5,8 ; 0,0215383579321449 ; 0,0226428891081524 ; -0,5 ; f4cefCEda3c975d8eBfDb4c72Ec1DAADd4fFeCF3da5E2caABFfa17857A8ebAbb ; < V566KKsBQ0yvO3jQJg5dSEpwc9Xd0evbEP9W1qLT0t38GaJehZQtjabVf4MOrJek > > 11 // < PUTS 1,05093375645737 ; quote ; 0,0198815611681338 ; 0,0194839299447711 ; 0,0204081632653061 ; -3,7 ; 0,0193845221389304 ; 0,0203786001973371 ; 0,2 ; FEfccBbba750affbC7A7d643Dd9AF3CadcbDFBAf2E9c5Ae4faB7A708AE21ec1A ; < W81b5Jd8qq4n0eT2Ho9EzT2CB1y9L3U13n814jbx8T9312466ZupeND2NFB7n1s1 > > 12 // < PUTS 1,10097822105058 ; quote ; 0,0178934050513204 ; 0,017535536950294 ; 0,0204081632653061 ; -5,3 ; 0,0174460699250374 ; 0,0183407401776034 ; -4,2 ; faaAB07AfDca19ccaC65df3Ea6E7cdDBEfBAf91Ced5CfAE8E1D8bea2a04aaCbA ; < AycAzTTXm1VeXFh6RNx6OWYYO3M8R8HDyC4206RgdO5M9hzpsg9vuUlAe0rIM2fD > > 13 // < PUTS 1,15102268564379 ; quote ; 0,0161040645461884 ; 0,0157819832552646 ; 0,0204081632653061 ; -8,9 ; 0,0157014629325337 ; 0,0165066661598431 ; -0,9 ; ff8cDbfc4fb66d4D3bad1ccABc91FecdAa0338F88AbAaEfa5bDfCeFC68c7B00a ; < QvppNMmkase7MSy1Rm19234xXQyZwsgNoIx9P6bv3LAvLR3Htch59pKKIQEj2kTR > > 14 // < PUTS 1,20106715023699 ; quote ; 0,0144936580915695 ; 0,0142037849297381 ; 0,0204081632653061 ; 6,3 ; 0,0141313166392802 ; 0,0148559995438587 ; -4,5 ; bacEBBb5B268F1FefDca3CdabaEeB3c03FbA32dee25Dae9DcF5EC2f4FAb82DDC ; < p37aSLIp9BhAEbd2I84x92n8fejHd8Ej7UH16HU5X7dG91wHrh30k30w2T281Q6S > > 15 // < PUTS 1,2511116148302 ; quote ; 0,0130442922824126 ; 0,0127834064367643 ; 0,0204081632653061 ; -9,1 ; 0,0127181849753523 ; 0,0133703995894729 ; -4,3 ; ACCa47BAFF7FDD2bfAe8bf4de9A572AAcADbFDFd23c6cd9306cfeaebAFa7CC9f ; < oPJ1l0vYS70k14IcBzcD301eM4la98I8p5YZ66PcMPNp0yCverc3Yz762hUuhzJ3 > > 16 // < PUTS 1,30115607942341 ; quote ; 0,0117398630541713 ; 0,0115050657930879 ; 0,0204081632653061 ; 9,4 ; 0,011446366477817 ; 0,0120333596305256 ; -8,5 ; EAd9ea5ebCeF6C0f78e19a9fc3Aa8fdcbEaDA8EF5FeeeabcFDdCAaCCE5edCECa ; < 7EuEN8BNf9z7u0rFKqzxmN13Patl96X75nhAde42c0gC6zLUoM95bQp8QE80XvGc > > 17 // < PUTS 1,35120054401662 ; quote ; 0,0105658767487542 ; 0,0103545592137791 ; 0,0204081632653061 ; 6,1 ; 0,0103017298300353 ; 0,010830023667473 ; -7,4 ; AE7aBabDA8cb5DAeAE25bCD9A1EcCCdDBc3BAEd5AfeA0eFD8dC6e5DFe4a33Bb4 ; < zSi47C7rW22p30X1WOb2N06XR73807339RVVZ9wzXWs4e1291rDq9tC54aw2et2b > > 18 // < PUTS 1,40124500860983 ; quote ; 0,00950928907387876 ; 0,00931910329240118 ; 0,0204081632653061 ; -0,6 ; 0,00927155684703179 ; 0,00974702130072572 ; -3,6 ; e9DdDa7Ca57BF2fdECDC81ABF2D69300BBFf8Eadd6bCB8CfDeAc9acfe9640405 ; < 1V14WD41zn9JGp3NdsPMac8q9T8DTx695Nv59F4IoeH7t6q5vh7b34Jj4z0MHNg9 > > 19 // < PUTS 1,45128947320303 ; quote ; 0,00855836016649088 ; 0,00838719296316107 ; 0,0204081632653061 ; -2,7 ; 0,00834440116232861 ; 0,00877231917065316 ; -8,8 ; 4EeFAB2bA0E7dEeFCEB6dddfC7AFCf8eF8C0211ef7fA769b13147Fc1CA0f1CF8 ; < qh3LaYRy04Z0pZxfwfXIk2MH87o77Nlr0T5jb5fmNe76Zea945bxZG9x1PImF1l2 > > 20 // < PUTS 1,50133393779624 ; quote ; 0,00770252414984179 ; 0,00754847366684495 ; 0,0204081632653061 ; -7,3 ; 0,00750996104609574 ; 0,00789508725358783 ; 1,2 ; 312c8Ea2c85aF2bcB53a7bA2fcddDcD6a0cdE80ba8bD3cFC1b1c0dE9aCfd4ABb ; < mak2DIiivJOBT1oK44PWq07VsR6op632ME4cD96bk156KI7s5Xc79qN5393PxbkP > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,501016406815195 ; quote ; 0,0162611545142498 ; 0,0159359314239648 ; 0,0204081632653061 ; -4,2 ; 0,0157733198788223 ; 0,0167489891496773 ; 2,5 ; 52eFffcBD0aF7dab73e3dd1Aba93eD5CEcE5AbDC5F5df8dcd1bedb9CcbD5Bd7D ; < vvxbnXIZuyGg8sM4JDk0Nk4g7rztvHFyN5iRzM6kUwlndN0liHUqzS212Imfi7KV > > 1 // < CALLS 0,551118047496714 ; quote ; 0,0180679494602776 ; 0,0177065904710721 ; 0,0204081632653061 ; 9,3 ; 0,0175259109764693 ; 0,0186099879440859 ; -9,6 ; 002Ee4D56DBCaAd5D39CCacb55bb18eEDAaF2e4BbfecEDDCbFe0DBAdaff6acc3 ; < qzsKU0L4MUsrmu0NwoHEY7j6zB3QnJWoxAC0hS1b8Jd27DNP6efHyFG5I7zH403L > > 2 // < CALLS 0,601219688178234 ; quote ; 0,0200754994003084 ; 0,0196739894123022 ; 0,0204081632653061 ; 0,3 ; 0,0194732344182991 ; 0,0206777643823176 ; -2,4 ; CbEbAab683dB8fDD3DcCAdf7BcBeaBEAAdacdf5F7Aa36bb9aEdecDFaf6b2D30E ; < 931A1337oc95209RqX9GuHmQXg5qICvb2ya5dLMY1pwwccCPyO02ntPiKOEoNltC > > 3 // < CALLS 0,651321328859753 ; quote ; 0,0223061104447871 ; 0,0218599882358914 ; 0,0204081632653061 ; 8,9 ; 0,0216369271314435 ; 0,0229752937581307 ; -0,7 ; EFCBAA44BaEd7eeCFCfA3e7040Bd3D0Ed3EF134aD92BcFB5C3EbC2bC2FdFa4b7 ; < 5TmUg55uOGl5NzSL5YvT5JuSSOfS8K45KK9Y9C34yMnIJ2kBi0ESA2Au66IBcV65 > > 4 // < CALLS 0,701422969541273 ; quote ; 0,0247845671608746 ; 0,0242888758176571 ; 0,0204081632653061 ; 9,7 ; 0,0240410301460484 ; 0,0255281041757008 ; -4,5 ; F4eAE9eFEfcEbcCc7Bfc9bA85Ffd04666deBFBDa9A73dAaeDC9a1E34cEf36eE9 ; < jkPQG28az7220QsJwR93w82VVz9wOGyOzg323692gSwSXFdkPwZ5Bs4x6eZG9myk > > 5 // < CALLS 0,751524610222792 ; quote ; 0,0275384079565273 ; 0,0269876397973967 ; 0,0204081632653061 ; 6 ; 0,0267122557178315 ; 0,0283645601952231 ; 6 ; Fa3dBdafCCC95b0becade4cBD7DC00B36D96eCc1E62FF4bFCaeDeCC718FfAc1C ; < M6bmB0xhWE34Vm15yMKLSAG2nQDvGsWTa0085nL61ch4fmXqBieb2Q5BEZyhr0jr > > 6 // < CALLS 0,801626250904311 ; quote ; 0,0305982310628081 ; 0,029986266441552 ; 0,0204081632653061 ; 8,3 ; 0,0296802841309239 ; 0,0315161779946924 ; -9,8 ; DAFEdFeBCAAEeC1CaDd76bacedAEAAf1D3cAd0FCC8bffCdE0fea0EfcF2ee9CC4 ; < 8Ag4P9ZF1Y6FQ1BNqXae8Bxw6J4R9m7PphHIUby8OC9e27uoK2ONyd9yWM13IZaY > > 7 // < CALLS 0,851727891585831 ; quote ; 0,0339980345142312 ; 0,0333180738239466 ; 0,0204081632653061 ; 9,5 ; 0,0329780934788043 ; 0,0350179755496582 ; -1,4 ; A03EeEa66Dbcacf473Da6Db4DcbFcFeE7Ba30BCddc1BDeBdaadDF38cA5b89e46 ; < z7DNDsyxB2T8qHGqUYxlHLfHDBfqj3P2kPTzjjE2VqN52632m6uNebd9X5uH03wY > > 8 // < CALLS 0,90182953226735 ; quote ; 0,0377755939047014 ; 0,0370200820266073 ; 0,0204081632653061 ; 2,1 ; 0,0366423260875603 ; 0,0389088617218424 ; -7,2 ; b91aF40ccceaf5d3F3EA80BF3C85CC8eC755Bb26CF2fAAf1e6F69f419FAC6af6 ; < 2v53P606lTjP2Mos3b8t8w1ue1YxWK2xBQ205W768Llc8RYI7AMX33Fy2Lf8913q > > 9 // < CALLS 0,95193117294887 ; quote ; 0,0419728821163348 ; 0,0411334244740081 ; 0,0204081632653061 ; 4,6 ; 0,0407136956528448 ; 0,0432320685798249 ; -0,3 ; dBBf7e6e0Cc4fA0Bf3FA3b2eD5C9Ea9D1aAedAe39b7E2Aeb0EdFfddDE2EA0416 ; < RxE6H79U8b5I6mSlM01J9rk77VMYDRvCZ0A7gF51ukD523Jx9bOmn3ZL9Lh80gpk > > 10 // < CALLS 1,00203281363039 ; quote ; 0,0466365356848165 ; 0,0457038049711202 ; 0,0204081632653061 ; 1,8 ; 0,045237439614272 ; 0,048035631755361 ; -5,4 ; 8ABAaDd3c7B7B4eEF16DDE2dcEedA97f1aDeCbA7c39CbcCEaAD4DF89bC50DBBc ; < IZm3P5Io57qyMDxH4y2f2nzK75e38hSz009l77hE7Ys915Wt7s9U5zV4uYn6h37y > > 11 // < CALLS 1,05213445431191 ; quote ; 0,0419728821163348 ; 0,0411334244740081 ; 0,0204081632653061 ; 0,3 ; 0,0407136956528448 ; 0,0432320685798249 ; 3,1 ; eCA9AE5cA62aEAF4c0c80DdCdCD9aBED0D3cCfE1FEeceCB2DEb9826Fbd8ccbbE ; < 6TdLXETavV8y15Sp5ujJAOKLK1TFi9Jzu38K8Z6Boz81ObDkeUL7Ui7AfDVy1Rjk > > 12 // < CALLS 1,10223609499343 ; quote ; 0,0377755939047014 ; 0,0370200820266073 ; 0,0204081632653061 ; -6,8 ; 0,0366423260875603 ; 0,0389088617218424 ; -6,9 ; 9AEc5765a41D3AeCbAFaa7FFE4b35b1f15aFc81b1f17b8dff8B6ceE4f9f38aab ; < 6q5HF9vo7Q2BJxGvSa1COMw5p01ZS86LcdnVuKB3Hokd1wP65K1eu35zxnarpO5e > > 13 // < CALLS 1,15233773567495 ; quote ; 0,0339980345142312 ; 0,0333180738239466 ; 0,0204081632653061 ; -9,9 ; 0,0329780934788043 ; 0,0350179755496582 ; 1,5 ; dFdcC920A3f0FbeFaffd76acB8EcCeEE7fbBdDfFeADAF84eE84d6Cf111C1c29D ; < G076FwJw73iJ9VUiD54shskzdWupkG82jD0tQmFHJEU6L1u9jpYb6X33Er2Z3cxF > > 14 // < CALLS 1,20243937635647 ; quote ; 0,0305982310628081 ; 0,029986266441552 ; 0,0204081632653061 ; 7,3 ; 0,0296802841309239 ; 0,0315161779946924 ; -4,4 ; 8e23099f5aABa7CE4FF64a3D3DFb5C9d38A84Ea3b8eC133C7e49edEAAA6D6bb0 ; < 8861FuYu2Y8fl69lTRk574f4l33O16uSxAc5O944z14V2bQc0Otr0j3ZjO076TUR > > 15 // < CALLS 1,25254101703799 ; quote ; 0,0275384079565273 ; 0,0269876397973967 ; 0,0204081632653061 ; 1,9 ; 0,0267122557178315 ; 0,0283645601952231 ; 5,1 ; fCcA0AE3cdFaede6CEADBa4c2278D4fbeAc5eC9fbd5586cC9E0bC9Ba1e82fBbf ; < 2SW0mC3R32TbSwCxQz94i0kuvy3YsLzGXMhUA0ygWK3KIBhKx5oXG458gINum6J4 > > 16 // < CALLS 1,30264265771951 ; quote ; 0,0247845671608746 ; 0,0242888758176571 ; 0,0204081632653061 ; -5,1 ; 0,0240410301460484 ; 0,0255281041757008 ; -6,6 ; edABDa3E7CCE4ECf08DAbCdDafbDFeeCddeDb5Fa303EB0cAFE5D24c6c7ffb0a6 ; < 0b8f0L3279F0T985XxLT5rvn55I989Ov51nLU5m9hXJ8wkKqn8GI0Ra7yute93St > > 17 // < CALLS 1,35274429840103 ; quote ; 0,0223061104447871 ; 0,0218599882358914 ; 0,0204081632653061 ; -0,3 ; 0,0216369271314435 ; 0,0229752937581307 ; 1,2 ; e4DBcceC77EFfcFEce1Db9fEFdb1f4cAccAca99b04fBCE88a75DD6ccdDFDfd6D ; < U9p2E4CA7wN10Yk9TGfYAnOuu5v6O3C7AIn3NZ9asg8Qnlp4GXq89nfz8fUpCRPJ > > 18 // < CALLS 1,40284593908255 ; quote ; 0,0200754994003084 ; 0,0196739894123022 ; 0,0204081632653061 ; 7,1 ; 0,0194732344182991 ; 0,0206777643823176 ; -2 ; db4ceEA20eA8cE0C0d1BeD7Ea0F4ADEDeF2ba7d76e2BdE5C624fe99D823BBdaA ; < RjIObb370W62O9Fb505cV1F5qW2hKmEf317mwOuuYmC7A9ynh7sqF2AeE7GD2t16 > > 19 // < CALLS 1,45294757976406 ; quote ; 0,0180679494602776 ; 0,0177065904710721 ; 0,0204081632653061 ; -8 ; 0,0175259109764693 ; 0,0186099879440859 ; 7,7 ; 1E3faeeCfcB0FeADD4D2FEBb01A4EFAdf12f8fBcB7b3ef23AcbbA6DAcBb4CdfB ; < 36jf82490AqbJJ4j4sS7II9C12KYKCA86GKT7wpKa6q7QG9l0M73336PQ5gk92ut > > 20 // < CALLS 1,50304922044558 ; quote ; 0,0162611545142498 ; 0,0159359314239648 ; 0,0204081632653061 ; 6,3 ; 0,0157733198788223 ; 0,0167489891496773 ; -3,4 ; E7dFbfE443FABBDDaE9Efc0EeCDDfe29bbF9E2AdBD3BAD9AcABABc6aa8593Ea2 ; < A44nCQ8420hF7376i1y0eRJnJbUL3Oy6R35gR6DKoN2eLucwN9Z177uZ79aKu4AF > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,501016406815195 ; quote ; 0,0162611545142498 ; 0,0159359314239648 ; 0,0204081632653061 ; 2,3 ; 0,0157733198788223 ; 0,0167489891496773 ; -1,8 ; fDfC2bC4E8852EBEbbA5CaBA6D9487931Adf8Bbd4EFbBBad11EC8cb4Dfe28D09 ; < d4H78Sr35sQ35u047liD9Wa1DCGvS150p356v5EK9FU00febihCxD1b89RP2h8ec > > 1 // < PUTS 0,551118047496714 ; quote ; 0,0180679494602776 ; 0,0177065904710721 ; 0,0204081632653061 ; -4,3 ; 0,0175259109764693 ; 0,0186099879440859 ; -5,6 ; DFfAceAea40defE72f2EDeda8dE0e4F9B3D1c9BeAF6dFEaEaCf791ACAd2B6eee ; < voWRy9Uj0j62r66T0v2C7H8q9nCZ5lL9xn0uIkA14995Erpnt85tg4zsjzaY04jE > > 2 // < PUTS 0,601219688178234 ; quote ; 0,0200754994003084 ; 0,0196739894123022 ; 0,0204081632653061 ; -8,5 ; 0,0194732344182991 ; 0,0206777643823176 ; -0,8 ; D6ba4c0bfC421CFae8eE3eEc4EcAAF84bc0EEeFB8feCe712ba4dA0bB96eA9aFf ; < 04xlJenY8idRvlr1QuMppx0NcMFKll4LPKiet268n1cTb47PSs6V7n5gHcvu0Xm3 > > 3 // < PUTS 0,651321328859753 ; quote ; 0,0223061104447871 ; 0,0218599882358914 ; 0,0204081632653061 ; -8,3 ; 0,0216369271314435 ; 0,0229752937581307 ; -2,9 ; FCFDa8DFa0BadDA9cdc5B1c60cCDafB0AeF1CF779BAB9dfcdE073a48adEeAd63 ; < PzJeIQxJtC07kOE2Ex8Mhi422g0FTM03YH1M13n9KV7gP0jn4W6gB449s58Ui59O > > 4 // < PUTS 0,701422969541273 ; quote ; 0,0247845671608746 ; 0,0242888758176571 ; 0,0204081632653061 ; 9,8 ; 0,0240410301460484 ; 0,0255281041757008 ; -9 ; 0291092b1fBEabCEb6bBBd63ED42f4DedAE4e6c6ebc02bF4dF9c791Ab086dcA2 ; < Ocz0U1D9jA8gzg9EverY93e7DmEIAWbuR5x45H95409ir47dSUTW113XZoRSa4ex > > 5 // < PUTS 0,751524610222792 ; quote ; 0,0275384079565273 ; 0,0269876397973967 ; 0,0204081632653061 ; 5,5 ; 0,0267122557178315 ; 0,0283645601952231 ; -5,3 ; bBcbbFd6CAa2EB1DFaa6eeBAb1b2ABAcbfDbBEE4dDDcCB18bE5D0b6D19DaD04D ; < 90Y8lDULi4w09gT1YZHYccNdZ01t3NQ7MMQ2xZl762WwQm838hMt5f2r2cD3ezP1 > > 6 // < PUTS 0,801626250904311 ; quote ; 0,0305982310628081 ; 0,029986266441552 ; 0,0204081632653061 ; -8,5 ; 0,0296802841309239 ; 0,0315161779946924 ; 4,9 ; dA262D7d2e7a0827ddeBCd8A5C9D0D9E8eB2Cc07F1f9DD9C4657Ec7e543D0dc3 ; < 9NQedU2lr5OLj0ZIJ091quf42G8fJ4s94MjxA6ft97PJ59S4zat8W8PqVN6Dq53N > > 7 // < PUTS 0,851727891585831 ; quote ; 0,0339980345142312 ; 0,0333180738239466 ; 0,0204081632653061 ; 8,6 ; 0,0329780934788043 ; 0,0350179755496582 ; -4,9 ; c999FeCa3Cfe1aD8EFdDcbEAE6EbADe9cedAA9AFfF77B6aF95dC9a9A5cFFA83e ; < 3LFQWS13jAa8NjAkeIK5SGkD3pfeTzE4j2g37mHhbE525180F7g686W6909Iv8c1 > > 8 // < PUTS 0,90182953226735 ; quote ; 0,0377755939047014 ; 0,0370200820266073 ; 0,0204081632653061 ; 4,1 ; 0,0366423260875603 ; 0,0389088617218424 ; -8,1 ; Fb5C4FFcDc7DFa12C14b36CEf3Ae9caade8DAD628da996abDd1e025Bad4b1F78 ; < h4p30cQ8e3BILtThVQ8LJty1F49jS0aj4bjFu54LsuvfAYL41vFV74ER49GI7846 > > 9 // < PUTS 0,95193117294887 ; quote ; 0,0419728821163348 ; 0,0411334244740081 ; 0,0204081632653061 ; -3,5 ; 0,0407136956528448 ; 0,0432320685798249 ; -7,2 ; 9aD054af308Fd8eBF59EbaEdBBFAaEDaD90D83B0E3F51d1CbC2EdC2ef9C6FAfb ; < 5R69oH9G1su87lD2se37W8Tdy2h2Y56bkRMI6LOWBTffE6D2j0Togvq82MlD1A5T > > 10 // < PUTS 1,00203281363039 ; quote ; 0,0466365356848165 ; 0,0457038049711202 ; 0,0204081632653061 ; 2,3 ; 0,045237439614272 ; 0,048035631755361 ; 3,5 ; d7769b0B09afEeeED7aEEFdcD04b7B7efADd8b93Df80AF9B1bBa132DbCB9CCa6 ; < E6r114jWWssl4jyoO6sYro3p20rwz00pkA9G0AUM917lCAw1gsH9yzE9b32nu5so > > 11 // < PUTS 1,05213445431191 ; quote ; 0,0419728821163348 ; 0,0411334244740081 ; 0,0204081632653061 ; -7,6 ; 0,0407136956528448 ; 0,0432320685798249 ; -7,4 ; cB5BF05EAde9bAbcABbDA7a7D9D6bb2AC453A70EBC21BBfeE6FBF67AB49BCdAa ; < xd6f0YsEF70D6EsLwUpfQZ6HrR0R24IM4z00Q9U6DvD5q93m986AO2ctB5yJY46q > > 12 // < PUTS 1,10223609499343 ; quote ; 0,0377755939047014 ; 0,0370200820266073 ; 0,0204081632653061 ; 9,8 ; 0,0366423260875603 ; 0,0389088617218424 ; -6,5 ; 5e8b1DDe6b30f0CbAAabecF8FFEaA95bc0DCbCf6dccfe9EBbaBB2e6fcC4C59a3 ; < eVJGvr100y733fk99cFirVm5klB97u34o7p7UQE82IdYPVI2h8rC2yrEC7LHql45 > > 13 // < PUTS 1,15233773567495 ; quote ; 0,0339980345142312 ; 0,0333180738239466 ; 0,0204081632653061 ; 8,4 ; 0,0329780934788043 ; 0,0350179755496582 ; 4,7 ; a5adC1a453F9BEdBBAaBb093a40A0B833aaC6d0d0FaffFcEAbFfBcCaAdFEE2c0 ; < xr00s7wtiTXAuicf3QlM2y0V23Qq4U88C4g3r8CPIB36a8e7J6Q2aMQe7GftV6PD > > 14 // < PUTS 1,20243937635647 ; quote ; 0,0305982310628081 ; 0,029986266441552 ; 0,0204081632653061 ; -1,7 ; 0,0296802841309239 ; 0,0315161779946924 ; -6,9 ; DCB5F2bfdb66fADb8cCBa85d245ecbF4CaBB68B22a29ecAcaD0A3d0DaEabc43d ; < yiN9OMezajtb48d7u44flmO2gKh3xC4e9t2j7703u97u0O87Y03KHm31rW9le5W7 > > 15 // < PUTS 1,25254101703799 ; quote ; 0,0275384079565273 ; 0,0269876397973967 ; 0,0204081632653061 ; -3,8 ; 0,0267122557178315 ; 0,0283645601952231 ; 7,3 ; 24FfCD5aed654A2FBEFbDFAE0FdAAEaBb9ECfF3b2E0Ab1ACc34acc7B2e2CCcba ; < 8USF5TkCrpd9YwEo9J9cb3IQPaaw1IqVZvj0ESKv970P0wY4S87O97CNyf0vRirs > > 16 // < PUTS 1,30264265771951 ; quote ; 0,0247845671608746 ; 0,0242888758176571 ; 0,0204081632653061 ; 6,3 ; 0,0240410301460484 ; 0,0255281041757008 ; -2,2 ; 2ECd0fd8A1cfED3FA7CBB4fCBd86ACCaF5eCFABbfBEE2BcA1cFBAE9ce17bDccd ; < CF9K9W788638t76fVDz5Mvr7YLseEZ74QEh3v14A1HM3mKtdV677W2w6ED6nrX5Q > > 17 // < PUTS 1,35274429840103 ; quote ; 0,0223061104447871 ; 0,0218599882358914 ; 0,0204081632653061 ; 4 ; 0,0216369271314435 ; 0,0229752937581307 ; 0,9 ; dA3cCBDcc82FFcEDd15CAC32D2970dcBcBE4F8FBcDD60cCc4D9334BFbF6bcfaf ; < 5j9DQItVq8il6CuwuWHZow1ibi16zC3JQGIP24jB5HgcMImGV2R1T5tBBpT9fU6g > > 18 // < PUTS 1,40284593908255 ; quote ; 0,0200754994003084 ; 0,0196739894123022 ; 0,0204081632653061 ; -7,7 ; 0,0194732344182991 ; 0,0206777643823176 ; 2,1 ; adDFC4AfCcf4ca0EB757a15CEcb8Bd717b1BcDAbbdcE9cac74c8bBe4E4Aefbe5 ; < L82hhCpT820qC4T5DNQhQ43DShKSKHuM6g1G7jwmF3v6Kulobq9nfF1FpLU0U621 > > 19 // < PUTS 1,45294757976406 ; quote ; 0,0180679494602776 ; 0,0177065904710721 ; 0,0204081632653061 ; -4,2 ; 0,0175259109764693 ; 0,0186099879440859 ; -2,7 ; cB9B39eDdC48514A9eEEeECDf5f1Dbf1fF75C46a78468fcb060De0BBFcBdaBD7 ; < CsxERKJ71F94dW61VLYl3OL6HKjm9F8WtjG9c7Dp7Y4YHQk62Rv9PayjG19w2aZj > > 20 // < PUTS 1,50304922044558 ; quote ; 0,0162611545142498 ; 0,0159359314239648 ; 0,0204081632653061 ; 6,3 ; 0,0157733198788223 ; 0,0167489891496773 ; -9,9 ; e0b2a16D5B0Af5bBc1aD9Cc0BacfEBEEBb6ABE5BEd16eCbE75F70f9F8e50d3De ; < 5T597U13tFH31cZg163UgoNQElSK3Jc1FIKnhEmMFL3atq06484SrNWA0rt5xNJw > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,502883842303904 ; quote ; 0,0337538650845591 ; 0,0330787877828679 ; 0,0204081632653061 ; -4,7 ; 0,0325724798065995 ; 0,0349352503625186 ; -5,2 ; FE0c8aeDD1F1EEBcD39ECFD03dd0EFA5DfBF7Be1BAEB3Dbf3DDfFDB4dFD30bc9 ; < N4Z9Y6Z3zJk90A033G0FIgOV4Kj2I89U41huliMq6fonwKeS44A4lpQ26645x7V7 > > 1 // < CALLS 0,553172226534294 ; quote ; 0,0375042945383989 ; 0,036754208647631 ; 0,0204081632653061 ; -2,1 ; 0,036191644229555 ; 0,0388169448472429 ; 4 ; 44E5DfEaCEd3EaBe4febCcd1af5bbAeebA7ec9c4ec9295eECDABcfb8ddb6AE73 ; < mO0l69L0G7KCe90z1V5DY13xdtWcwy6d348f56M8f626r6s37tmWog4WEU66y7iP > > 2 // < CALLS 0,603460610764685 ; quote ; 0,0416714383759989 ; 0,0408380096084789 ; 0,0204081632653061 ; 0,9 ; 0,0402129380328389 ; 0,0431299387191588 ; 5,5 ; 28CaEDFEF0d4f680AEAcF2BD5abaebE6c674D60F7f3AFcCead4D430CfFFB8D91 ; < E2d85x8l98383kZA2Zuf7f70D3b3yFrindwaAxtp2i7IM8md443B5Ab3V62S0ejj > > 3 // < CALLS 0,653748994995075 ; quote ; 0,0463015981955543 ; 0,0453755662316432 ; 0,0204081632653061 ; 1,7 ; 0,0446810422587099 ; 0,0479221541323987 ; -2,8 ; D3eDBeD91dBeAE68AB2CBad03ff04A44fA8AA3EACECCdfca0BBEED4c6DcDB1dd ; < VAtO43rfNmokRPS75nGEK8W53UfW6R9D4lHsS9jD817d5Uc0H9Ug4dp1k6xe8N3i > > 4 // < CALLS 0,704037379225465 ; quote ; 0,0514462202172826 ; 0,0504172958129369 ; 0,0204081632653061 ; -7,9 ; 0,0496456025096777 ; 0,0532468379248875 ; 8,5 ; 5C8aFBFFa7cea83EfFc1F7BCe4E21a3FF7CF80d6e9Ca983E6c6f68c71d92b8Cc ; < GIo351lnes60hxE46Ew1g3V32vmUwvVIZy51FP405e6QwFJnQQcs8HUFYF38a4Nd > > 5 // < CALLS 0,754325763455856 ; quote ; 0,0571624669080917 ; 0,0560192175699299 ; 0,0204081632653061 ; 8,8 ; 0,0551617805663085 ; 0,0591631532498749 ; -2,2 ; 40B1aDB3bF6aA994AEc1dF4bbf9ae3AfeaeAb9acDaf36c9Bc5a6fD0D1aCbbD63 ; < PahuYWhIDGa47b0KEdUO7n6k39Hms6BAghHRS0k4bTxOsf53n77BYL0bcGTS8fP2 > > 6 // < CALLS 0,804614147686246 ; quote ; 0,0635138521201019 ; 0,0622435750776999 ; 0,0204081632653061 ; -4,8 ; 0,0612908672958984 ; 0,0657368369443055 ; 4,1 ; addebeF69DE4E2d5209AAFb3FBaD5ddf04AD815493aBCD9a35BA1eaABADA96E1 ; < 416W3d9jWP817eY62dQUMjFxRo8UPq32oa45FUfg74J07Yzb0LtioLc7RPgGS4KW > > 7 // < CALLS 0,854902531916637 ; quote ; 0,0705709468001132 ; 0,0691595278641109 ; 0,0204081632653061 ; 2,5 ; 0,0681009636621092 ; 0,0730409299381171 ; 8,3 ; 8eBF583c4a86dDb9a11eAD2dbeEEfdF8d3C5Be7CDDB5fC0aBEb1Cc7caDFdEc9D ; < HZ61O67EN516Zm5g794QrU7gQkF4RFI3DXLGD3Afvk994X9up3vX4xmxK29z1035 > > 8 // < CALLS 0,905190916147027 ; quote ; 0,0784121631112369 ; 0,0768439198490122 ; 0,0204081632653061 ; 6 ; 0,0756677374023436 ; 0,0811565888201302 ; -6,4 ; 9Da3804b5aEfbfa2beb6D1CCcA02eA5DF3CA3bcAD5CB1ddbc3DF5f06Ed6F4a1d ; < oyx32lP8M8ZG7rIAO317jl3WUeuLvc1pMz5u2430guaDtB2WtKk86UcIlR87oxc1 > > 9 // < CALLS 0,955479300377417 ; quote ; 0,0871246256791521 ; 0,0853821331655691 ; 0,0204081632653061 ; -3,4 ; 0,0840752637803818 ; 0,0901739875779225 ; -8,5 ; babCcbDB343Acbbf3a1cdB5E0e2D75a593ed48Cb83a6bE9dFaC3Aee19deccA7b ; < 68QS77X45mKxnsGUBk3W0u96P8cauPl2st38R5KYPfPX9W0RO7cC2qc5uPmjOZht > > 10 // < CALLS 1,00576768460781 ; quote ; 0,0968051396435023 ; 0,0948690368506322 ; 0,0204081632653061 ; 9,1 ; 0,0934169597559797 ; 0,100193319531025 ; 2 ; eBBC7c0Ddff0c9FfeaEEE8b06efB5AF9BA74aa767Dde9a5194bB9E5da89FAB0F ; < qXBDWrWIdO1D4vyOB0VD5931qVUCC066V6i550rTC6lY1eO5E1Kp8509Y647aC0X > > 11 // < CALLS 1,0560560688382 ; quote ; 0,0871246256791521 ; 0,0853821331655691 ; 0,0204081632653061 ; 4 ; 0,0840752637803818 ; 0,0901739875779225 ; 6,1 ; A48cFb98A1CDbD1C99aAf0DaBf28832aDFDADFDEfD18a1B9A09D9eE1d4aefA4E ; < a9rMrf2Lph4q8PItqb5Mjj2BgnOgIv3t7XT7WIRztIE58Vt361kyFe3B6uzH4mtr > > 12 // < CALLS 1,10634445306859 ; quote ; 0,0784121631112369 ; 0,0768439198490122 ; 0,0204081632653061 ; 1,5 ; 0,0756677374023436 ; 0,0811565888201302 ; 9,6 ; c7Cdf8684F7995BdcAd3D9f1dBBEcfe0BAEEAace1FA7e7BF8BEDb310d3AeEEae ; < TKboed7Kp75O29GOwf6x9eB1k614yapicUm555s2p5d25lBnE9uza86fLeXOyGDa > > 13 // < CALLS 1,15663283729898 ; quote ; 0,0705709468001132 ; 0,0691595278641109 ; 0,0204081632653061 ; -9,8 ; 0,0681009636621092 ; 0,0730409299381171 ; -5,2 ; AfaEfCEaBfAe8Aedf4bB8ACF1eFdebA6095CaE02EAa7dDFeCaAcE3AAF3dde2Ba ; < zNqp5PxQ2QCO7v6ZO4x5jYuIeNMZD3iwG1xcj3zG770G6u2b646524zHX23nLgtg > > 14 // < CALLS 1,20692122152937 ; quote ; 0,0635138521201019 ; 0,0622435750776999 ; 0,0204081632653061 ; 9,8 ; 0,0612908672958984 ; 0,0657368369443055 ; -4,9 ; 9caAEDcEeF1e0E18dAA1c3EF221A2edaED4da09fC4CaaC3deAbCCfadeEEC902D ; < rmVfiKAcuKr2qQ4aAkpreX9SAPgEz9x91WUr5BbiTVU1Xp1k8n3YqDg7r25EFcAa > > 15 // < CALLS 1,25720960575976 ; quote ; 0,0571624669080917 ; 0,0560192175699299 ; 0,0204081632653061 ; -7,9 ; 0,0551617805663085 ; 0,0591631532498749 ; 9,7 ; D9a5cf7Bbe5DeeBcb148dEC6bc47bfC3dcD3bbC51DEa1D4da4A4aBe2ADA5ACB1 ; < 998y74WJN8D2hFLb8gXJ8v2bWwxQ6Ll433c4b85B6mMi973G63028wim1UjYsOI3 > > 16 // < CALLS 1,30749798999015 ; quote ; 0,0514462202172826 ; 0,0504172958129369 ; 0,0204081632653061 ; 7,3 ; 0,0496456025096777 ; 0,0532468379248875 ; 7,5 ; afdeaDBAad9FE2De9cc2edeF14fFCaFF1AbdD2Cefc460ed3DcE99cF37eCCDad2 ; < ktg1t2sDh769zbb30Tqg3XbR8o5O2d1og697RaY0hb3I9BmMOZ716sBw3l4Bm7R2 > > 17 // < CALLS 1,35778637422054 ; quote ; 0,0463015981955543 ; 0,0453755662316432 ; 0,0204081632653061 ; -3,8 ; 0,0446810422587099 ; 0,0479221541323987 ; 7,4 ; 0Daf343ecFBaFbF7FB5FD5BFCBc1c40752CbE4f46C3cC6ddaCaaD2BcbD37c2dF ; < J0JSp1xqY1vi23OZ8839magC57pk6Bj2jY3174HsMwt83yaBcYFqEZOq915X1dFz > > 18 // < CALLS 1,40807475845093 ; quote ; 0,0416714383759989 ; 0,0408380096084789 ; 0,0204081632653061 ; -2,3 ; 0,0402129380328389 ; 0,0431299387191588 ; 8,8 ; C81e8d05bCf4A752AfB1Bec78BecaFfE14FB9e6CC38dfc7EaFdFFc670dFdeed6 ; < DHa9QS37eU6OLb5Bu42Kw3c3ZA207xX72A2rX54f82t1Y6RJsiKrG0hLw7R1AtRT > > 19 // < CALLS 1,45836314268132 ; quote ; 0,0375042945383989 ; 0,036754208647631 ; 0,0204081632653061 ; 8,7 ; 0,036191644229555 ; 0,0388169448472429 ; 7,6 ; 20D4dcBD3EcFCF6efDc0d1fAaCEE2a4E45c8dda1E0fFB456b3e9a5eEA34D3EA4 ; < pg8A232zW4YFzjV9WNxo7FG6k8hgAbBqhsEvwAU15Sk1qnrkwcHPFNFU6wV9jmuR > > 20 // < CALLS 1,50865152691171 ; quote ; 0,0337538650845591 ; 0,0330787877828679 ; 0,0204081632653061 ; 4,7 ; 0,0325724798065995 ; 0,0349352503625186 ; -3,8 ; c9968C7b7EADaFD6Dbab5Db6db7EaCBcbECCcCfBDDBFE39AcE3c66F30FaeCbcF ; < 5u09UxHtNO76i4qD803dq3MeWe4bjm2p9sK2qWqX2ZlB59n1802Xp9V3Uh35QMsM > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,502883842303904 ; quote ; 0,0337538650845591 ; 0,0330787877828679 ; 0,0204081632653061 ; 6,2 ; 0,0325724798065995 ; 0,0349352503625186 ; -3,1 ; E3C0eadddcA2655B26B3C7dE24BC4AdD2Fd8eCfeA8B6FAfAeBeEBC3ABBeCaadc ; < t9vh3KHvLN28pJn6nVUs9d2RePT6s40DVir8cWP89s8vUPb9F6P41pcS22N1gXq8 > > 1 // < PUTS 0,553172226534294 ; quote ; 0,0375042945383989 ; 0,036754208647631 ; 0,0204081632653061 ; -7,4 ; 0,036191644229555 ; 0,0388169448472429 ; 1 ; eBEFC81b870D4dB87cdAdd58cbBce13A58Ddb0fc7dDf7D66f4b03F0D0Fe0AdD6 ; < 9qine1se49by212PVsK46VGZ9pZ5D7b43aXIvNkXyZ5KSTf4yW20k12SRgQzftfg > > 2 // < PUTS 0,603460610764685 ; quote ; 0,0416714383759989 ; 0,0408380096084789 ; 0,0204081632653061 ; -5,8 ; 0,0402129380328389 ; 0,0431299387191588 ; -2,3 ; ec9bEC7bd5EACC938BBAcCfB3Dbee2F2ddacFBFDe4FD4b08aEFe6FD4AeFBAed4 ; < VHn2j9McY6mI39ijigSkvUqs9r4Jmw7O4PYPR6FxPBdEgu0rVh0T8JlAGz6qfZ9n > > 3 // < PUTS 0,653748994995075 ; quote ; 0,0463015981955543 ; 0,0453755662316432 ; 0,0204081632653061 ; -1 ; 0,0446810422587099 ; 0,0479221541323987 ; 4,2 ; 54DCea98A3217B2B8d6ACaBCa4Ecd9b60A7Ba0CdD2f5dB9DeFCbFAcB4b460de8 ; < uDf12Q3HEqzhD4rR28LOexPcj3WwJC1V3C9qf441zW1QbD2mI21sZfaKd22x221h > > 4 // < PUTS 0,704037379225465 ; quote ; 0,0514462202172826 ; 0,0504172958129369 ; 0,0204081632653061 ; -8,2 ; 0,0496456025096777 ; 0,0532468379248875 ; 4,3 ; fbbb0EDbF8AEfAF4DfEFEc7fBbEe0B0aaDCAD70Db5fcBA8acFecbCb6D138bf69 ; < BSS7T4EaMt4Mi1lZ2cCC1gohP917obN3229scSRkvIBwSamriSJX2T6TiPSGCAO0 > > 5 // < PUTS 0,754325763455856 ; quote ; 0,0571624669080917 ; 0,0560192175699299 ; 0,0204081632653061 ; -8,6 ; 0,0551617805663085 ; 0,0591631532498749 ; 4,7 ; 3DFaeF3fFFe9Dbf4bFEa44Beaff56Fca1f1d316F54afaBcAfF3cecE8d55dDbED ; < 7pJs61u32YVSjboHJ54ZDt8JooVDPH77M7Pijvf8kwoy0wk73QnyT95L1274csBk > > 6 // < PUTS 0,804614147686246 ; quote ; 0,0635138521201019 ; 0,0622435750776999 ; 0,0204081632653061 ; -5,7 ; 0,0612908672958984 ; 0,0657368369443055 ; 1 ; fE26AA71aEd05CdcFBdfA9b00AE4B8EB6FFf30bEd7bfcaBFdC0bed0e8AD222DB ; < 8HRTz9969Dspe73vg65ayoa6rMN27n7ATv1qa35lZCkNh75oVT13NiGTy4kZEYVX > > 7 // < PUTS 0,854902531916637 ; quote ; 0,0705709468001132 ; 0,0691595278641109 ; 0,0204081632653061 ; -8 ; 0,0681009636621092 ; 0,0730409299381171 ; -7,5 ; fCa5c1eCb86Ba6aAc0A604aD47AAf73BdfA1eF788df8CD3dcF0DD6fadFDFe92B ; < ysoVhxcp3R8BPl58dglFzIyZVQ5pF740uM6p7C0Rc82QLSZ3Z91RB61VZyu6sAV2 > > 8 // < PUTS 0,905190916147027 ; quote ; 0,0784121631112369 ; 0,0768439198490122 ; 0,0204081632653061 ; -2,8 ; 0,0756677374023436 ; 0,0811565888201302 ; -4,1 ; eafdBafE08AEcEdAbd721cAC9Cf7cCAC8Cb4B5cAf5Ca1DDbfcD4aDBDB9AaDa34 ; < 4SPU1Gja77LyRlcoqdH6hmvYvKj3981TLlUlLY59cYJ0l7De8WpI2088B79Cz04F > > 9 // < PUTS 0,955479300377417 ; quote ; 0,0871246256791521 ; 0,0853821331655691 ; 0,0204081632653061 ; 9 ; 0,0840752637803818 ; 0,0901739875779225 ; -5,4 ; e2accBACb1EDEEDfA6fcBFFfE3c4DAAFbEfbef5ceEedFD5a3aeEbeE9BCce1AEB ; < 9EN40IzQKEl7U8VMX9KL1fU0ac28upPIBZ1pSxMN10d3gb2H1pS9M4uCNkLPOS48 > > 10 // < PUTS 1,00576768460781 ; quote ; 0,0968051396435023 ; 0,0948690368506322 ; 0,0204081632653061 ; -2,1 ; 0,0934169597559797 ; 0,100193319531025 ; 3,3 ; f0Bcd1CAECCEeBe07FDdCBEeaAeBc4afaBfdacF6E4ccFBDEBe1B1CDa10b5Ae98 ; < W2QK9Ela2FMAnD1pE5EwWPHNj7331mHQqQ5OIEp1Xe8D78lwNtBvhhG6hyThZX59 > > 11 // < PUTS 1,0560560688382 ; quote ; 0,0871246256791521 ; 0,0853821331655691 ; 0,0204081632653061 ; -2,7 ; 0,0840752637803818 ; 0,0901739875779225 ; 4,7 ; f1Bd91D5fDFaf974CECe9A63DCbcbFdae2EeE7B5a3Ab1FFf0d2bFc5DeEd4E9F2 ; < D37wY0IYbj6yC8uxZsGBi51ZJfci9Wa7D2ACKDeHF0b035q73Q8sG9FZ2EWX1eB6 > > 12 // < PUTS 1,10634445306859 ; quote ; 0,0784121631112369 ; 0,0768439198490122 ; 0,0204081632653061 ; -6,3 ; 0,0756677374023436 ; 0,0811565888201302 ; -4 ; f005FF8cc38dbF697E72DA4E1Cc2B0808eBdeCdF4cc6dceefcF0dDaebAEe92dD ; < 4pX5272CjvOLmGLpz32AVqo8Ici55w7nhNOI2guyM3kgZZKKvc2l0ohXAz44oWBH > > 13 // < PUTS 1,15663283729898 ; quote ; 0,0705709468001132 ; 0,0691595278641109 ; 0,0204081632653061 ; -5 ; 0,0681009636621092 ; 0,0730409299381171 ; -3,4 ; B22AF2d2CBCd1e3AC3F23b51af2A6C3D0032dcD97D9BE5b2FEd64E54725FBdFe ; < xtV4HRAMz1S305BeRi4wNwWxXCgLh7t48876L5bWiULgHH4yNb9E259Zu27o9F7C > > 14 // < PUTS 1,20692122152937 ; quote ; 0,0635138521201019 ; 0,0622435750776999 ; 0,0204081632653061 ; 5,8 ; 0,0612908672958984 ; 0,0657368369443055 ; 3,8 ; ca67522E3eDD7E7bEadf1ffEEcc5fc0AAefE78cacDf9EbdDbc5BD818baD5f7c8 ; < G29saGQjm72TOe5c0l3nwtP7m93NyVZF7C26005fuCmkTtpdz56pWVd996xM3Ts2 > > 15 // < PUTS 1,25720960575976 ; quote ; 0,0571624669080917 ; 0,0560192175699299 ; 0,0204081632653061 ; -5,7 ; 0,0551617805663085 ; 0,0591631532498749 ; -2,2 ; fdA120FFA1cdaeadDecdE8b7a9b4dAAbbE51cD2c683AFAC797C9BcABdDcF5Fad ; < 5EdCmo9VI23G8W06Li8Xnfx5M8Q2DI1CAE4IOlyiFe8PST10dd6zqinKDNA6LeCi > > 16 // < PUTS 1,30749798999015 ; quote ; 0,0514462202172826 ; 0,0504172958129369 ; 0,0204081632653061 ; 6,2 ; 0,0496456025096777 ; 0,0532468379248875 ; 4,8 ; C8D62eB35D79f9E7CD0a609A37Adab17F5e815648fa1c9e3c5EDef37DAEfa9cD ; < Pv3tr27x67I89Qgx30kcWM6TN81E39EYt2477Ph9wUF2pVUkj4416z1hNZ50fYT6 > > 17 // < PUTS 1,35778637422054 ; quote ; 0,0463015981955543 ; 0,0453755662316432 ; 0,0204081632653061 ; -5,5 ; 0,0446810422587099 ; 0,0479221541323987 ; 7,9 ; b0BF2EdCa74EbE1b2C0AC7fe0e1C8047C95fdcfC25E99cdB35BeFDaC3C48fEdA ; < y8Dy30N6rGtM5Yp0kT20ndMo9q6IuVJi9q9j1gjQ7YqHmGq468ZH84J1tuiEkeYS > > 18 // < PUTS 1,40807475845093 ; quote ; 0,0416714383759989 ; 0,0408380096084789 ; 0,0204081632653061 ; -1 ; 0,0402129380328389 ; 0,0431299387191588 ; 4,3 ; FBE85AEF08d04fCaBEbe10a520a75CaD8EDC9FaB33D4FCA0Fd3Bd5AF9aDeDCaC ; < yM2KYYidonU1ZGqzhb1hcnJ49KkE8k2raLpDiKc8w59w95Mm5WvM13qR4QbUhL13 > > 19 // < PUTS 1,45836314268132 ; quote ; 0,0375042945383989 ; 0,036754208647631 ; 0,0204081632653061 ; 0,5 ; 0,036191644229555 ; 0,0388169448472429 ; -3,5 ; B6C5F8BCcbcED76fe5EfedbE4Ed94f9B0DCacdEADeeF3771cEaba3c22fEbd7Dc ; < TXjUk3zRMtastVJTQ4N3xDyk09Li7UuexA6XS1U1Qm4zR8qvKAx180PDaq0L7IOS > > 20 // < PUTS 1,50865152691171 ; quote ; 0,0337538650845591 ; 0,0330787877828679 ; 0,0204081632653061 ; -5,2 ; 0,0325724798065995 ; 0,0349352503625186 ; 3,4 ; 10fb591049726C7dDce1Da092Aaca1DC138bCE3fbFCA465DFBAcCeb5d20020aC ; < FQisM7tCieUN009ZrmeV9UDIUHibN555I0HQStkcgiDNtGZ7Y40KppPn5olVk0fs > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,50949747348878 ; quote ; 0,072466441880395 ; 0,0710171130427871 ; 0,0204081632653061 ; -7,6 ; 0,0697851835308204 ; 0,0751477002299696 ; -9,9 ; dcbeFcbAEBcDF5F3b9D25BfDFF1bEddB3eCCBFa249D886fA50BB6dD7c28aa60f ; < 5qQOjeKWGzWL0o7fT6nOx10w3502bosC40UqZ513g9X7po41X0iZMUsbdhrP9yWA > > 1 // < CALLS 0,560447220837658 ; quote ; 0,0805182687559944 ; 0,0789079033808745 ; 0,0204081632653061 ; -7,2 ; 0,0775390928120226 ; 0,0834974446999662 ; -6 ; e6DEE2EBB4dd5f57fB3BcBFCA5C8e2b44dCc85E9eBf16B3EceBFbd8c3eE0Fb2B ; < sOJm6ev6fhhvv9j61de71h9zVXE4B6GE433XZL0Hf7CuMigSBwvZZdLFATYYCdUI > > 2 // < CALLS 0,611396968186536 ; quote ; 0,089464743062216 ; 0,0876754482009717 ; 0,0204081632653061 ; 6,5 ; 0,086154547568914 ; 0,092774938555518 ; 0,2 ; bfadeAe579dAfedbCd6efDad77a1cbcc7B19Cb72BCE41c5CC8DBBaaB1dBDe7eF ; < 141zdvtzP2uuD9DP40PeqIGf4QF30Hty4YV7rrA20XunBejRtita0s7I8Cbnd16V > > 3 // < CALLS 0,662346715535414 ; quote ; 0,0994052700691289 ; 0,0974171646677463 ; 0,0204081632653061 ; 2,5 ; 0,0957272750765711 ; 0,103083265061687 ; 6 ; FdCDBACE1Cbda1fe2E3cc6eaBb6ca7bec01EAa86b844CDcA1503fD123C4beefD ; < v5Ce5569b6a1Z8CvCp98IJ25Pgjo1JD7c1gbeVL1MA4GorVcoX54hZ18RzZUI05u > > 4 // < CALLS 0,713296462884292 ; quote ; 0,11045030007681 ; 0,108241294075274 ; 0,0204081632653061 ; 0,2 ; 0,106363638973968 ; 0,114536961179652 ; -3,8 ; cCCA03EfEBcb1c55f214CCF8F66dF20bDE7EA6bbEdada6aCe0d8dab31F5b6Ded ; < p3Hgs6fBqHYRNzzXZZkk96Pc3hS6KIBnsWOQY3Vhc73hWUD7z6w57Je6lDv247Q4 > > 5 // < CALLS 0,76424621023317 ; quote ; 0,1227225556409 ; 0,120268104528082 ; 0,0204081632653061 ; 2,9 ; 0,118181821082187 ; 0,127263290199613 ; 4,7 ; cECEDF5B4B2bDeB2cb9CcEb071Db569aDc06Cf23e0ABEeaD8c0D76b3c6e1aF8C ; < wPUlp6J0768W7mf6hq2664xF002t0s1DUVIOfAn2M3gXtojj0ED4cXGs4u1hWhj9 > > 6 // < CALLS 0,815195957582048 ; quote ; 0,136358395156556 ; 0,133631227253424 ; 0,0204081632653061 ; -8,2 ; 0,131313134535763 ; 0,141403655777348 ; -3,9 ; e48ACc6eC823CFbfDed0f0d7fA0F7bE4FEA9e3CdbBDBCBE0DC94D956E398cE3E ; < 4yBBEL1eITmb4Z4h8DBqA9ZF8F0JGzOjwk3w201qpG6mfd609z8795nj4usVyL0X > > 7 // < CALLS 0,866145704930925 ; quote ; 0,151509327951728 ; 0,148479141392694 ; 0,0204081632653061 ; -2,2 ; 0,145903482817514 ; 0,157115173085942 ; 5,9 ; c1FCfeDffC3E4dddFbc7C8cF66A6F4E1C0EEAabfd6afdDE7Dd87dcbD4Ddd6fFD ; < n0A818auZhlr5Pt5L8uOdP9l4P27XEWv8v0xd18fuplS8X0ZT1U9Wo7B6C7SbRz8 > > 8 // < CALLS 0,917095452279803 ; quote ; 0,168343697724142 ; 0,16497682376966 ; 0,0204081632653061 ; 4,7 ; 0,162114980908349 ; 0,174572414539936 ; 2,4 ; cDCaf0E47C911a2d4BEFB0E34cDDce96cad11cdF8fecE2abe0Db5fb4a7fdfdE0 ; < 3fMX17KmO7gO4DFjkRIGk689T9N6t874U2zMo5kYQW993EbbOYWw6PHrX91X50XL > > 9 // < CALLS 0,968045199628681 ; quote ; 0,187048553026825 ; 0,183307581966288 ; 0,0204081632653061 ; 5,7 ; 0,180127756564832 ; 0,193969349488817 ; -8,7 ; fc4Bb0B53AB9bb01aEdb67dbe4cBaD29fb64FCBfbf2Bece5C3C7A0F9ebfaEB28 ; < uZw1h7UA65L4HTsdaoJVCTbB28Jnnl3N9ZWv57pfNC2REIo17g8KHeKV8eyM4gSK > > 10 // < CALLS 1,01899494697756 ; quote ; 0,207831725585361 ; 0,203675091073654 ; 0,0204081632653061 ; 8,7 ; 0,200141951738702 ; 0,215521499432019 ; -9,8 ; A3F564Dae9beDd9fAa41B89EcfEFa6e78ffA9dB4BaAbDa4e8Ce2EcDDFFEbC79b ; < 728xu0G66Z3ixVcM53AAawtR2BG6Qo9KsJR2qXsaKrQLM82vWv9T28SzPak0wfzo > > 11 // < CALLS 1,06994469432644 ; quote ; 0,187048553026825 ; 0,183307581966288 ; 0,0204081632653061 ; -2,6 ; 0,180127756564832 ; 0,193969349488817 ; 2,4 ; 7EaebB6D60DEFFe4eeBAbE99daC361Ac6Fe7e406EfdDF3C47d4CC18DC6c72DFf ; < AWj6DOV3w7p0eneQ315X9wnbSt3RQU6x955TX3gb0m8VW9wm8nISuan33LRlg0q0 > > 12 // < CALLS 1,12089444167532 ; quote ; 0,168343697724142 ; 0,16497682376966 ; 0,0204081632653061 ; 5,3 ; 0,162114980908349 ; 0,174572414539936 ; 8 ; e985cCc0B6fADd1Cca2fEA9825eAFEABcAFCbc5d2D0Fb5A8c68E1f51D9EfEaEb ; < 1ufRY0Q0D2gCj546gad4Wqd9dGf9728STWN930BsmH4WR81QBE9h6fL1l0Ge4xyW > > 13 // < CALLS 1,17184418902419 ; quote ; 0,151509327951728 ; 0,148479141392694 ; 0,0204081632653061 ; 5,7 ; 0,145903482817514 ; 0,157115173085942 ; -9,9 ; 87aBcEbe451acaAa723bfDEAcFf1fb9a4bD8dDfa4Dc919df21C12aa7cCD8F28f ; < ZfbqcBrYl6Tk7W3l6cinI4Ni53B5MZy0246g18IuvC0y9faTl8965rD335lJ633C > > 14 // < CALLS 1,22279393637307 ; quote ; 0,136358395156556 ; 0,133631227253424 ; 0,0204081632653061 ; -6,8 ; 0,131313134535763 ; 0,141403655777348 ; -9,4 ; f74ADEcF770f0EcD7FC82eA36Ebad58db5fc71aeD8C200a2a6cfCEbbdBEfbeCa ; < 4N6xiL3VR4TD2rjB54nRo1elk3LMC2pyb36p59Wl4csasnBZ32zShE2XYyGSf8Jc > > 15 // < CALLS 1,27374368372195 ; quote ; 0,1227225556409 ; 0,120268104528082 ; 0,0204081632653061 ; 9,7 ; 0,118181821082187 ; 0,127263290199613 ; 5 ; FB64ddCcebE210f8b2dcEe2E18Ea88A0e17e1DDF6fbADebdbC8F3CaEbaDbbbdf ; < HG5zmzNn63Dfl73cHlYsFt82tCZxA2E4hqv51wT49Hgvv82ApO334f6S6NUr2hI5 > > 16 // < CALLS 1,32469343107083 ; quote ; 0,11045030007681 ; 0,108241294075274 ; 0,0204081632653061 ; 0,4 ; 0,106363638973968 ; 0,114536961179652 ; -2 ; aAd303fcBfEeF9fd7f9F11ccAC0Bf742ad1ed1b4fA2C6C39A9cFFDd9Dd7EebFa ; < cFpvqaqwGQ0HMtXaQ0ZhuiCAXp5YwrBQ21nSnpJ99Mi0sRK7WOUwAcAUQj357U9q > > 17 // < CALLS 1,37564317841971 ; quote ; 0,0994052700691289 ; 0,0974171646677463 ; 0,0204081632653061 ; 4,1 ; 0,0957272750765711 ; 0,103083265061687 ; 4,9 ; 0A6eceAbF8cADBeCc4d4B72AB1cB0fCFE00Cc0aecB9a1E6dfafA5EBA72CfCBA1 ; < ls1qpSzuT98fgoL26xBvy01a0U12pGtcOt9D8Z7Hi014O77Ghvz707NHzHOig42x > > 18 // < CALLS 1,42659292576858 ; quote ; 0,089464743062216 ; 0,0876754482009717 ; 0,0204081632653061 ; -2 ; 0,086154547568914 ; 0,092774938555518 ; 1,8 ; Db5ABDb8D9E7DCbd5c9D96Ae1a6a0190CafC4effafEBaD7Cf0aE9EfAfBDfFFa6 ; < reN9K0gszw55oKdrE12o1P5A1oWXK10USXheL15PB3w234mOuL88J3KGu5PlO33h > > 19 // < CALLS 1,47754267311746 ; quote ; 0,0805182687559944 ; 0,0789079033808745 ; 0,0204081632653061 ; -5,3 ; 0,0775390928120226 ; 0,0834974446999662 ; 9,8 ; AceddceadDDCeFDdbc2B8F5c3cB4dc3aFaDcF87FBaE7c0edcAbbe5F6AA4BC6d6 ; < 7F19dKUX2mQr0bZTbaQm27bI0OVaa0v31eM8FaxsdJ1067a98LABLQ8858pMWwn1 > > 20 // < CALLS 1,52849242046634 ; quote ; 0,072466441880395 ; 0,0710171130427871 ; 0,0204081632653061 ; -7,5 ; 0,0697851835308204 ; 0,0751477002299696 ; -4,2 ; 8EcE5aAD68EEa4EFe67A4e2AF0dDD9cF68DB4BbFaCE0FFcfCEebCDe8dADC29Bf ; < pt49q277gpWteSPbJB71cl1YD86Vx5NUy8QOx3cGsnSO1O83CWb6iul8LXHo0WJi > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,50949747348878 ; quote ; 0,072466441880395 ; 0,0710171130427871 ; 0,0204081632653061 ; -1,5 ; 0,0697851835308204 ; 0,0751477002299696 ; 7,4 ; caE2bDB82FBA6bDdfF1aFFbaa7Eee4CF3ec3fBBaaDaBd7Cb9E85D1b465a6EBC3 ; < NOJ8873Zo3HV2BA9wfcfmpYmkucBwMIB66w4cr6cagwvSCl6j0Pbd51l0jBB3ERp > > 1 // < PUTS 0,560447220837658 ; quote ; 0,0805182687559944 ; 0,0789079033808745 ; 0,0204081632653061 ; -5,3 ; 0,0775390928120226 ; 0,0834974446999662 ; -3,8 ; 5EC1e8Cc5AFEDcFeA11DbCCd5bcbC45bE828DeADfb0aAccEFD1cfAceF8fab1Fa ; < 5Q5ozl07jl5zUseI47I0MWNZ1npwDtyHfTrq0qwFGs84Y72H56l9aT88YEv1T484 > > 2 // < PUTS 0,611396968186536 ; quote ; 0,089464743062216 ; 0,0876754482009717 ; 0,0204081632653061 ; 7,1 ; 0,086154547568914 ; 0,092774938555518 ; -2,2 ; 05c2cEa3CDfCFdebb2fc6aD046E8bf1e2DABA884cAd1ADD8dBdAA2A86b23dAbf ; < LjME3vwypysj256SB2p4OdjA16LY7y4s4oTi4iVwS4lOUE780Eu3t21xt0FOHrDF > > 3 // < PUTS 0,662346715535414 ; quote ; 0,0994052700691289 ; 0,0974171646677463 ; 0,0204081632653061 ; -8,1 ; 0,0957272750765711 ; 0,103083265061687 ; 7,6 ; fA1F51DaA0CC55AFFBdFa773eB3ECfFAeEbae57e42EaF4BFE7Af8d4eAbceadD5 ; < RZ4VXQT2a8Lh1XQ3H2DBEJXA8g7RS5GW0mqqlSX094klv0u4S6WPT53QSw529YS2 > > 4 // < PUTS 0,713296462884292 ; quote ; 0,11045030007681 ; 0,108241294075274 ; 0,0204081632653061 ; -7,9 ; 0,106363638973968 ; 0,114536961179652 ; -7,4 ; eea4bAB7dd5dEbBc5CaEdfC825FC9aBCCDABcbB2d4BE8C39EdDAEE7D432Ecd91 ; < ubQ7ha7s1ubco7mR3gQ50pwmk14o2YEimTf54l542h0WJLEssPySGgtbuO2JB614 > > 5 // < PUTS 0,76424621023317 ; quote ; 0,1227225556409 ; 0,120268104528082 ; 0,0204081632653061 ; -5,9 ; 0,118181821082187 ; 0,127263290199613 ; 3,9 ; DaFEe07F7C07FcdBdA55dE0BfE89C3Ccb2A1Af3abA6015AAf2ed6f07fcc39efF ; < 2qhy9xwJa1UenHnWWX5h6M32Wb8575mvLen5DZmKBW69ja0706lqsGSXb0E56Do6 > > 6 // < PUTS 0,815195957582048 ; quote ; 0,136358395156556 ; 0,133631227253424 ; 0,0204081632653061 ; 2,3 ; 0,131313134535763 ; 0,141403655777348 ; 7,5 ; 3DfDef00bdADeBb55FA29c40DFcac9229Cba48D0CD2E9aEaACf7CaaC731F8b3c ; < FoJ44i9JhVEo64Qd0r0rygwO6mySOhNqNMXCNY1pp88DJhQ7BpMXmp6Q6Mp1Tlca > > 7 // < PUTS 0,866145704930925 ; quote ; 0,151509327951728 ; 0,148479141392694 ; 0,0204081632653061 ; -3 ; 0,145903482817514 ; 0,157115173085942 ; -4 ; 0eaCfa0Ce5aAa8Ed6A2feacC00ad98Bbcb581e387eCe3FeBEE0aF1a6cfDDAD1b ; < 9aBrX86Za2dOP8918sq0E47xJ7qgBaLZv6172Z80GL40y4e9az7kORX94mNqonmg > > 8 // < PUTS 0,917095452279803 ; quote ; 0,168343697724142 ; 0,16497682376966 ; 0,0204081632653061 ; -3,7 ; 0,162114980908349 ; 0,174572414539936 ; -0,1 ; 0c5eA11d8FbBF9B43AD9c4dbb5B5BD7d19BeFe1BDcFC2ED7Fba6baeFbbeDec8c ; < 6a78tqOa2uzVtbpYvP42QWGZ1jglrc7wR616Kow0jd83y1YO4Uk25A6xce7fvdOT > > 9 // < PUTS 0,968045199628681 ; quote ; 0,187048553026825 ; 0,183307581966288 ; 0,0204081632653061 ; 8,4 ; 0,180127756564832 ; 0,193969349488817 ; 4,8 ; e3aDfd3abE7cFE0Dd7f9dFAcBb9C3Ab28d485faDa64dCe347dfB6EB8bBAfbaFE ; < hP03Rw9asFWkT5H8JbI9yWM4725dtRo48vj8d2Dn13Md2LH42qDTxVXV7L8849U4 > > 10 // < PUTS 1,01899494697756 ; quote ; 0,207831725585361 ; 0,203675091073654 ; 0,0204081632653061 ; 8,8 ; 0,200141951738702 ; 0,215521499432019 ; -4,7 ; 1b7436287CEB65EA25dedcfa0bF3eFEAAC1fdff374aEf1DA8224bfa4B9f6DaB1 ; < 1z5kU3H6h99Z191sR7IiZ2zd93Kqp0I074OL2S11wAZObs27FcD3805Rc342281A > > 11 // < PUTS 1,06994469432644 ; quote ; 0,187048553026825 ; 0,183307581966288 ; 0,0204081632653061 ; 4,5 ; 0,180127756564832 ; 0,193969349488817 ; 8,1 ; 46a375aCD62cFae9cFef1E4AFEe51B0dCF35DfaFA02DDfDEFfDBCB9EC8e2DBFa ; < h3V6E4FT2L7lTvDHdLXFcgvMT5F7IC13512t3ry1g7J466Ck81DmK8fvtsdjOH7S > > 12 // < PUTS 1,12089444167532 ; quote ; 0,168343697724142 ; 0,16497682376966 ; 0,0204081632653061 ; -9,3 ; 0,162114980908349 ; 0,174572414539936 ; 5,7 ; Ea26BFdafce47AD96eeBEbf0bB1fBF6BB580BdFd8CFebAD332daDfb13b70EfeD ; < fFD5285iO5ALI0zZ13TZUu0aZ5fgRV080Lr1FhypZm7Qth229U6W5PnE54Cr6s0M > > 13 // < PUTS 1,17184418902419 ; quote ; 0,151509327951728 ; 0,148479141392694 ; 0,0204081632653061 ; 5,7 ; 0,145903482817514 ; 0,157115173085942 ; -3,7 ; F5e366228520fabBA2Dbcb8eDBFcDcA74A6ac5F1Dc80f7bee7Cd6Da0dBEdF86a ; < D1DdYeJ24hohHogH9s5776aXhU4zhVrwI3KCx3pIYg6u3gS666pwVkRx76ly43C7 > > 14 // < PUTS 1,22279393637307 ; quote ; 0,136358395156556 ; 0,133631227253424 ; 0,0204081632653061 ; 8,3 ; 0,131313134535763 ; 0,141403655777348 ; -0,9 ; fc71ccF254f2DAbeEeB97ed2b26CDf2BEAfBE199535C866FE3AfF00fc01Eb8De ; < nFJwW6eYa0SqECIEp8821BKSEs7sajy20AfxmBEJqAWxqcW6Aw1x4g3se3zycn64 > > 15 // < PUTS 1,27374368372195 ; quote ; 0,1227225556409 ; 0,120268104528082 ; 0,0204081632653061 ; 8 ; 0,118181821082187 ; 0,127263290199613 ; -8 ; ABD2B11bc2DE0Bc1e237DFF6e5bCaB1554BaDEBDcFA2Ae2fEcD5A5B348a648db ; < 4s5l7BKcg7o90Ev69O1iKUaga4C7ZJV2lXdVjXXrcN3E6NOcAwBb0kPcE5mU26gY > > 16 // < PUTS 1,32469343107083 ; quote ; 0,11045030007681 ; 0,108241294075274 ; 0,0204081632653061 ; -0,8 ; 0,106363638973968 ; 0,114536961179652 ; 2,8 ; Cd1aE6dABCa1dee3267d7FbbA5CDAAeACeeefaCe2ee28ECDb3BA708274BFD2CD ; < YgU8v449kPwaMTLH08fvz5GLn0guE4h91RIS804806okJYJ9e0Xcu7UR385N5VfU > > 17 // < PUTS 1,37564317841971 ; quote ; 0,0994052700691289 ; 0,0974171646677463 ; 0,0204081632653061 ; -2 ; 0,0957272750765711 ; 0,103083265061687 ; 4,1 ; 87c6a7a0bb124f6B5F3d0b9ab4Edad0DABaA5FEEebDd66b15debbA6BBFC6Eccf ; < nO4vtjo6rn1CLzM2rZ84Aj6TLKcybr43d9Y3KobZ53LIfQa4kO3NIbiZkuRdZR9v > > 18 // < PUTS 1,42659292576858 ; quote ; 0,089464743062216 ; 0,0876754482009717 ; 0,0204081632653061 ; -0,4 ; 0,086154547568914 ; 0,092774938555518 ; -7,1 ; 23b0FBAc3bfFBBbFe7BFC2eE6aD9bc41aC51CA97aAcD8B3ADB42ceA0e030046F ; < V92KDdbzLULQSgxVC021Fc8pFYQHP0iny1ILK9Fp6ah4klH402iGJbLJv11vawo9 > > 19 // < PUTS 1,47754267311746 ; quote ; 0,0805182687559944 ; 0,0789079033808745 ; 0,0204081632653061 ; -6,5 ; 0,0775390928120226 ; 0,0834974446999662 ; -3,9 ; 7Cf0a78CFF9aDe9baCBc5EddfaAb5c1ADEa6fBbcaF06EFa4FdeA5C54FabF3E75 ; < 09che6Px88jbf55SV5KSi80k6Y9g23Hw4q9f0KZbO6h7gdy2izgOCPfTb6JX5l6E > > 20 // < PUTS 1,52849242046634 ; quote ; 0,072466441880395 ; 0,0710171130427871 ; 0,0204081632653061 ; 2,9 ; 0,0697851835308204 ; 0,0751477002299696 ; -0,9 ; F7EceCcBecBdceDcFE4EBbd6bD7AcfBe81B7fD8Bcf1aF2cAefDDE0fEFc5AF7A9 ; < 5Kr3Ih0r90ZhO4veGP2SV02q11Sr3sqeBIWNUul825QkX5JwmYvxi3FwRcY6lrAl > > 21 // RUBRUB // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 1 ; 1,14 ; -0,12280701754386 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Ef89d84cCdcE1Ebc0c557aAdA7Eb6DDccEaBaa76b2B8AB5Af0EACc4D95daD8ed ; < lMmTOa50vseKcF031b9t0zpIF8lvD3P8gPU4Ta0k15Awx1n8558NxOwm85dP8p78 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 1,00019809499864 ; 1,14022582829845 ; -0,12280701754386 ; 0,999948094998643 ; 1,00044809499864 ; -1,7 ; -4,6 ; -4,7 ; -2,2 ; -3,3 ; 8 ; 0,68 ; RUBRUB23JA19 ; b6DEaD9Da5BDac2bc52Cf86D2aE7AEE8BfDecCdB5A1BBF29Fe95FbC32Fde181C ; < rW45cJO6g2srlRSGFol4HsQ856f2aIeXZL70fS25ez233dMdTAS07h4Q2b6xilap > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 1,00055539906559 ; 1,14063315493477 ; -0,12280701754386 ; 1,00030539906559 ; 1,00080539906559 ; -7,1 ; -9,3 ; -4,7 ; -3,3 ; 4,5 ; -8,7 ; -0,99 ; RUBRUBMA1996 ; Aa16FfBdceb3a5a86a8aB3513A1cf5A7D9bA14A7Fde6cC3EFd67f2C6Dfe12c0A ; < 6n6Vinjvy0OdCNNA9tlYVz8joO4W944ep77fN6kvo58J4x6ZY3e8FJv2c1gKoDyV > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 1,00122318466273 ; 1,14139443051552 ; -0,12280701754386 ; 1,00097318466273 ; 1,00147318466274 ; -2,7 ; -9,8 ; -6,9 ; -0,8 ; -3,1 ; -4,3 ; -0,21 ; RUBRUBMA1927 ; 26D5EcEacCae8AB95AFcc372EEdF1E65FeEBB16084DCFeeEd914AAf6E1ED6fDa ; < pAdhY1Yia8ZT8E9YIVXPe01C7y18C9iRsvW8Tj0A75l0x5BF4W9L9PjoMmNFN6QF > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 1,00203281363039 ; 1,14231740753864 ; -0,12280701754386 ; 1,00178281363039 ; 1,00228281363039 ; 3,5 ; -6,3 ; 0,1 ; -8,5 ; 0,1 ; 3,6 ; -0,17 ; RUBRUBJU1945 ; fbE95597f6A368CC4aB31fc6c40aBB1BeD1EfcBCEd05d94F5f9cfAd3aBfDDd33 ; < XN8sd3BOVD98JJ5gUF4srghniv1gLSGM4MP3PKySljUV8LK9pgvlEi33RgDc40HV > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 1,00310990683689 ; 1,14354529379405 ; -0,12280701754386 ; 1,00285990683689 ; 1,00335990683689 ; -6,9 ; -9,8 ; -4,2 ; 4 ; -9,4 ; 3,4 ; 0,24 ; RUBRUBSE1917 ; DA338Ce3eEBa0cbe2ba0BEfad5FDACE4bEC9eeaf71aFC6b16aCd4FdD2c6AA3bE ; < 9vqx37602S6cIcPb25JDlAJ5I7Eb9j3UgRR9D98n1CMS5U2P4JnZLLKZSimjLFaL > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 1,00434194621085 ; 1,14494981868036 ; -0,12280701754386 ; 1,00409194621085 ; 1,00459194621085 ; 8,2 ; 3,7 ; -2 ; 7,6 ; -3,5 ; 9,2 ; -0,74 ; RUBRUBDE1996 ; 2Bd7cccCbF922FaFEeb60f3EdAeabfCaF6BACc0ABd6Cebd6caDf0DbEDA0d9b6c ; < 5Hs7FX8Ajk01DYbh1O0gUn55yrU9Xo43AY6k9nN2UyBVSsZv7O54djzY07lQo2P4 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 1,00576768460781 ; 1,1465751604529 ; -0,12280701754386 ; 1,00551768460781 ; 1,00601768460781 ; 4,6 ; -4,1 ; 9,2 ; -7,7 ; 4,5 ; -7,4 ; -0,13 ; RUBRUBJA2060 ; 0D2c7cdaBcDf5b0D4ADdA59CEaBbfe3AACB8D066Dc8a69Fc30f4BD80AD012d90 ; < 11FB7933hFQK06nBYO2710ef0yqtt6iUe2djkC7HxA2JLtksyzZWbmTZDmzJKdcY > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 1,00738794918464 ; 1,1484222620705 ; -0,12280701754386 ; 1,00713794918464 ; 1,00763794918464 ; -7,4 ; 7 ; 6,2 ; -6,1 ; 2,8 ; -7,5 ; -0,77 ; RUBRUBMA2010 ; a6AE874A4fcc8Fbe61BC6C7bFbecd4dd01FfEf7d7af6c8eEAA2a14698Cd9EcEA ; < JeFx7EbYrN5NRgPkkgf9230g2AXcB364X6NRVjBf353utWshq0NPRn6jY97A51Th > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 1,00924397552261 ; 1,15053813209578 ; -0,12280701754386 ; 1,00899397552261 ; 1,00949397552261 ; -7,8 ; 3,6 ; -9,6 ; -1,2 ; 4,4 ; 8,2 ; -0,58 ; RUBRUBMA2018 ; edA8CEebdc13C0fbFaDCA251FDECbCd4cccc3EbCbED9A4d3bBEA29a2e4bf683F ; < 2789MKowTEu9tJ42mqA4f5E2ZVR2m1505d42HEC6h82W9np8YZ1dCLPzpuxwjct5 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 1,01141072113809 ; 1,15300822209743 ; -0,12280701754386 ; 1,01116072113809 ; 1,01166072113809 ; -0,4 ; 6,3 ; 6,7 ; -4 ; 4,1 ; 6,3 ; -0,3 ; RUBRUBJU2028 ; C424Ec3Db6BabaDdC4FEBAB5c37bbB7EbFdBCaF2Ae4EDd29ea1BEB491C7Cd8ab ; < reY2Y8CQB1R57MrMTsnF6o5uAxbb8SC7kT9PX149Id2G3bH6sA43HNhG0Euif1X9 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 1,0136837940808 ; 1,15559952525211 ; -0,12280701754386 ; 1,0134337940808 ; 1,0139337940808 ; 3,7 ; 2,9 ; 9 ; 0,3 ; 0,2 ; 9,4 ; -0,48 ; RUBRUBSE2034 ; 48Fa335B5d2CA055fc08FcB2b2FC570FDF1ca31d4CAAD2DaFfABaABFEb4Eab00 ; < r0F59KmduFmN22amXdR6A3xI2O42QXneR003kJG52R9y1StWqvDJ4R1b9Y0L77uX > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 1,01627983827744 ; 1,15855901563628 ; -0,12280701754386 ; 1,01602983827744 ; 1,01652983827744 ; 0,2 ; -6,8 ; -3 ; -2,6 ; -2,3 ; -8,8 ; 0,64 ; RUBRUBDE2095 ; 3cDD1adBF2DbEa4Ba4fDaf08938eA5cde473Ee4e1d2eAaBdDc7aFaa83A03ddCf ; < KG8l6exbfp700S1CEw345hTZfz4cBJGAp1uo2t6k9Qts3me7j3drB18pm0y569VU > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 1,01899494697756 ; 1,16165423955442 ; -0,12280701754386 ; 1,01874494697756 ; 1,01924494697756 ; 2,5 ; -9,9 ; 3,9 ; 8,1 ; 4,1 ; -0,6 ; 0,85 ; RUBRUBJA2122 ; B4FEADbcd0bF200dbaEDCc4D06cf7Ffe3b7A99c283E17eC8fF2E859225Ed2b3f ; < q5yQsiY4yHm77u69rL414p37237BNJpA9F3V9QnER5dW119h9bcGh09pTP95e0kI > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 1,02195540638501 ; 1,16502916327891 ; -0,12280701754386 ; 1,02170540638501 ; 1,02220540638501 ; -2,8 ; 1,5 ; 8,1 ; -2 ; -1,8 ; 9,3 ; -0,93 ; RUBRUBMA2140 ; a3abCCDeA7FbEDd01eA2Bfc21DcAc0BBabce2C6c4f6d01fbf8CED03bB0F6fb5e ; < up913Rpq3f9yuwe16AGa472mQ5TskjEp8Ay3OjrkEJjOm6nSl2uciU6WOM8qAYqa > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 1,02507847753177 ; 1,16858946438622 ; -0,12280701754386 ; 1,02482847753177 ; 1,02532847753177 ; 0 ; -5,7 ; 5,5 ; 8,2 ; 7,3 ; 1,1 ; -0,2 ; RUBRUBMA2156 ; CD10FbC38eB22Ddcbeaac7DbF2feabEBCba53af9a5fD97CbAFEC3fBC9c039aee ; < xX6dS8971OYW4c2K7Th0n3VMyS867NEpkH767Df7bJga4Dw665IK3t8S0t6b765x > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 1,02848555285693 ; 1,1724735302569 ; -0,12280701754386 ; 1,02823555285693 ; 1,02873555285693 ; 2,1 ; -7,1 ; -8 ; 8,2 ; -5,6 ; -9,9 ; 0,02 ; RUBRUBJU2150 ; FAac03AEf26Ff5C0E9EbD9cFaA7aefbF22dDeFccacDcffA1D3EFaBBEDDdfd0ab ; < vfLL5Db6BXv3gePej7C2yZCkXs3omw1nNlP02S881IA8hsId1s5oi7Q0Z4MXqMuo > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 1,03203846688413 ; 1,1765238522479 ; -0,12280701754386 ; 1,03178846688413 ; 1,03228846688413 ; -5,2 ; 5,5 ; 9,4 ; -5,6 ; -8,2 ; -6,2 ; 0,36 ; RUBRUBSE2121 ; 91eeE012f85ADDeCfD9Beb0EF8ACb8befD5Edb5aBeA4a8624fCD3cCF0aE3AEd3 ; < eEQm9ingKcwS6439QsN57LIG755m04ComBVcOjpN4s510gq74KqGVOifo8453MOl > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 1,03600700854561 ; 1,181047989742 ; -0,12280701754386 ; 1,03575700854561 ; 1,03625700854561 ; -3,3 ; -4,6 ; -7,9 ; -6,8 ; 2,1 ; -2,1 ; -0,36 ; RUBRUBDE2155 ; 68CEaCeEFD32ADB8bEe0a237DF1A11D3cB3F93fCf0Cc20a3bfdBfeefbB8a20Fe ; < hOFUZcH4G5069TCoKFnx33x43F1CAM9f4wgKSzYO2vMZ493SVKyhpM21U8c7610q > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 1,0400797785847 ; 1,18569094758656 ; -0,12280701754386 ; 1,0398297785847 ; 1,0403297785847 ; 1,8 ; -5,6 ; -6,8 ; 9,3 ; -4,4 ; 8 ; -0,31 ; RUBRUBJA2169 ; c0A57aacE4bdABDb5bfBaACdDFe6fECE463dD5cad94BacB4ed504Ced1517e0DC ; < 0tP2Aa75PXKqC9V5f662E934eifxllfX3kt6pll8eIk00iVH5BjpJg7q52VHkOkO > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 1,04442849559216 ; 1,19064848497506 ; -0,12280701754386 ; 1,04417849559216 ; 1,04467849559216 ; 6,8 ; 5 ; 0,8 ; 9,8 ; 1,4 ; -8,6 ; 0,55 ; RUBRUBMA2138 ; EFBbEDfDBABE1dbC62FCdE38BBaeFaeAeDd2eccECA667A46eAbBBbBa0bd15ab4 ; < 5VKw8mDP4g3Q0np5SXQ8d14DcQHE9vLA57Pi7q1eSH0R8q161p6V28t9QECotD9q > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 1,04903348601223 ; 1,19589817405394 ; -0,12280701754386 ; 1,04878348601223 ; 1,04928348601223 ; -3,6 ; -3,1 ; 8,7 ; 0,4 ; -1,1 ; -8,3 ; 0,92 ; RUBRUBMA2183 ; BEB1Fec7DDadDE45EfBDF33eeCd7Ee82FF343AEC69Ce0e4e9DDEBBB80A5AbeeB ; < YHi5ai7V8diNFOxjiD8Np26D0591L66ICM460595zK3VcF82nOg9eKK7mlHaKAxw > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 1,05382138706408 ; 1,20135638125305 ; -0,12280701754386 ; 1,05357138706408 ; 1,05407138706408 ; -7,5 ; -9 ; -5,6 ; 9,6 ; -0,6 ; 2,9 ; -0,6 ; RUBRUBJU2141 ; CDCbdfEfad3eAa678dFACcCCBCd8Cb6fFeFBb42CA382Fbc24e1D0bFE4D1d1cFb ; < 8HQg68zH59M7XXxCqaD55l35UJMc2Grpv0KZZy45vVt0G08c210HmeUCq81O4rJf > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 1,05882404236131 ; 1,20705940829189 ; -0,12280701754386 ; 1,05857404236131 ; 1,05907404236131 ; 4,8 ; 0 ; 2,3 ; 5 ; 9,1 ; -3,5 ; -0,78 ; RUBRUBSE2123 ; a1ebC21Ccb3Addfb7bdD12eec364aD8FE6FAcAb42eff85fE6FCD9ae1eEb4c8E3 ; < Nkn337r93hsMp1wabO8d97txT11D06i8dndgKcj59ikuPjAeR1rlTY7j6FT77cE6 > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 1,06421478026698 ; 1,21320484950436 ; -0,12280701754386 ; 1,06396478026698 ; 1,06446478026698 ; 2 ; -5,4 ; 5,4 ; 4,3 ; 1,9 ; 6,9 ; -0,06 ; RUBRUBDE2159 ; bDDdf5e9C35D2EcDBB6badbde6BbfaACCeEF2dC1BbBfFBB3Ab5eC5Bc3f3DB33E ; < HC0aQWhWonf02tm2xshyFsXopWWtEQm1sH5Hwl6DqP16z14fR748Yx6Juq8gfM0e > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,520039889292349 ; quote ; 0,117738181102969 ; 0,115383417480909 ; 0,0204081632653061 ; -9 ; 0,112793177496644 ; 0,122683184709293 ; -2,4 ; EbACdfb7c0cd07EaaeED9B8e039cDB17a2e3FbD6f9B0fEF514c7BDdAe9EcBdaa ; < ikxh2o93tnZbA079m5jXczAUa8lV3ULbyXCpf0z6gGFc8Yey4vXc444HZD1d9jiT > > 1 // < CALLS 0,572043878221584 ; quote ; 0,130820201225521 ; 0,128203797201011 ; 0,0204081632653061 ; 8,2 ; 0,12532575277405 ; 0,136314649676993 ; -5 ; b0EafD9b7DE5F4E2580b6ac14ecDfaAfCd8bcEd6AEF4AB26fEA5dACbbFf62d4e ; < M0W9t99Gn8yf66aSt6m45V4zK9xyuC3AM807t30lu50gjs8248sl1TnElSScq8nT > > 2 // < CALLS 0,624047867150819 ; quote ; 0,145355779139468 ; 0,142448663556679 ; 0,0204081632653061 ; 6,9 ; 0,13925083641561 ; 0,151460721863326 ; 7,7 ; 8BBF2EefdedF1eCAac3D4aD6d1Dd1d040dF11eDc7F43BA6ea5A0D8dADCC2DaAd ; < 0U63UshEnkqa2SBxRF38MxSoymEL68twoNi6P405026a5Vuj03MST25p6598hT8H > > 3 // < CALLS 0,676051856080054 ; quote ; 0,161506421266075 ; 0,158276292840754 ; 0,0204081632653061 ; 1 ; 0,1547231515729 ; 0,16828969095925 ; 9,9 ; Cab20AFBce37d1A8BEfBBdA13DfA10A8Cd1BD6fEAC8f5F38BC706bfdcDedCccE ; < d9tj85dCGSmcC91f89kX0X7lDwfB6z6z12N9HoJs19a4Tcsl26u0Bcf4QnV1IbyQ > > 4 // < CALLS 0,728055845009289 ; quote ; 0,179451579184528 ; 0,175862547600838 ; 0,0204081632653061 ; -9,2 ; 0,171914612858778 ; 0,186988545510279 ; -4,9 ; ce782bEeCd5BF5dEe8ACCf6Dc5D3fAe9Fef4Fe7D3cC3bfe2e2AfdAaF5c8d06aA ; < EfuI1XYNwBpHFIq2ih0B8ggWNL7N271yqVns0E3Zk7Siv9O137Gb6v562S8jccRm > > 5 // < CALLS 0,780059833938523 ; quote ; 0,199390643538364 ; 0,195402830667597 ; 0,0204081632653061 ; 2,3 ; 0,191016236509753 ; 0,207765050566975 ; -5,9 ; A9dEADa93F93AF9CedF6Fb0bFA7Ab4d9DfaCf2bEFe716fCBe4B4CaCE6c7deD3D ; < v2LOfKZ5s6dytdLX06fhtexScDz83d62G8RJ46WhgTMazqT1BKdH1uXOnq4yM9V8 > > 6 // < CALLS 0,832063822867758 ; quote ; 0,221545159487071 ; 0,21711425629733 ; 0,0204081632653061 ; -8,4 ; 0,212240262788614 ; 0,230850056185528 ; 0 ; De2aFB5e3C04bbFfbC182ddeA1fBeDBF9ccD5bfF6a5ba9cEBCbdB8bbCDbdECeF ; < Efcq9zvmb40inxnK69vh9mB1NywMl8000TxjR2f93AuzlOk7oPFn1LEJFk2mR7eC > > 7 // < CALLS 0,884067811796993 ; quote ; 0,246161288318968 ; 0,241238062552589 ; 0,0204081632653061 ; 0,6 ; 0,235822514209572 ; 0,256500062428365 ; 7,2 ; 4B700E8dcAAF6aE91A8ffcf4D20DE99bF4eF8Ce49C4F30cbb3AC9bceadf082BC ; < 14r0943ndG22hfPj1T17Mc2e2g5BgFD9rhK4yP87R96zO7oLSxo66b1Y52BT7VO4 > > 8 // < CALLS 0,936071800726228 ; quote ; 0,273512542576632 ; 0,268042291725099 ; 0,0204081632653061 ; -8,2 ; 0,262025015788413 ; 0,28500006936485 ; -8,8 ; ffd4AADd89EdAD7eC3E3DFf0B5E22Fd028Bc3a1AbCBFe9ceFBfbd8BB8Bd0bCB3 ; < PHrJgiI4z45C5zma83R1fc8xEk5SNCAF5PEBJcCL4FnwCBH892D1f2e6951fA4iZ > > 9 // < CALLS 0,988075789655463 ; quote ; 0,303902825085146 ; 0,297824768583443 ; 0,0204081632653061 ; -7,3 ; 0,29113890643157 ; 0,316666743738722 ; 5,1 ; ceEdAf7acf7a57d26281e3BACfc3b4a7CaeBeB46DCceF2ba24Ee43fBEEa2a2AA ; < W6kSO53uMnRo3k5z03946600UH9M757bJ9NecFB4952Kxn836agt54L2yGKQrDe3 > > 10 // < CALLS 1,0400797785847 ; quote ; 0,337669805650163 ; 0,330916409537159 ; 0,0204081632653061 ; -6,3 ; 0,323487673812856 ; 0,351851937487469 ; -2,1 ; FEd1a0dbcED9FD100cF7e2fc1A6e0de90ce1cdFEBDcC17a6defcFdBFffbBaaf1 ; < 8OA3f9wAY9o2tPFO1fb3JSk7Vb8O31eYE09pO10jt7sp96e8S7AOk0A1PR7xYmu1 > > 11 // < CALLS 1,09208376751393 ; quote ; 0,303902825085146 ; 0,297824768583443 ; 0,0204081632653061 ; 1,6 ; 0,29113890643157 ; 0,316666743738722 ; -6,6 ; B87335dF8BBACe9cd86CeeF00fBB29Bc8fdaED2960Dd6CeE2dbaFEeFAd504CCa ; < 8rXF6bV9YVNhB28VtX29QxQaLB8wMCWcn50j9K7ivWo8aM5O5u0rZa19EuLL99SH > > 12 // < CALLS 1,14408775644317 ; quote ; 0,273512542576632 ; 0,268042291725099 ; 0,0204081632653061 ; -4,7 ; 0,262025015788413 ; 0,28500006936485 ; 0,1 ; cBBdea2Afd36caFABe05c2abeEcAde6EcaCCefcf2dcC6acbAaa6D59C7ffFEE01 ; < Pf06987AW99a8WXG3FtO1ujD01KB9vWV2Ns2d543v1s50v0p7O5HJcd0SyCSx08H > > 13 // < CALLS 1,1960917453724 ; quote ; 0,246161288318968 ; 0,241238062552589 ; 0,0204081632653061 ; 5,2 ; 0,235822514209572 ; 0,256500062428365 ; 8,5 ; 3fcDeAf3B89d7C051Efe0AFF8dDBf7AdFadBAFcCDFFa17eBFE4ebDD1eaCCbEB0 ; < 62iKd90OfMjyV4cCU782539581iZUoS0CEMJjJBBbEk8D2h49P8IivF6eLge0956 > > 14 // < CALLS 1,24809573430164 ; quote ; 0,221545159487071 ; 0,21711425629733 ; 0,0204081632653061 ; 0,9 ; 0,212240262788614 ; 0,230850056185528 ; -1,3 ; dDFbe4Ede4dffb4A15bB6fD078932F47Fe847B7f26CcBFEBb7efa21C52eBe0be ; < Tk7JVKPaZlUPssPi70ecGt2AX58m5z5caf9al24q379yagT7TOrC7aQobDLwW5Ph > > 15 // < CALLS 1,30009972323087 ; quote ; 0,199390643538364 ; 0,195402830667597 ; 0,0204081632653061 ; -5 ; 0,191016236509753 ; 0,207765050566975 ; 1,5 ; C7EA7b06b8ed9287eFfbff3CdCaB6b5fDcDCd8A9Bf1edFEFbEa9605C4Ce2ebFD ; < ENo5KXs87T6mziC25e6i4w6a585nzLu6jRYHgrKGvbHnOB0L13oKuHMZ0qjJHRb9 > > 16 // < CALLS 1,35210371216011 ; quote ; 0,179451579184528 ; 0,175862547600838 ; 0,0204081632653061 ; -5,1 ; 0,171914612858778 ; 0,186988545510279 ; 2,3 ; EF96D2F6df3bEe7CDe8Ecd8F44e85ce1BADB61fAAc89EA7AFeC5D72b6B4AadFb ; < l2nNrdmk0i6MttBd7kT1txTsn4smxFFv73Vt4y1IMeFb7gf16OE6p6db7oyQ2vf3 > > 17 // < CALLS 1,40410770108934 ; quote ; 0,161506421266075 ; 0,158276292840754 ; 0,0204081632653061 ; 8,2 ; 0,1547231515729 ; 0,16828969095925 ; -7 ; 1e59bCBdb8CbccDF5AA83aFfc47D660ab1eaE0c5f51EA2aD9CABaCEAdbB1fBcE ; < 9bB4ypTk47p5X9DJYQFxOGK55679DNR68QM7I6xPc3bVw046CY3O7IJh8YmMNm98 > > 18 // < CALLS 1,45611169001858 ; quote ; 0,145355779139468 ; 0,142448663556679 ; 0,0204081632653061 ; -1,5 ; 0,13925083641561 ; 0,151460721863326 ; 3,8 ; 2dFA86bCBec5c3E41Ed78bbFfAdFd8DA68AEafbc641D1Be7DDabFBbDBddEDffE ; < Ksy2PdK7mF5s48bc62Iwk765J790oKUPvI14HiAlMIPV83158tf0Dui1yvmWgKPY > > 19 // < CALLS 1,50811567894781 ; quote ; 0,130820201225521 ; 0,128203797201011 ; 0,0204081632653061 ; 6 ; 0,12532575277405 ; 0,136314649676993 ; -5,6 ; 8efAcDaaFcC45CcBef08cc5cd4ddcC7eee3Ec3FeE60A3DaC5CF32cDA1f5E3d88 ; < 90v79z5Q69Cy4Oy2p85c8Wg00jLJQi9r0pXvRWrn1V0AVTP5F6T24j44c7gIXf2V > > 20 // < CALLS 1,56011966787705 ; quote ; 0,117738181102969 ; 0,115383417480909 ; 0,0204081632653061 ; 1,4 ; 0,112793177496644 ; 0,122683184709293 ; 0,5 ; F4dfbDDAc689EBEE8CcDB7fD80D1a4D2CCE445EabABFCfeAc6C6e0edfbD823b6 ; < 4DD02A1LV03QfP8F3lyqqbY150dV1dM1kRtaGwNuOfnao9YDy4jM7Ic76MSHr9xJ > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,520039889292349 ; quote ; 0,117738181102969 ; 0,115383417480909 ; 0,0204081632653061 ; -3,4 ; 0,112793177496644 ; 0,122683184709293 ; -8,1 ; e6aCafFFEEd95c3baCE6AeB43EE1E4BCb7aFe6d3D5F1FDE7bF49f2Fd2f550E94 ; < 1NJGaurUktR7ChcGSI5j79V7DDMHBoMQTBXiTj0TgzgGNr73668F1Uv2qtbL0G0a > > 1 // < PUTS 0,572043878221584 ; quote ; 0,130820201225521 ; 0,128203797201011 ; 0,0204081632653061 ; -1,7 ; 0,12532575277405 ; 0,136314649676993 ; -8,3 ; 8CC6cCd1efF61EFf18ecdDd1a2cbbEE9afDc7De1EFFD99e4F1beAaff434EAb7C ; < EM3fXaS520N6gwxQqNmx5S4UYZBf0EdDOzH5E06AV8gdD9Ge8CzJvOTk555h484U > > 2 // < PUTS 0,624047867150819 ; quote ; 0,145355779139468 ; 0,142448663556679 ; 0,0204081632653061 ; 9,7 ; 0,13925083641561 ; 0,151460721863326 ; 7,9 ; FdFe2B17D43fe5fcbb3DCd8DEefdAD6D0b7ba3bCDDfd4BaDCbBFDa4B0759A29C ; < VNxwfnFqGt8vih3ur9e5KkwjIM22Tqy3WPbs2kfswTCdpG1o09t5B37Fbq550K5M > > 3 // < PUTS 0,676051856080054 ; quote ; 0,161506421266075 ; 0,158276292840754 ; 0,0204081632653061 ; 0,1 ; 0,1547231515729 ; 0,16828969095925 ; 0,3 ; Aa9Ed5Cb45EaBfbd0cf866932Fbadb06A7c7048AAA9584e0Cbc38b2eb135Ede3 ; < P3Hgv4HNRsMvEHa32t8B0XRdm599d5mqxhCZF7R5AaaoaawN7kJrN7w4ousgLdbM > > 4 // < PUTS 0,728055845009289 ; quote ; 0,179451579184528 ; 0,175862547600838 ; 0,0204081632653061 ; -0,8 ; 0,171914612858778 ; 0,186988545510279 ; 1 ; B0FeC5cC4EAbE4bCaEAeDAB31FcdFD2ca086EAD4c38Dc6CDe4F6f4A5D7Be7aCA ; < 75sug9W8cTn8WY46tjgr8hFW60k4kA6W466fFsr610av5tY3K73yhm9k5d7DC5BR > > 5 // < PUTS 0,780059833938523 ; quote ; 0,199390643538364 ; 0,195402830667597 ; 0,0204081632653061 ; -8,3 ; 0,191016236509753 ; 0,207765050566975 ; 4 ; a94FF7F8BBaa2EaCec462b2beDbB6FDd9CEAcC298bBfC0BCE30D29DcBBEE9BBD ; < VTUfh0aNfc9e36o43p34pr5o2JrIvWXdB64Mu0wrg4CHDJk54X99Qh8n6PTAeo72 > > 6 // < PUTS 0,832063822867758 ; quote ; 0,221545159487071 ; 0,21711425629733 ; 0,0204081632653061 ; -5,7 ; 0,212240262788614 ; 0,230850056185528 ; -6,2 ; 57336D3BEaae852CBfacDDc8f3DCc1eEdfa271cbc7651ffade6EDda4daceBd10 ; < q7i9j7P9fGCFKS8a218OuBFpZJ7K04g055vOb226PiXOW2bTeehX2H63YLnjIcwB > > 7 // < PUTS 0,884067811796993 ; quote ; 0,246161288318968 ; 0,241238062552589 ; 0,0204081632653061 ; -5,7 ; 0,235822514209572 ; 0,256500062428365 ; -6,1 ; adEFcFcb97EA7898aDe98Bb9CA4daf3BAF2AA93981EE1bfAbC160eFA5ebcFE83 ; < ege4W4aEEHJ99M0h7rsgCL7NOU0F8T0UUzRv5A6iX66bk6R4O478C7fg16R0k4de > > 8 // < PUTS 0,936071800726228 ; quote ; 0,273512542576632 ; 0,268042291725099 ; 0,0204081632653061 ; 3,7 ; 0,262025015788413 ; 0,28500006936485 ; -3,8 ; 6Ac8baaabf9E56aCEbafDEF9EEBCdaB2b5e0acf32a6CbdEbDb8BaAAeE46Dbced ; < 9Nk8QmqlAk5RikQ13g7HfX3JxtEJ4UTapodCd7CKb96T30J069xkmCy10t1Cp7UY > > 9 // < PUTS 0,988075789655463 ; quote ; 0,303902825085146 ; 0,297824768583443 ; 0,0204081632653061 ; 1,8 ; 0,29113890643157 ; 0,316666743738722 ; -7 ; FC5f029cF4aD6CaA5000E3bdaFeceAB0a05c6A11F1D4BFBebC230aEfa6CdBDd2 ; < t3j0b1MptRNYJni21TrjMOAvnUFW3K2x5p9e2PQ54k8FQGMYfO02be9RLZkgE332 > > 10 // < PUTS 1,0400797785847 ; quote ; 0,337669805650163 ; 0,330916409537159 ; 0,0204081632653061 ; 1,8 ; 0,323487673812856 ; 0,351851937487469 ; 1,3 ; 09c7D0F2AAeFa3CD145baBDf92cf7d566B7c0ebdEd9ea2BaEacB9d874a9Ec5Db ; < 51H642P7E774nT1L459Gv0rdha4TpprzEvWjelfegR9gh6Q7F40tRkZCPlCS954s > > 11 // < PUTS 1,09208376751393 ; quote ; 0,303902825085146 ; 0,297824768583443 ; 0,0204081632653061 ; -9,3 ; 0,29113890643157 ; 0,316666743738722 ; 5,6 ; edBf1D4c9AcFb9caf763A7483c8Fdb8fAeD34E6adc6Ad4Baa182CeFdDe10c4D1 ; < SoKIX5c16l0cFg1iCLGG8kOu13h42o4caSC1LJR3siW5C42ZgKVO3upfTA0NveWq > > 12 // < PUTS 1,14408775644317 ; quote ; 0,273512542576632 ; 0,268042291725099 ; 0,0204081632653061 ; -3,3 ; 0,262025015788413 ; 0,28500006936485 ; -7,1 ; bDEEBfFeb3B0abDBbCdC3FF7A5D907F75Ef76F66c0ccbcfdCbd34fc2FBA1EC86 ; < 60pU58IR7MGXOamPrIlnBK5GUoBtP6azQnAS7lU9Y34GZyUG5lUCGpL5f8723aw5 > > 13 // < PUTS 1,1960917453724 ; quote ; 0,246161288318968 ; 0,241238062552589 ; 0,0204081632653061 ; -5,8 ; 0,235822514209572 ; 0,256500062428365 ; 3,4 ; 323babc17CBb53dedDC85b5a87Ae3C68D12cdaD6DBABA1c5e6bdF48dfaBcbFa3 ; < CZ8u7DfB3bdDDnE60vp415tP4IFN42JUNcEh3WI6CUQ80H3GakH1eb5ed3d0Q5bJ > > 14 // < PUTS 1,24809573430164 ; quote ; 0,221545159487071 ; 0,21711425629733 ; 0,0204081632653061 ; 0,3 ; 0,212240262788614 ; 0,230850056185528 ; 3,1 ; F91BEfe98f92d4Af9D50B77ac8fbdEdddbBA325C800eBEa7FdEA9Ec1BE6d18b9 ; < 3nlGB96x8iGRyJMn3qfkfcgEw639E46RPG3e870494BCf87LNPN8589uJa6O99F4 > > 15 // < PUTS 1,30009972323087 ; quote ; 0,199390643538364 ; 0,195402830667597 ; 0,0204081632653061 ; 7 ; 0,191016236509753 ; 0,207765050566975 ; -6 ; 9eBe8AEf2f29aaeD568dCcAACCEda72D3c9486E2eaCdAA5C6e3ca2b782FCd05C ; < 3Wg7g37W8Hgi0nzdTM22V7ofcq5CGy605Y3BtNc49wbGB6amUdKpo0bfq0t3A48y > > 16 // < PUTS 1,35210371216011 ; quote ; 0,179451579184528 ; 0,175862547600838 ; 0,0204081632653061 ; 8,7 ; 0,171914612858778 ; 0,186988545510279 ; -5,3 ; deBaeD4DdbBBF3B5afbe5CB6a9dFAfa76fb06b0FA3AFD73fDAeedA13ac8B0B4c ; < 0Esxr84z8mTkJGPhr53XzBvr1M2dbwxNRRr1bh29ep5941SL7CA1mUuBc7GKPwG1 > > 17 // < PUTS 1,40410770108934 ; quote ; 0,161506421266075 ; 0,158276292840754 ; 0,0204081632653061 ; -9,6 ; 0,1547231515729 ; 0,16828969095925 ; 7,1 ; d4C3ffd52deFDD22Ef25662A7D12DfDE57Efbd6CB0384cebDf41509242Dd6180 ; < dZ6BmG35S2Yyj90019Iy4fYC546n38LN070T9WQ7c0cFbG50abqTIBjcboH3Sh6L > > 18 // < PUTS 1,45611169001858 ; quote ; 0,145355779139468 ; 0,142448663556679 ; 0,0204081632653061 ; 8,7 ; 0,13925083641561 ; 0,151460721863326 ; 3,6 ; ACcd65efa0edfEe7EADf471Bf73ac3ADc0C3B1b3C2e69D55dDD1c0bECACb26CB ; < R8uYsFttLK0cJxCOnbXeb2HkBasB83UtQKVoN77c4pz6WMAqgV4V89zQzBFzH9VZ > > 19 // < PUTS 1,50811567894781 ; quote ; 0,130820201225521 ; 0,128203797201011 ; 0,0204081632653061 ; 0,7 ; 0,12532575277405 ; 0,136314649676993 ; 1,2 ; 3D4CACdc10dc2cBACF485aFF4fCCAa643F626Fe5dEd5DCdbf1eE5A7c3E9f7b7f ; < 67lYKuYkqxvy87r2fVen5z2W5A7jEVaMK4SDeL2rYMUK0EYTsdUnYAEQB35s4u6n > > 20 // < PUTS 1,56011966787705 ; quote ; 0,117738181102969 ; 0,115383417480909 ; 0,0204081632653061 ; -9,6 ; 0,112793177496644 ; 0,122683184709293 ; -1,9 ; 57b8b789ccF4Da1aFff6bcFFafbcC37eEAeFeAAa32D8fB722fAfDAa5EF393DBB ; < b2447by979WvylEaLzSSOvKp5hop9ah4I4lySwqlGRXp5OBlBH3rrknS9n2N1q59 > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0519647577092141 ; quote ; 0,000799808339342732 ; 0,000783812172555877 ; 0,0204081632653061 ; -0,4 ; 0,000779813130859164 ; 0,0008198035478263 ; -3,4 ; FcD5344Be4ddBFEA2280c2dd6ff9f55AAAbeCD23efaBC9fCFCDFB3A2bcaa92Fb ; < Y1w5h2N4T4X2xv76P8xvWGQ02TowCQIqdv2e3c45RP822PM6P7CE4K4kq878TG55 > > 1 // < CALLS 0,0571612334801355 ; quote ; 0,000888675932603036 ; 0,000870902413950976 ; 0,0204081632653061 ; 5,1 ; 0,00086645903428796 ; 0,000910892830918112 ; 5,8 ; bA2FfbFbFAEfcab5Ccc47F02FCeaD7C1deBdB47dcBAFaa64371A3a7C934d36Dd ; < F7465LR5wnUpxGIAqd95KB7NB491lD87zoUKs6dC39FVVlRC976y6WBt8FIcTwfz > > 2 // < CALLS 0,062357709251057 ; quote ; 0,000987417702892262 ; 0,000967669348834417 ; 0,0204081632653061 ; -1,1 ; 0,000962732260319956 ; 0,00101210314546457 ; -0,1 ; cdc4A3FAF7fEb9bBca85cF3E0CDD7a7eCFE8A3fEf5FF2BAeEcDCaede7099681d ; < O4ao280ch915qpHKrwFRY4Um3iLoP3zNDYOZgKoM5V6G8gg34z7p5JY5Rv1aq8QJ > > 3 // < CALLS 0,0675541850219784 ; quote ; 0,0010971307809914 ; 0,00107518816537157 ; 0,0204081632653061 ; -0,4 ; 0,00106970251146662 ; 0,00112455905051619 ; 6,6 ; ECCaFaeEe3f34BCF2E563e6F9dda77eaAB9c9C85F7bC95E2aEaF62Ac3dF3Db1B ; < 8bldCZ0SA12vl1Qp2FQXKjfIGQPO3P218S1ye5T7LllSPLDJ8jU8tpAJ8kkBpRZB > > 4 // < CALLS 0,0727506607928998 ; quote ; 0,00121903420110156 ; 0,00119465351707952 ; 0,0204081632653061 ; -6,7 ; 0,00118855834607402 ; 0,00124951005612909 ; 8,6 ; fDc3BA7bc53dBE64b5bfaFFbA7b1C5EcD6d7E73C8C66FcfE6DeA7ffbF39Ee95d ; < pY7JFnx150LnJS4tq9Hvebv74sJjc4TNDpEwqFe5m56pDnJjNwUvCv7QPtACSOkm > > 5 // < CALLS 0,0779471365638212 ; quote ; 0,0013544824456684 ; 0,00132739279675503 ; 0,0204081632653061 ; 3,1 ; 0,00132062038452669 ; 0,00138834450681011 ; 7,5 ; FF9E3C31CbeFCAeE3A779daAffABEA6D94add1C86EAfBE0FAD44052f069B8bf5 ; < 69h1XVtdYnG2hw6b7O3mgewsOZ6iTPwiV95rSmqJ1xz9c9T6a4C6wAli3UrlQ145 > > 6 // < CALLS 0,0831436123347426 ; quote ; 0,00150498049518711 ; 0,00147488088528336 ; 0,0204081632653061 ; -5,6 ; 0,00146735598280743 ; 0,00154260500756678 ; 6,4 ; Cd5CdBE4BFDFA4BebC5F1a3b8Cc969daF614BA984E1DDC6eB7dDeEb3aDdbC32f ; < 7vN0JHedLiCPiXJ0ykO6635BK8Ri03ntQzESL69H1w532518232T6Kb2qBh3L73I > > 7 // < CALLS 0,088340088105664 ; quote ; 0,0016722005502079 ; 0,00163875653920374 ; 0,0204081632653061 ; 1,5 ; 0,0016303955364527 ; 0,0017140055639631 ; 3,6 ; bd21DeDf8CF44bebe6D2F4bb6FA861dd92BeD4c9BBfbDCE745Cffc2EadBfcfBE ; < ybiK158iK9F0a92Mea7S222tqkMkfKOK4dVBIh2lK29H1JF5gyMr063hI768479J > > 8 // < CALLS 0,0935365638765854 ; quote ; 0,00185800061134211 ; 0,00182084059911527 ; 0,0204081632653061 ; 2,9 ; 0,00181155059605856 ; 0,00190445062662567 ; 8,7 ; AF9Bebd57Bd7CE011DA1ab7CeeeB2b8C4f5bD71aB0BeeDdA5bEf6E495b332Ffc ; < qcxuRgPcNXN9aeFU8R8b69cP0v1klV0e992p9m5O0KWVB20n681GEhmPVY252s81 > > 9 // < CALLS 0,0987330396475068 ; quote ; 0,00206444512371346 ; 0,00202315622123919 ; 0,0204081632653061 ; -4,9 ; 0,00201283399562062 ; 0,00211605625180629 ; 7,6 ; CDF5BD4fB6A8FB1Dacf16DfAD67d3ec2FbBeF4eFCbDbFab13ECbbfa6eE3EDe97 ; < yr2g5g6t8884dLL0OFMTzvUEo4O8hcfOpxeE7BdEA9AwgNnJWyb54s6P84r6iK6H > > 10 // < CALLS 0,103929515418428 ; quote ; 0,00229382791523718 ; 0,00224795135693243 ; 0,0204081632653061 ; 9 ; 0,00223648221735625 ; 0,0023511736131181 ; -8,2 ; a877563c6af7edbbDDd34fB8bD7600E4B6faeFbDC2D8dAe8cBa0CAb1Bc4EDe51 ; < Hje7gMNJ9sH1Mq0ku8x9Tf5tysCUD48Cl86NMSk4J7m3sm419H27V895vK6ZEtXd > > 11 // < CALLS 0,10912599118935 ; quote ; 0,00206444512371346 ; 0,00202315622123919 ; 0,0204081632653061 ; 7 ; 0,00201283399562062 ; 0,00211605625180629 ; -9 ; A3FD8Da2eaA21EadE5c44DaeC8Fdb2edB9bCDca1FbD7D9cF7c4EBe0EaCF3f4fe ; < 83L70CnkBj3No9E78JS1rGE7n1K3PcgeWH5d3nVDIdX8b3fX4sQJ7WPqGA5Wucxk > > 12 // < CALLS 0,114322466960271 ; quote ; 0,00185800061134211 ; 0,00182084059911527 ; 0,0204081632653061 ; -9 ; 0,00181155059605856 ; 0,00190445062662567 ; -6,1 ; 097CDCBEBA6edAF936c60edCe4cddeeF0F9eD2ee5de022BBE3c35c8c279ADdeF ; < 643nBWyDS14xxO6qS39a6O6TL92nSWTf5WRfpAQ604941oMQmKJ6T94SlAN9c0QS > > 13 // < CALLS 0,119518942731192 ; quote ; 0,0016722005502079 ; 0,00163875653920374 ; 0,0204081632653061 ; 6 ; 0,0016303955364527 ; 0,0017140055639631 ; -2,3 ; FE2C5Db6BEcC02F0DDc3bFd8Ec7BFBadD71bF7beE83bbE1A4BDE4BABdD4DEACA ; < 01pGpW79V9XZ67GI2wyR51nJ6oCCWY4qT49tKkb94z90HOsaPuuzbf06vcR6irL8 > > 14 // < CALLS 0,124715418502114 ; quote ; 0,00150498049518711 ; 0,00147488088528336 ; 0,0204081632653061 ; 7,2 ; 0,00146735598280743 ; 0,00154260500756678 ; 7,9 ; AB9F08bc28329f3e1EaE56d9aaaeCdbCFD88edab8fc53Cd4BBE7DbACF089b7EC ; < D3H657Idrgf2Y5gOP1bqxFINH3C7aR9H3g256k8ysC2wgyvqi4CJ4b6zyL156Sf4 > > 15 // < CALLS 0,129911894273035 ; quote ; 0,0013544824456684 ; 0,00132739279675503 ; 0,0204081632653061 ; 8,3 ; 0,00132062038452669 ; 0,00138834450681011 ; 9,8 ; 1A3dABdECC8A0CA1c8C02B3300E1AfDfa8bAdAEfE028F6FeCAD00Dab3Dc40FcD ; < 1xpWjrKi256zl4clYpq6j6Ut1Vo6k2h10f3oMJ03Tm8tzxMS46pHWSaBO801iCV1 > > 16 // < CALLS 0,135108370043957 ; quote ; 0,00121903420110156 ; 0,00119465351707952 ; 0,0204081632653061 ; 7,2 ; 0,00118855834607402 ; 0,00124951005612909 ; 7,4 ; BcfaeEFd7FffF7e60BddfD66eEF2afAedabCF1Ec9eaE7c2F8dcaa267aF26179d ; < e3a6CfuTFG5pwTL53GBSiXmyw7c9FFf28sW7F5h8DdVVxf254d54o8WnOnb8iTUu > > 17 // < CALLS 0,140304845814878 ; quote ; 0,0010971307809914 ; 0,00107518816537157 ; 0,0204081632653061 ; -8,2 ; 0,00106970251146662 ; 0,00112455905051619 ; 1,1 ; CbCEBdCeDC97EDaD6CC7cfcEffd38fEbBAfb34d5D97EDEcF2f4db8bCceedDe5A ; < r1u3tXxcSbZdJa2M01f599j6W86fP7n0uXO04ry6GeKEy7naDnZCS4McPpS6CBoF > > 18 // < CALLS 0,1455013215858 ; quote ; 0,000987417702892262 ; 0,000967669348834417 ; 0,0204081632653061 ; 7,4 ; 0,000962732260319956 ; 0,00101210314546457 ; -6,1 ; fd8Ec4ad7eDA3fAed70A048AcbCcE6d658C5BBdFCaE8CBBE9AECBf86C96F48ef ; < 39E99t34p721W5d16qf7TLBSP90OW2u2J2QYRliZua6U5J8hj16vuw592v2TVb76 > > 19 // < CALLS 0,150697797356721 ; quote ; 0,000888675932603036 ; 0,000870902413950976 ; 0,0204081632653061 ; -0,5 ; 0,00086645903428796 ; 0,000910892830918112 ; -7,9 ; dDecFCF0BDeeFB0D8C7cf9B4c56c87aad53eB1ffc070Ac8D6d0faeb7A3C6C3e8 ; < rhUXS45TD3b6X599pdOX2nxO2ln9t58K15acGXWGT275R8z1i676XKFcxiG4sHLm > > 20 // < CALLS 0,155894273127642 ; quote ; 0,000799808339342732 ; 0,000783812172555877 ; 0,0204081632653061 ; -3,9 ; 0,000779813130859164 ; 0,0008198035478263 ; -8,5 ; 11b56cc1d64e6eFbdd9320CCdD3B5Eb0dfdDFFF6dF3cFAeF6a1CD00ffaecAacb ; < y0Pkyxp7z785raQd4K0q54k3v8tb7gV5r41VJ0Bx431HJol6EBM7P34fJBw0P5PD > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0519647577092141 ; quote ; 0,000799808339342732 ; 0,000783812172555877 ; 0,0204081632653061 ; 6,3 ; 0,000779813130859164 ; 0,0008198035478263 ; 5,5 ; de4A24Acf1aDbD1CEefaD1CCf0FBbAF3bcF17FE0bA4c86Afba84aBD97cDacEba ; < k7dmqiEEih5iT346mdhnLFApI4SY15PDsqKs952j98zcD2M743ocNr62RTSi8MNN > > 1 // < PUTS 0,0571612334801355 ; quote ; 0,000888675932603036 ; 0,000870902413950976 ; 0,0204081632653061 ; 8,8 ; 0,00086645903428796 ; 0,000910892830918112 ; -0,6 ; c89AF4c1a54d575e1bD9ed521C5DFFAE3caE77aC20eDD4fcFdADF92acEcCaCDB ; < 56l70j84i7B36FBfh5c0k7jR0nIgdxlcFCtI82np9kuxmXgc24g1GWwRZ58w97ev > > 2 // < PUTS 0,062357709251057 ; quote ; 0,000987417702892262 ; 0,000967669348834417 ; 0,0204081632653061 ; -8,9 ; 0,000962732260319956 ; 0,00101210314546457 ; -8,3 ; 4FfEeCD2AAcD2C558E32BB8fDAF6FFaBc1dFAbDc2fdf61dF7aAA2AaB9beDDcCb ; < r7THagTvr78ttJ1iqCA5gAJh8SNH8ltay8LZ1NZ47y8UoBaM5lc8h8F9A4cGD3fm > > 3 // < PUTS 0,0675541850219784 ; quote ; 0,0010971307809914 ; 0,00107518816537157 ; 0,0204081632653061 ; 3,6 ; 0,00106970251146662 ; 0,00112455905051619 ; 1,1 ; BAee3aB3ccD3d8F29FDDa894a3DdfAdbd5C9AE8B7eA4EBeE99D9dECAabAFbDec ; < 9M4Yo36C3PjvjmGxpMCY41GSa57Q86Rc2NQBTlqZ90A9q92j168ddt2Uhu26mge1 > > 4 // < PUTS 0,0727506607928998 ; quote ; 0,00121903420110156 ; 0,00119465351707952 ; 0,0204081632653061 ; 7,3 ; 0,00118855834607402 ; 0,00124951005612909 ; -9 ; FAfb33fa3Af8d9E88Ab74CF1ccea30fcA65E2bCd61a78FE06ea6Dba5ef8DDCfE ; < d8ZHPx0lGiqP3Z0CH7V0Q9DE6jfx088cNr7n1F1MHCVr1nWZIRzKt146q8RoqVO8 > > 5 // < PUTS 0,0779471365638212 ; quote ; 0,0013544824456684 ; 0,00132739279675503 ; 0,0204081632653061 ; -2,9 ; 0,00132062038452669 ; 0,00138834450681011 ; -5,3 ; f6f7dC8c87BFDaBbf41aECFCC881cdbEcf6cDCDF34DE078DeA89ECd82AA2F8De ; < zuhOHsgQjhq7FC35E9YdGVM34abv5SDtJT5QUofBXrIFGfzGxOGxVF7971l46CZg > > 6 // < PUTS 0,0831436123347426 ; quote ; 0,00150498049518711 ; 0,00147488088528336 ; 0,0204081632653061 ; 6 ; 0,00146735598280743 ; 0,00154260500756678 ; -6 ; d9BAdfA1eC4fbC1ddfEC1ffD1AD2FCaaFe5CacAceAA30DfCE7CFe36FDBCaC913 ; < w2534FIC28YPXOR3D1LjAMH3u4yzMpGijBD8HYzu5s0nuNW8dyb77B0mc3wZ3rmx > > 7 // < PUTS 0,088340088105664 ; quote ; 0,0016722005502079 ; 0,00163875653920374 ; 0,0204081632653061 ; 0,6 ; 0,0016303955364527 ; 0,0017140055639631 ; -4,1 ; affF2aEBd1feDEbDF8Bf876baeBDeb9C12a6EaBFDCd1DCfFFAAffC51cEBdFECe ; < 1V54EqnLoIUsU25hGCW6r1n3sUyS48jWv6Gubk9s4hU430E3s38t9jR0HY4wf2vg > > 8 // < PUTS 0,0935365638765854 ; quote ; 0,00185800061134211 ; 0,00182084059911527 ; 0,0204081632653061 ; 4,8 ; 0,00181155059605856 ; 0,00190445062662567 ; -1,6 ; f9ADBbdcdF0b8ffcC04fED11af2e64cb96b9E3BeCeedaCC3BE984AeCe3Fe8Da9 ; < 706uPDHw1FFH4WmSCLd2VyYG1920ypAK10J4y74RDn3kb47R3p3c3FWXfv10ABtE > > 9 // < PUTS 0,0987330396475068 ; quote ; 0,00206444512371346 ; 0,00202315622123919 ; 0,0204081632653061 ; -5,9 ; 0,00201283399562062 ; 0,00211605625180629 ; 3,4 ; 65E0EdeBbABEDCEeff5Bc6Da1fEbdDA2218C4FaDfBeaC8adfaEFf4BC7487fdBe ; < 5BL93w9zew12IT9A2rSlq1ZuQI6mB5jFWuDZf0934Co40vxTqEHpb0bwNyhr4Nu0 > > 10 // < PUTS 0,103929515418428 ; quote ; 0,00229382791523718 ; 0,00224795135693243 ; 0,0204081632653061 ; -6,9 ; 0,00223648221735625 ; 0,0023511736131181 ; -2,4 ; C5eB222C83a7db7dCc4c4b6FbfCDFdFcAef9CACf1991dc4ECA4cd8aDba1f6ba6 ; < L71kyu21MfLiF4P0JEWf0TaKTxLd2u6Qddo4k2ox29ey9R8y2nj55Nh9XlXIatQs > > 11 // < PUTS 0,10912599118935 ; quote ; 0,00206444512371346 ; 0,00202315622123919 ; 0,0204081632653061 ; -9,8 ; 0,00201283399562062 ; 0,00211605625180629 ; 5,6 ; 43abfC5e5aeBF7eF15cd8ebDFF9A4bC7baB9A5aecACa710aDb457B1da08f1eC2 ; < kEhR8mc6h64d568g7F3q43BkD82ca84U4461RC17wFK47D39e3TO2bbR86AHHJtR > > 12 // < PUTS 0,114322466960271 ; quote ; 0,00185800061134211 ; 0,00182084059911527 ; 0,0204081632653061 ; -2,6 ; 0,00181155059605856 ; 0,00190445062662567 ; -2,9 ; faEDbcAF7FbfDdc1Ce6e5eBEE2ec6B6fCF128b52D8Ac8AcEf5f8b53888EAAF6b ; < zM61129QCM748U964Gcdl4A5QiT0j70leJ0Wl91JCeQ70i4hMsj8hmxcsYtTs6L7 > > 13 // < PUTS 0,119518942731192 ; quote ; 0,0016722005502079 ; 0,00163875653920374 ; 0,0204081632653061 ; 7,6 ; 0,0016303955364527 ; 0,0017140055639631 ; -2,2 ; E2bEcEcb36B2691CE5DDa910B1ce1B7204aF8d6c8bBaDD47aAffEbEdCd53A2AF ; < poig9Jx0U5GimT4dz96D1K6q7TD8DgY48ekd3QYnk2hfnYEtTOvWZCo10Jg7D84q > > 14 // < PUTS 0,124715418502114 ; quote ; 0,00150498049518711 ; 0,00147488088528336 ; 0,0204081632653061 ; -2,6 ; 0,00146735598280743 ; 0,00154260500756678 ; -2,7 ; c2CF557afa326fcbFb30cbdbAcAdfD7d4690bc2efbEEb9a20BEFd245dc7B038A ; < o4R92M1ScdK5wYE3A0F0bv83yp1S8bGJahb95z0mMw708W3um102V5VY034D03U2 > > 15 // < PUTS 0,129911894273035 ; quote ; 0,0013544824456684 ; 0,00132739279675503 ; 0,0204081632653061 ; -5,6 ; 0,00132062038452669 ; 0,00138834450681011 ; -0,8 ; Ad73f29FF34dc3be3FEfaBFdEbB6691adeF182A2AcCCEfC2d0e0D8DA2fcFDbbf ; < o6J24aI3V9Nmx1QS4g0BBArdAkp6o83Ja8Bd86Hi1OKs07655jeB5vR09vx28X85 > > 16 // < PUTS 0,135108370043957 ; quote ; 0,00121903420110156 ; 0,00119465351707952 ; 0,0204081632653061 ; 9,1 ; 0,00118855834607402 ; 0,00124951005612909 ; -2,6 ; 0EBBcAaff06E1dFc71DBF6feB91fBfa6aab0e0eB3F2DAdfAFA50fEcBbEaBDEEd ; < r0VDp3aYX9k2xv6DobTa1qEmmTw18v010Hw7iKL5VwnS348NAboe6jxvUU452vSE > > 17 // < PUTS 0,140304845814878 ; quote ; 0,0010971307809914 ; 0,00107518816537157 ; 0,0204081632653061 ; 9,6 ; 0,00106970251146662 ; 0,00112455905051619 ; -9,1 ; aa5fA02c2C023FC24CC1aC7Fd4CF2Ec8CfDd3FfdAF56baf266eaab2A7F168ECf ; < 6U92L61mWKe128MT0M1d06d8sFrQC6o5yZ64Or5NcwR7kndtji1Wov0CkM892RHI > > 18 // < PUTS 0,1455013215858 ; quote ; 0,000987417702892262 ; 0,000967669348834417 ; 0,0204081632653061 ; -7,3 ; 0,000962732260319956 ; 0,00101210314546457 ; -1,4 ; CCfDaA4A8B9dbc35cC923f75fEfCdA83bBCbdc7671EECE6AC1DaabA4efF9eD1c ; < t217X7kZcE3qzMxn6fg7vAjsDEo7d22k5tn9nY5qQ3Ijmu3Aam24rGdspsQ0b23Y > > 19 // < PUTS 0,150697797356721 ; quote ; 0,000888675932603036 ; 0,000870902413950976 ; 0,0204081632653061 ; -9,9 ; 0,00086645903428796 ; 0,000910892830918112 ; -3,9 ; E657eEEcAE7bc7BDEabbACED4fbBbAfEBB449FafC0D2ba5AE312E2Fc4Ecf11Cb ; < 2GmsiHyg1e808j16un78r9eQ2uNt7Ht3GmuqJLh4mD75m0L1Qm8Q2Te48I4t53k3 > > 20 // < PUTS 0,155894273127642 ; quote ; 0,000799808339342732 ; 0,000783812172555877 ; 0,0204081632653061 ; -5,7 ; 0,000779813130859164 ; 0,0008198035478263 ; 1,8 ; Fc6Cc3E8D73eF3f52FdcEdA8Efe35CC84a7542F8b549Dab0dFB9c92efF5e4aFF ; < c3cFaCjPkoadOm49EQb83V8JqFhuKq7oXZa0ki6PKmiWcEbIIUzRMO6W31UZspuR > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0520235302125376 ; quote ; 0,0016884929348728 ; 0,00165472307617535 ; 0,0204081632653061 ; -0,9 ; 0,00163783814682662 ; 0,00173914772291899 ; 0,2 ; eedc2cbeeFfebB9Ac43fF99AFE4ba79Ef8Cc2f8dABBb5d51159f08fCaAdbeC10 ; < 53K8xL4rlf3l7RQzPlOI1I4MkAbV2NHqEID05u2q4g0Spg0oWK252S3mgI7iNewu > > 1 // < CALLS 0,0572258832337913 ; quote ; 0,00187610326096979 ; 0,0018385811957504 ; 0,0204081632653061 ; 6,7 ; 0,0018198201631407 ; 0,00193238635879888 ; 3,9 ; CdEE33534AAC4DcB8deBd8fbDE9B3AC6809fd8CfC8AfE0B8fDD5BE014Ab50c1c ; < gXixO6cjY6ak3382eC951691332D7Z7V0ftI2eRFZNbFFEeHk51imR2QS4u0R735 > > 2 // < CALLS 0,0624282362550451 ; quote ; 0,00208455917885531 ; 0,00204286799527821 ; 0,0204081632653061 ; 4,6 ; 0,00202202240348965 ; 0,00214709595422097 ; -6,6 ; Da4DAb3d6fccb70aaf8F8Fadf64Beed156aAdBBf5605df7DEC1BAc2c4FE7CEfe ; < Rf81uIjgnJVuyUl13y69byZntXQxUQm0EtNK2ljAluifjy9k694McB8H4nM6LLqg > > 3 // < CALLS 0,0676305892762989 ; quote ; 0,0023161768653948 ; 0,0022698533280869 ; 0,0204081632653061 ; 4,2 ; 0,00224669155943296 ; 0,00238566217135664 ; -4,8 ; 8fAea6c4bAfDdab80A3d3ACA9FBAefbec0Dc4d3bBD0D3A2fBCBc0fAAebA8e5f8 ; < 1pdcL65siPkJaR6Gn9qNkd47BzG8qmXoo137r2FSmF3S5Yt3s97J3084xmxCrLnd > > 4 // < CALLS 0,0728329422975526 ; quote ; 0,00257352985043867 ; 0,00252205925342989 ; 0,0204081632653061 ; 5,8 ; 0,00249632395492551 ; 0,00265073574595183 ; -8 ; c54dbE1146464eded5F9Bbb281EDaa23EEB8BaD3d639bcB0Ca3eD271baEAaD17 ; < cO71Wes0pbB9kmj2EUb7114fPB1que9whrgoBLrZra6T69dJkRQ8x6g5tpHH1D2m > > 5 // < CALLS 0,0780352953188064 ; quote ; 0,00285947761159851 ; 0,00280228805936654 ; 0,0204081632653061 ; -6,3 ; 0,00277369328325056 ; 0,00294526193994647 ; -2,8 ; aF3295bC9DcEE3Ab2dcaBbc1D26Fc4572b3DbEeAAec6e1E58Cd4ccf6F0edC43c ; < rrgTS6mi067T8s22CfGEUn94Tms3ZwmZnR2L3cH7rZ0O1q16xXGE0P0tqPw3oI30 > > 6 // < CALLS 0,0832376483400601 ; quote ; 0,00317719734622057 ; 0,00311365339929616 ; 0,0204081632653061 ; -1,2 ; 0,00308188142583396 ; 0,00327251326660719 ; 7,3 ; 10B4C6da20A9C279EED4Dcd8bF6FaeCBd78CcbdAfeE4b52BaABC8cef2FfAA6c4 ; < 8SYAZj9L8bm7hDhRBe4tTknb5c4nSQd2eGJ5vGR4ybZFZgqmtnk0mfHdwgX6UfG3 > > 7 // < CALLS 0,0884400013613139 ; quote ; 0,00353021927357842 ; 0,00345961488810685 ; 0,0204081632653061 ; 5,6 ; 0,00342431269537106 ; 0,00363612585178577 ; 8,5 ; DC8ee52eea4fFeAAE4BAb0be9CbAdF6F5cBfE4de6fc671febc637bCA3f46eEdD ; < 58t359kC58H2189NqFsXXw2plGxJp7VcOT2E9Ewuo1baoUDXpC90Xa79hH15wldr > > 8 // < CALLS 0,0936423543825676 ; quote ; 0,00392246585953157 ; 0,00384401654234094 ; 0,0204081632653061 ; -6,2 ; 0,00380479188374562 ; 0,00404013983531752 ; -6,9 ; fda6C8ceDD08bfee0BCAbe4AA494D70f1cF1dcebCd3e81dbFFCcDAaDF441997F ; < 74wb7EvE02Ne17snkAxNG8SYejfSYxa5ZK21sg8TK9uC9f2XqYMJ280FflqE7eDy > > 9 // < CALLS 0,0988447074038214 ; quote ; 0,00435829539947952 ; 0,00427112949148993 ; 0,0204081632653061 ; -1,9 ; 0,00422754653749514 ; 0,00448904426146391 ; 1,2 ; 863CAbf52484B46CbFdaB2FD6C9d2DEdCd091D4e4B43bCB6e7c0B1b37ECccC8b ; < ldSIcv50w8wr392H4k3JDfI8B7f66G88Dj1Q92l10s3fUT23OHDNRLUFh12er39G > > 10 // < CALLS 0,104047060425075 ; quote ; 0,00484255044386614 ; 0,00474569943498881 ; 0,0204081632653061 ; 8,7 ; 0,00469727393055015 ; 0,00498782695718212 ; 8 ; 72eFA4F6BFABCBE94cBedFEBDeeBBfEbFeacf8DC7cC247d0f3aaBBbDBfF9d7aD ; < 6bStL6145hqjJYAUt2WVQW0npN4UTkyt0U6k25Dy632gRwEAY857f3vestrfmk6V > > 11 // < CALLS 0,109249413446329 ; quote ; 0,00435829539947952 ; 0,00427112949148993 ; 0,0204081632653061 ; -2,5 ; 0,00422754653749514 ; 0,00448904426146391 ; 9,5 ; 5e1bBBf6D0cdBCbCC39CCca8e03bFAB5a5dF1fBFAbab80E5Ae3A9E1f5f4dEdE3 ; < z6nY1Do9Z6PDoB9rvP7FMxQ9JBa234j50iLmS6f1a8fZm1c1XWQN07ghfh84QQIA > > 12 // < CALLS 0,114451766467583 ; quote ; 0,00392246585953157 ; 0,00384401654234094 ; 0,0204081632653061 ; -4,1 ; 0,00380479188374562 ; 0,00404013983531752 ; 8,3 ; Dd64BfdC25Ca42a76DD5DF1C6e6bfd9cD3fcdeA9F7B9F2adEAcDBBDCb46b66B8 ; < 5btpf8bU8nVFi2Y2h4iXnqasXLtfOz4W1xgErO47610S6sY20Kv3GdsRk0f4eKtB > > 13 // < CALLS 0,119654119488836 ; quote ; 0,00353021927357842 ; 0,00345961488810685 ; 0,0204081632653061 ; 6 ; 0,00342431269537106 ; 0,00363612585178577 ; 3,3 ; 7bffA4aaCfd31Aca6AB80DaAadd0e554faa0D9c0aAb6aa4C7b10a02EdfD6dD88 ; < gCtmoI0N0R31IzTjuZx2rY0n5J7976MzJpVCX0HY049WZJmm7Fop3r74zqAd8UZW > > 14 // < CALLS 0,12485647251009 ; quote ; 0,00317719734622057 ; 0,00311365339929616 ; 0,0204081632653061 ; -6,8 ; 0,00308188142583396 ; 0,00327251326660719 ; 1,1 ; 4abd70c5c85dACAa12bC47A38AcCCE0Dfa6AeAcaf554e9CfaCECdBCCDc3E8EdC ; < AI4h7xuXqKC7y9ghmWRpYV127Lc5eu0MI1uoE8SEw035L04rP2YS03wGs7C4zt61 > > 15 // < CALLS 0,130058825531344 ; quote ; 0,00285947761159851 ; 0,00280228805936654 ; 0,0204081632653061 ; 3,3 ; 0,00277369328325056 ; 0,00294526193994647 ; -6,2 ; 6A1bdCd818Bdda4AE642bdeDCdf9fBdf4Bb8FeD9cdEC3A8CBe47Ce5DCcc3fCc2 ; < I8PYZj17ctWx4Gj1KqJONybq4kkbcj3f1Q3s9Cu1AnnXOinHVBo9a0By6Xjyqh2r > > 16 // < CALLS 0,135261178552598 ; quote ; 0,00257352985043867 ; 0,00252205925342989 ; 0,0204081632653061 ; 5,6 ; 0,00249632395492551 ; 0,00265073574595183 ; 7,2 ; Fb4B9CdECaaBEEDDe6FFbFd1ACC966EbfffAa6Cbf1f2FCe4c4f0F2B2a7C7A371 ; < Wj757Qbx81MX005U8tGM1SIX0O88Frhh3m621IgT473v1mg0N38mSGJJ3z9w81JU > > 17 // < CALLS 0,140463531573851 ; quote ; 0,0023161768653948 ; 0,0022698533280869 ; 0,0204081632653061 ; -0,8 ; 0,00224669155943296 ; 0,00238566217135664 ; 2,9 ; FFbefA9EDED00fDb5f62afaAaa24FD82BBaeB4fa1ADAED9Bbd6DEec7dFDCD9da ; < pMRWU1ykn0q1XGbde1KB0C7usYDzqg8LV0stIgC4Wd3zi02U63ulN5wHfzPcr7hz > > 18 // < CALLS 0,145665884595105 ; quote ; 0,00208455917885531 ; 0,00204286799527821 ; 0,0204081632653061 ; 6,2 ; 0,00202202240348965 ; 0,00214709595422097 ; -7,6 ; 76dEB4891fb85EFe8efDF3FB2adDADDE9f8ecacbcaCb9Ec7ae1fF200A35Dd5bE ; < ZM8SaPw7cOqn0Qa5ETwzY0CNWMgd8IBe0fo75lz05W8U0yJScS2rql1766c0Gi75 > > 19 // < CALLS 0,150868237616359 ; quote ; 0,00187610326096979 ; 0,0018385811957504 ; 0,0204081632653061 ; -0,1 ; 0,0018198201631407 ; 0,00193238635879888 ; 6 ; 1DAd2CB3FBaFAa82aDAdA069D52fBcaa672eA2d0cDAA5DfaEb16A4bE4F7C8EbD ; < qEypRcVD1AnQ9ZG2ASfNogm3hiynX8v9RLE5dIh34ENCjF8PSorDXh0w903PE6v7 > > 20 // < CALLS 0,156070590637613 ; quote ; 0,0016884929348728 ; 0,00165472307617535 ; 0,0204081632653061 ; -9,4 ; 0,00163783814682662 ; 0,00173914772291899 ; -6,6 ; 32fDc7eFDBBea943d16B08F9Fb8c57E1c38ECcD08D5eBBB0D2F4Ed89B7fCb0ef ; < Q6bqt9cu8gHBEbO96tZ1kI106k4sT51KFojUQ7XgjB3oiaIHw72dmc1kop30l2J8 > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0520235302125376 ; quote ; 0,0016884929348728 ; 0,00165472307617535 ; 0,0204081632653061 ; -4,9 ; 0,00163783814682662 ; 0,00173914772291899 ; 9,3 ; CBEbaBebd9dDFF970B1c9DaCAE1Eec53EaEDaD9A311ab78D7FDf7aDEAD057E1e ; < 139r97DPp2LA4VnYEyD67Hf5VHLDG0mYg1yG5wn6EHLasCl7vwEcybhCdXGBCww7 > > 1 // < PUTS 0,0572258832337913 ; quote ; 0,00187610326096979 ; 0,0018385811957504 ; 0,0204081632653061 ; -1,4 ; 0,0018198201631407 ; 0,00193238635879888 ; 5,4 ; Bc0dCeD86fFAA469B68CE7f38bFe05F1cfABa1Dcbbb0FbCAFD931C703BD83FdD ; < bk5T3U168Xa76SpTO9PG1IJ57VV72n845iOEf518LI40amxxLcl1oRUsIXAX2442 > > 2 // < PUTS 0,0624282362550451 ; quote ; 0,00208455917885531 ; 0,00204286799527821 ; 0,0204081632653061 ; 8 ; 0,00202202240348965 ; 0,00214709595422097 ; 3,2 ; abAF6e4D5D0Eb9caEE7BD0BdD7BAAB031cCDB87C8AdCC3c13AFAdE87D0bF5FbC ; < EH97W3nb9zMcdcXoXxEw8SHEO6w8MvpU6mA33C14dp6oy00H6AtpfXUVsrhVgR1X > > 3 // < PUTS 0,0676305892762989 ; quote ; 0,0023161768653948 ; 0,0022698533280869 ; 0,0204081632653061 ; -2,7 ; 0,00224669155943296 ; 0,00238566217135664 ; 5,5 ; Ed5aDEeE14dF09CFB34b5Feff39Ab3dD4fA45C86ce1cFDaA7FCcFaaa0142af9d ; < p2r1Bhb23J1bu9WFhdO87IGy36ARhNSf7vl7939Un6R5l62y6ATMbU61qg81IjB0 > > 4 // < PUTS 0,0728329422975526 ; quote ; 0,00257352985043867 ; 0,00252205925342989 ; 0,0204081632653061 ; -1,7 ; 0,00249632395492551 ; 0,00265073574595183 ; 1,3 ; Cf15a7d1b75fCBAf03baeD62C8Dec5Cc6F1AEbD5dCD8c3df4CdEAdB3c9Ef9FeD ; < H76004nkY3kQivc7860O2t9vY1s7laKbhQ2gXuuYimdYYW6CO4pZMP16ZC2Na2V8 > > 5 // < PUTS 0,0780352953188064 ; quote ; 0,00285947761159851 ; 0,00280228805936654 ; 0,0204081632653061 ; 4,3 ; 0,00277369328325056 ; 0,00294526193994647 ; -7,8 ; A7BCeDc08afeC25B9D6cA0a7BFaabfdFDA1BFCE89be6EE5fe302db5Cf6DbeeeF ; < 73t1Ps3906ixTS2d5toL1hk1PAOR2df5aJKtfExeLsCsZl2U5bhFRo8tZn5r5KUt > > 6 // < PUTS 0,0832376483400601 ; quote ; 0,00317719734622057 ; 0,00311365339929616 ; 0,0204081632653061 ; 3,5 ; 0,00308188142583396 ; 0,00327251326660719 ; -3,4 ; A498Daad4e7bFeACDcAAb2accf825beF19abCFC1efBeCd266EbB7Cbf2f7C6AAB ; < UocrF106G23bC424Ol8BgRAoQuDAeoJLw22c5xGuGJd7OgV33G435bb3131nsado > > 7 // < PUTS 0,0884400013613139 ; quote ; 0,00353021927357842 ; 0,00345961488810685 ; 0,0204081632653061 ; -5,7 ; 0,00342431269537106 ; 0,00363612585178577 ; 4,3 ; FbEA89F6Ae8B3daFDDeeb01bE1e580beaF64CDfD59F7df0b5bB2fBDeEEB4ECAd ; < 2fG6vCG4067Mr9GKeh0b4bU79WUIH35ajTbKGCLFYU7l8vHrLxObj3VN0858CFE5 > > 8 // < PUTS 0,0936423543825676 ; quote ; 0,00392246585953157 ; 0,00384401654234094 ; 0,0204081632653061 ; -8,6 ; 0,00380479188374562 ; 0,00404013983531752 ; 6,7 ; bea4C7dfC95cbc1FBfcfa5FeCa9948aDD7eE30affd4FdeE38BcbEcBEEa0c4ad7 ; < g2g2Rub0qtXB4c4uZx0kA59ve2Il88a119Kvhqy80j9Nmj2rVt9QALsA5Sob7KW8 > > 9 // < PUTS 0,0988447074038214 ; quote ; 0,00435829539947952 ; 0,00427112949148993 ; 0,0204081632653061 ; 9,4 ; 0,00422754653749514 ; 0,00448904426146391 ; 4 ; 9fdF2fcFdb2F4DDbC33bDafB9cD7E757cf01bCdF2C43AAfbAe9CbE9eA2ea5e65 ; < TjDtidc556qX0THb5phnP6t59O6C145d8hWyL0BI1Q10lg825ggarh61C35peOyX > > 10 // < PUTS 0,104047060425075 ; quote ; 0,00484255044386614 ; 0,00474569943498881 ; 0,0204081632653061 ; -3,7 ; 0,00469727393055015 ; 0,00498782695718212 ; 1,4 ; 3cD1F06ab43BbB9AAE51CC1ceBEf38A3AdeEeeE2Db45CBae92474bdd584D3f7d ; < v4aNL1EGaWA0dYHWmH4Q494SPrd3WlgzQc938v6dW9EY01Dvcd4Sc94b02P83Oiu > > 11 // < PUTS 0,109249413446329 ; quote ; 0,00435829539947952 ; 0,00427112949148993 ; 0,0204081632653061 ; 4,6 ; 0,00422754653749514 ; 0,00448904426146391 ; 2,1 ; 1Caa3BFEE5a56fE218A7acD3dEB7fd94FfBbeDECeAAdc8BC9ecd5AEBCD3b9bAA ; < CLmBg5wmXzePkl5Nh7X4YAf8WR8SgNW4Pr1jLw8dj1yMO3y7b9y4Su1lt710XaU8 > > 12 // < PUTS 0,114451766467583 ; quote ; 0,00392246585953157 ; 0,00384401654234094 ; 0,0204081632653061 ; 0,1 ; 0,00380479188374562 ; 0,00404013983531752 ; -5,4 ; 5DFEd1db51Db5A8C3DEdeD0e37E58ccFEcE2eBbABc2bAe589b1ddBCB6E9D394C ; < 6WUR7pH6Xb1G8MHGurH61J641M2WgboPDh8y8n2DMInt9Z83m287O83gPBmU4g8X > > 13 // < PUTS 0,119654119488836 ; quote ; 0,00353021927357842 ; 0,00345961488810685 ; 0,0204081632653061 ; 5,8 ; 0,00342431269537106 ; 0,00363612585178577 ; 2 ; CBCaF8eC2FC1B4FAdcCB0cc9cb39Da2858ce8EFfAACBdddbfA0AABC74bceeAa2 ; < 3xrZ24r3R8W5y4338Q1gwE1hp5c7aEPc5KO6fwC9dhwyCN1B0b81rurd3Cjrb7aq > > 14 // < PUTS 0,12485647251009 ; quote ; 0,00317719734622057 ; 0,00311365339929616 ; 0,0204081632653061 ; 3,4 ; 0,00308188142583396 ; 0,00327251326660719 ; -4,2 ; b6fadd7C0cCc0EF7eec87fDAf35e93B57C85AF9adF6fBAcaC801abba14Bc2071 ; < pQsP79Yn34UFyrmy06OAPhegaLeskw63wI2c9facZ5ihcRi3M660TbMj6rmByD6O > > 15 // < PUTS 0,130058825531344 ; quote ; 0,00285947761159851 ; 0,00280228805936654 ; 0,0204081632653061 ; 1,2 ; 0,00277369328325056 ; 0,00294526193994647 ; -1,1 ; A11CB6EE9EbaF6edE2A40df18Ed4B77FDBFbe8eF8EFAB53Bdae61EfC8d4bAf1A ; < EfFBy5K0FxmzCCRRxpMlpDq7T2gkI5dquV8S7R9r2RN1Xn3a1Xe4964lRxcyLAhP > > 16 // < PUTS 0,135261178552598 ; quote ; 0,00257352985043867 ; 0,00252205925342989 ; 0,0204081632653061 ; 3,7 ; 0,00249632395492551 ; 0,00265073574595183 ; -2,8 ; a588f54bBD3F98B3Fe8BCa0FCaAF9d0BE0e54e55db6a9a101acecad5fCCE7Acd ; < 7Ld2F49f26h850C1G4zVt7X5Ly1Z86D5u1bN25n7TW1YHnH25fRmiKH6IjqM0XYa > > 17 // < PUTS 0,140463531573851 ; quote ; 0,0023161768653948 ; 0,0022698533280869 ; 0,0204081632653061 ; -1,3 ; 0,00224669155943296 ; 0,00238566217135664 ; 8,8 ; 56ad26CBbAdAc92D0FeaaE6FdfEdaa7DBAc5Ecd36cb1F0b34FcDAecCaAcd8d6e ; < BPc1j4yK5Mh0MfL9lqt23PcHcR0h1c9T99HSZ62eVdKoW526iWjU33Ns3iZ9954d > > 18 // < PUTS 0,145665884595105 ; quote ; 0,00208455917885531 ; 0,00204286799527821 ; 0,0204081632653061 ; 5,5 ; 0,00202202240348965 ; 0,00214709595422097 ; 6,1 ; adfC32a4Ac5AC3A73Eaa2aD24b2AAEbFA9FA3eEedeEFCeDa980CBfADeF3fdbAE ; < 63n7atUYyeGX7i7E616FNLbTNHLW9ln2OppTlRl42eBgRH3hqzpZbhOk9ndiJii9 > > 19 // < PUTS 0,150868237616359 ; quote ; 0,00187610326096979 ; 0,0018385811957504 ; 0,0204081632653061 ; 9,8 ; 0,0018198201631407 ; 0,00193238635879888 ; -4,9 ; 72AF6A3D44Ac6D8C473bB81ed2ace7cF46dfde25FDEDe1d3AC2bcC9cABcDD5b5 ; < ix3JbQf3m9dipKOseMQSqod0OupYNTG4Eu4sb32r7O566Sn59ZsuG9CGy8osV9gz > > 20 // < PUTS 0,156070590637613 ; quote ; 0,0016884929348728 ; 0,00165472307617535 ; 0,0204081632653061 ; 8,8 ; 0,00163783814682662 ; 0,00173914772291899 ; -6,8 ; 8fBfa3Bf13c8Bd3aB9EE190EE37a956BEc5FBDACCDeaa0BdDADe3186dDbFcEAE ; < H2U0KVGRGuo15cp68Q9kauL35GyH7b2tfYS7F2hV6HK08Pjy78TE6D6Px7ke4XcI > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0522175938415273 ; quote ; 0,00350487621453956 ; 0,00343477869024877 ; 0,0204081632653061 ; 2,6 ; 0,00338220554703068 ; 0,00362754688204845 ; 7,2 ; acfd1bEaD5FDd23cbb3d4FB59fEdd9dd9AcbAa0cdbAbE0BEaEf2b9c9eF47BC61 ; < JqT28clg2q6nk5Yy4IQN3aL15FCV39elQ5Nc13Ocu4nB28I85WUP4P2U4Hb1C0LQ > > 1 // < CALLS 0,0574393532256801 ; quote ; 0,00389430690504395 ; 0,00381642076694308 ; 0,0204081632653061 ; -5,1 ; 0,00375800616336742 ; 0,00403060764672049 ; 7 ; EB67e41DeBE9d8b5BBaBbea60A682A8FbbDbD9EDdDC51BFbEBaC5bffaCAeAAc0 ; < 6W7B06dhHX28O84vl66In5007KSf0L8v2TqLRTQk24cz51TliJvdwzZZKaSz7b56 > > 2 // < CALLS 0,0626611126098328 ; quote ; 0,00432700767227107 ; 0,00424046751882565 ; 0,0204081632653061 ; 8,1 ; 0,00417556240374158 ; 0,00447845294080055 ; -8,6 ; 7EBEE7e2B5cfaBad68D8b8BE04be664BD8aFBCAACB233eFeFa66B3Ca167FdF37 ; < 90dc4790pUWWlbllOOKpQ3AmJ1cS44F8jiu4IdG37JT053Nbd5IpN7KYC08QoX4F > > 3 // < CALLS 0,0678828719939855 ; quote ; 0,0048077863025234 ; 0,00471163057647294 ; 0,0204081632653061 ; 1 ; 0,00463951378193508 ; 0,00497605882311172 ; -9,1 ; 30bE7ab2cAB1789F1edbdA0a1D53DDA09CAa539eeECcBEAA9Baf16fEBec8b0Cb ; < CF73Fn0rE3I9aO26XePt4N66n9467vnudmSvcpjSEMGeKSk3cDa8Z8HDugXKnOoz > > 4 // < CALLS 0,0731046313781383 ; quote ; 0,00534198478058157 ; 0,00523514508496993 ; 0,0204081632653061 ; 6,6 ; 0,00515501531326121 ; 0,00552895424790192 ; -5,5 ; f04FaDbCb79Adbfa8793dA23d0d09bc3e46627bdb79AEEcBED122bEb65FAfD9a ; < YS46v5Ycbd910FK8SZEueiV4y6MTLvCuBH0563eW1hFDzyVrgy2b2YTGoutCOSZ0 > > 5 // < CALLS 0,078326390762291 ; quote ; 0,00593553864509062 ; 0,00581682787218881 ; 0,0204081632653061 ; -8,4 ; 0,00572779479251245 ; 0,00614328249766879 ; 6,5 ; C24DcdFECa7D9ccEA5FAeb40dB4aFaEaeeC8adFCCD3CfE9d1F6cd5bdFE9951FC ; < m66O3NDqKI39YZdBOP9ss6NH21dyef791YNzy7804PLqq1GufTpXASbTUDUB2kH7 > > 6 // < CALLS 0,0835481501464438 ; quote ; 0,00659504293898958 ; 0,00646314208020979 ; 0,0204081632653061 ; -6,6 ; 0,00636421643612495 ; 0,00682586944185422 ; 3 ; 4B5bBa3ef8FE94C4Cba34a6DD5Ba9DEEF4ce2CFF15cBF8cBdabFbec3Af9edB78 ; < 0nVl0z89eJ61Y97MudUjuCLzQ6ym7QB5e0ene7fU2a7Tc7X3P85v3MCqK50CZmX4 > > 7 // < CALLS 0,0887699095305965 ; quote ; 0,0073278254877662 ; 0,00718126897801087 ; 0,0204081632653061 ; -0,4 ; 0,00707135159569438 ; 0,00758429937983801 ; -7,4 ; BCAef86dFDBdDf35ADEFAAaCda0fBbea342F6E5fc0e24DCBfBFab7cb76ab2171 ; < 73yDqBnTcToCFtzQqQ12Ei0rx6TWkD1ixMqOo3DUjMVMhAupNBm1Z5c9vX0Tglk4 > > 8 // < CALLS 0,0939916689147492 ; quote ; 0,00814202831974022 ; 0,00797918775334542 ; 0,0204081632653061 ; 3,1 ; 0,00785705732854932 ; 0,00842699931093113 ; 8,6 ; B7cA9f91CE1dF2deBCb9ec69F4FE45cbdcABcA3EAD9Bfdaf22cB1eCbe0AaFffD ; < vq4cRNm7MrU35Oy68XwiD94eO48p79hBsSWWG9EZIY5Sd7JEm071SUE83rdt9VY0 > > 9 // < CALLS 0,099213428298902 ; quote ; 0,0090466981330447 ; 0,0088657641703838 ; 0,0204081632653061 ; -3,4 ; 0,00873006369838813 ; 0,00936333256770126 ; -3,2 ; aEBFF14b521F3BCAbd647ceeA88b443F6A7ECDC6d7ecB4CeF8fce4edeefe8Ae8 ; < jMC4um1wB5Btuj43w6SH7m1FtcWLkKgNo2hJU4unPyjFyMFglIJ1534SCZ3luHsO > > 10 // < CALLS 0,104435187683055 ; quote ; 0,0100518868144941 ; 0,00985084907820421 ; 0,0204081632653061 ; 0,2 ; 0,0097000707759868 ; 0,0104037028530014 ; -9,4 ; FcB531bdFBdfEfbC8B5dD51fD39DFBfdcFfd26FDED1BFcaadD4CDF73afcB07B3 ; < VE826466vhnD2A8o7yoE66286Bo1N7YW2D0oHHh1Q4Go36y8MLFu6Or3LkK7j864 > > 11 // < CALLS 0,109656947067207 ; quote ; 0,0090466981330447 ; 0,0088657641703838 ; 0,0204081632653061 ; -2,6 ; 0,00873006369838813 ; 0,00936333256770126 ; -4,9 ; CE8bdDbDcAbd9aad5CEFbfbBA8b9adf38DAaC7B3D1AcDd05ac9AC3Ba8d32a8D1 ; < ke7Ww7NKxduF0nw76SWQ8tuSl72NzPAG1NvyI1p7Yn006GaGe7py4P884l7a6snX > > 12 // < CALLS 0,11487870645136 ; quote ; 0,00814202831974022 ; 0,00797918775334542 ; 0,0204081632653061 ; -6,1 ; 0,00785705732854932 ; 0,00842699931093113 ; 6 ; 2A80FEd660a2Aadbc3AAfdFceBC94EDBBB99EC3DbEdbd6ADadF25bDADeea3dEe ; < DU189mkzkA4ahTSpsK4761NbW6wu0UA8X3y2D6Hoh6Wh872j0g8E33YsUagOBrcN > > 13 // < CALLS 0,120100465835513 ; quote ; 0,0073278254877662 ; 0,00718126897801087 ; 0,0204081632653061 ; 0,8 ; 0,00707135159569438 ; 0,00758429937983801 ; 5,6 ; C8dcF2Bd0aCF0edABfBacbf92f1c3eA4aD1c1DcEC06FadccECcc3F3ACB6D98a8 ; < A10JraTCWF36mw76ALCDQXZRiP92hAQ31o7cSkdrFoUrYFH8JjpaTfs1mF26mrg9 > > 14 // < CALLS 0,125322225219666 ; quote ; 0,00659504293898958 ; 0,00646314208020979 ; 0,0204081632653061 ; -1,1 ; 0,00636421643612495 ; 0,00682586944185422 ; 4,6 ; B7997cfEA6d1cFeCCccdc180f7def0c486BF54eBbFeBEbEd1cAf3cCF74FAF4F1 ; < O1LmzAEalbTosf5ylh4oa27wZNdT9MP2f5E06f7G4hZ09XH679Z482343Vc16XaO > > 15 // < CALLS 0,130543984603818 ; quote ; 0,00593553864509062 ; 0,00581682787218881 ; 0,0204081632653061 ; -7,7 ; 0,00572779479251245 ; 0,00614328249766879 ; -5,4 ; B05AdaDAC2Eff3bd8fb766CBEC1BCfD6Dbc37eDdBeaF73AF638E0b4fd0D0edCB ; < AEYXv18A4iO7RCo0uVc597NWTKWozbMCz5pbSKRLgg2BxS99580G4WkG41x82N7x > > 16 // < CALLS 0,135765743987971 ; quote ; 0,00534198478058157 ; 0,00523514508496993 ; 0,0204081632653061 ; -5,5 ; 0,00515501531326121 ; 0,00552895424790192 ; -1,2 ; a8e73cAcCDE1F26a1eCb1AFd5Dcbf7eeE1aeFBDAD0F22BCDFAE5aFD0b9ABEECe ; < GBagys9N1SqIG23t5R9991B44RV65Y5Yhn069814S0IYaQa7GQd0RxbA5ua7Jh8I > > 17 // < CALLS 0,140987503372124 ; quote ; 0,0048077863025234 ; 0,00471163057647294 ; 0,0204081632653061 ; 2,4 ; 0,00463951378193508 ; 0,00497605882311172 ; -6,3 ; b1bBa5EbBEf5FB3b1FD1d15419c635ECADbd64b5B3e4Ec5aCcEa4cD8aEDCBAfD ; < qVcr3AslJ9VQ1FN9HM9gr9g850i9D2645JE6d5hy20z8P857Xx042f7Zm5obD0A7 > > 18 // < CALLS 0,146209262756277 ; quote ; 0,00432700767227107 ; 0,00424046751882565 ; 0,0204081632653061 ; -6,7 ; 0,00417556240374158 ; 0,00447845294080055 ; 3,6 ; a3dc0cAf37415beE02aFA9a3E06fAF5E3ddbfB5BfAbDc8Eb9Db1dbf3bB5c74eC ; < hVOFhn035EuPk05zo1bS6sa5Mj044Z8kYyFT9b2I4J3XBuOhyRmd6gy79S073Iw3 > > 19 // < CALLS 0,151431022140429 ; quote ; 0,00389430690504395 ; 0,00381642076694308 ; 0,0204081632653061 ; 9 ; 0,00375800616336742 ; 0,00403060764672049 ; -4,2 ; 1dDcE5CDDBA68C0e7912CaE9Ec7cebFdDA83B0C3bA6A6FfbCa2F3EfDdAFFFE7d ; < 5JFIgAgr9Tz9RUyL63S6q0G8593Vgw8an3YF7w0sW5q44SGtT0fXhQs000Z8fiRz > > 20 // < CALLS 0,156652781524582 ; quote ; 0,00350487621453956 ; 0,00343477869024877 ; 0,0204081632653061 ; -4,9 ; 0,00338220554703068 ; 0,00362754688204845 ; 0,8 ; b6e4ad7cFEdD8cA1E43ec4eC7CcdeEE8ec2ED55AEda2caDCe2e2BDa9aEBAf5Fe ; < b2Vp6rcoP6gUB0XPHv5hcQ8PwrV96u8c802k83dYv00ZO6st29z85HNX3C4up8Qy > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0522175938415273 ; quote ; 0,00350487621453956 ; 0,00343477869024877 ; 0,0204081632653061 ; -6,9 ; 0,00338220554703068 ; 0,00362754688204845 ; 1,4 ; bEd8CaAb0CA91cFAdaAAaCAeA3EDADEBe7a1bBAbD14De8F14F0A82DBbbfDDAb8 ; < 9Ub47I1g2pQB6LhJNLDVQO12XqiErV3cOWxg97g6t1DRd195JW4GS9Uqx3250VHd > > 1 // < PUTS 0,0574393532256801 ; quote ; 0,00389430690504395 ; 0,00381642076694308 ; 0,0204081632653061 ; -0,2 ; 0,00375800616336742 ; 0,00403060764672049 ; -0,1 ; 40B552Aee6EdD1f5c4dFa1b20CFc0Cd9a24b4AdA91BaFEddbaA7FdE3fbc3e7aA ; < 5SDkE7a9lBSNZ9za271cVA3cnUWy246jP04ClFJ73Xq6sMS5Sh44Z91a83CO7wg6 > > 2 // < PUTS 0,0626611126098328 ; quote ; 0,00432700767227107 ; 0,00424046751882565 ; 0,0204081632653061 ; -6,2 ; 0,00417556240374158 ; 0,00447845294080055 ; -5,4 ; 9CBA5Bb0De1f8AC6AFE5BF3eCaabC4Df059Ffa8cCc7A3e4FBAEAFccaff78Ef7f ; < 7s3b6Q56QjxZXPBFMJq7YTNx634x70t67PymMhF7YK7v1M24z1YU5ytD8LY8Etx4 > > 3 // < PUTS 0,0678828719939855 ; quote ; 0,0048077863025234 ; 0,00471163057647294 ; 0,0204081632653061 ; 5,8 ; 0,00463951378193508 ; 0,00497605882311172 ; -8,2 ; Ccb5dfc7CD3c7CF5BFfEE0F503CF4ADD26889fbf3daAC8f01fcE6Dd9F6BfdDab ; < fAZ2vvKW22kNMq6bjQ3f521o2fz26H0Hl65jKpaQ5Dkcdd37892FKb2VJx72nran > > 4 // < PUTS 0,0731046313781383 ; quote ; 0,00534198478058157 ; 0,00523514508496993 ; 0,0204081632653061 ; -1,6 ; 0,00515501531326121 ; 0,00552895424790192 ; -8,8 ; fd2f00F9EE0Ef9B3Ea44dEC10fE7F5decED6477B3BeAF3aFfdbD14B26c2BBaFb ; < kxURsAXzmFejXBicsEf3C1c50V0NJuBAmUxpuGEt3a5uz0WOhXPGV6I2Si6aBUVF > > 5 // < PUTS 0,078326390762291 ; quote ; 0,00593553864509062 ; 0,00581682787218881 ; 0,0204081632653061 ; 9,4 ; 0,00572779479251245 ; 0,00614328249766879 ; -4,4 ; ebCde4FbD917DAEcaC3d4AD82E2afEeEAEEbDdf3eacAe1A4BF2dDC7bFd6D70d3 ; < S3fn0bvY4abinbV5llD40l1p24tV45Q8B7H2xXQ32WkyUzZl50PoZf99Yo9dx71d > > 6 // < PUTS 0,0835481501464438 ; quote ; 0,00659504293898958 ; 0,00646314208020979 ; 0,0204081632653061 ; 3,7 ; 0,00636421643612495 ; 0,00682586944185422 ; -4,1 ; ba3B8FDe25eecD4d5A5d5AfaDF2C8fab868B73fBe3Ca90DbfcCd7DFDFFA0AFdc ; < B9s3qaYjdVcZexK0exQKsMN1hwLuyJ7NA0ZhtN12lyxhG9zh8T1vqMxCaMeI86XH > > 7 // < PUTS 0,0887699095305965 ; quote ; 0,0073278254877662 ; 0,00718126897801087 ; 0,0204081632653061 ; 6,2 ; 0,00707135159569438 ; 0,00758429937983801 ; -2,6 ; d4E8aBAEe5Ccacdd0AE677fd8f6Dca3C0bD3bac59a7Eb7ECB953dAafEECCBdC8 ; < D4cJ0aN5alR9hbEIT4jd9h085h37sS4EfOoAHk52apydF8CEUXTZa46yssAKB4sa > > 8 // < PUTS 0,0939916689147492 ; quote ; 0,00814202831974022 ; 0,00797918775334542 ; 0,0204081632653061 ; 1,9 ; 0,00785705732854932 ; 0,00842699931093113 ; 8,5 ; 1deDc39e7fed711EBfdFFeeAea5DdCEDCcFcaBC0FFEbc0bab5DEb5eEa1D3fF9b ; < qHoqui01B2j8rOVt5LqHH835W584ZM2r2Gbb61x0fU56SdotATU3ivMu5ISbH67q > > 9 // < PUTS 0,099213428298902 ; quote ; 0,0090466981330447 ; 0,0088657641703838 ; 0,0204081632653061 ; 1,1 ; 0,00873006369838813 ; 0,00936333256770126 ; -9,7 ; D2E0a0fA17c5CAC24EecEcB3003EADad18b27d8Ee3B7C28C2aBeDd7fADb09b4F ; < Xr80o6AKWwHBZmSZQ6Tnk9mrtIWiDN0H3IG0e3FFu51iW1rF8JOfAau8JeLGnQAH > > 10 // < PUTS 0,104435187683055 ; quote ; 0,0100518868144941 ; 0,00985084907820421 ; 0,0204081632653061 ; -6,6 ; 0,0097000707759868 ; 0,0104037028530014 ; 0,9 ; 1dbCb0D57AbE7Ae2e6eD76B61BfFC8026ac1F1Ed5Ecc74b2eeaF4AA9Ea3B59E0 ; < VEL6Jx6pzGLIc42qMJ6sMHmfzm145yyQ7Kyh8pv3K21u75myewFrwSgXgQMzdY33 > > 11 // < PUTS 0,109656947067207 ; quote ; 0,0090466981330447 ; 0,0088657641703838 ; 0,0204081632653061 ; 5,9 ; 0,00873006369838813 ; 0,00936333256770126 ; 1,3 ; F6FD2c7fEaA299abFcdFe5cB4f7bA8a4c9BdaE5ef6Fdac4ECbDCccABBcAF60ED ; < 2ZykXqh6V72G400SRmE2201ds9T0JdI7e1Ohk4uBCen2OPl4n5ZLgpZWj5qsM15i > > 12 // < PUTS 0,11487870645136 ; quote ; 0,00814202831974022 ; 0,00797918775334542 ; 0,0204081632653061 ; -2,8 ; 0,00785705732854932 ; 0,00842699931093113 ; -6,9 ; 4EEAdCebbBac36eac485faF60fceDB5BaA1CcB73bDe8BB0BbFEE4b6e0F0dFA79 ; < hh6n175e3X0XcsWplt90oqxj897U0oopEe2zJuWd0e3DHWj3bW8ut358PaoLp0dB > > 13 // < PUTS 0,120100465835513 ; quote ; 0,0073278254877662 ; 0,00718126897801087 ; 0,0204081632653061 ; 1,9 ; 0,00707135159569438 ; 0,00758429937983801 ; -1,6 ; baF680EaDdd7Eae86bFa40e1BCCaEbAfb233588Af6a75DCa53EeDf528E2ccCd4 ; < DE6fB8Z5pN5jx1M6mOZEEBfe19X48w9MUa99j394cDTM2XX8CTBFsU1u3Ed576B7 > > 14 // < PUTS 0,125322225219666 ; quote ; 0,00659504293898958 ; 0,00646314208020979 ; 0,0204081632653061 ; -7,1 ; 0,00636421643612495 ; 0,00682586944185422 ; -0,6 ; e07aD3aC1fCde15c3A6ea7e58ADcCDAEE0dE4feC68c97B19fe9EAAa2C4a61DFB ; < io3x8qWhi2c0uV325xJh9JJq0X37608weXegrSXtueo3Juw03TDikfAeZPpY0In7 > > 15 // < PUTS 0,130543984603818 ; quote ; 0,00593553864509062 ; 0,00581682787218881 ; 0,0204081632653061 ; -6,5 ; 0,00572779479251245 ; 0,00614328249766879 ; -4,3 ; AE643f1c99C9dDfe4efB9DBAAfbEBf4e7Bb7eD6fde8d6fc9aaa3cCFB8fEdeeaD ; < 23ISGfu7R1M9fHzRHqFCJ0BJs63rNxCCu7611Adv1W68gz0B0SUnLWnoyxRb8zHB > > 16 // < PUTS 0,135765743987971 ; quote ; 0,00534198478058157 ; 0,00523514508496993 ; 0,0204081632653061 ; -3,1 ; 0,00515501531326121 ; 0,00552895424790192 ; -3,3 ; 50aA977Ec7Ec6b8878cDda7eBEdF611EB51Ce47d1a9aadEDfe8df5Ff1fE1e89C ; < xEG96g6CM8Di1z0YKSB28khmV3XLF7y2KVQL8D3gUN98Qt684UxhM7T6AgF1ys5A > > 17 // < PUTS 0,140987503372124 ; quote ; 0,0048077863025234 ; 0,00471163057647294 ; 0,0204081632653061 ; 6,5 ; 0,00463951378193508 ; 0,00497605882311172 ; -2,6 ; 70E5F239dE0fFC5f59BF992dFaCb81Cef627fbcCa07CeAc6c2FD058aEa9861D3 ; < VLpAoR2yh2VG3rRDb2E4An4381sytI3TVlmdq2KU9w3qhPQmN1U13Q8dqC5c9Dp8 > > 18 // < PUTS 0,146209262756277 ; quote ; 0,00432700767227107 ; 0,00424046751882565 ; 0,0204081632653061 ; 7,5 ; 0,00417556240374158 ; 0,00447845294080055 ; -7,8 ; 6fD6c60e6BF6FFec0c8Bf6cc891CAfFf3EbF94CB6fc6D1ec2cCceF1FFbfAfb63 ; < g45CoF5Q04x13N4wqow4oB0I71U3Y9tUpCTAKf5lb06u6H4h97QqVJBvOeBR7Xza > > 19 // < PUTS 0,151431022140429 ; quote ; 0,00389430690504395 ; 0,00381642076694308 ; 0,0204081632653061 ; -6,4 ; 0,00375800616336742 ; 0,00403060764672049 ; -8,7 ; CD8fDb62aBb02F69AE5Cf646DFac4acdA8e3ccf70Ca0CD1C9b56f6E2A8ccb0ca ; < xH76f74901xpP5Ap1333j1fqIj7xTb3gA9ug1HuUAeE5ADW6922euR4E0eXW96S1 > > 20 // < PUTS 0,156652781524582 ; quote ; 0,00350487621453956 ; 0,00343477869024877 ; 0,0204081632653061 ; 0,3 ; 0,00338220554703068 ; 0,00362754688204845 ; 1,4 ; 19f28ab6E8dEaa64f973d76CeCcBBA3CF92aE9BFD5DBAEFCEdB4c0CedD6FbCE6 ; < tPm6eDanHRO5ehkPyuIOkeDleyKWVnfW9SsVvEU0OCnZ1kdh5NtVkmyfxw9Iy6oB > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,052910926667914 ; quote ; 0,00752558509458962 ; 0,00737507339269783 ; 0,0204081632653061 ; 0,8 ; 0,0072471384460898 ; 0,00780403174308943 ; -0,4 ; 93Af5A7dfFCBdf380fe5d406FeB260ec6dBBdB95c51CCA9e6bDF0bD32de01A32 ; < U19Jaj113hsX6fcCNp33z2HrHR9XX16Avb26AoAtl87PIn3l0B0hPD3KB8fhHA0V > > 1 // < CALLS 0,0582020193347054 ; quote ; 0,00836176121621069 ; 0,00819452599188648 ; 0,0204081632653061 ; -9,9 ; 0,0080523760512109 ; 0,00867114638121049 ; -1,5 ; 05b8efEeBaf68A8Ec8f37EbffdcAAFeea14Aea5e2A6EB73a667bEEcbeBFACc62 ; < 3B5qXXl0E0g1ynCuRu4DpF411ctngh6k4q7p0BuP4P8y3c33P15a6L8qT5vVZ8QH > > 2 // < CALLS 0,0634931120014968 ; quote ; 0,00929084579578966 ; 0,00910502887987386 ; 0,0204081632653061 ; 9,2 ; 0,00894708450134544 ; 0,00963460709023387 ; 6,6 ; fBBD1769d92bBb57d4eFCB04AfdFFEdADBFed7eb3daFA8fEE821BFC65D9bB4AC ; < L95L21UCrqiy3lvSvj2RSNUGrRGlSjH670gU2ZX7ol3y4YxhwsvKYF9F8iQrFI8w > > 3 // < CALLS 0,0687842046682882 ; quote ; 0,0103231619953218 ; 0,0101166987554154 ; 0,0204081632653061 ; -9,3 ; 0,00994120500149493 ; 0,0107051189891487 ; -2,5 ; 2D9cBcD6A32ac5E96DdcA2EDD3cAFe5CB5df977ef2F5Cf9Ca6da2E9a678dFcB7 ; < 8Lg53qaTgjtV9gLI1W70e3MmPio3D01N0b1EBS4fw47Yecb60QuRwkRKjRmxR4pV > > 4 // < CALLS 0,0740752973350796 ; quote ; 0,011470179994802 ; 0,011240776394906 ; 0,0204081632653061 ; -1,2 ; 0,0110457833349943 ; 0,0118945766546097 ; -9,5 ; CAE1cA0c1917BA594bb336c8d4Ef3edBbed52dE569Ebe5250f8DAe3fa6B4cb40 ; < dPu5XOg7uSEvVzc5Tj2lRm36WfifX817ia9Js20S6n8W71Bp4eW0JGyTE6zGn3CN > > 5 // < CALLS 0,079366390001871 ; quote ; 0,012744644438669 ; 0,0124897515498956 ; 0,0204081632653061 ; -7,6 ; 0,0122730925944382 ; 0,0132161962828997 ; -8 ; 05d5bd96c77fd8E7eCB55CEFBb291dcD9CAd5BcEb3bAe6fA7FEdbBE5da0bDd30 ; < W03Z5p5f3O8tr7BGkuyGDgdX4eCg97mxQpPeW2h5swlsDVU6V1PkXxOWGlhW8LUS > > 6 // < CALLS 0,0846574826686624 ; quote ; 0,0141607160429655 ; 0,0138775017221062 ; 0,0204081632653061 ; 5,4 ; 0,0136367695493758 ; 0,0146846625365552 ; 5,3 ; 15ACb4BaCd9cC7AdDBB7dfbfFF73f6faE88EF67ae9865DBB5FFc75eB6d3B778C ; < 47ckIfigokS66xl8e2V1V3uNUVuJX3Izw9JXwR7KP6Zxr1HEJnRri46KIt0x2uA2 > > 7 // < CALLS 0,0899485753354538 ; quote ; 0,0157341289366283 ; 0,0154194463578958 ; 0,0204081632653061 ; 0,7 ; 0,0151519661659731 ; 0,0163162917072836 ; 8,2 ; AbeB01BeC5BFdBB3ce8EE26EbcC0FeF82e5A53AF65ccbB823dB1ffaAFfEc03eb ; < hsmSn4oH5zJxCzfWb1PtA3fZ2aeEVSv5TwIm76j6k6Ky1eJlboCn3M6r49LvWy14 > > 8 // < CALLS 0,0952396680022452 ; quote ; 0,0174823654851426 ; 0,0171327181754397 ; 0,0204081632653061 ; 3,9 ; 0,0168355179621923 ; 0,0181292130080928 ; 5,2 ; EC6Ebb2fbea176bCadd2e0BADa4BF9CbAccdef7597392eBce9AdEA6BA6cFDA78 ; < wRu217W5LGzXsQHU920o8K0s35Y71Fflg8E8WM3E3M81JeuOk9XKmT945j9m07Y5 > > 9 // < CALLS 0,100530760669037 ; quote ; 0,0194248505390473 ; 0,0190363535282663 ; 0,0204081632653061 ; 8,5 ; 0,0187061310691025 ; 0,020143570008992 ; 7,9 ; C4Bef8dF28Ed477Bbf4f54cEeF3F52370c2ce4D1AcaAfCF03A2f3b2a0feD7a7e ; < sy1FKQ15iYnPv3YH3JytX2U5AV82GwuRR97uQT2os2ulM4TSdK3Uy7dZR29vXwnU > > 10 // < CALLS 0,105821853335828 ; quote ; 0,0215831672656081 ; 0,0211515039202959 ; 0,0204081632653061 ; -7,5 ; 0,0207845900767806 ; 0,0223817444544356 ; 1,7 ; af91fEce8B84EBFF8cBEF1F6aCEB9dbcBAEA0397d5FAc95EcE11BB21dAbbC5aB ; < EiydT999725je927voXyUlFkCVL24zzS5EQ1RXjPs3rs558GhQ89EC3I30k5N7UA > > 11 // < CALLS 0,111112946002619 ; quote ; 0,0194248505390473 ; 0,0190363535282663 ; 0,0204081632653061 ; 2,2 ; 0,0187061310691025 ; 0,020143570008992 ; 3,8 ; AAEba571DAAc1AfFBAFEfaB35bCb4F4FFEaf49b1EAdc4BbCEF0Dbf662AdA3b5C ; < 8qol3riORu11YpXCv4TNwVubssER81F5331Qvts2fy87Z3J5CDtsO30Y2QOG8y20 > > 12 // < CALLS 0,116404038669411 ; quote ; 0,0174823654851426 ; 0,0171327181754397 ; 0,0204081632653061 ; 6,2 ; 0,0168355179621923 ; 0,0181292130080928 ; 6,6 ; CDbCaA0cDcb728488CdccbaAABdB4D9C6aBFaDEed9c7EFCFabe6bCb103A72c72 ; < 17LZA50mc49wppVFT88yQ9a2hbx6127FFq5zJFmpB7V1QKXKv5RoI2ea9288Q2V9 > > 13 // < CALLS 0,121695131336202 ; quote ; 0,0157341289366283 ; 0,0154194463578958 ; 0,0204081632653061 ; -6,2 ; 0,0151519661659731 ; 0,0163162917072836 ; -6,1 ; 8CFF7A10C7851D5d894c3f6ae08b9BFdCbeDD5FaE9d10afebFcb9a62ea6c6AcD ; < gb7I4TaG7j61w699fRW7r5358zuiCyudf6SyCzgkDQqh5VFrpbOgRc2iGwx97O8p > > 14 // < CALLS 0,126986224002994 ; quote ; 0,0141607160429655 ; 0,0138775017221062 ; 0,0204081632653061 ; 6,8 ; 0,0136367695493758 ; 0,0146846625365552 ; 7,6 ; bc3ADFeE520aCfa8fa9AbA5F8D6BfdDf6fFef4c3fAdf6D01EEfaDf3a1eCAEE1f ; < Rs47aXPsknNl22oEWh3jOLfuRyj9yM3cSV87HmsQLi3Qcom656KJ8lVyKIdp8Bqa > > 15 // < CALLS 0,132277316669785 ; quote ; 0,012744644438669 ; 0,0124897515498956 ; 0,0204081632653061 ; -9,7 ; 0,0122730925944382 ; 0,0132161962828997 ; 3,5 ; aCee6FAD18bbD1FCbDFC6Ee3D8287588db3CdACcD8AD0dDa5a2CAece80781DB5 ; < 4TaTh6582BM2C3C7m5YGCnz4D1Gdh56q5m0lhyDj83OtB7ep48717g4Qz8CHcO3e > > 16 // < CALLS 0,137568409336576 ; quote ; 0,011470179994802 ; 0,011240776394906 ; 0,0204081632653061 ; -7,6 ; 0,0110457833349943 ; 0,0118945766546097 ; 4,5 ; EBDEFdEfdcA5cfD0edA84D9C63C4BbEEEcEa9Bfae96BdccFFDC5fFDA318ffcD6 ; < G8DZe4fNdyp5kYlOf26HXt490in69kONVQJH662B1Ecn69d7db60S6CAup1oI4j0 > > 17 // < CALLS 0,142859502003368 ; quote ; 0,0103231619953218 ; 0,0101166987554154 ; 0,0204081632653061 ; -5,9 ; 0,00994120500149493 ; 0,0107051189891487 ; -4,1 ; EA4F2bbAd0b1Dfe2fDbA86aBa529bf8E9b0EdAc5e327dc6ab2fB3ffef8ebfAeE ; < 8QUPNNt4H846PguCFAgLNaXgnDeiv70g61LQ37w9XeHT0xSus1rVwNC068Uma95T > > 18 // < CALLS 0,148150594670159 ; quote ; 0,00929084579578966 ; 0,00910502887987386 ; 0,0204081632653061 ; -8,2 ; 0,00894708450134544 ; 0,00963460709023387 ; 8,3 ; 9cCEca3df0D4d4A3EDe5aCB1da036aEaBf6ABf0D12dbCECaaDfc6Dc96CeccE1e ; < J3E8u9IaUC5OHDC2erMaRq7Jf005XjiRBLl22xu55LYQQ3lI22n4Tqz20NscVYHE > > 19 // < CALLS 0,153441687336951 ; quote ; 0,00836176121621069 ; 0,00819452599188648 ; 0,0204081632653061 ; 5,4 ; 0,0080523760512109 ; 0,00867114638121049 ; -9,1 ; 9A5cd7b808f8BfA5e4Cb9Cd12ddeb6b13eebECEEacaAf5bEBCce5c6Bfd4FFE9D ; < szaxQ1oS76GJ3OBYewAayNx1qkkBO3x1fOsNs6L6R110j4Wwe6b7C38vnc3946ZD > > 20 // < CALLS 0,158732780003742 ; quote ; 0,00752558509458962 ; 0,00737507339269783 ; 0,0204081632653061 ; -2,1 ; 0,0072471384460898 ; 0,00780403174308943 ; 1 ; b718EFFeC02A7D9cCC3d47DaD4Dddffd70c98E7aB1ea7ebaCACAFaBBDfb3eeaD ; < 0QVp635B8UVzxGh1i5IyNviG2il56G6L5lqFBFDkx7O1e548YT3m37XRhxOOB4nM > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,052910926667914 ; quote ; 0,00752558509458962 ; 0,00737507339269783 ; 0,0204081632653061 ; 3,2 ; 0,0072471384460898 ; 0,00780403174308943 ; -4,5 ; 482FFF8Cfc1ccdabECc94e0BddaE85EEACa7627adb2E0AbBFeDEDadECe1E9ccF ; < 8V1G0BI3V25R75Ndta88786D7Vv3NMxaoJYNm9vtAoH4cE263vir6e6u80xp3H4Y > > 1 // < PUTS 0,0582020193347054 ; quote ; 0,00836176121621069 ; 0,00819452599188648 ; 0,0204081632653061 ; 6,5 ; 0,0080523760512109 ; 0,00867114638121049 ; -3,4 ; C02fF9eF35C7BDFFC293AB4E31188f9D80af9Aa4d07F9e0e67b4Bb7DD3A14AD8 ; < Ah2864FLZzB8N0LO9d8i53Xefan9yBN6cSY5udEXvxPMwjj9PCsrBhwXWFk99DdF > > 2 // < PUTS 0,0634931120014968 ; quote ; 0,00929084579578966 ; 0,00910502887987386 ; 0,0204081632653061 ; -1,4 ; 0,00894708450134544 ; 0,00963460709023387 ; -1,4 ; dAfdf3EBF8E351A4654A6E3A6fd73A6CcEAd59ceAB1C8EdcEe6BEfdBac0a1dCC ; < 5Ekvw9gA1hUVjvZ60C3INz61FCIprZ9kH9E1y4oS5vP773JMh8G5E8Xdl59NDv1o > > 3 // < PUTS 0,0687842046682882 ; quote ; 0,0103231619953218 ; 0,0101166987554154 ; 0,0204081632653061 ; -4,9 ; 0,00994120500149493 ; 0,0107051189891487 ; 5,2 ; 9DFC93fdc5edFa42F6e2CeEFDAEAc0cbAbdACa3AEA7feBeBAB9F9EabD6dA160c ; < 97JpYNZ8o0S6p0OTzU863LHfNKah1Uolw04H8Y3jq1v497UnHz0lytGECiB6g5g7 > > 4 // < PUTS 0,0740752973350796 ; quote ; 0,011470179994802 ; 0,011240776394906 ; 0,0204081632653061 ; -0,1 ; 0,0110457833349943 ; 0,0118945766546097 ; 5,3 ; 8CAea95197aFADa467BfDDCF0aA14e2bb5bCA75aDb72fFCf20CAAcAbA2CC66A2 ; < vH2kPrkcenKanj0VeBM43wqHzgC9gvmE0gzjkz95qtHdD4g3W8wE7T95x3v7k11A > > 5 // < PUTS 0,079366390001871 ; quote ; 0,012744644438669 ; 0,0124897515498956 ; 0,0204081632653061 ; 7,4 ; 0,0122730925944382 ; 0,0132161962828997 ; 3,5 ; Bd18cF7B3AeDFEef1ab8eABBeEcAD7BcFB7e4DA8b2c57AaAABE1D4f9cF712Fe3 ; < 2D516mQ0f2Vbe0a58R1JeI78dZZN658Wc4T89zlauj2G27NQxQ368M5q909XqepN > > 6 // < PUTS 0,0846574826686624 ; quote ; 0,0141607160429655 ; 0,0138775017221062 ; 0,0204081632653061 ; 7,5 ; 0,0136367695493758 ; 0,0146846625365552 ; -7,5 ; 6ADFadEA1e3fBb0ea2906D6D1a15E7dcd27d153c7ebEBA34bdef046AaFbebF62 ; < HISL31OHiiVq1zE2988z61K70GVM3I133D25Wq0XExglDhfT5y7BoR8xQt9D2xWg > > 7 // < PUTS 0,0899485753354538 ; quote ; 0,0157341289366283 ; 0,0154194463578958 ; 0,0204081632653061 ; -9,4 ; 0,0151519661659731 ; 0,0163162917072836 ; 3,9 ; 6c3aD38Bd2CdbEe8EacFcCCfDCFfdE5Cd017fD29Ceb5e3C79e19270fb06Ec4de ; < UUCNBcJQgGzJTMPg3IYNodTf7epn5CO2l91LdbVtw0au1VqFcT2i321Q1P96yi0W > > 8 // < PUTS 0,0952396680022452 ; quote ; 0,0174823654851426 ; 0,0171327181754397 ; 0,0204081632653061 ; -4,9 ; 0,0168355179621923 ; 0,0181292130080928 ; 9 ; cfB87BAd5CCBAe8b7AAdabb2Ece3A6AdDDe1afFa31FC8b5c6Dcf4Bf204Cd0bBe ; < j58Yitw6i0EDLM4YDulPLPDx11rIr8276ixb2L8jORl1S4JXw3BOzI9IXNsh2ciL > > 9 // < PUTS 0,100530760669037 ; quote ; 0,0194248505390473 ; 0,0190363535282663 ; 0,0204081632653061 ; 4,7 ; 0,0187061310691025 ; 0,020143570008992 ; 2 ; c1Ceb8fEBcd699fdBFAcdcD92Ee5Ec8C2ae40C2fFC2DAB20DB4dE5ffcFC1Ad9B ; < 0P3M93itcEaT8OuJ89X1bQwmS504FX18yoouWsVEIz7cFjKmZ1Y6hgKESh3CjWze > > 10 // < PUTS 0,105821853335828 ; quote ; 0,0215831672656081 ; 0,0211515039202959 ; 0,0204081632653061 ; -5 ; 0,0207845900767806 ; 0,0223817444544356 ; -3,8 ; EcEAFd5ceBff1FdDf46EAAbAeB0CFfbdB58dbd8c6cBA0ECdF1cADDF6AAc69BCc ; < dOXHJXe6X8t5sdQGcPkLEDatfmhUKA28R0q0hvs91h654KZg078prwJ7joCzs5CZ > > 11 // < PUTS 0,111112946002619 ; quote ; 0,0194248505390473 ; 0,0190363535282663 ; 0,0204081632653061 ; 0,6 ; 0,0187061310691025 ; 0,020143570008992 ; -7,7 ; A5FCD5F5dF95EFF9cc5DadA68dCeEafB8DaCFf4b7A4EEafD0cCbBaEBea0Ef1ED ; < kJ69Hf72Y7F9pL7WdbooT1Dxf638XmWlyxr97clw66l0tSwriE9t2Tbv37KA5ptG > > 12 // < PUTS 0,116404038669411 ; quote ; 0,0174823654851426 ; 0,0171327181754397 ; 0,0204081632653061 ; 6,1 ; 0,0168355179621923 ; 0,0181292130080928 ; -5,1 ; FE4cbEC1Dcdd8B960Ed08dA866fd0Fa7AfaDd9bDb4Ac08bE7EC2Eddc0aa4c1cc ; < 4b859VMr9EBnY244c097Z5wnjubLZkttCK6v6p2969KIdYOKC2y376HtCm1Xl15D > > 13 // < PUTS 0,121695131336202 ; quote ; 0,0157341289366283 ; 0,0154194463578958 ; 0,0204081632653061 ; 9,5 ; 0,0151519661659731 ; 0,0163162917072836 ; 8,3 ; 5dE8d0DeAe17de4a242B3E4a6cfc35d263Eb6Df9Fd567BAdAaCCACBFefAFecaD ; < w19L5ucJ32hZ1NsltzyM81ZFyAHtXB66HjwVG933ZSvLOcOW7AEgA743d2fo0uxP > > 14 // < PUTS 0,126986224002994 ; quote ; 0,0141607160429655 ; 0,0138775017221062 ; 0,0204081632653061 ; -5,1 ; 0,0136367695493758 ; 0,0146846625365552 ; -2,6 ; E3CDdcD6F1E1aDd35faA475DC05f888ABccEFCAa0cEda1fcc584a2CdCdcA46B6 ; < fH54G3J6sn477539rC4lkxIdRK5Xg5o9T0n6gJ11uRWgw3ZyhApRpn758rVww8Km > > 15 // < PUTS 0,132277316669785 ; quote ; 0,012744644438669 ; 0,0124897515498956 ; 0,0204081632653061 ; 3 ; 0,0122730925944382 ; 0,0132161962828997 ; 3 ; 76BCA48b93E03c4Cc97DEce52ADe7FBdEC9FF6Ab5B4aFdbFEFB1f0fE0A2c18eB ; < N82XyN84gi76V0IqK9tUvmJ5S6VmcaXGVJbW2TAz7oQZ72c6kEhPL47D721hu6Kz > > 16 // < PUTS 0,137568409336576 ; quote ; 0,011470179994802 ; 0,011240776394906 ; 0,0204081632653061 ; 1,8 ; 0,0110457833349943 ; 0,0118945766546097 ; 2,7 ; deAFEba3c0Ba34CEb9E79b3bBBBCD0e0aDDf1DCBbfecf75D4aaE1eDd8Bce55Cb ; < 3WzRkh8qs722C5uTKO6kBu8iAkaQl1TN9OT52C0m1CEs4wE1Jw24k18f4zq3RAz5 > > 17 // < PUTS 0,142859502003368 ; quote ; 0,0103231619953218 ; 0,0101166987554154 ; 0,0204081632653061 ; 9,2 ; 0,00994120500149493 ; 0,0107051189891487 ; 1,8 ; D2d37b4D78bCE7CFccFF8BbDfcD008ac3FcC2cFEe09edFced0f68fF5CA5bcD9b ; < z79OBipKplJyGqm4u1jPsW83O9zC9PSdbsgsdac82tpiDJlQM4b31A174858fEY2 > > 18 // < PUTS 0,148150594670159 ; quote ; 0,00929084579578966 ; 0,00910502887987386 ; 0,0204081632653061 ; -7,4 ; 0,00894708450134544 ; 0,00963460709023387 ; 3,1 ; be6bdab57414346faA4BAE5e9DCED5aeed9d0FF95aE37EDCdcBAAFAb10caEcb7 ; < JFIsZ1t9PFEyiDEac6AEf46sh99mBaBSBPSdTaNrWn32qGM3n07QWU90ya7326WH > > 19 // < PUTS 0,153441687336951 ; quote ; 0,00836176121621069 ; 0,00819452599188648 ; 0,0204081632653061 ; 5,4 ; 0,0080523760512109 ; 0,00867114638121049 ; -7,3 ; Dc5B6caca4966fEbe855AE7476bb16CAdfBB1b4035FCdCC29a78ADbbaaFcE81c ; < lbGJC9Ua8pE4l3w1bQfY594ufx4Vgx6vgs62H847m5NmAuOD2V61pC17HElmMmZr > > 20 // < PUTS 0,158732780003742 ; quote ; 0,00752558509458962 ; 0,00737507339269783 ; 0,0204081632653061 ; 6,4 ; 0,0072471384460898 ; 0,00780403174308943 ; -4,2 ; 4d8bA7Bd31b8aE10104291f3ae53c32aDFAFEa9230f86Ea7E68C30ABceeEfd1e ; < DCj3eR1b01C4G28sg35XvoByP26njzTAw79AUSg8131WHJ1Kr5BD7psxXY115PFh > > 21 // RUBCNY // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,103847919504504 ; 1,14 ; -0,908905333767979 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5D55Ad3EeFAae5FDc3c0ac73F6A47E8f7a9a2e51cB8bcF9Ae6DF0e9Ef6Eb2eEB ; < UecgRy693cEA4PxG6g17xbM45423bMJH8IMT729T90692tbWaU07tKdsmsIjB3ja > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,103861221903612 ; 1,14014602829845 ; -0,908905333767979 ; 0,103611221903612 ; 0,104111221903612 ; 0,8 ; 9,5 ; -7,4 ; 2,5 ; -9,3 ; 7,3 ; 0,24 ; RUBCNY78JA19 ; f00aCdF62C4aEd136beceDD9efd57eAeBaEe1FFc7C97cfbC7f8CbbFDCA1fA0fD ; < J2pytei63LrwFx8pj6gVUy0kuBoMDujNLL7IQ0XK5lq39dFoeF3cMU62lQ682WTd > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,103901024982509 ; 1,14058297022429 ; -0,908905333767979 ; 0,103651024982509 ; 0,104151024982509 ; 3,4 ; -5,5 ; -7,4 ; 4,2 ; 1,7 ; 7,1 ; 0,05 ; RUBCNYMA1973 ; c288CAdEda03C7Ffe86EDe2fa8979f3DBDAb33DAAeAC1fcAa20F96Cf8Fb7aDA2 ; < 76tun0Y1ZZ0fpy8TT52Vn87B01ksf3F30673y0oOEz6812BqR4Nr1wG0P8pUL7Lb > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,103958005854348 ; 1,14120848293756 ; -0,908905333767979 ; 0,103708005854348 ; 0,104208005854348 ; 2,6 ; -9,3 ; 0,6 ; 6,6 ; -2,1 ; -1,9 ; -0,8 ; RUBCNYMA1910 ; 7BC7B0CcFBD3cFfFD8f2dFeEDD2F88c24d3FCE23AFC24f9efcC6C5f4aBe7fACb ; < r730Kg1O893U5g3QCib7Nr0MnEA23BSnUVk31Jrt6crzbIQlQoRmuArL3aU79VhG > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,104047060425075 ; 1,14218608760324 ; -0,908905333767979 ; 0,103797060425075 ; 0,104297060425075 ; -2,7 ; -0,6 ; 8,7 ; -3,7 ; -7,5 ; -9,5 ; 0,68 ; RUBCNYJU1986 ; 2eb1Af000bADd8D5E4AbC4e3AA8c4EE5BaAbE9E9d2FD3CedC4EFC0B4980bE4c0 ; < smKqT36scM53MQf6kIb1nJu647k76XVZwj0E0LSirFD5Cq6d2jPU545Rab970d74 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,10416004597271 ; 1,14342639674875 ; -0,908905333767979 ; 0,10391004597271 ; 0,10441004597271 ; 5 ; -6,6 ; 1,6 ; -8,5 ; -4,7 ; 2,7 ; -0,65 ; RUBCNYSE1977 ; c9CfeFdEE59dFEdAACeF73B4FFf5eFDCFA16cEde2FD5b7Ae110D3Cf0F85E0EbD ; < noNaVv8k05Z3Ehz8biU1aiWT31AAUok0WAKi94w4YDBjbGNbDj24XGVK3G3U5Dd5 > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,10428808155578 ; 1,14483191902976 ; -0,908905333767979 ; 0,10403808155578 ; 0,10453808155578 ; 1,3 ; -4,2 ; 9,4 ; -2 ; -9,5 ; 3 ; 0,58 ; RUBCNYDE1922 ; c9EEcad5dC8eed6faeC5E4fdf21EACd81Df8CE9CD98ddDD7de8Ac6C0cB6B7BAb ; < 2AGv23pmosTkpPT4QYaaqT6A0U09kJ83Z6EDOg1b86h9Y0612Gvyhbdxs1K8sU9f > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,104435187683055 ; 1,14644678994767 ; -0,908905333767979 ; 0,104185187683055 ; 0,104685187683055 ; 3,2 ; 0,6 ; -9,1 ; -2,4 ; 1,2 ; -3,6 ; 0,68 ; RUBCNYJA2069 ; F81D52d0F1CF05Ec6722137B7EbD10cA0ed3aA5da2CbB8BBa2AAFCC2f578BeFD ; < 7RY6mPd1If981ePn39pqM0Vxv4ECuhI60a0b4T96L9uW6jYz5I6c0JyG55Lo9s4m > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,104614813385357 ; 1,14841864746395 ; -0,908905333767979 ; 0,104364813385357 ; 0,104864813385357 ; 1,8 ; 7,1 ; 2,8 ; -3,7 ; -1,5 ; -7,1 ; -0,19 ; RUBCNYMA2046 ; ECBECe2E6cCdA38DdECfEeB7dC3D3BbFcF76FaeE6feD2edaC678ebBFDa6d70Ea ; < LUfC6wg2vk4C6dTxTKA4F9Q995T8L2SFDM9j1s7rDHsT3Br6GhY74ZxNt7TnAjVF > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,104806197259873 ; 1,15051958138721 ; -0,908905333767979 ; 0,104556197259873 ; 0,105056197259873 ; 8 ; 7 ; -1,5 ; 3,8 ; 1,1 ; 3,9 ; 0,91 ; RUBCNYMA2090 ; 4c5fECcFa46CD4Bd7EAa9AFbeaFeE1fe5aEEcbdA5faE4B1CF7e9e2dcBeAB3fAa ; < ml83qEN5E05I1I22fd6IFn5N614xBG37CRqY9Qv3FR2KM1aP069EC3zOIq5CO5dW > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,105019781780652 ; 1,15286422492798 ; -0,908905333767979 ; 0,104769781780652 ; 0,105269781780652 ; -2,6 ; 2,2 ; -9,8 ; 7,3 ; -1,2 ; -2,9 ; -0,45 ; RUBCNYJU2033 ; FB4C0CBDbf9FCF44B43fB3D6CDCeFe5b7EECDb3BF0fE4cdE747Dac7c2974117B ; < n6UlFBbULaAbydtMpR6XsGSaKPP03hkOUSN9rk0d7RRJlAhvS3Sz6JngvcRH1t8E > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,105259376868858 ; 1,15549440184301 ; -0,908905333767979 ; 0,105009376868858 ; 0,105509376868858 ; 9,7 ; -6,2 ; -9,8 ; 0,3 ; -5,8 ; -9 ; 0,57 ; RUBCNYSE2046 ; Bb9D5dEB6bd0CeFbadeABD8fb25cEAE5f9D9934C0bcC4fAC2B3cF3FdFCeDACb3 ; < 6aJPNTMG0hplT50LlV55cM307eZ3n1h9a7004IAJ0G6Q3lVE7XPzmg37Us606T53 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,105526630426728 ; 1,15842820212929 ; -0,908905333767979 ; 0,105276630426728 ; 0,105776630426728 ; 0,7 ; -9,9 ; 7 ; 5,6 ; -7 ; 3,5 ; 0,34 ; RUBCNYDE2057 ; d4c2DabcFcaFbBdBecbf7e4277dcb3DF0eaEF95dcCAd3f9CbdaFCeB8eF9bf1DA ; < v7HFrAMC38U5523906U8dR0P5gEcYXA4H5vOg35po7a386Z2Kwqe3qoLPVh4d9mT > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,105821853335828 ; 1,16166903851754 ; -0,908905333767979 ; 0,105571853335828 ; 0,106071853335828 ; -7 ; -1,1 ; 5 ; 5,6 ; 0,5 ; -3,4 ; 0,42 ; RUBCNYJA2198 ; BA8DEb470AaaAA53d682D617caaEEdFDBceAEFB5Bba0fbF9d7D8a0cDCe5ebbfC ; < d6nnM3dXrhHuzB3ygrgna929X5M5wbcks23veqTqv8zAKauHnL56waXT538cSRY1 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,106129083158981 ; 1,165041681899 ; -0,908905333767979 ; 0,105879083158981 ; 0,106379083158981 ; -5,2 ; -0,1 ; -5,4 ; -5,5 ; -9,3 ; -2,6 ; -0,05 ; RUBCNYMA2152 ; DCa6EFd4FCac9bBf913Ded7bbBD9AebcF0a7cb9dcC2a61ece1dc115E9dcce58A ; < GH0H611X2bTr33jld7PqQ84xaZ16Lptvxd50dG360t7FD8klT42j0Vp0Vfe5X077 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,106456701086587 ; 1,16863813755504 ; -0,908905333767979 ; 0,106206701086587 ; 0,106706701086587 ; -7,7 ; 3,6 ; 0,3 ; -0,3 ; -5,2 ; 3,1 ; -0,55 ; RUBCNYMA2199 ; b66BC9cCFA7Ff34fDBDFAE2bBE0daeA5eCa4d58fD2D4aa308CCFdDb5A4cCBbA3 ; < TWHWhKmuS23KZwAy8rHTS1guzrO50CbO5km5r1ej2o9dJs400OkuYtNo7bA80JzB > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,106807872090109 ; 1,17249314924834 ; -0,908905333767979 ; 0,106557872090109 ; 0,107057872090109 ; -5,2 ; 6,9 ; 7,3 ; 1,3 ; -3,9 ; -1,8 ; -0,94 ; RUBCNYJU2183 ; 51702Bbb11b2FCbFe3fA4DCefaEC56B5cDb2a22Dd778C6BdbE04bEc29d7846Aa ; < KglHn1iD4ylPw0fPJnU6j46Pmrbza1D0VmWWa4bummN77VFue6Vpo5A4tx9B28j5 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,107178656727688 ; 1,17656347139689 ; -0,908905333767979 ; 0,106928656727688 ; 0,107428656727688 ; 5,5 ; 6,9 ; 1,8 ; -8 ; -0,5 ; 9,7 ; 0,66 ; RUBCNYSE2111 ; bCde6dF7a5EFF86Ee0399effbfDce2ff34aFCbfAdeCA0148d4eb710D49C4fa7f ; < t7w3WkxgG77R4gESVvuFH9vX9P0mFOzK1fzgxoW8v7Li84123Rcn3e64Bq7Y43wj > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,107574718602391 ; 1,18091127671949 ; -0,908905333767979 ; 0,107324718602391 ; 0,107824718602391 ; 8 ; 1,4 ; -9,2 ; -2,1 ; -8,6 ; -5,1 ; 0,39 ; RUBCNYDE2183 ; 2CebdaEDdEBa9BB4EB0f08b323cFcbDcDfB34F37EAa4E976BdbBecE3DaAFffF9 ; < f28Ct7h4FhykzDGTLAc4Q2398i7S0je4Lik4bj2P75I86pWsK6qhQf9CA25B4VRO > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,108006224316342 ; 1,1856481700174 ; -0,908905333767979 ; 0,107756224316342 ; 0,108256224316342 ; 5,3 ; -4,6 ; -8,8 ; -2,1 ; -2,7 ; 4,7 ; -0,89 ; RUBCNYJA2169 ; fFC64CF9fcdbFAcc347dbFB3DFcAcAdd72D7E62dFaC84eBDCBfB4B14CF0BdeD0 ; < KzLRAoVnyUI42il86HYUfAO79T22L3N5u2o2G5TqO7mKtBCA1Zy5gt22TmTv0R4x > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,10845889329923 ; 1,19061738502869 ; -0,908905333767979 ; 0,10820889329923 ; 0,10870889329923 ; 5,2 ; 5,2 ; 7,8 ; -9,8 ; 0,7 ; 7,3 ; 0,28 ; RUBCNYMA2118 ; aD3C4eec5EBb23A11ef3A01afEbeceEAaE3CAcfecd2ffcD9d177DAbD1cB9CD5a ; < Kby63IYX10v2B73bkjBO0cfrRd84UxQ89xt570Kv1Gh7uWVHj89cn8rE92RA8q0W > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,108931676537873 ; 1,19580740611553 ; -0,908905333767979 ; 0,108681676537873 ; 0,109181676537873 ; -8,1 ; 8,6 ; 2,4 ; 4,3 ; -3,4 ; -9,9 ; -0,35 ; RUBCNYMA2120 ; 7b1fccB5c9532cbE4DB35Af2825Cbff71D7BCAc27F8D64cEdfeAD0B1Dfb01fFA ; < TA0kh29ACEgLMIU0NklG1bs2fo4LrXzZYhWjYCKxAAjU86h3881Kp941Y3gFylHV > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,109421227145339 ; 1,20118149252163 ; -0,908905333767979 ; 0,109171227145339 ; 0,109671227145339 ; 2,7 ; -0,5 ; 8,2 ; 7,7 ; 2,9 ; 9,3 ; -0,15 ; RUBCNYJU2170 ; F6ED7faEcB70C3C1F8D4Bc3caeFF1B97C905c3AcAdB3c7c4F66AC8cabAA4AaB5 ; < fbRx950yH7jht598wNDw35Ki4mL10nWXrA9mGA0pssv7eH19mpOi0545pGMYxSVG > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,109946685028449 ; 1,20694975431834 ; -0,908905333767979 ; 0,109696685028449 ; 0,110196685028449 ; -2,8 ; -9,7 ; 2,2 ; -4,1 ; -9,9 ; -8,5 ; 0,18 ; RUBCNYSE2175 ; 1C8ed7A24DEe4AEf0CFD1fEefC7aC44babfD7Cba2bE2ed4cd2d5CEE70D4bd6bf ; < xi8sD7yAd7GhixE4UdK71a9XFv6LAVe0D56XSqqQG0LDs9m987NgZ5CN0dO7xymi > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,110498864767333 ; 1,21301135772196 ; -0,908905333767979 ; 0,110248864767333 ; 0,110748864767333 ; -1,4 ; 7,4 ; 1,4 ; -0,8 ; -8,2 ; -5,6 ; 0,29 ; RUBCNYDE2162 ; E5cDcA28a566AAadb0E1f6E3feFDDCFB2a5dA68bf7BC1aFDbCEFA67C3f0DDCbe ; < ae3jX016fXzfmpQe9ZMq2y8JQEC4S11dl8IC28qeBm4UQf401h1N0VQjn7bxQV12 > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0540031121581709 ; quote ; 0,0122264240307695 ; 0,0119818955501541 ; 0,0204081632653061 ; 7,7 ; 0,0117129142214771 ; 0,0127399338400618 ; -9,1 ; 3cAD6B1320F53fc3eDEF804Eac4d797ecbcCf8ccD3A14b4DC9eebd4d11b3a4dF ; < W7498RZF0K2jx8JUuzPq2AR9nSKC3D8408215Rl0A0d38BFH1GXJfjhNs679pWm0 > > 1 // < CALLS 0,059403423373988 ; quote ; 0,0135849155897439 ; 0,013313217277949 ; 0,0204081632653061 ; -3 ; 0,0130143491349747 ; 0,0141554820445132 ; 8,3 ; 54EDFCbad90d4Ee5ae8FB707ee3dcfAAe6fbf3C3Ab319caE22F18a16bDCA12f6 ; < onE8HEk2J6KFVIM8CbF5uc8r9F68X34vP332DLJh2ugn059IC8gp4gaq721Fb744 > > 2 // < CALLS 0,0648037345898052 ; quote ; 0,015094350655271 ; 0,0147924636421656 ; 0,0204081632653061 ; -2,2 ; 0,0144603879277496 ; 0,0157283133827924 ; -6,8 ; 3AD11FC272AfC8Ff6aE7B9b5Fa7FDbc5FBbaDA48b41d1BBeeabfeA2237eDEDCE ; < 65u6nhoUe6BW6z18HhxpqFzcfLR61G7918VJZ5KvxRHsG3sKkKLe4t2Es4g5Jc99 > > 3 // < CALLS 0,0702040458056222 ; quote ; 0,0167715007280788 ; 0,0164360707135172 ; 0,0204081632653061 ; 6 ; 0,0160670976974995 ; 0,0174759037586581 ; 7,1 ; bA4dDCb94b71A1615AfBF9646bDD24ebaDB09AbFa4fE7fAe5Cfad0Cf6B51C5aE ; < 55v4P3P4uU1lckzeelmfkPAi765r9l9qYOebaVv5jfk9kUu9bEYxhB4Y02zFfHeX > > 4 // < CALLS 0,0756043570214393 ; quote ; 0,0186350008089765 ; 0,018262300792797 ; 0,0204081632653061 ; -4,9 ; 0,0178523307749995 ; 0,0194176708429535 ; 6,4 ; CDEBEFaA18d88b4Ac0EA3a14fa2c89BeB4E5EaeBfe28DFefe3694BAFBf08A84a ; < c4vI9qjs8N7nVa1991nIu633N9zUeDxw2mcW2r475gNEC1kzklUhH7WEU8Xzne71 > > 5 // < CALLS 0,0810046682372564 ; quote ; 0,0207055564544183 ; 0,0202914453253299 ; 0,0204081632653061 ; 8,6 ; 0,0198359230833327 ; 0,0215751898255038 ; -4,1 ; DdFBF8e95aAaFabDeF9Bdd38EF1edaa070CcB1CBFf7faC33a2cCbf871ebfC2e1 ; < 2gz67xFY353z69L2scx0S10Iu390KLmJjuxa264hia80L6TxMEKxV48vrVn8ThxE > > 6 // < CALLS 0,0864049794530735 ; quote ; 0,0230061738382425 ; 0,0225460503614777 ; 0,0204081632653061 ; 0,2 ; 0,0220399145370363 ; 0,0239724331394487 ; 4,4 ; 0feDDdA9e08211B1Ab8C0Ff9b4bbb58EAFeae63cf5c8AefeC6331f93BAaeC5A2 ; < bBz5QV5n8BSOeOujLfQ9Z4nW5SV5K7u6h3l8U0t9X7sVmf3irRsYcQuq0N6u8BuS > > 7 // < CALLS 0,0918052906688906 ; quote ; 0,0255624153758251 ; 0,0250511670683086 ; 0,0204081632653061 ; -3,2 ; 0,0244887939300404 ; 0,0266360368216097 ; -0,9 ; Cf2A3C17FAb8Fc30D6cD0fdf0bBDe4dcCdF6F7AaaEd6cBbdb8e9Dc736c68daCE ; < PwyM23raN13X260zuqzPVQ1DI9Ko2M6lICn7cVX1vS2vNZ1f9p73rJ3yOlXaMfws > > 8 // < CALLS 0,0972056018847077 ; quote ; 0,0284026837509168 ; 0,0278346300758984 ; 0,0204081632653061 ; -4 ; 0,0272097710333783 ; 0,0295955964684553 ; -1,3 ; dA5cC543fd9B2dfeEBCA8CaEceACD3cb86c3ecAe0EEE2ECbE1246d8DDE72cfcf ; < 9wuuWqt34b5pMz15M3kV0gpe7P0HnnTb1Um9IhfL612rr1Uckh82c7TYICOl3fH6 > > 9 // < CALLS 0,102605913100525 ; quote ; 0,0315585375010186 ; 0,0309273667509982 ; 0,0204081632653061 ; -6,5 ; 0,0302330789259758 ; 0,0328839960760614 ; 4,1 ; c80CF3dEBc4Ba44BEf3E5CfF8CF5B8e64fe8baFbF60bDBDfdAFDCAFF41cb1Aa6 ; < foJEzY1F5TaL1fw90THMI0dK36rs6W17py8t3JYBTJk2L3kSD1o4Om2LdZCq2so3 > > 10 // < CALLS 0,108006224316342 ; quote ; 0,0350650416677985 ; 0,0343637408344425 ; 0,0204081632653061 ; 4,7 ; 0,0335923099177509 ; 0,036537773417846 ; 2,6 ; d0C696c53DBEb9CfbCFbA4EBB02c15cBaE74cDeeB2f83E0fEda5dCC6bdbb5ADe ; < JOU1W9fQB8i8TNWHHKm9OR14f04m9x2aUbs7219RKx1ACP77GcpVWat3OwZ31h08 > > 11 // < CALLS 0,113406535532159 ; quote ; 0,0315585375010186 ; 0,0309273667509982 ; 0,0204081632653061 ; 6,2 ; 0,0302330789259758 ; 0,0328839960760614 ; -5,5 ; BC5Eb0DAF1CDF6E0CED0BA0fCfCF74cDbDcFfA0dedecAEE46accAEedbDD7Cafa ; < Zr70b0gifzKScTC85vc8mEpuqoi7A8yt4H0g5t6Cefq87j023YqS25frcVbFv51h > > 12 // < CALLS 0,118806846747976 ; quote ; 0,0284026837509168 ; 0,0278346300758984 ; 0,0204081632653061 ; 8,9 ; 0,0272097710333783 ; 0,0295955964684553 ; 1,6 ; f3B6F23ccCea00c9BACACb2eddB93800dbBCCfA3E2bD18ADCDE3c28F8AC6Fd3d ; < JHr2788pa7Ur3518L8uQU39Tk27zF7W929LO24IUfY690jiJ5EMOp8VCKziNB1wy > > 13 // < CALLS 0,124207157963793 ; quote ; 0,0255624153758251 ; 0,0250511670683086 ; 0,0204081632653061 ; -7,7 ; 0,0244887939300404 ; 0,0266360368216097 ; 3 ; 3a54eA3fdcBA4CBE0Caf0c5eEddCABC40C22B6e10bBe1fFd0200A18C84b32bBB ; < l5bp284u8b92Wu370T4rnV7YEtH6WU51rEPYHLL7M1AzUr8oy9btBw450M8x022w > > 14 // < CALLS 0,12960746917961 ; quote ; 0,0230061738382425 ; 0,0225460503614777 ; 0,0204081632653061 ; -1,8 ; 0,0220399145370363 ; 0,0239724331394487 ; 5,5 ; 205acAacF1BF6b1B24ddeEDdbe0FBF98BecBf1faBbeaFe87caa399e7FCF3A370 ; < 397bhhc5LB3F05d4a13338850yi0t0F6Cbv4NcQ1zXcR0nwOKJ04h751774WAh4o > > 15 // < CALLS 0,135007780395427 ; quote ; 0,0207055564544183 ; 0,0202914453253299 ; 0,0204081632653061 ; 1,9 ; 0,0198359230833327 ; 0,0215751898255038 ; -0,7 ; bA0f2FaFa7bbbF5153b4cAeB75A4C8Ae32fFf97AA948Cd38DEe7cac3c61c9Abc ; < G69qgO89lyF379DsLn09R9EuQajjSyyo630eP8Ar6pS7g08gxd7z23sromhu7zJc > > 16 // < CALLS 0,140408091611244 ; quote ; 0,0186350008089765 ; 0,018262300792797 ; 0,0204081632653061 ; -6,8 ; 0,0178523307749995 ; 0,0194176708429535 ; -8,2 ; b4bcFdFbAF6a025b6fECBdfE1B1fA2adDCefCcDB2aBadbecEa6Bbc30DAFAFC7B ; < yvF7BQ9gLXuOheGqsA22F53o4wnX72zEg5EuPoYr5w2U1GViqXr8Vqv094IjCM7S > > 17 // < CALLS 0,145808402827062 ; quote ; 0,0167715007280788 ; 0,0164360707135172 ; 0,0204081632653061 ; -1,5 ; 0,0160670976974995 ; 0,0174759037586581 ; 3,4 ; CABBdFA684BdAdfAc8c2FEcFFeC64cDda536BDa8bEEBdEfAc9FCebfeadD02b8e ; < RxGb8qojAxyuLCW57k4H8PLAsiT0BWrO1sW212UD19a2q3dj4oWA8c4Ts2D6MWb5 > > 18 // < CALLS 0,151208714042879 ; quote ; 0,015094350655271 ; 0,0147924636421656 ; 0,0204081632653061 ; -7,4 ; 0,0144603879277496 ; 0,0157283133827924 ; 3,3 ; fcCdcD9A15AC0Ce62D70CACfA1515E9A5612fF9bf02cedA2a3EdADe3F4D2fE7a ; < 5sk11WCjywnbsSk1Plh6jsFoBm07s5R17948t2H2eohD8cwezGR0hbdtoP1uqHKm > > 19 // < CALLS 0,156609025258696 ; quote ; 0,0135849155897439 ; 0,013313217277949 ; 0,0204081632653061 ; -2,8 ; 0,0130143491349747 ; 0,0141554820445132 ; 7,2 ; fC01acDcfCCEC05fd7FaE92bfD1BD1cDFabb7eEeDdb81fA462b65C2A8F1BEDED ; < r1u5Dr7Q74nN57ICr37l4S12GmJ7Rq6we6A8Rh0Kmr5Y36VusJftKKJv5C0S76d7 > > 20 // < CALLS 0,162009336474513 ; quote ; 0,0122264240307695 ; 0,0119818955501541 ; 0,0204081632653061 ; 5,5 ; 0,0117129142214771 ; 0,0127399338400618 ; 1,9 ; CAdF3bcff4ea1eB13eDC6A2cBDc448c0Eb0a7DCd1bFd68Cf3AffdcDbC7ddBeAB ; < N9UfA24639522rNCqCReqSv81mKO9m4bcTFP7I5q44zOTf6s0roQgm77zkA8tgGh > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0540031121581709 ; quote ; 0,0122264240307695 ; 0,0119818955501541 ; 0,0204081632653061 ; -0,9 ; 0,0117129142214771 ; 0,0127399338400618 ; -9,2 ; 37ba1fc4ff873E34BCdCB1D72cd9fbAc9bbba29d8FdCBBE10ea8CaF03B27Aacd ; < 56v1hEmDP1KS03n2yGLdvGmgTrDpibpZvEgrB38Q79xw7HEI9Z5NXLs00uR107cQ > > 1 // < PUTS 0,059403423373988 ; quote ; 0,0135849155897439 ; 0,013313217277949 ; 0,0204081632653061 ; 6,5 ; 0,0130143491349747 ; 0,0141554820445132 ; 0,5 ; C607fE3bD2efFFed8C61bEFa77E305adEcefccAeEBE61bBAC79FBDc0d3Cbd062 ; < mrakfZn68f1jp0p1LTS7j8w8r1MelM9GRK1x4o11VNNx6oFnAsZSs0u3202JZREE > > 2 // < PUTS 0,0648037345898052 ; quote ; 0,015094350655271 ; 0,0147924636421656 ; 0,0204081632653061 ; -9,6 ; 0,0144603879277496 ; 0,0157283133827924 ; -0,8 ; eaDfDc50caBEBEabbC5d4bbafFECBF8fb2bbc2C4BbD4786aBc6a6B4f09DCFBb0 ; < gg4Z5cY7h0OiO4WSjMh42zX2k36cueqtxj03eaam0K29wGqX2dr60b8Q6kB3nReG > > 3 // < PUTS 0,0702040458056222 ; quote ; 0,0167715007280788 ; 0,0164360707135172 ; 0,0204081632653061 ; 4,3 ; 0,0160670976974995 ; 0,0174759037586581 ; 7,5 ; B57096eAc82bceEEfB6cAb3C373AAaA25C9CcE5dbFdb0dFaAEE7EE86DbFfD078 ; < 0XkJAW7Vp0r8hrVA851gFF6sw0LXxNB49yvVwCdx13qVN2uB08AI624799SxLO68 > > 4 // < PUTS 0,0756043570214393 ; quote ; 0,0186350008089765 ; 0,018262300792797 ; 0,0204081632653061 ; 7,8 ; 0,0178523307749995 ; 0,0194176708429535 ; 7,3 ; EaC3ECd19cCfd7EBe5739FbC3B3D0e5ae5bAD8faBda2c9fAb1dF820dA149D1d4 ; < QOT16f1Yg1B1fBAXtvR9n3I7j16e99Drsl0fEM8Tp0hAVT5t3jiUs8PGP8Ocqs6R > > 5 // < PUTS 0,0810046682372564 ; quote ; 0,0207055564544183 ; 0,0202914453253299 ; 0,0204081632653061 ; 7,3 ; 0,0198359230833327 ; 0,0215751898255038 ; 4,8 ; Ce2Af5DfeBD4fD3293E62fb6CCCb1FE62ADebe7D53Affcd7d7C3c3c63effe2be ; < 0tE4WxRjB0448DO2D56G5vt1Do095K60EXBGE2C1jp1HBAWxdm6E6y05T1lo57X7 > > 6 // < PUTS 0,0864049794530735 ; quote ; 0,0230061738382425 ; 0,0225460503614777 ; 0,0204081632653061 ; 6,7 ; 0,0220399145370363 ; 0,0239724331394487 ; -1,2 ; d4F7DAcCF598F5D2DaFce5eBd4201Dded0B2dCFBccDD0FAEBCf0d96eD46eBcD6 ; < s5Mi8i79595YO7r659E7XY17P4A290tev6T32gIU5Yw4N1az7YS8J9a19Wt77Yv7 > > 7 // < PUTS 0,0918052906688906 ; quote ; 0,0255624153758251 ; 0,0250511670683086 ; 0,0204081632653061 ; 7,7 ; 0,0244887939300404 ; 0,0266360368216097 ; 4,4 ; EA3CCcBAaAbF12C5965cBaBFC6c0bc40FC07bcEFbD1b392Cea16BeCa48Fc9bEA ; < RrAF851SXspd945Mne9AUuIGp13Sm1ZYFV5Hd0IIFUZYOBc3FlJgP1wo8Cio0fJb > > 8 // < PUTS 0,0972056018847077 ; quote ; 0,0284026837509168 ; 0,0278346300758984 ; 0,0204081632653061 ; 1,9 ; 0,0272097710333783 ; 0,0295955964684553 ; -2 ; 2A05DdDD5D01fd9fc18B6ffd56bDD47FbA1fAB55CFb9EE5aCb85A6AfF6b7B2f9 ; < 1VAB67479aERLU703BF1h7sOc9ve80M6OX2MELcG5NMS3nt1SmN5Po2zXULncqD7 > > 9 // < PUTS 0,102605913100525 ; quote ; 0,0315585375010186 ; 0,0309273667509982 ; 0,0204081632653061 ; 1 ; 0,0302330789259758 ; 0,0328839960760614 ; 4,7 ; FEe8C2dC8bAaa5E739eAf63bcBFBfdB46Ad5dA077CcAAe12EEEcbD68bBEE0d71 ; < IMhlxPB4a2Sbz7195xmhXfqV431GS0F0ufitso24niw5zBWk70hX56362zdh9N7q > > 10 // < PUTS 0,108006224316342 ; quote ; 0,0350650416677985 ; 0,0343637408344425 ; 0,0204081632653061 ; 2,5 ; 0,0335923099177509 ; 0,036537773417846 ; -9,9 ; 93deB65CdbE16BDE3cbF60Dbb82f0E4Aa1F5FC2f3B5bF24EC4987cf7Ec8b6516 ; < Bi97p8l1MENe3iHfEm81XZJ82F90B31uX704Jtka0bcRk0r3FinE9z2vRr0GbQ2y > > 11 // < PUTS 0,113406535532159 ; quote ; 0,0315585375010186 ; 0,0309273667509982 ; 0,0204081632653061 ; 4,7 ; 0,0302330789259758 ; 0,0328839960760614 ; -4,9 ; d72a27Ea3eBdbebbbfBEb1Cfde5aDAcAebA2dee1fdcfDA96f7C5c5e4FDEF68DF ; < 8TGz4f06ftliidCmhv33Bx6Cd959gAnBybz5r817r0V6tpZ3gh1oZgjel40817ap > > 12 // < PUTS 0,118806846747976 ; quote ; 0,0284026837509168 ; 0,0278346300758984 ; 0,0204081632653061 ; -1,5 ; 0,0272097710333783 ; 0,0295955964684553 ; 5,2 ; ffCDA5aeBCFcbC0CfE2Ba798E76C9c3aede24Dd6Ec120a7CFdcFCFC3F0f2D0bE ; < mrIm7Ta0n0B1z5s3d7P4k4Ws9q8ndVUA1s8Ve1R0V0Z7l1Uo3If6RJE4t06c0D8r > > 13 // < PUTS 0,124207157963793 ; quote ; 0,0255624153758251 ; 0,0250511670683086 ; 0,0204081632653061 ; -8,9 ; 0,0244887939300404 ; 0,0266360368216097 ; 2,7 ; DfedEeDf0efA5FDefCDaCf56C80e6AAdDDfFEbaABccf3EDABBebDE5FC4DeC6ab ; < HQXE9P8JHC0U4lrj0g4xysTHZvgE8fpQNR0Mtru1b754Rqy3D4z0iIO4rw6l2BW5 > > 14 // < PUTS 0,12960746917961 ; quote ; 0,0230061738382425 ; 0,0225460503614777 ; 0,0204081632653061 ; 8,3 ; 0,0220399145370363 ; 0,0239724331394487 ; -6 ; EfBfBbbBD45234242FCBBf79a03BF01B1AEedE0Ee9deAABEbCAFc5EcDbd3FD22 ; < srOY618HkLIp5FIFb8uiZeqAd4w2uqB8oUm58I37YpKk0nnoyxpV5883gvRRJ7L8 > > 15 // < PUTS 0,135007780395427 ; quote ; 0,0207055564544183 ; 0,0202914453253299 ; 0,0204081632653061 ; 1,7 ; 0,0198359230833327 ; 0,0215751898255038 ; 7,5 ; B81CD8ffEe0B4D23d426eef5eCC1Bff1cDa2D1DAb7dEAD1bfF353FeA0eac3fFF ; < DKe2mgpkwG94G2817O3PIpk5pXLDn42FUglcwL27r28853F8I69eHqH35ZZ2ppGu > > 16 // < PUTS 0,140408091611244 ; quote ; 0,0186350008089765 ; 0,018262300792797 ; 0,0204081632653061 ; -3,9 ; 0,0178523307749995 ; 0,0194176708429535 ; -5,2 ; FBCbEbad924e7D21Df564CDF3bA679aacfBC8aB51Dbfd6bcA23efCBBB0BD2e7f ; < Yi1o4Yp029hgYG1VTkMMdwKHGILUw809wktazMFP16TkFjl7I9gXIZvUZAhV336X > > 17 // < PUTS 0,145808402827062 ; quote ; 0,0167715007280788 ; 0,0164360707135172 ; 0,0204081632653061 ; -4,6 ; 0,0160670976974995 ; 0,0174759037586581 ; -7,5 ; BfFAAEA9CecefdE8bAb101FfFDfbf4dBEde0A8b2e6DBbE9beFDa57dBc0c4f825 ; < NLk02bE7bXO9kN182PBRzV988i7c51oGfQOEG1G0v4cd091k8JIR6D44Hr2TD92b > > 18 // < PUTS 0,151208714042879 ; quote ; 0,015094350655271 ; 0,0147924636421656 ; 0,0204081632653061 ; 9,1 ; 0,0144603879277496 ; 0,0157283133827924 ; -8,3 ; A9FfEfFDEaC5dEE53fBECFdf39B06aAdEc0D30d6cB6CfFfC8Bbe2F9EcD1bb4f2 ; < Xpe2NwjU8umSV3UI08rZC488N1jK4yPr48Qr66Pm626O6744iBLFEV7gnl5ekQoD > > 19 // < PUTS 0,156609025258696 ; quote ; 0,0135849155897439 ; 0,013313217277949 ; 0,0204081632653061 ; 6,2 ; 0,0130143491349747 ; 0,0141554820445132 ; -6,4 ; fd9feAedebC4FFaAb5Ef7e984Dda8bc3DDA1ee6D3b6FcCBBB8E693Dd6AAd5cfC ; < 190S6Oz62rh70PU8bV1Wltnd307sW501hyC4PLc7c5eTbCR42T7hVz2U8dfjYNlw > > 20 // < PUTS 0,162009336474513 ; quote ; 0,0122264240307695 ; 0,0119818955501541 ; 0,0204081632653061 ; -2,4 ; 0,0117129142214771 ; 0,0127399338400618 ; 0,7 ; aDe1e8DEBE610Accca186dca9FAa04Ee1eBDc4cd65b335Fb2bFeCe7Cc3BAC3FE ; < 9G7c4aIZtE123256A1x0RA9LItQLObky3uEi2bQpXdb5YEzoNoyjyhn982F2bzkj > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000837730962362903 ; quote ; 0,00000128938195685007 ; 0,00000126359431771307 ; 0,0204081632653061 ; -7,8 ; 0,00000125714740792882 ; 0,00000132161650577132 ; 2,4 ; Afd84dDC2EEbfAABeB5EDCbACCe9EDA8D4b76e7d7daaAF46076D9B7dEAE1E4Ed ; < trT0IHFQXt22vFVW571kTBxXIbkaMGX8P36kO1x9209G4u2UtfF1dGO521992ikZ > > 1 // < CALLS 0,0000921504058599193 ; quote ; 0,0000014326466187223 ; 0,00000140399368634785 ; 0,0204081632653061 ; 4,3 ; 0,00000139683045325424 ; 0,00000146846278419036 ; -6,9 ; 7437Bda8e6f5AB83b4Ed2D31DBA5AE3Ff0aeeF05EaCADeE9Ca6fbCDDacADafae ; < Ebz938XeO78F48gjx6s4lRE1H1ZP1k7SWwQwk1jrgbaXxoH0fD2br5m03l7w7098 > > 2 // < CALLS 0,000100527715483548 ; quote ; 0,00000159182957635811 ; 0,00000155999298483095 ; 0,0204081632653061 ; 6,9 ; 0,00000155203383694916 ; 0,00000163162531576706 ; -1,1 ; fB553Da24E227BF29Ffdfe2Af9dc8CBBAd1bD24B8D64AfFBBDea0aED3E55eBbf ; < pE33kjZ4c3y1E1ZVVIY6fX3TaLu1g9zqQPWng13VlwPh6lf78rG5qc8b04XIGoK9 > > 3 // < CALLS 0,000108905025107177 ; quote ; 0,00000176869952928679 ; 0,00000173332553870105 ; 0,0204081632653061 ; -1,8 ; 0,00000172448204105462 ; 0,00000181291701751896 ; -3,9 ; DFBa790cbFE37f984Aa66bf6A332F87BFCbF4f0FCEd85CDBf5B3cBAB2aacbdad ; < 87U8xa6IxCgUSIC6TN8AF9608L5VL8KmV2uW7esgf80QSjUUEcuqbYLG3yu4112t > > 4 // < CALLS 0,000117282334730806 ; quote ; 0,00000196522169920754 ; 0,00000192591726522339 ; 0,0204081632653061 ; 6,5 ; 0,00000191609115672735 ; 0,00000201435224168773 ; 7,6 ; Fddc7ADacAf7c8ca993aa89ED3b7e0bf0679aF9Aa2D30fcf7BCCAFbbEDCfC229 ; < m3Cso1I72W08GPZwH24Klel84Y3c52e3Ibb5pUEVvKSg751jJCal482b3Nmy08Ig > > 5 // < CALLS 0,000125659644354435 ; quote ; 0,00000218357966578616 ; 0,00000213990807247044 ; 0,0204081632653061 ; -4,9 ; 0,00000212899017414151 ; 0,00000223816915743082 ; 1,1 ; 0BC8CC40EB3d63F15A64098df3EAA36dBF0BdE6bc8FAeAaefcae3dBCDBadA2EA ; < Q102LMSBIIBi9eW4y95nXE3WESyWBRZrmloB2y3V4N05dZbIdU10qZHTN55lgmbN > > 6 // < CALLS 0,000134036953978064 ; quote ; 0,00000242619962865128 ; 0,00000237767563607826 ; 0,0204081632653061 ; -1,1 ; 0,000002365544637935 ; 0,00000248685461936756 ; -3,5 ; f549ECFe81fC3ebd436DbeA2DbA9d9bc9aEd8a5Dcab89c7075aDbabbCbCAED5C ; < FtiKT2Mb6uH33yUfQBUl7wBbSVo6rQWFS8G05h31LepJJW2S8w3ltpb7Ikcx18Ys > > 7 // < CALLS 0,000142414263601694 ; quote ; 0,0000026957773651681 ; 0,00000264186181786474 ; 0,0204081632653061 ; -1,8 ; 0,0000026283829310389 ; 0,0000027631717992973 ; -7,1 ; B4Bd4EB5FbAe2c3E3defB9a4e8502EdcA812bA4CCEfdf1c9CDECd1Ad084fd955 ; < 9FFz708i7kvfdGtP9vHVb9pjqflf5fmUS9b4400Y66v9w7sAQp3vQUmYqPgGERtS > > 8 // < CALLS 0,000150791573225323 ; quote ; 0,00000299530818352011 ; 0,00000293540201984971 ; 0,0204081632653061 ; -6,9 ; 0,00000292042547893211 ; 0,00000307019088810812 ; -3,4 ; c67eE6e5BaebFbBd6C7c69Ed33aB8AaDde7dD46da0eA0Ad2d4bbd3D383db7Fc6 ; < wj88WEW0g3uRkCG0HInkTfBb5eafpNT66eYOaB8LrnEztz6mNJQ8SKO74Xjcok82 > > 9 // < CALLS 0,000159168882848952 ; quote ; 0,00000332812020391123 ; 0,00000326155779983301 ; 0,0204081632653061 ; -7,1 ; 0,00000324491719881345 ; 0,00000341132320900901 ; -5 ; c2fE7EAb8ca3F310DbDBDae8CbdaAbbFedCA6Fdf7D01cA54eF25DaDf3b7C54F9 ; < ii6w2zwJF00La9Uo3B9JzZt2V92i78c7X6ORhkW4gbONP1a1WN498xD80j852913 > > 10 // < CALLS 0,000167546192472581 ; quote ; 0,00000369791133767915 ; 0,00000362395311092557 ; 0,0204081632653061 ; 9,1 ; 0,00000360546355423717 ; 0,00000379035912112113 ; -5 ; a28e6BAafd5EEAC69748fbcbEB33DFAcCc46b8dfE72BcCEFBAd0cAFB3FCAB2A0 ; < y3CHvR998h1HM0Az9OgfMLdL1731q5036856nt904Vqix1u15511sMXF87Ek41oO > > 11 // < CALLS 0,00017592350209621 ; quote ; 0,00000332812020391123 ; 0,00000326155779983301 ; 0,0204081632653061 ; -4,6 ; 0,00000324491719881345 ; 0,00000341132320900901 ; -4,3 ; FD875E9D8BB328DFabeAfd0ED72F553a852daC89F3D122dAE3f99ee4762feE0c ; < 26GOQPx91JIPT39QPxrXuqtzC71w9P5iE1s8xCH8n8fsE62c1wcv8I23OC3nb5h3 > > 12 // < CALLS 0,000184300811719839 ; quote ; 0,00000299530818352011 ; 0,00000293540201984971 ; 0,0204081632653061 ; -3,3 ; 0,00000292042547893211 ; 0,00000307019088810812 ; 7,4 ; Ca7AaAcAdad9CAf1Bb54BbBcd7abcA8DCF0d8EDF66D4B8Be1aD2D5c7becF7e0c ; < 18svcjF50gf278Z8u6z9E2pfGdu57v91xs2q6sA9zyT63A4mrt14Q8qxJne4qE6S > > 13 // < CALLS 0,000192678121343468 ; quote ; 0,0000026957773651681 ; 0,00000264186181786474 ; 0,0204081632653061 ; 4,9 ; 0,0000026283829310389 ; 0,0000027631717992973 ; 4,6 ; D111EAA5aAA9de97fFFcF57CDE17e7ABBcD5EbaDcCb75dCd0eB05B1b7BCfceCa ; < IC9LqLG8Fv58n8e7Qh7Os35FYrvNJpi8aIVeQ86s3YF59Va3585J58mB2056BSqQ > > 14 // < CALLS 0,000201055430967097 ; quote ; 0,00000242619962865128 ; 0,00000237767563607826 ; 0,0204081632653061 ; 9 ; 0,000002365544637935 ; 0,00000248685461936756 ; -5 ; c01EbFbaFAEAFfFdC4a4FcD8dF6f0fffbB7eeae6Da5fBAb47f6AACD8b1C85CBb ; < 87jWueLxr2in9XJzIH9Y5d5u72n4o6zUv1eHU8vkNSY9vJ1UGtJj5pQ6959c7IJM > > 15 // < CALLS 0,000209432740590726 ; quote ; 0,00000218357966578616 ; 0,00000213990807247044 ; 0,0204081632653061 ; -4,4 ; 0,00000212899017414151 ; 0,00000223816915743082 ; -3,7 ; f11b4dcf8EAcDb92aCae02bDd29AB1a4FCfEdf911B34beB36dc7A83658ABDFfA ; < lteBp1s489949c959DRUIo3CkYTd0I9oif3xaD286I3N82KJ77RIRqsFiaA5q62j > > 16 // < CALLS 0,000217810050214355 ; quote ; 0,00000196522169920754 ; 0,00000192591726522339 ; 0,0204081632653061 ; -1,8 ; 0,00000191609115672735 ; 0,00000201435224168773 ; -4,3 ; 8A16cce059DfF33522cEB01Ca9eBbDafFc8FD2ECddd622FAa35cCeBd13F9C8a8 ; < B907M582VGxZ1FT98s0MsHHHo8hnm0aBrCD1rwi44BuPUe8IIePu3lUIZ4cTkkU9 > > 17 // < CALLS 0,000226187359837984 ; quote ; 0,00000176869952928679 ; 0,00000173332553870105 ; 0,0204081632653061 ; -9,8 ; 0,00000172448204105462 ; 0,00000181291701751896 ; -4,5 ; CEfBEEF1dea21FFaACdAB2cfc1Bb6fF1E293EED2C4D66Dea754C91a359Aa6CE5 ; < E99k4Ayt6C5YzFCke9DisYlpPOFauRP1NFkUHfgcQdTTuYq7dy2jP5wx95F2CDP1 > > 18 // < CALLS 0,000234564669461613 ; quote ; 0,00000159182957635811 ; 0,00000155999298483095 ; 0,0204081632653061 ; 4,1 ; 0,00000155203383694916 ; 0,00000163162531576706 ; 5,3 ; 0C7eC6eC9622c7DCAb5d9cf5afBBBeA680F5F4FA5cdCb38Cd8Cae6C8eAf68aaf ; < xST1qYN5ZfSbd973A2405LVfvk66y1YY16fGbSvh5Jd0sPjRDyr4NIo15yo1mK8G > > 19 // < CALLS 0,000242941979085242 ; quote ; 0,0000014326466187223 ; 0,00000140399368634785 ; 0,0204081632653061 ; 5,7 ; 0,00000139683045325424 ; 0,00000146846278419036 ; 3,7 ; bEcDBBdBDaedb6BA9a0aEe4ab5d2Cfb4Dab86ac6Ba990EB9cF3Ae9BCBea4A4CF ; < h2jMaAhr3uP1sVbYQWko2W0X6T32YX07xX96tyC82C5S9sjNzMh16Iixktf2z9Qn > > 20 // < CALLS 0,000251319288708871 ; quote ; 0,00000128938195685007 ; 0,00000126359431771307 ; 0,0204081632653061 ; 1,4 ; 0,00000125714740792882 ; 0,00000132161650577132 ; -7,8 ; 01bc8A4a116bFC0Af5AdCcbfFE46ca2C9223BefAA3CaecEea0905ba5efB5c49b ; < 7V1S299lO2YW8C46zQ81sM56wUcv5KYbus6Wc935V49s61lVjMMrx0wQ2Zv1q3W4 > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000837730962362903 ; quote ; 0,00000128938195685007 ; 0,00000126359431771307 ; 0,0204081632653061 ; -5,7 ; 0,00000125714740792882 ; 0,00000132161650577132 ; -0,6 ; CcbFEb59626eAFF2EA6187e0e9d8aCbbedCFabfcBCceA8cFbF30c0fdeBa5C9B0 ; < Q2l8a40kop3tcr248tdMJA97EUDHlX3rhU3aqy5R5YZRnAaC6M1Tvk7s208fa4UH > > 1 // < PUTS 0,0000921504058599193 ; quote ; 0,0000014326466187223 ; 0,00000140399368634785 ; 0,0204081632653061 ; 1,1 ; 0,00000139683045325424 ; 0,00000146846278419036 ; 3,9 ; 8010CCaDA8DFcAFFCC94eDDbb3f33CCCD3f3fbAcf8Db4FaEDD33FaCA7498edC3 ; < ojVdv7o3hIMJI2ZrG05dRq40cjf6iNrA2H09I302J7p95BY4i0mNUKzvGLp3INqD > > 2 // < PUTS 0,000100527715483548 ; quote ; 0,00000159182957635811 ; 0,00000155999298483095 ; 0,0204081632653061 ; 0,5 ; 0,00000155203383694916 ; 0,00000163162531576706 ; 3,2 ; Fcb0d649a7ffDeaAebCF85DCFaddA1f5eEDfd6Ee627c6bF7fDEC4058Dddf5aa7 ; < 5tfo6QGobPjWew45E5Nr7lrG5IoJzxpRv9052n4l6L9MuB7BT9hi8s8EkTn1A4Ma > > 3 // < PUTS 0,000108905025107177 ; quote ; 0,00000176869952928679 ; 0,00000173332553870105 ; 0,0204081632653061 ; 4,5 ; 0,00000172448204105462 ; 0,00000181291701751896 ; -0,4 ; 4df5B4d0cA88CfedbeaBcCb776D8EBDB48ceee26dE8ddEB80CfaBB4ABD0E83eF ; < E79db95gR5a9lfd3zNY7gpyqCVXBweuKu8P585pvPuWGqWBOKyHb7sFHp8UbYGsC > > 4 // < PUTS 0,000117282334730806 ; quote ; 0,00000196522169920754 ; 0,00000192591726522339 ; 0,0204081632653061 ; -9,7 ; 0,00000191609115672735 ; 0,00000201435224168773 ; -3,1 ; AAa4f9edbAEdae8f5CdFaC7D3b9eCC2CDbbDd9C80fE0e7EFfcaDE8DDeFea7a88 ; < 6Xy4vrMjbT915s259f8r84nPImi93K4gio4hSMEAk5b4OJbQWDLKQnmBU9R821sL > > 5 // < PUTS 0,000125659644354435 ; quote ; 0,00000218357966578616 ; 0,00000213990807247044 ; 0,0204081632653061 ; -2,8 ; 0,00000212899017414151 ; 0,00000223816915743082 ; -7,4 ; 11a78AbF63C2bAAf9FCca02ac22B62B47adBFa13877afDFBbEdb746Cf1DACB3F ; < 4DZ1mozSG4oW0lL3G7CNlY28jf69ZxcLxr6N4uQejt15S106a7st022PO7N6spp4 > > 6 // < PUTS 0,000134036953978064 ; quote ; 0,00000242619962865128 ; 0,00000237767563607826 ; 0,0204081632653061 ; 5,3 ; 0,000002365544637935 ; 0,00000248685461936756 ; 2,6 ; 1E0f2ABF2AEb59e2fdec2FFFe050b580AEFBd20ebd7350AAeAedDAd3FcF535CA ; < IjcOqsQtWy9isup7G1j5uo28i6KRV1exZZ7mWpd05X9Fk9CtQA9bBwyn812BPfq4 > > 7 // < PUTS 0,000142414263601694 ; quote ; 0,0000026957773651681 ; 0,00000264186181786474 ; 0,0204081632653061 ; -1,9 ; 0,0000026283829310389 ; 0,0000027631717992973 ; 0,2 ; BBFe80CaEf04Ed7E8DfA8f1abAba50aa143eBFdb0cdb8Dc5EAaa6B67dA8C13ab ; < nyWuz7570CB63mNfh0C9kfagMRtfV09qzDxyn3izS4NZ185Mva5Dvp146W4C3J3d > > 8 // < PUTS 0,000150791573225323 ; quote ; 0,00000299530818352011 ; 0,00000293540201984971 ; 0,0204081632653061 ; 4 ; 0,00000292042547893211 ; 0,00000307019088810812 ; 2,4 ; EEE4Af20F3BAF1BDACC8fDc5863dA0EB0b19eB9cceFAd6A2dcdB8bBe1A9db65e ; < X7gyH936jhEtk5U1s020t75A3th5Vn87B91Zsfgyv01zg8RRrJ5lxm6W60g6ziMI > > 9 // < PUTS 0,000159168882848952 ; quote ; 0,00000332812020391123 ; 0,00000326155779983301 ; 0,0204081632653061 ; -5,8 ; 0,00000324491719881345 ; 0,00000341132320900901 ; -5,1 ; 4CBfDbD3DdfEdbeE8f7DBB81B3cFbE4df941c4A3359C6CFD8A77bCBA9dEE3CEA ; < hmL3vrB6SIl9H0jtQ1iE3S2hitqeqafohGLLUWLJcfDhX5910d33u1nAOtx21gEw > > 10 // < PUTS 0,000167546192472581 ; quote ; 0,00000369791133767915 ; 0,00000362395311092557 ; 0,0204081632653061 ; -0,9 ; 0,00000360546355423717 ; 0,00000379035912112113 ; -8,3 ; cF05df5B1EbA6b436AAD6bfB5E0abB3fb5C1fb80Af5CaA5dABf4CF9eA215caDB ; < 29do90mr75Xa993M5hu30i1X2VHv0gT8b0t6nA55ET24DuT8O9q38Z6PC5K8EKnG > > 11 // < PUTS 0,00017592350209621 ; quote ; 0,00000332812020391123 ; 0,00000326155779983301 ; 0,0204081632653061 ; -2,6 ; 0,00000324491719881345 ; 0,00000341132320900901 ; -8,9 ; 4bD7d9fdFDfE6eAe7dCEcec5F0AC4fAf5066Dceaded9A0ccEEDCbdfcDA844e0b ; < BA9k0t63dq0814yL0Sa827As5RuC9Z9jRE20dOa83Hdl4C5sQ564zpPYMqFFqUwj > > 12 // < PUTS 0,000184300811719839 ; quote ; 0,00000299530818352011 ; 0,00000293540201984971 ; 0,0204081632653061 ; -9,1 ; 0,00000292042547893211 ; 0,00000307019088810812 ; -4,6 ; BfEEfAfEA7a2E527dAf64BDf7EfFBea4bBdFBcE0def5cC171c4cbC71feba472d ; < zGAUU07lyM3nNskBjxH38ubwCL2ifk7z4IX88r6t64310rDtJ6icISJ70y9X4x30 > > 13 // < PUTS 0,000192678121343468 ; quote ; 0,0000026957773651681 ; 0,00000264186181786474 ; 0,0204081632653061 ; -1,6 ; 0,0000026283829310389 ; 0,0000027631717992973 ; -3,8 ; edd1Ec8DCC3aeED6d007AC1AFD6eAbe1Ef02b1d2BaD0BEeDbFbA96B71B26BD4d ; < rqzy9gRSVP7p5n9070lySDFPooE8N1l68sn4Dcu1ou5qtx2y54SlFrAR6GzEI3UB > > 14 // < PUTS 0,000201055430967097 ; quote ; 0,00000242619962865128 ; 0,00000237767563607826 ; 0,0204081632653061 ; -6,6 ; 0,000002365544637935 ; 0,00000248685461936756 ; 7,1 ; C83FBc98dDae53bbB392f122181eC2C6d484ABE5bBdE855efA3bC8Fab87EbE5b ; < 3CDiRc3JFr944D78QhcVqTxnaW2xRXJ8ps2eL294f5zqzR9rF1ob3QM46mVaw5Tz > > 15 // < PUTS 0,000209432740590726 ; quote ; 0,00000218357966578616 ; 0,00000213990807247044 ; 0,0204081632653061 ; 5,4 ; 0,00000212899017414151 ; 0,00000223816915743082 ; 3,5 ; d53DFcA1C3fa2BcC3CED2dBb0B2A60CCB19F1Bf5bbC8ABDffEeB404BBEBf8Edf ; < O3Q8jGzuByCw9zu15H3tjTgb43q0Jxi6G07p7kv7wGHRCdqTJJQ4Rb5er00539eV > > 16 // < PUTS 0,000217810050214355 ; quote ; 0,00000196522169920754 ; 0,00000192591726522339 ; 0,0204081632653061 ; 3,1 ; 0,00000191609115672735 ; 0,00000201435224168773 ; 3 ; 741Fc8FccFfadDD3Faf3f5eaaEd11F8CBDa0Eed6ceAaFb2bAcDEEF2bAb5BB4BB ; < PG5021xk724DE0C47KlCdhi6R8iUpsdfErVav8k0841K92iJ03p8UOCyc41cOpUz > > 17 // < PUTS 0,000226187359837984 ; quote ; 0,00000176869952928679 ; 0,00000173332553870105 ; 0,0204081632653061 ; -1,8 ; 0,00000172448204105462 ; 0,00000181291701751896 ; -9 ; 3da1DB5d0DFEef57Eaf10D7Ce9Aeb2DeBe4EBbacE0F65C9abC7ee037eB6af8f1 ; < h129gS9n405994z46YEfMgB8I0zkmm5lBNvaD3mGAd9u5wvb42R8tvj5WS287Ev0 > > 18 // < PUTS 0,000234564669461613 ; quote ; 0,00000159182957635811 ; 0,00000155999298483095 ; 0,0204081632653061 ; -2,4 ; 0,00000155203383694916 ; 0,00000163162531576706 ; -5,5 ; e7Cfd6A884ed8DD00ceBFF1d1672C6cbb45BCAc3dF2Cbf1a1757b919AB85c488 ; < 5Oq9KD9Wtv13rEJ047Dh2239NE11Re2W2js52506Y25AS2702e0uL2yqgUy6WBVq > > 19 // < PUTS 0,000242941979085242 ; quote ; 0,0000014326466187223 ; 0,00000140399368634785 ; 0,0204081632653061 ; 4,6 ; 0,00000139683045325424 ; 0,00000146846278419036 ; -2,1 ; 31c7Ddd7fB2cC4FeEBC8f10daeeBc8Eca5d9c8D7ECFADc67F347FF37d2D34ae5 ; < Aj8vQ9kVKa5rrcTVb59Xvg9Y0a5Pqr0kecen3eL27uUdJNrWtLxW27IsOvy451xE > > 20 // < PUTS 0,000251319288708871 ; quote ; 0,00000128938195685007 ; 0,00000126359431771307 ; 0,0204081632653061 ; -8,6 ; 0,00000125714740792882 ; 0,00000132161650577132 ; -7,1 ; DCAeB4D1DACdF8B6D95b6B363043f26E1Aacae58adfbBC722EecB1AE0Bb1BAe4 ; < ylquxZacqdo9rDbif7w22200l4PBTT2E8OKNucO2Z88IaErhff2wZ12eaSn5yczr > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000838714890997729 ; quote ; 0,00000272216084152049 ; 0,00000266771762469008 ; 0,0204081632653061 ; -1,5 ; 0,00000264049601627488 ; 0,00000280382566676611 ; -8,8 ; ea9Bc8Ba96CbE656b77Cc0AE567AEA85aEE7B71AB5E2fe1AEec6fF2dCa68eEEA ; < GfipR7jKMV8e1QzJRD6Go3AXtToe64998lAasPBt6a228O0pZ199aiw80170v71z > > 1 // < CALLS 0,0000922586380097502 ; quote ; 0,000003024623157245 ; 0,0000029641306941001 ; 0,0204081632653061 ; -1,7 ; 0,00000293388446252765 ; 0,00000311536185196235 ; 7,3 ; e53AE1BE3c5d5cDDf0E7e3D1bFB09d1a7B4c70dAB6F1eab7bBDb4eCfAFFFA2EE ; < Rf4tI379A2SIkKPukjQ9M4wrW2OMm810wL6291PguW86bJSV78EC3Sj7gs3tS7iu > > 2 // < CALLS 0,000100645786919728 ; quote ; 0,00000336069239693888 ; 0,0000032934785490001 ; 0,0204081632653061 ; -2,3 ; 0,00000325987162503071 ; 0,00000346151316884704 ; 6,1 ; 86C028aAdfc4ffb684dCaaEAcDdafcAFdbc83Bfe0f6bBa1fc5BAFfbFEDa4344c ; < s1wS1vQ3qBHIIMX23Ji3A064YuyK213729M7jTaU6nMyxP21A8n2V2wr9LtoSf1M > > 3 // < CALLS 0,000109032935829705 ; quote ; 0,00000373410266326543 ; 0,00000365942061000012 ; 0,0204081632653061 ; -0,6 ; 0,00000362207958336747 ; 0,00000384612574316339 ; 7,7 ; 9ecFEBEF86E3F31efBC0dFDEEf5cdEbA2Ea083eb6bCbA3eF8739cEcDbdBEcE0B ; < MOIB401EBNhpMg3CIRPbLlG0pk17Ye3XDT8A8J2fWvZ1a36qRut94nY9uqFY08Fv > > 4 // < CALLS 0,000117420084739682 ; quote ; 0,00000414900295918381 ; 0,00000406602290000014 ; 0,0204081632653061 ; 7,7 ; 0,0000040245328704083 ; 0,00000427347304795933 ; 7,3 ; dD4AF6EAD5BfCEee3b9fd98eBF1B3DF1b0BFF6eddFD2C1AeeCBA41AE09343E4E ; < 8i3B8vbg26Xj4t6csEgXTIYd5jI08nGuEcQp2ioOiHLzu2Zw4FDTt6Wkb4HGCPuv > > 5 // < CALLS 0,000125807233649659 ; quote ; 0,00000461000328798201 ; 0,00000451780322222237 ; 0,0204081632653061 ; -6,8 ; 0,00000447170318934255 ; 0,00000474830338662147 ; 4,1 ; FEa8FDAdafADC9F52fcFF3E4BEdf1eeaaeCECC2eb4B3613Be1EaCE6Ae7fb09Aa ; < rHu4g81QrL3z0HBJxMGOTPUICyt9O17O816cRttRK39S82qmle0g6O0bDJm7XeAw > > 6 // < CALLS 0,000134194382559637 ; quote ; 0,00000512222587553557 ; 0,00000501978135802486 ; 0,0204081632653061 ; 3,7 ; 0,0000049685590992695 ; 0,00000527589265180163 ; 0,9 ; 3d2F154DD60beA9bc3e2aFf4af8Ddd9Fca4CBec48dFfB08FEDdFbCcfA06ACf20 ; < E0k04wM2K8r8aCxtz3Y5Wm97x4y6eFFvMhkp2lrrDfHE0ShDo0O9NK41RK885mT0 > > 7 // < CALLS 0,000142581531469614 ; quote ; 0,00000569136208392841 ; 0,00000557753484224984 ; 0,0204081632653061 ; -0,2 ; 0,00000552062122141056 ; 0,00000586210294644626 ; -2,1 ; bba742A2AcAedbC178ab8De1Db3CcaDBc8Dbd0FCF9f1F1698e0CDdBa7A4dbf30 ; < bGU2eI6I7BXl2J89EfSRH99s9X97kfWTjQ56i6m804M5d71HzH09m7B59i75ts37 > > 8 // < CALLS 0,000150968680379591 ; quote ; 0,00000632373564880934 ; 0,00000619726093583315 ; 0,0204081632653061 ; 0,9 ; 0,00000613402357934506 ; 0,00000651344771827362 ; 5 ; 19eFFe4B5fbcc90c48bece5bDAbBdedfDbb66C29E7ba7B2CABc6a5C3AbcdAEcb ; < SThK5B3PfHU65R52hS7amU7033s09514KFC159PItZKQxNT4NLR3tJWmBl918bK0 > > 9 // < CALLS 0,000159355829289569 ; quote ; 0,00000702637294312149 ; 0,00000688584548425906 ; 0,0204081632653061 ; 7,6 ; 0,00000681558175482784 ; 0,00000723716413141513 ; 2,7 ; E9F33D663dEB5AFEDae7D713f84243ddaa0FfeFe5Acec6CcFBeccef9F2ceC9ED ; < 2fYpW6l6SPQfPSa4Jd9Y5wR061j6qD08d2CZy7HdH9a341b4hPOkManMZ83pe1wq > > 10 // < CALLS 0,000167742978199546 ; quote ; 0,00000780708104791276 ; 0,00000765093942695451 ; 0,0204081632653061 ; -5,3 ; 0,00000757286861647538 ; 0,00000804129347935015 ; 5,9 ; eD46D26e0ca9efbfAe65dBf3ec5FffFbCEEEbEb05A12fDDC3A3DbffEe2A1A8E5 ; < 0JyHDRo283VfpkE2jH8jzX3an1RbOG33M23FU66dE0RnwAnt11oc1U8rLUj9L5a8 > > 11 // < CALLS 0,000176130127109523 ; quote ; 0,00000702637294312149 ; 0,00000688584548425906 ; 0,0204081632653061 ; 2,7 ; 0,00000681558175482784 ; 0,00000723716413141513 ; 7,2 ; FCECea4014390fe3bdDE32D6FFFBdBA5c3A09BB7BCCf0CCB51cfAeAC05aE1C7E ; < DR89q903fn8U607OAH4xx6p19oIhKRVd6SL10A0jwJ7HhKQlEo3H7e1JxL6m4T8c > > 12 // < CALLS 0,0001845172760195 ; quote ; 0,00000632373564880934 ; 0,00000619726093583315 ; 0,0204081632653061 ; 8,6 ; 0,00000613402357934506 ; 0,00000651344771827362 ; 0,8 ; fDBC8Fef1481eb843FCdD8a1fF9BFB52eaf8aD8b14479cE49eDBE89aae4a81f6 ; < 86e271u8exrt4M0aY69R2nOy5zc0UDDA6QYMfAbGCGH9rw27L4l4fvO9o17Imq40 > > 13 // < CALLS 0,000192904424929478 ; quote ; 0,00000569136208392841 ; 0,00000557753484224984 ; 0,0204081632653061 ; -0,7 ; 0,00000552062122141056 ; 0,00000586210294644626 ; 6 ; df56cCab7EFAf74fBDD99DBaCa8FD9adFEb29bfEaeAbBCBF4E4E3401e22ca6CD ; < 5yn8h316BMGw0FFl1MzIh78CrGAkXBO7k2x28yzcI4TvYZpR5IsVw74rmF95n7Fl > > 14 // < CALLS 0,000201291573839455 ; quote ; 0,00000512222587553557 ; 0,00000501978135802486 ; 0,0204081632653061 ; 2,6 ; 0,0000049685590992695 ; 0,00000527589265180163 ; 1,8 ; Bc66bb1fefcCbfDAdfFbbFB93EDb018eD80FFAf936f77B258c2Fd5A7E6a7d511 ; < GLQ13G2V8F263fCq2Xe3L4JA58enSG3uooxjdV96lQa79sN7f7O15TLt00XDjMam > > 15 // < CALLS 0,000209678722749432 ; quote ; 0,00000461000328798201 ; 0,00000451780322222237 ; 0,0204081632653061 ; 6,9 ; 0,00000447170318934255 ; 0,00000474830338662147 ; 9,1 ; F785Fead1AbeB3BfBBeadAc8F0BAE0e3df755FF434aafdd83bdF95b58cbAAbaE ; < 428nSssR6Cs93b0y5rND6V7L82QE4Qc39TtYhvrQI78d7m4yK93ob71hI6HmppEr > > 16 // < CALLS 0,00021806587165941 ; quote ; 0,00000414900295918381 ; 0,00000406602290000014 ; 0,0204081632653061 ; -4,3 ; 0,0000040245328704083 ; 0,00000427347304795933 ; -2,6 ; 3bfF5abAfA9aCE2FbC3CEEfe2CEd90F64a6cDbA4D3Fbea3807bf33d1EAFA7B8c ; < JI7EeR1370cNCU6cg96j1llYg9OqAjp8MEfWlk62lCrvYlhQ14RUtdnWp1V99604 > > 17 // < CALLS 0,000226453020569387 ; quote ; 0,00000373410266326543 ; 0,00000365942061000012 ; 0,0204081632653061 ; 0,2 ; 0,00000362207958336747 ; 0,00000384612574316339 ; -1,3 ; d4e9cBAfA01cebc0f3d5f59ABDe6C207dDfCd5CCE8aBeAd82a9fEcEFe6eBdaA0 ; < 9aq200mg0e65EuOevB2VRJGj0T9v53Psk8U20nOFvoIP77Vm13zbkKw4VX8LdnTn > > 18 // < CALLS 0,000234840169479364 ; quote ; 0,00000336069239693888 ; 0,0000032934785490001 ; 0,0204081632653061 ; -4,7 ; 0,00000325987162503071 ; 0,00000346151316884704 ; 1,6 ; 1eF0ecaFdA5beeE4aa9BAFA3bA080CCbcf6C4daea8649B32dFBbCda0fDDa4Cf5 ; < NNP1zqgcc44QxuptNgrBG7I187k5Wq1oXzPAxVfDzmHhC1hZF5Dp2aAJ589L5zjU > > 19 // < CALLS 0,000243227318389341 ; quote ; 0,000003024623157245 ; 0,0000029641306941001 ; 0,0204081632653061 ; -1,4 ; 0,00000293388446252765 ; 0,00000311536185196235 ; -1,2 ; EfCEAE6b03D0aAd3Cb6FbFFefbc0FcA6CCcAFC7bC91fece3b47D4c6E43FbBabe ; < T7qsCn2P8J0f56Ek1230xR9UTeH6l5267yxN46ocp7fyQcMGBrnKWV815Qz89C5q > > 20 // < CALLS 0,000251614467299319 ; quote ; 0,00000272216084152049 ; 0,00000266771762469008 ; 0,0204081632653061 ; 3,7 ; 0,00000264049601627488 ; 0,00000280382566676611 ; -3 ; a18f0fFA5A13c841be3Ce0EaB746BacE4ddba0DDcDaed70a3daBEb63Ad4E10BB ; < 957rCwWg72ry77c1z0vT89kvtNsHzY3ehv16g7JENk1l7H4QX011PL1q07HyLjvi > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000838714890997729 ; quote ; 0,00000272216084152049 ; 0,00000266771762469008 ; 0,0204081632653061 ; -9,9 ; 0,00000264049601627488 ; 0,00000280382566676611 ; -8,2 ; ebcbd11CaDbEbFE61cFf4d3AEDDfbE22FAEe76CFb9ecCAb5f6e6fE91cCA1AeE1 ; < 8E4c5wP6WtMR6bj3IlNLU9rcly5nz1pUw77b11G8TTPQT2xy5S4Cw2I1Dv8YbOk1 > > 1 // < PUTS 0,0000922586380097502 ; quote ; 0,000003024623157245 ; 0,0000029641306941001 ; 0,0204081632653061 ; 0,9 ; 0,00000293388446252765 ; 0,00000311536185196235 ; -4,8 ; Db8bABc8C5D229bcaE3beD24aE925f6854fBCA5CFf1bF4D07fCE5bceA11c6ABa ; < nmWZE2Zl6iC8EX2Ce2jzaBE3776j6479G2LR6J6oSYmTe3E6mkyCZa3cJBxz365A > > 2 // < PUTS 0,000100645786919728 ; quote ; 0,00000336069239693888 ; 0,0000032934785490001 ; 0,0204081632653061 ; 3,5 ; 0,00000325987162503071 ; 0,00000346151316884704 ; 3,3 ; 6a9fBe457A8fA6CC7c0B0dE399CEEf4dE86bAeFeBeC5BCd6f30C0DaDB3dDeC9F ; < UuRu8G71XiM7Ht1W29082OkQ1ic65Z0re3C7Z3L3g384gwL02z4W0bn1sptwW3TK > > 3 // < PUTS 0,000109032935829705 ; quote ; 0,00000373410266326543 ; 0,00000365942061000012 ; 0,0204081632653061 ; 3,5 ; 0,00000362207958336747 ; 0,00000384612574316339 ; -7,2 ; 5F4FDf83d9fdCbeedBCeaD9d4E0eb9a9fDFcE204ebe97AEd50D76cE5acCe3F5B ; < AWx019o8y9t4yLxzf0OT8n2s49s7Vnh0kfSUG9n5LW49t0JWh1Md76S8wmbQr4F2 > > 4 // < PUTS 0,000117420084739682 ; quote ; 0,00000414900295918381 ; 0,00000406602290000014 ; 0,0204081632653061 ; 7,2 ; 0,0000040245328704083 ; 0,00000427347304795933 ; -1,1 ; 9764CbEb05DB4bce6Afb0E7f3af0c9bE5ced1969E7E4BAdAEAcBDCE9f2dECb68 ; < Y40H4QN5CIkWdtP06Nd4cvo6x8NI3AGEEwbhiMI54mec98at4kLx29pM4uS9vxc2 > > 5 // < PUTS 0,000125807233649659 ; quote ; 0,00000461000328798201 ; 0,00000451780322222237 ; 0,0204081632653061 ; 2,9 ; 0,00000447170318934255 ; 0,00000474830338662147 ; 8,3 ; 7061E37F946AeACCcb59ffE41ad4f1ff89c3D6DD0af6beeD2C960AD1D3cebD0d ; < o9t4Pey9c7914Ln2jy6rtq38iYw0RAC9j93T5k62297uWvj52Zrd0AEKi6gR0n1M > > 6 // < PUTS 0,000134194382559637 ; quote ; 0,00000512222587553557 ; 0,00000501978135802486 ; 0,0204081632653061 ; -9,4 ; 0,0000049685590992695 ; 0,00000527589265180163 ; -9,7 ; dA9B2ee469d1bbf4BfC7eeCABaa9cBc13E6bB12Adab680EF9BE8dd38deBfecAe ; < L5RyBMiH6rdWosmszjVqP1WKHK2Zk9Aeje9jEDdkT29ibuOLkr07JECAlOHfju5S > > 7 // < PUTS 0,000142581531469614 ; quote ; 0,00000569136208392841 ; 0,00000557753484224984 ; 0,0204081632653061 ; -6,3 ; 0,00000552062122141056 ; 0,00000586210294644626 ; -2,4 ; 89dedbDbFC29Be1cC0886DEbc87a1eCeECeeaCBEFCb78FA8a83cBC3eFf5c88b6 ; < sSqS2HhFIV02r99neeF2y96fo7JWc715lAxO3FHT4c8vYw1uL6D1Woq9s5uGkS76 > > 8 // < PUTS 0,000150968680379591 ; quote ; 0,00000632373564880934 ; 0,00000619726093583315 ; 0,0204081632653061 ; -2,3 ; 0,00000613402357934506 ; 0,00000651344771827362 ; 9,4 ; 2CAFAffBef6eeF9e809A5ECc7ec0A200560fe0ca3f7b6F43efb680A7D3fDAdDa ; < Ppx80aZ2h6Ca2d15Zm4tV882O9a37f0jMsVSy1tDp8mWir3vkY0Ns9yzcl9IR473 > > 9 // < PUTS 0,000159355829289569 ; quote ; 0,00000702637294312149 ; 0,00000688584548425906 ; 0,0204081632653061 ; -1,3 ; 0,00000681558175482784 ; 0,00000723716413141513 ; 5 ; AEf9E63BaCad9cf3DE0f0Fa38AD2e6CdF79cc5344DCaf4AcaafF6c7eda36be6a ; < LjEDJydql57K2VUxd2uTgX0LB8W5ykX6bd4hAw687O9hVU0ccIfPhyYfnXl3ZA1U > > 10 // < PUTS 0,000167742978199546 ; quote ; 0,00000780708104791276 ; 0,00000765093942695451 ; 0,0204081632653061 ; -3,7 ; 0,00000757286861647538 ; 0,00000804129347935015 ; 4,3 ; EfCD5dcBcE9ADaC5E1aee20bCdf57AfCaafdbFF242bCAdb2CA64fAAEcC58a81C ; < jv6t2wvYE2201OKLTNjIITN4c9f7g4GHBl6RqIyQ5mp2dklszPjk9E0Zby2a7PoN > > 11 // < PUTS 0,000176130127109523 ; quote ; 0,00000702637294312149 ; 0,00000688584548425906 ; 0,0204081632653061 ; -0,5 ; 0,00000681558175482784 ; 0,00000723716413141513 ; 3,9 ; c9a1Fd4aCeC6D98d9Dfdf829aae8a2BfA321eC67D89DD3baf2edaaEB5Ed0DbB7 ; < 967PnwGtlu2KLg71k2Ic4QkI8RCrRBchyw1SD5KWLqYDZJEa51EO31eF5hJe8ijC > > 12 // < PUTS 0,0001845172760195 ; quote ; 0,00000632373564880934 ; 0,00000619726093583315 ; 0,0204081632653061 ; 8,3 ; 0,00000613402357934506 ; 0,00000651344771827362 ; 1,5 ; AAD5cFBdeE0f3dfadaEf02ECcFFC50FDdBc44B5A7Ea32b4DAd3dcaF2eFd9cea8 ; < hFOA0wX38582YE00sr2af1thR3MZBC7qr74ozIGvyKzbBj92rP9rO3a8LK7s99mu > > 13 // < PUTS 0,000192904424929478 ; quote ; 0,00000569136208392841 ; 0,00000557753484224984 ; 0,0204081632653061 ; -0,6 ; 0,00000552062122141056 ; 0,00000586210294644626 ; 1,6 ; eaED0B5e9735e1DFCeBBe7CB68cf30fD9450e717dCBe9cEfF5E0eab7626E5DA7 ; < Z1Ap7401jdkEyB1UU2t9XSc1aZxg2BosCAQ1XVk1bHJAkI05OERS1Ag4G8p91Qk2 > > 14 // < PUTS 0,000201291573839455 ; quote ; 0,00000512222587553557 ; 0,00000501978135802486 ; 0,0204081632653061 ; -0,6 ; 0,0000049685590992695 ; 0,00000527589265180163 ; 6,8 ; De520ddae3CEEcBe6BEDad2AeA7fCE6cBA5cEB13B9bd82047bdbdC8DCdaCf0bf ; < bjTkx8qPtgmz4AqSOpOyxaGzbzv3M970WVIbgoovU3ajUI3y15kVSt4VwUU3Z7L2 > > 15 // < PUTS 0,000209678722749432 ; quote ; 0,00000461000328798201 ; 0,00000451780322222237 ; 0,0204081632653061 ; -9,3 ; 0,00000447170318934255 ; 0,00000474830338662147 ; -4,5 ; 1d7B8DCDa9a0dACcFBDe6bfF1aD7B3F1ecDEcAbc7AeDAD5CCcEd4dA082cCdDBB ; < Ex326I15q5A8Gh34zDWlHJ6e336iSrZ4M0709lsYzURcr87G0SqaoDN6x2E109pq > > 16 // < PUTS 0,00021806587165941 ; quote ; 0,00000414900295918381 ; 0,00000406602290000014 ; 0,0204081632653061 ; 5,9 ; 0,0000040245328704083 ; 0,00000427347304795933 ; -1,3 ; 9cC5eA0d85B3a40e2E76DBDbeEfB92abBc65c4a3bbbBEaC6aCE7aEd89f5ecEaB ; < FZ16XqNQ3V797WJZfxn0Yw4m52i09Rls81e4hNilg28cG4r1JAbWKF9Y4cW81vtu > > 17 // < PUTS 0,000226453020569387 ; quote ; 0,00000373410266326543 ; 0,00000365942061000012 ; 0,0204081632653061 ; 9 ; 0,00000362207958336747 ; 0,00000384612574316339 ; 0,4 ; 2F32a1AadC40Ca4868ABeeDaEFDBFb5D7E0BbEDAE5BAEfCcB8Dd80efe8e4E9db ; < XzupzvqkQC59B3gfNT36KKwI3O7unft8MSLdo7TMW3Rr60e85RiLaa55y9S5c7H4 > > 18 // < PUTS 0,000234840169479364 ; quote ; 0,00000336069239693888 ; 0,0000032934785490001 ; 0,0204081632653061 ; -9,2 ; 0,00000325987162503071 ; 0,00000346151316884704 ; 9,7 ; Ca7EeDa4Abd8ED7Bc1FfedcEAE4c0e0460B8A699aFbE4ddAd1Adb95BD776AD5a ; < z3P7P9D7oeMd71cZ0q21iz9TIg2Z62SI34MN0mLRlJvlXZrj3A7WzRE37ocC1V35 > > 19 // < PUTS 0,000243227318389341 ; quote ; 0,000003024623157245 ; 0,0000029641306941001 ; 0,0204081632653061 ; 1,2 ; 0,00000293388446252765 ; 0,00000311536185196235 ; 1,2 ; dEffbCBbeb817Ce1bCeAbc7fA8C10aeb63ACeda1F6eEAd33C37FDeBEf0dBbbAc ; < i4i49s6FjcIQg2qY18xuwIvtEAMCxk3d05sZaSHB7I9H9Qp3OC1Y85GXl9CnGYSZ > > 20 // < PUTS 0,000251614467299319 ; quote ; 0,00000272216084152049 ; 0,00000266771762469008 ; 0,0204081632653061 ; 6,9 ; 0,00000264049601627488 ; 0,00000280382566676611 ; 2,8 ; 3d3F9B12fc4eaE69Dae8eAd7eAaF1d7bBDA4AcD2ebCc3FAb42b1e64aAcAF7A5a ; < nBM7JKu8kT5ri49GtO4Dg2bWI1fl34ZgNf465GePvYO28w4YGM6t4jogbqY5mei0 > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000841893142589006 ; quote ; 0,00000565083726300986 ; 0,00000553782051774967 ; 0,0204081632653061 ; -8,3 ; 0,00000545305795880452 ; 0,00000584861656721521 ; 6,2 ; 0bccFbBdEB3D9fFE5357Da48bCeA1cbACFfd2eae7Be8FfEEa5cDfBCA2E02cD5A ; < Dpu83IF6rPwvIawjLh1HV6jzt94CiPzDaSm7u7HIb498YmrEDY66vYCmX534el0v > > 1 // < CALLS 0,0000926082456847907 ; quote ; 0,00000627870807001095 ; 0,00000615313390861073 ; 0,0204081632653061 ; -3,8 ; 0,00000605895328756057 ; 0,00000649846285246134 ; 5,3 ; BbEAeC6cb29609E1Ea5e29DE3Fdd68CEE0a03bd2E0BbadFeDe2ED3CdafBAD8A9 ; < CPAz5T3modml94c38PZc04e7nFv4Wt41g43BE9n557HJLj2zhnMow1xlm3Ij3XGz > > 2 // < CALLS 0,000101027177110681 ; quote ; 0,00000697634230001218 ; 0,00000683681545401194 ; 0,0204081632653061 ; 9,7 ; 0,00000673217031951176 ; 0,00000722051428051261 ; -0,7 ; Bdd87AEBaFebFed6EcDDbC586C4dCDEAaA0AB4eDFCa7CeCbFb1b3cf3fEBB8bDb ; < 1xUaA1kS6objbU8Ll9EV84K91YoLZH2R5ba5w57C5ZDkC445aq5chtF79GX0qZAR > > 3 // < CALLS 0,000109446108536571 ; quote ; 0,00000775149144445797 ; 0,00000759646161556881 ; 0,0204081632653061 ; 8,2 ; 0,00000748018924390194 ; 0,000008022793645014 ; 7,8 ; ddEa1FbB6bef6cC3C8960DA32ee3Cec8D1ea5Ab5EFE87D6Ab2ae6C3256fee9dC ; < d81j2j83WwU8314FP136sPYP62lrkJ0a421sgHa7Cg6qtTG5S1dN71e50VrkBXVM > > 4 // < CALLS 0,000117865039962461 ; quote ; 0,00000861276827161998 ; 0,00000844051290618758 ; 0,0204081632653061 ; -5,3 ; 0,00000831132138211328 ; 0,00000891421516112668 ; -8 ; c956DD0DC1CFb38Ac04C34Adfd69eBeA6929BbcfEddBef1e18FaF0A0AFECEDee ; < K3yjeFCiO0rH9C9Ti97y6WLrnIQ39phut8mwlF2252wrbKV3Mtusz0ihE6d9y5C4 > > 5 // < CALLS 0,000126283971388351 ; quote ; 0,00000956974252402219 ; 0,00000937834767354175 ; 0,0204081632653061 ; 7,5 ; 0,00000923480153568141 ; 0,00000990468351236297 ; 5,6 ; 9106EC9453E6EDBbEfFe0DB680DFd30e7843aD2E5fcFEAAfE72C92Bee2A85bEc ; < 1D9D6Idrj1vbR0Ylog1132jP50AUAZrQZBw9gKGupA1wiesSEpFbYaHD2n0sq69H > > 6 // < CALLS 0,000134702902814241 ; quote ; 0,0000106330472489136 ; 0,0000104203863039353 ; 0,0204081632653061 ; 4,5 ; 0,0000102608905952016 ; 0,0000110052039026255 ; 0,1 ; 20C9d69aEf03aeCeEEDffAcfD4FbeB827FbF2FdEfFf0CdCa8C40fd9ddC2d8ebE ; < xTUyxH2C38J3Dv8Rxn32xrxPPNlxwQxw7xRg5uzo65JteV0XPVE9E8xN3NU2e9J9 > > 7 // < CALLS 0,000143121834240131 ; quote ; 0,0000118144969432373 ; 0,0000115782070043725 ; 0,0204081632653061 ; -2,1 ; 0,000011400989550224 ; 0,0000122280043362506 ; -6 ; 9DA9aafECfBc32bDf78B3e8dBFf1F9Fc0a9A88EA2FAFcccde96E7feCB3Cc9A47 ; < 49276i4ej9meMlonOG1N5b5yy75Sys7jbndv1gG1Fr6Gv6Au97b4fWA6r44394vk > > 8 // < CALLS 0,000151540765666021 ; quote ; 0,0000131272188258192 ; 0,0000128646744493028 ; 0,0204081632653061 ; 7,6 ; 0,0000126677661669155 ; 0,0000135866714847229 ; -1,8 ; 49Bba325Afba37dae5763DaBdEBE1FD3f2F70FeA865dF7fB2b9aeccDE6bcC0dd ; < 7MNFLagWOaugAY04LX3wJx5kMNOlP3oxtxwUAg3Gs15wtsgwuAZe5X0c4A1d04TU > > 9 // < CALLS 0,000159959697091911 ; quote ; 0,0000145857986953547 ; 0,0000142940827214476 ; 0,0204081632653061 ; -5,2 ; 0,0000140752957410172 ; 0,0000150963016496921 ; -2,5 ; CDCF125BBd448F17a17bC6cD362Cae64f3ebcaFF8fa88ECa6Ed7caAF9E6C7c14 ; < 14Ks2n1A92U9tks6tAMb69M6Uj6gkQWU4hvCZ6p4515RvaeRxN3W4NBK4lpHhhPr > > 10 // < CALLS 0,000168378628517801 ; quote ; 0,0000162064429948385 ; 0,0000158823141349417 ; 0,0204081632653061 ; 3,7 ; 0,0000156392174900192 ; 0,0000167736684996578 ; 7,5 ; 61da586cE3a4e1B60AeCFc5FeefeebBfDacAbF7b9F92b293BdDCc3caAf3e10Ad ; < 7CblPNDV61eE2fND3y7Mo88Y8N86dDJqyhm6hydi0JkpZm2kVzVjssa5TDbQ13c6 > > 11 // < CALLS 0,000176797559943691 ; quote ; 0,0000145857986953547 ; 0,0000142940827214476 ; 0,0204081632653061 ; -3,8 ; 0,0000140752957410172 ; 0,0000150963016496921 ; 9,5 ; Ae3aDc84fcbf56aa2E9677C90F95c9ce7CBe4B2Fc7Efb38A35F1BfCEeEfe4Ef9 ; < u3ttuUx0OL0zqSbl6yzIFT56xTDVT0ir6Z09G6oA3mElnzFzuz1h6x4xqinGj2o5 > > 12 // < CALLS 0,000185216491369581 ; quote ; 0,0000131272188258192 ; 0,0000128646744493028 ; 0,0204081632653061 ; -9,8 ; 0,0000126677661669155 ; 0,0000135866714847229 ; 0,1 ; 83cfdFC8A6F4daD5bAebA75A4F4fB7FFFEf8efeF3e0eFA84cD6f2F84aabD2af7 ; < mgGo9F82Tmj1jG4g81B414P2XQ3duud80AA636ByMw8VJS64k3F6hc0cBti9C6J7 > > 13 // < CALLS 0,000193635422795471 ; quote ; 0,0000118144969432373 ; 0,0000115782070043725 ; 0,0204081632653061 ; -6 ; 0,000011400989550224 ; 0,0000122280043362506 ; -6,5 ; BCF5bf9bF0dBfb6Bca8Dd2BfeDE758D8DFaaEF791e3B6cd3E5bDF2fEacaaf5CA ; < HgoWb05pbXRtls8HU3nnPP80OYEBID5yUqjxpunGskLRKfR7rLRQg1uSv0A93M4z > > 14 // < CALLS 0,000202054354221361 ; quote ; 0,0000106330472489136 ; 0,0000104203863039353 ; 0,0204081632653061 ; 1,2 ; 0,0000102608905952016 ; 0,0000110052039026255 ; -2,3 ; 0A6FeFEb9C9715cDAEc991e53A9e4ECFEf86DBEFe1C2d2F4E87bD9bC0b05A50c ; < 2Xpdt6n438Ykdix6q30Am69k5EM41j7Wd2d3iKB1Qb30G7cd9ExB49cNQ3rI7SSU > > 15 // < CALLS 0,000210473285647251 ; quote ; 0,00000956974252402219 ; 0,00000937834767354175 ; 0,0204081632653061 ; 1,6 ; 0,00000923480153568141 ; 0,00000990468351236297 ; 1,7 ; 5ABc15eC2C5bbEBAEa4f9edc68Df56Ff8aAdcAEFB59BeBaBE331C0ebcd2eeB2F ; < 2BTg0zc9q5IcWKXK35tVxKYKs578boairxWPNFFuJsyHV2e0suqe1vV3Ioz39W0Y > > 16 // < CALLS 0,000218892217073142 ; quote ; 0,00000861276827161998 ; 0,00000844051290618758 ; 0,0204081632653061 ; 9,4 ; 0,00000831132138211328 ; 0,00000891421516112668 ; 1,2 ; AdaDbD5CBaBCDA30aCcfdFCF4a852cE8fb38EeD60Edec6fFe37FDFF3d8C9E2B8 ; < i6IMcGE8kL3Gg05W23O2R7w9f8m613w9T0F0333zBMBBjxfDxJ1w2yd7c8RYlvRd > > 17 // < CALLS 0,000227311148499032 ; quote ; 0,00000775149144445797 ; 0,00000759646161556881 ; 0,0204081632653061 ; -2,7 ; 0,00000748018924390194 ; 0,000008022793645014 ; -1,5 ; CEcfb5Ca76E2BAFfBbbef4F5Cfac3805d84EF8C686a96e8D8EdEdB17FBEb61BE ; < U4Xo63wx5000KVt303tYC1M6FSm273DKZ2me0s0N6b08a3d32op8uq0K22QCnBrQ > > 18 // < CALLS 0,000235730079924922 ; quote ; 0,00000697634230001218 ; 0,00000683681545401194 ; 0,0204081632653061 ; 8,8 ; 0,00000673217031951176 ; 0,00000722051428051261 ; -4,1 ; db8FDa2BAd6b0cB2eeDcd398a758becDBFDb6eD331CFBEF5EaD3BEcc9AC7AD5a ; < JTjgV6Q8Rb9Ngl9Y6P9KhSyQygTQDi8KAHb7p971QCWKstH5CtU9obPkgHXn6U3F > > 19 // < CALLS 0,000244149011350812 ; quote ; 0,00000627870807001095 ; 0,00000615313390861073 ; 0,0204081632653061 ; 7,8 ; 0,00000605895328756057 ; 0,00000649846285246134 ; 7 ; 78B22CabA8b272B2baf808eADDD3fAD6d80bac63ed8344FafADbBfEfC6fdfe44 ; < qNd076418W3864IdFUjxOf2Zm63llZBu7lKgI46lNHm1rrW2qO71gtYSbzS1h1vS > > 20 // < CALLS 0,000252567942776702 ; quote ; 0,00000565083726300986 ; 0,00000553782051774967 ; 0,0204081632653061 ; 0 ; 0,00000545305795880452 ; 0,00000584861656721521 ; 9,4 ; f33eF9A55865f8E8bEd76CA9EbDbF2bfdba4c764CaaD92bfde2F81f5b60AaDa7 ; < ZT1LaNj0K0zP478h4zj2A37j7sufwrp0E1h5mY1U7OuKqPnao25kjLU3ubrQ6gg7 > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000841893142589006 ; quote ; 0,00000565083726300986 ; 0,00000553782051774967 ; 0,0204081632653061 ; 0,9 ; 0,00000545305795880452 ; 0,00000584861656721521 ; 8,6 ; eacEE93ffb0c3A8FBc93BFF9DaEf6fe8dbDc6dFF70aEDdD98F9c1De2E5cf8e0b ; < 01S9DiK1XD1gql5kRd0xXAPTRGdQj9K09yDUlTFQWYsJnd7IbGdCj3o2Zay9r6M1 > > 1 // < PUTS 0,0000926082456847907 ; quote ; 0,00000627870807001095 ; 0,00000615313390861073 ; 0,0204081632653061 ; 5,8 ; 0,00000605895328756057 ; 0,00000649846285246134 ; 3,5 ; CbdcA3eD8A1BE5b6C3604A44D0CD16C0bdD0E2C1f59b5b3e36F8eca0CefF8ACf ; < N7mrkuS61608lNgSSmTU3V223eRGz10OC4d0Z8B0Q83fQ4ak7kcrxg57Atq0gOcc > > 2 // < PUTS 0,000101027177110681 ; quote ; 0,00000697634230001218 ; 0,00000683681545401194 ; 0,0204081632653061 ; -5,2 ; 0,00000673217031951176 ; 0,00000722051428051261 ; -7,6 ; Cd276FFFA96FaEe9fC86DbAbEbBc2286afF98ba4fbF0ddFfFCBFDbE65D6bafF5 ; < A58n3b5Ro3ZE18j7HtP5ZAiT5K5q7DL1T9jg9pYZ704Jy5T8B9bZY6LqAq2JebLA > > 3 // < PUTS 0,000109446108536571 ; quote ; 0,00000775149144445797 ; 0,00000759646161556881 ; 0,0204081632653061 ; -7 ; 0,00000748018924390194 ; 0,000008022793645014 ; -6,1 ; DBABb3c1D1E34a1b0Df4DDDAbcBe1cBDEb0C0afF0DF2cA3FDAcfb2eCA7fB1cDd ; < K3TN3FzWN0I5LickoA7f3ZF0N6OuOG6luVJpZm6o8noJ7lI1s4Otgx2BbL5FQWq8 > > 4 // < PUTS 0,000117865039962461 ; quote ; 0,00000861276827161998 ; 0,00000844051290618758 ; 0,0204081632653061 ; -0,9 ; 0,00000831132138211328 ; 0,00000891421516112668 ; 7,1 ; 5C84fE32daDFE7B106DfaADbeCAd9eaDdbcf2a3EC5fDd6fdbD6c7AdCC8c7f3d7 ; < 4X6NhS65guj634PP1G4Xx4X7por6EAuZNt3BLq5ffHwWlYT1j4Y43D9jwK7x9BUR > > 5 // < PUTS 0,000126283971388351 ; quote ; 0,00000956974252402219 ; 0,00000937834767354175 ; 0,0204081632653061 ; 5,7 ; 0,00000923480153568141 ; 0,00000990468351236297 ; -4,4 ; 63EcDAFC42bd7Fff0DA67021acaeEf9eA3Dd492E8EAC1cDEddA02bfdCC4Cccda ; < M3hF5n0Kzd9OKZK09N4rU495gKGiw7QX38T58u9Ed5XiethdtDBSeW7J2w8gQ1ii > > 6 // < PUTS 0,000134702902814241 ; quote ; 0,0000106330472489136 ; 0,0000104203863039353 ; 0,0204081632653061 ; 8,2 ; 0,0000102608905952016 ; 0,0000110052039026255 ; -0,9 ; 3e8dB5FceFBee7aA2DAaAcc212Df8bdb23cFefbAdEBDc0E30ce3C2E7BCDDFab3 ; < OpzX17nEqb47X2mc3ky9a0b0b3Sw3NYh6i6i7Y5g2CE56y9e682c8u0DOQrIQM5b > > 7 // < PUTS 0,000143121834240131 ; quote ; 0,0000118144969432373 ; 0,0000115782070043725 ; 0,0204081632653061 ; -0,5 ; 0,000011400989550224 ; 0,0000122280043362506 ; -1,7 ; f33AEa4C780Bb59dFD8DdEdCe013ba308CCbdC5f9C5fC00bDe4Babda6eacdfbe ; < r40DVJIvu50vyqdezzrYdcJyuBfHAZE8OrQU22GW2Q626LJ4L2687w684bIUHF1a > > 8 // < PUTS 0,000151540765666021 ; quote ; 0,0000131272188258192 ; 0,0000128646744493028 ; 0,0204081632653061 ; 5,5 ; 0,0000126677661669155 ; 0,0000135866714847229 ; -1,7 ; Fd1E7d4ECebA3A7D0a4AFDa62eea1a6fCA6Fef9cA0CbeE8C7396ebFFAE49cDE5 ; < DtBInT1k5u1ln188ZDF3b3PdC465AHEgFe4A7hRXL3k3p6x2dCXUHEW68flt6OhL > > 9 // < PUTS 0,000159959697091911 ; quote ; 0,0000145857986953547 ; 0,0000142940827214476 ; 0,0204081632653061 ; -2,9 ; 0,0000140752957410172 ; 0,0000150963016496921 ; -6,6 ; 1fa2a1da4c7bd7DbC0FdA74D3f1Fb341AABb08A0BedF9aE51aeaDAfAd5fd5c1d ; < a6B2kDp5L8x4GVZRU0Z3xP1xO4s4dAf5AI7y0lU6BHaVu3lw3344NLLqAuWBG748 > > 10 // < PUTS 0,000168378628517801 ; quote ; 0,0000162064429948385 ; 0,0000158823141349417 ; 0,0204081632653061 ; -7,8 ; 0,0000156392174900192 ; 0,0000167736684996578 ; -7,5 ; C2f3db76cBfC7CE3Da2798eCD0FC2aa11cbC1aCbfcEb1a5cBa7c48Eb240DCFA2 ; < wx4x8gj197Rke1512x9e7pu3W2xp8RE1x2wvYk5hoDlASYdLA0RkU944rdN7s52V > > 11 // < PUTS 0,000176797559943691 ; quote ; 0,0000145857986953547 ; 0,0000142940827214476 ; 0,0204081632653061 ; -2,1 ; 0,0000140752957410172 ; 0,0000150963016496921 ; 5,1 ; BCda51E6Ffd223fbDd9A8E3d9E12125Ef1C7fea16d5C3cAdC23BBEf8dCfaeFab ; < p43Rsl5MYJH0fp86Kn6K0EwU06s8j4Hx0N8fw9iG5r665U1OOxgd26eOrAeB4Pak > > 12 // < PUTS 0,000185216491369581 ; quote ; 0,0000131272188258192 ; 0,0000128646744493028 ; 0,0204081632653061 ; 0,1 ; 0,0000126677661669155 ; 0,0000135866714847229 ; -3,5 ; 5BAedF2EbadDfDb2bAe3f6CDbBBB969C61D18FdeC9C3468F32a29AB48Cfa77C4 ; < OJmknxxODv994xs411EaS1YT5Y1bH0BcHAk0gR7UXS9813C87LmVACXddK35HKKt > > 13 // < PUTS 0,000193635422795471 ; quote ; 0,0000118144969432373 ; 0,0000115782070043725 ; 0,0204081632653061 ; 0,7 ; 0,000011400989550224 ; 0,0000122280043362506 ; 6 ; FAAFA8De2A1eD7ab3edcDf911eBad3Be70aBE5EfEFFFA1bDA8Ae27dbaB7Fcfff ; < hP33E5tt8V27043xGonClsJqoOWngQ2l0P40IhW23esJT063fYhM8hE37mnSclzF > > 14 // < PUTS 0,000202054354221361 ; quote ; 0,0000106330472489136 ; 0,0000104203863039353 ; 0,0204081632653061 ; -6,4 ; 0,0000102608905952016 ; 0,0000110052039026255 ; -6,1 ; C00B3e0CcA4BEd333AEEbC9DdedDDCdBEF3D2D363dbfA51DCAfEBAAB3AD0136B ; < 6V0uKR1XzZhmzpj8ke3g03svZCZsk9p5tg0Q68jWXRH55oToZ8E02xDJZK4E3Shb > > 15 // < PUTS 0,000210473285647251 ; quote ; 0,00000956974252402219 ; 0,00000937834767354175 ; 0,0204081632653061 ; -2,9 ; 0,00000923480153568141 ; 0,00000990468351236297 ; 1,5 ; 9AEDD14c3AfE7eDfd4A44Ecc07367D1EcFcEFA3C0Ba0Bbf5fcd1DB09bBEBe2AE ; < z20YA0dFqQ3SA5KnxU8FhQA1UD19kj6tPra8d8KLRT7o5s48S8724T2o740uK88E > > 16 // < PUTS 0,000218892217073142 ; quote ; 0,00000861276827161998 ; 0,00000844051290618758 ; 0,0204081632653061 ; -8,5 ; 0,00000831132138211328 ; 0,00000891421516112668 ; 3,6 ; C5fF3bbdBefbFADFE7CA0cF8fCBecC9f8b7dBdFaFEaffd70eF78cd6BaaDDB1CA ; < DmsO02kqdKLnQuG266dCnjRF4Fzx3VvtI6dU7Grz5E6QasPd54AHPBN28e4614J4 > > 17 // < PUTS 0,000227311148499032 ; quote ; 0,00000775149144445797 ; 0,00000759646161556881 ; 0,0204081632653061 ; -2 ; 0,00000748018924390194 ; 0,000008022793645014 ; 5,4 ; D8Af8eFAea7A9FCCedafead8fac9e1Aea1d2cEB75AAeF6BaDaF59d3dFb0FbCde ; < 7n2db7pc8rW8S8FFYN8mjF3XPj6k93MGqTxrqcM3lSe1D7E3or47cvVtKjsxPmdH > > 18 // < PUTS 0,000235730079924922 ; quote ; 0,00000697634230001218 ; 0,00000683681545401194 ; 0,0204081632653061 ; 5,4 ; 0,00000673217031951176 ; 0,00000722051428051261 ; -6,9 ; 70D2EDFaaAeA8eFDE94DEdb548BC2De3AF4a0Ac1f77FC6bDFbAEDcE313A4aacD ; < j610E71p4Ou77aS90624E7q2P4QJIARZcT614QzT8xrcK5BJ06zfd388iI7bs28G > > 19 // < PUTS 0,000244149011350812 ; quote ; 0,00000627870807001095 ; 0,00000615313390861073 ; 0,0204081632653061 ; -4,9 ; 0,00000605895328756057 ; 0,00000649846285246134 ; -0,8 ; Aa7fe0Aa2adbfCdB0C9ACD39f98bf2E9caeea9AAaBC38123Fb4F6C44DfEdE21E ; < lhEC84fXoFRFNKuq2I97VbVnEJJ0zUXs8za2Hv8QZLI13W55zGpRGi06Cj2e90eG > > 20 // < PUTS 0,000252567942776702 ; quote ; 0,00000565083726300986 ; 0,00000553782051774967 ; 0,0204081632653061 ; 3,4 ; 0,00000545305795880452 ; 0,00000584861656721521 ; -5,7 ; C6A89CFbDBc4Da2e307FACDEeA4F3ddc9FcAc2BB08Edefee9BBeFc6Ea9A1ddc6 ; < 9Uz7uIa72353W8lO24310yPTkhUKhsnqu4mfsyiYmIOL1eC3pu55Tip9q5VbUgPr > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000853271707685837 ; quote ; 0,0000121361866997684 ; 0,000011893462965773 ; 0,0204081632653061 ; 6,9 ; 0,0000116871477918769 ; 0,0000125852256076598 ; 1,1 ; 0aBe9CAD8e3C70768f500FCc494eb238ACee0CF4BcBDCDB5A5e8cDADCAa9Ab22 ; < f80UHD7BlFW7LRmUTPm53M5k7hRl9DUWIG5c2Qbyt2b054yl1D143eggt16790Oh > > 1 // < CALLS 0,0000938598878454421 ; quote ; 0,0000134846518886315 ; 0,0000132149588508589 ; 0,0204081632653061 ; 1,2 ; 0,0000129857197687521 ; 0,0000139835840085109 ; 0,8 ; 0Aae3cE4Deb50DFee9ECf563a5dedcDA3C50FEDCafBa2659ae5e4CC40dfF1848 ; < 0GDR17155H7hamaarpo5cpa00jD5L6677u9kh4EYHvZVRUAkdO88g7V98OpGoT1F > > 2 // < CALLS 0,000102392604922301 ; quote ; 0,0000149829465429239 ; 0,0000146832876120654 ; 0,0204081632653061 ; -9,5 ; 0,0000144285775208357 ; 0,0000155373155650121 ; 6,7 ; ad44eBbc46AFBAEAAEb633237fbFFDe9dDDEd03cc9bbC30c3AA0595BBCddaAEf ; < 29fm6LG2HZyh5d0SanRtW7h87QV51ALo4N9lz9FO4yUoDsdI1zCw4Uuvtg6g95SX > > 3 // < CALLS 0,000110925321999159 ; quote ; 0,0000166477183810266 ; 0,000016314764013406 ; 0,0204081632653061 ; -3,6 ; 0,0000160317528009286 ; 0,0000172636839611245 ; -1,2 ; f2dEAf5aEdffabAEEcF64cE57c1fcb3E5ceCDc6389AeB3ECAf91349eBdEaEEda ; < 5CE7WbWL180bF11By9Tw94RyBAbh1tKWm2OOoZU7t18x5SncL5y9K2r2g43V3lmK > > 4 // < CALLS 0,000119458039076017 ; quote ; 0,0000184974648678073 ; 0,0000181275155704511 ; 0,0204081632653061 ; 0,1 ; 0,0000178130586676984 ; 0,0000191818710679161 ; 5,9 ; 4dB2fF45ff7fcfecFd74aDB6ffD4EF5CE5DFAaA59AbBCadd6cA9Cdcd97bB91dc ; < 4xMnTYD417A676GmI4h1sls80tfyqVz45Tp3PSONCPu36x4a8TxU3d0Y5B6nJV96 > > 5 // < CALLS 0,000127990756152876 ; quote ; 0,0000205527387420081 ; 0,000020141683967168 ; 0,0204081632653061 ; -9 ; 0,0000197922874085538 ; 0,0000213131900754624 ; 5,8 ; 9A0aBefCFc4eA3Ce0CF5a0b3BdA5e41bead8C5161ecA4dd8aaBA50DF73F2b85B ; < WUsgTIaa7130Sw5Y0seySWboZP1gLym7WB3bzufm5MkNE9H74LyaT5qU6tF15qYA > > 6 // < CALLS 0,000136523473229734 ; quote ; 0,000022836376380009 ; 0,0000223796488524088 ; 0,0204081632653061 ; 8,5 ; 0,0000219914304539487 ; 0,0000236813223060693 ; -4,6 ; D2AcabB2eaaac03f79aEaB4C97BAEABA9b1CEdeBC473C4634bdec9C7380d05b2 ; < Bl3wj5nY2G0IqAhfYhRXjd645X2PxC254x4e5wKc73ryrWNc13g96deOb2mj4hVj > > 7 // < CALLS 0,000145056190306592 ; quote ; 0,0000253737515333433 ; 0,0000248662765026765 ; 0,0204081632653061 ; -5,9 ; 0,0000244349227266096 ; 0,000026312580340077 ; 4,9 ; Bf57bA7ecACdfaDADa5cBFd63BD42Ea6bbc2DCACBB81d29Bab35AdF2Ff5EdcBf ; < Dkft7S8NR6x4dHMeCmVxyeb45qR6QP78M4468Nx9QmO9fOTjBA1GM51hHJQLfI81 > > 8 // < CALLS 0,000153588907383451 ; quote ; 0,0000281930572592703 ; 0,0000276291961140849 ; 0,0204081632653061 ; -1,5 ; 0,0000271499141406773 ; 0,0000292362003778633 ; -9,8 ; D8CD82C51ff03EA2bdeAF7BfD49CCAA92b7dAcCEFba749EB6EA32CE72df3D41c ; < v3P2D09Ye15nwPZ0XBsT0eOzlKuLwzVMBSGBm9jONnAXti5763j3XTY6j0bR4006 > > 9 // < CALLS 0,000162121624460309 ; quote ; 0,000031325619176967 ; 0,0000306991067934277 ; 0,0204081632653061 ; -7 ; 0,0000301665712674193 ; 0,0000324846670865148 ; -6,9 ; B8eFde4b6EEebDf7cC52eC6bA54c25fFABF41d58bCafcdfEA97BCE6AFfbfe2bC ; < Q6d19q7JNCIeF7kqz77A99niKfnDJrHz46omB4F136PC8Du5Z14M76pHXSnQgqcL > > 10 // < CALLS 0,000170654341537167 ; quote ; 0,0000348062435299634 ; 0,0000341101186593641 ; 0,0204081632653061 ; 7,6 ; 0,0000335184125193547 ; 0,000036094074540572 ; 3 ; BFE6fDc9D2f9ECF9EF7bea7fA0Bd8f2DAE49EaCaAf4eEc2F4Daf0A1540fb89a2 ; < G0TUUV5FRP1nRm1z0YRif7j1V14iFCC1vnpD3x4mI96N5Z5BP28wuh9V7eUfZsVu > > 11 // < CALLS 0,000179187058614026 ; quote ; 0,000031325619176967 ; 0,0000306991067934277 ; 0,0204081632653061 ; 7,3 ; 0,0000301665712674193 ; 0,0000324846670865148 ; -3,6 ; 907eABBaD9D78D9b9EbcE00dDdEdeCBbeeCCaF428dB39F1bebD105efAfDF80fc ; < of2xRii35Jdhi8TPV2j6TUM0P513B23vBIWi2SuLk827R5BklT0K5ITbl8c0cr8z > > 12 // < CALLS 0,000187719775690884 ; quote ; 0,0000281930572592703 ; 0,0000276291961140849 ; 0,0204081632653061 ; -8,5 ; 0,0000271499141406773 ; 0,0000292362003778633 ; -9,1 ; caFeebF73ebefCf8BbdfE5f2fFdb48D3d400358DAebC16bAFBbAEA0DfA7C6fC7 ; < V68o3R4Y09LEsv51cFBX17838He5l941LVQCwNF16H0K2zruK62K0G9C2818aeV4 > > 13 // < CALLS 0,000196252492767743 ; quote ; 0,0000253737515333433 ; 0,0000248662765026765 ; 0,0204081632653061 ; 6,2 ; 0,0000244349227266096 ; 0,000026312580340077 ; 7,4 ; Ef84cafBEa5Ebc1Fc1dda91F875C3AFcCc17a6f0defCf25c2cFc0eB2CdcF2C2F ; < 260SF0uwzCf90z9ce5Rd19QEL294y44mJmQmLB8hE9SI3nQ9350OrURGYs1l0rr9 > > 14 // < CALLS 0,000204785209844601 ; quote ; 0,000022836376380009 ; 0,0000223796488524088 ; 0,0204081632653061 ; 4,5 ; 0,0000219914304539487 ; 0,0000236813223060693 ; -5,5 ; 7AafFE96eAdEacc4acdF12FD79dcAd7C98ebC1c2aDE2bEB6caf5aCfABbA9F0CC ; < N9IRkdoZIWvO8s7K4P8Mf2Cc1WzvpP08dIYiRrO53zKrVV1HWYxf1F2XV93kY87U > > 15 // < CALLS 0,000213317926921459 ; quote ; 0,0000205527387420081 ; 0,000020141683967168 ; 0,0204081632653061 ; -8,5 ; 0,0000197922874085538 ; 0,0000213131900754624 ; -2,7 ; caDeD6bDAEC9efce72Ab1BFdeDdCfBcCcD13fAc229375ef3D7b5F6F9AAeDc1C9 ; < LmBS3YfuXVr55In1g66u0W9dc1IG4Eu5u50X2R8NuZ3U8gY70If272T5Vy2j57O4 > > 16 // < CALLS 0,000221850643998318 ; quote ; 0,0000184974648678073 ; 0,0000181275155704511 ; 0,0204081632653061 ; 9 ; 0,0000178130586676984 ; 0,0000191818710679161 ; 8,5 ; 2f65aDfCBfaA0CECbDcCDCDC80af2d9dCFB438E8f6B595E18138FAcDFdFE1fEf ; < GcMoUsOBER7EBda0Zr8jXwujBB838dILNe98a1c0Pme7udeGL5Mr0750WxKwz3K0 > > 17 // < CALLS 0,000230383361075176 ; quote ; 0,0000166477183810266 ; 0,000016314764013406 ; 0,0204081632653061 ; 3,2 ; 0,0000160317528009286 ; 0,0000172636839611245 ; 0,4 ; 8209eF3b5cef7C6CF58DAEd6C8DFDF8A1AB6623AFBbDee5bAEBbFee1aed170FC ; < 1eJIwHvu995j2lOTiqa17p38oZ4Dx8NKw3hAbGdasqFUSbjAGtGa7c0Osy357xtq > > 18 // < CALLS 0,000238916078152034 ; quote ; 0,0000149829465429239 ; 0,0000146832876120654 ; 0,0204081632653061 ; -2,5 ; 0,0000144285775208357 ; 0,0000155373155650121 ; -0,7 ; eF724C5a6FeBF46Dad6e4ae0ADddFbA8917d97cc6C8B6BC4CDA0F39Ba474f50D ; < 33PBZ4I5h0a6Gk4lNZ4aT2y50326FNa4V5qYWFm910mcZ9pr85mdW8k3uzwRIDtw > > 19 // < CALLS 0,000247448795228893 ; quote ; 0,0000134846518886315 ; 0,0000132149588508589 ; 0,0204081632653061 ; -0,5 ; 0,0000129857197687521 ; 0,0000139835840085109 ; 6,8 ; eDfCe790976FB176bdA9dC2B0F7a5c4f6CfC1Adb3Ad25fcB57e4F1c7acB2ddaB ; < X5ohW5O7601eW3POCGR8hdCQyQO9G6Ie98iSeiTL2GaQZplQPJ12BSBsWq056cKi > > 20 // < CALLS 0,000255981512305751 ; quote ; 0,0000121361866997684 ; 0,000011893462965773 ; 0,0204081632653061 ; -3,7 ; 0,0000116871477918769 ; 0,0000125852256076598 ; -4,2 ; d2eBA9bA9dED3fAc6cC67F2FaE8eDAeA3BaFC45C0eCc4DAf4cC8dbd1ceb2ACF6 ; < 9UGDxPto1crIori1ccm5hf7J2c8pue58vjAje9l8oIl8N32AWvsEfHkWCLpV0LwV > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000853271707685837 ; quote ; 0,0000121361866997684 ; 0,000011893462965773 ; 0,0204081632653061 ; 9,8 ; 0,0000116871477918769 ; 0,0000125852256076598 ; -7,3 ; 2dbFd3eDfFDa84c0BcC4D6FA0EDF36C5dBE60d7bceDBCD3418ba2BF837c52Cf3 ; < 2PL7J886TPp6p7SxU1fC91BB11HTyDL0cT391UZdFD9X9OS60lSt2h69l50Q4070 > > 1 // < PUTS 0,0000938598878454421 ; quote ; 0,0000134846518886315 ; 0,0000132149588508589 ; 0,0204081632653061 ; 7,7 ; 0,0000129857197687521 ; 0,0000139835840085109 ; 7,8 ; Cf8cd6feC0E0E3dCce7e8e298F6D5689e72cBF0Ce15ab6aEfE3ecADDAcdeD7DA ; < e3Yfm43Z5S37YY4Q7tmTRc7A1vC7dK0kRL4s26fy3835ja86Ij9Mc6FOZm8O0Y84 > > 2 // < PUTS 0,000102392604922301 ; quote ; 0,0000149829465429239 ; 0,0000146832876120654 ; 0,0204081632653061 ; -2,7 ; 0,0000144285775208357 ; 0,0000155373155650121 ; 0,4 ; FDB041AdC8215aCD6cFDcb525B2baD36A49d1Da9BfECb2D2a6b75DCC7DA09042 ; < d6wPVIE0bNRDgBO4x73Xnvqs2U7M391tNrX8F3pGe3Bku8J0e1Faibp9X7f9QN3K > > 3 // < PUTS 0,000110925321999159 ; quote ; 0,0000166477183810266 ; 0,000016314764013406 ; 0,0204081632653061 ; -2,8 ; 0,0000160317528009286 ; 0,0000172636839611245 ; -2,8 ; aae3EaCaAfE3eA960B6A5BfEA83eDCEdbf09f08bAceEEaFF4FE6df2eda7EE78B ; < 9jV7y79O2m50q7PGpqkQa4kf04GUAZ7Kz1z25oj9DyS1C2bT2n765fPNwa95X8c2 > > 4 // < PUTS 0,000119458039076017 ; quote ; 0,0000184974648678073 ; 0,0000181275155704511 ; 0,0204081632653061 ; -2,8 ; 0,0000178130586676984 ; 0,0000191818710679161 ; 0,7 ; bAA42BDebecBdbca12D6BFb26be544dE4fc659CdC6F0b7EFCc4F0D7bc1A27FBF ; < tLP0iY59EU8i96hi0NrPmSMe8caB98Cl9FJv6D96qoUcpA4Avyaz744B3W8R8Q3M > > 5 // < PUTS 0,000127990756152876 ; quote ; 0,0000205527387420081 ; 0,000020141683967168 ; 0,0204081632653061 ; -6 ; 0,0000197922874085538 ; 0,0000213131900754624 ; -8,3 ; b07dEFCbED9D26eca30ceC6EC2b8DBFaEfdB6090ECaEcc7C664f1dDfDb8AAf2e ; < OPQ8iz1V8wVS94o604xw1jq654pL8lN476cltx0zO8IB8QR6tsQP34r06BfvT7T1 > > 6 // < PUTS 0,000136523473229734 ; quote ; 0,000022836376380009 ; 0,0000223796488524088 ; 0,0204081632653061 ; 1,3 ; 0,0000219914304539487 ; 0,0000236813223060693 ; -9,5 ; CEA92FA1c5FbaAdBfA0EA3BD7CabfedFE1DBb3A98fE9abfb30c3CbFDb1effFE9 ; < iN0i2d35TX9UQVLPzhpKPe3kS43EgW86LqfV0k6QO2j8973kNHCcdK3HRT8L1GXb > > 7 // < PUTS 0,000145056190306592 ; quote ; 0,0000253737515333433 ; 0,0000248662765026765 ; 0,0204081632653061 ; 1,8 ; 0,0000244349227266096 ; 0,000026312580340077 ; 4,5 ; 0fEDbdeFCfFFB8D61Bdb2D3ffDceDE2132ea4efeE2fcbC5eCbfAc60ebbfddB5D ; < 7c12nv4yKvsw2BL3G7zI7nz894305nMhfWXFEC4BtxtLMbUu575Ym747CLTCt949 > > 8 // < PUTS 0,000153588907383451 ; quote ; 0,0000281930572592703 ; 0,0000276291961140849 ; 0,0204081632653061 ; 6,5 ; 0,0000271499141406773 ; 0,0000292362003778633 ; -3,5 ; dDeeBcc1Ff2C0fefd7bfFDcaA6Bcb5fefE3cfDE015CabF7D3Bb6bfEEAEB9EE01 ; < FMDJM06mZl8Ou10WD94m13zhHV24M5YaJ1VJOoL9c3c7euWKqV2f7De2LQKwNt6i > > 9 // < PUTS 0,000162121624460309 ; quote ; 0,000031325619176967 ; 0,0000306991067934277 ; 0,0204081632653061 ; 9,6 ; 0,0000301665712674193 ; 0,0000324846670865148 ; -5,7 ; cc5acDBe6FfAD2DCeEa7AeFbCe17dd68B99fBbfCBF6EBdd96ba7b7EEcFA350bB ; < 3fkT8qp58z0S4pR3jnAqCH1H7mnb2d4u8Ua7d9eQ327q8Xcu4s36xGh1u430Qtc4 > > 10 // < PUTS 0,000170654341537167 ; quote ; 0,0000348062435299634 ; 0,0000341101186593641 ; 0,0204081632653061 ; -7,3 ; 0,0000335184125193547 ; 0,000036094074540572 ; -8 ; DddbbDDaCFAdDbd4dB01E5Bc2e0E99Fbe3CEbC3C2143DdBeDabCE5Df9ebd1aae ; < 7ZxgCyuamOw06lcr2UUOLdj3ydXe7425scHMi0C1624Dr205G444P5J6YrX8A6i0 > > 11 // < PUTS 0,000179187058614026 ; quote ; 0,000031325619176967 ; 0,0000306991067934277 ; 0,0204081632653061 ; -9 ; 0,0000301665712674193 ; 0,0000324846670865148 ; -5,3 ; a40347eAc56fBD43Dec9C9dBb04DBEFA09ac170Bca5AdEcBAC0C8efDFb67aa93 ; < hZ9p5b4Ci33J5vBqpJ8w6kq0iaP7z3glmtp81NVw336vdmCl1g66gq5M0Sal9Ey6 > > 12 // < PUTS 0,000187719775690884 ; quote ; 0,0000281930572592703 ; 0,0000276291961140849 ; 0,0204081632653061 ; 4,4 ; 0,0000271499141406773 ; 0,0000292362003778633 ; 9,4 ; 7a0af9CBFBDF81f7d4DCCeBCd16Bb839FEBD38eEaAcFE4E1eAc9A8aD4F1dB9CE ; < Tqnm1c7B1h8njWB11En6jK2z72328Uo03CJSvo73cwUd0h9EJ18LuDX427BIa0mL > > 13 // < PUTS 0,000196252492767743 ; quote ; 0,0000253737515333433 ; 0,0000248662765026765 ; 0,0204081632653061 ; 6,1 ; 0,0000244349227266096 ; 0,000026312580340077 ; 4,7 ; F8BD52407A1eCBC7e28fAf5FA74dafcC3c1ea1eFDCF5dc5D33Bf1a326AC8cED4 ; < 5A0N01QpfLAfx819100co28n1i6mR4m883yTW4PTOZ0wf72hdng0p4D1ZZWsCYb9 > > 14 // < PUTS 0,000204785209844601 ; quote ; 0,000022836376380009 ; 0,0000223796488524088 ; 0,0204081632653061 ; 9,7 ; 0,0000219914304539487 ; 0,0000236813223060693 ; 4,6 ; BDDaf322C87Db547AdA1B9F3a25B95bfDeFff261CA6daC66D8Bde8BFEBBdBDed ; < kHKh7iS2r16kT4V0JWv9u2M66JOu6PUX7S3Z2rsc0fG4QwLB3c83HwIbaHcc9H40 > > 15 // < PUTS 0,000213317926921459 ; quote ; 0,0000205527387420081 ; 0,000020141683967168 ; 0,0204081632653061 ; -4,7 ; 0,0000197922874085538 ; 0,0000213131900754624 ; 9,8 ; 3aDbaeFC3BeADcfC4dC3A6800bFebf22aEf3ae5FDBF4B3ad9BBCfD0C0dD6cadC ; < 5619B02qFs5uo664pDP9qyl2M0cMCNI66jPWGE36iT2v2260HI3158yr7mDm7HTE > > 16 // < PUTS 0,000221850643998318 ; quote ; 0,0000184974648678073 ; 0,0000181275155704511 ; 0,0204081632653061 ; -7,2 ; 0,0000178130586676984 ; 0,0000191818710679161 ; -6,7 ; dfa6d5DF1FfFEEdd4cCCB5cfe1a4DaadfaADC5a9Ebd96cdbaE3D2CbaB8DEedae ; < ZM50isNI2dAvTeEK2D5Cm8bp2aPK49r53L4eTmC70i48vHaXJ2lsNed8fZJiAz7k > > 17 // < PUTS 0,000230383361075176 ; quote ; 0,0000166477183810266 ; 0,000016314764013406 ; 0,0204081632653061 ; 7,1 ; 0,0000160317528009286 ; 0,0000172636839611245 ; -8,3 ; c5fd571BB4871DAEfE65bCcaaEc8ad1E1fbF68aDAffaff8C4eaaBDb8d14ef98B ; < KbRIpBTU1gl2bun39A6gt1n9e6Iutb1FPx5orGo6x1djpW613jZ0ejARKtK58BZ9 > > 18 // < PUTS 0,000238916078152034 ; quote ; 0,0000149829465429239 ; 0,0000146832876120654 ; 0,0204081632653061 ; -1,5 ; 0,0000144285775208357 ; 0,0000155373155650121 ; 2,3 ; 2Db9cC7e41aE8BabEee6c0fa8F3C7EE741Dec1608ded0f5EffD2cDa7efF7caeA ; < OYuXN3G8aoi07iWPSrnFFQj9BybYx5YGN7s7Y8Nm77J7l3C2284vU5SaLq1SNo94 > > 19 // < PUTS 0,000247448795228893 ; quote ; 0,0000134846518886315 ; 0,0000132149588508589 ; 0,0204081632653061 ; 9,5 ; 0,0000129857197687521 ; 0,0000139835840085109 ; 8,5 ; 5aCeFBebCbCd858CADA8a9E0dfF7aEAC5EF5d1AC66c2C9e6Df96dEEec87AAd18 ; < Non7Ua4nL2PYVBlTH38hYAQZDU3o5DayifW4vGmlNUYe9dL4W1lu2Gmn2N45HqJJ > > 20 // < PUTS 0,000255981512305751 ; quote ; 0,0000121361866997684 ; 0,000011893462965773 ; 0,0204081632653061 ; -9 ; 0,0000116871477918769 ; 0,0000125852256076598 ; -7,8 ; d95AeACB2FfD4a75bA92bdFE2b0AfcfAccC33F8eeaA2Dab0fb0b0bbcAd5aAc2E ; < w9fT9Mh557v7Z9fshCmhj4I1Y9WUlN63WM6C22ctADb2Mje7wzqB4SRRljLcGXxm > > 21 // RUBETH // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,000167369218347615 ; 1,14 ; -0,999853184896186 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; Fe22A624BcfCDCd2F5ac0F81EA4D8eefeE8EBbeaEbaAEAFBECaFbCb3Ced98Cec ; < A12tONqHnBA6lu7X79ijQ0rWiC5yowS4H5goIALLXTJF7h92OMr78wc1bdo497XG > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,000167405720737063 ; 1,14024862829845 ; -0,999853184896186 ; -0,0000825942792629365 ; 0,000417405720737064 ; -0,1 ; -3,3 ; -6,5 ; -7,2 ; -0,7 ; -4,6 ; -0,24 ; RUBETH91JA19 ; 71fdAb4Fcebb8aEf6cFDbD1C634Faec91C2Be6EbbEaF96ff8bA5DFFdAEFF63cc ; < d7ZYChaQ1J3S4gi05Uf4UG17G5VaZ3l6b3R9WP41JE8B0jOytxX4YfprmUVo96IG > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,000167490132276206 ; 1,14082357962805 ; -0,999853184896186 ; -0,000082509867723794 ; 0,000417490132276206 ; -7,5 ; -4,7 ; 4,3 ; -8,3 ; -1 ; -8,3 ; -0,28 ; RUBETHMA1950 ; 70E2E5d7eBf88efe9aeDEcF270a7C7ffca8F3b00B3F0D0AB01a4beF1FFAaeCc2 ; < 6JDNj4uIANsg8HYmvV12Ln5k80yr66vYCqgc0zqL2Da94MhR8B4r0IopML69UQol > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,000167602252668955 ; 1,14158726394824 ; -0,999853184896186 ; -0,0000823977473310448 ; 0,000417602252668955 ; -9,4 ; 6,9 ; -7,1 ; -4,9 ; 3,7 ; 4,6 ; -0,64 ; RUBETHMA1911 ; AedEfD29BAD6D3deE5cD9abCC9dFfcf0130a752af31Ececd202dD0EDCeFfC7F6 ; < 0yp3qHEs6ImWsr09PTL146BG738XPDrCjmToQSqKzu50w88qMkQfPAfQAAArW87x > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,000167742978199546 ; 1,14254578610934 ; -0,999853184896186 ; -0,0000822570218004542 ; 0,000417742978199546 ; -9,2 ; -8,3 ; -5,3 ; 8,5 ; 3,3 ; -9 ; 0,14 ; RUBETHJU1934 ; bac23c4ff0cE9BAa2E79945FF58f77fE8dDd31cbB11C2CDAADcddCDcBdccCB1f ; < tduddm05koaiH0P4oS31Rx70CodzdIPL096bPj3SW6xvSN6y2xE2tOq0NgfdFz98 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00016791255093805 ; 1,14370079492042 ; -0,999853184896186 ; -0,0000820874490619504 ; 0,00041791255093805 ; -9,9 ; -1 ; -3,2 ; 1 ; -1,2 ; 9,7 ; -0,82 ; RUBETHSE1918 ; dffd65cDC8Bd4677E15DfBBc6AA11dbFfe8B4f72EDD2569E5b5fDa46CEb8ada2 ; < ZMg5kt10uRNk3xPqqEip0jpQb79Puc5eyklLygwggwzT8Gq79U4C5s2SEDf4Kh8U > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,000168138430213653 ; 1,14523932378929 ; -0,999853184896186 ; -0,0000818615697863469 ; 0,000418138430213653 ; 1,8 ; 1,3 ; -2 ; -0,7 ; 4,5 ; -7,8 ; 0,87 ; RUBETHDE1957 ; bBfE126cF20Eace3F16db08Ec6bFeb9B095bBcbFfe47D49e3fDFcdf3c1ff9Cfa ; < 1qn92t07iY85wLqvV10Gs8B3MUcAuTD3PaIA824VT5p9UD9m4mR0ZUav724YnWP1 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,000168378628517801 ; 1,14687538368986 ; -0,999853184896186 ; -0,0000816213714821988 ; 0,000418378628517801 ; -7,3 ; -4,8 ; -8,3 ; 7,6 ; -7,4 ; 2,7 ; -0,68 ; RUBETHJA2088 ; 1f3feadfEfe4CcEDCbA0cE53cfdb9cBbAA251C4d77DbFD4f2023b9bD8cA64CAb ; < l0x62zD1AYg9ElV0vAF6pob9ud356kI5a0ZWKUrb9tlGxOqDI9b99N30b8qL2gKW > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,000168670087376314 ; 1,14886059400503 ; -0,999853184896186 ; -0,0000813299126236861 ; 0,000418670087376314 ; 0,7 ; 3,9 ; -3,4 ; -5 ; 4,9 ; 2,3 ; -0,12 ; RUBETHMA2012 ; Cd1DcFcBd1CFeEBeBE92c13A1A9a6dE4e3954D9fCDFe06CEFAc4e90dDFbE02C1 ; < Lp3b3DBip0i9EK95HHGsJqUJyHV5bQa4dAQ726P8Xa86qWAkvXXmICkEj15xYO9j > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,000168995353247537 ; 1,15107607363058 ; -0,999853184896186 ; -0,000081004646752463 ; 0,000418995353247537 ; 9,2 ; -5,9 ; 7,9 ; -4,4 ; -3,6 ; -8,4 ; -0,34 ; RUBETHMA2048 ; c00cF0a2ed8e8F78cbd48DAf0bCf94eDF17d7BFCe3BCFFe8ee32CEb5afC4EbEf ; < qMXJ1p2W0Ip7tukA4D9JE52S519cbQWqLi778wDwnGgZ9KiM4kJ52h51kU935TAs > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,000169359352292754 ; 1,15355537607128 ; -0,999853184896186 ; -0,0000806406477072463 ; 0,000419359352292754 ; 7 ; 0,4 ; -8,9 ; 0,1 ; 2,9 ; -3,3 ; 0,97 ; RUBETHJU2025 ; 6afE334fcCDEAcdD8AAbF7ADb05bfafA0e9bf83808C6E8C8CBdAa6CA9BD6988B ; < 9E70f7794a89mfyPFGc4k9ceIu8zD7NCD7tDa3c8n04aTo3rw54X9Vci2gyYtLT8 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,000169756233769196 ; 1,15625865023132 ; -0,999853184896186 ; -0,0000802437662308039 ; 0,000419756233769196 ; -8,9 ; 0,7 ; -3,8 ; 2,5 ; -8,1 ; 8,6 ; -0,06 ; RUBETHSE2057 ; a7bB93E2Cda7f93acB77C376ADdd4E19Ddc5Db5ECe4bC5edBFA5Aa1caA1BBaA6 ; < 6TX8VgLaPRgM47dbMbaKm650585bD6Z6Uv90LP4a5rUt9417Hq038w5vSk6279BW > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,000170179945328684 ; 1,15914467182229 ; -0,999853184896186 ; -0,0000798200546713161 ; 0,000420179945328684 ; -0,7 ; 6,1 ; 3,4 ; 3 ; 0 ; -5,2 ; 0,66 ; RUBETHDE2091 ; aEA4fBACDfcdF9D05F07bdDbEBb4bc1ca8F4D2ceCcceecA2FEeeB7F5dafAfcf6 ; < 6AJIcn2G1bm5J5yd8UV18bc0N926YQfTdL5ebRVMtE3oX24LTAKGZ78Ss4YMzKl9 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,000170654341537167 ; 1,16237592117035 ; -0,999853184896186 ; -0,0000793456584628325 ; 0,000420654341537168 ; -1,6 ; -4,5 ; -5,1 ; 4,2 ; -0,1 ; -5,7 ; -0,23 ; RUBETHJA2125 ; aA6BCcD8aeF0CDBeccDC8cFC4BbfCb6B4bb3dF4C8A07FB418BE1Cb1d53D01aB2 ; < cKIy7amdYwwEP772n67PwgKX638ws43Er02u23WfLhkg4rJA4M89l07Ddua92U80 > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,000171151163064887 ; 1,16575991583312 ; -0,999853184896186 ; -0,0000788488369351129 ; 0,000421151163064887 ; -0,4 ; -1,1 ; 8,7 ; -8,5 ; 8,7 ; 0,2 ; -0,78 ; RUBETHMA2190 ; 7C6F56bDE6FCF9dEEFD817eA2a91cd1cf7BFcB9Bcc7BedA3Cfb63CCFd48BcC5D ; < h7i21C3jn5Gu570xLLPueEqd5h81177U1le7EOsj2j027CUJ6img58Dt4aCM6zo4 > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,000171671458484901 ; 1,16930379794401 ; -0,999853184896186 ; -0,0000783285415150994 ; 0,000421671458484901 ; 4,3 ; -8,7 ; 0,6 ; 1,6 ; -1,9 ; 0,5 ; 0,82 ; RUBETHMA2120 ; 7FFb2A791bF82AE0a05CCBEF0Ce4FE418Fabd9aF3e9a9a567ebea3abcFaab3Fd ; < BoE1f9wM31Nvc6Ry8055MwdqG8dG8geF4cdL6NE4I4lw8h7k282AT2MP59AyPO9H > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,000172235694750099 ; 1,17314697381994 ; -0,999853184896186 ; -0,0000777643052499007 ; 0,000422235694750099 ; 2,5 ; -1,1 ; 8,1 ; -5,9 ; -3,4 ; -2,2 ; 0,45 ; RUBETHJU2180 ; ac68d9FFF6c0bDfbDEFa486B91ccEDF6afdFbF19F3cf8BaB0fcccc5e0cFf9E81 ; < iC9c1imMz5KY01An8eSW20DS832069Pd8ltqSlGRxF6005M66969U2ctinJExsJC > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,000172857725751032 ; 1,17738380630362 ; -0,999853184896186 ; -0,0000771422742489682 ; 0,000422857725751032 ; 1,1 ; -5,3 ; 1,8 ; 6,6 ; -3,3 ; -7,1 ; 0,97 ; RUBETHSE2147 ; B4c2CEBF6fC70cfEEdEbAF7D506feD9a4cEe4477Aa6F5EA3F9eF2dde19cbbfb2 ; < nrYvMsL9DV2ZmfbIgn3NyR28jPQIWeJ2SxRY52bBl587UrnMNBcD333MoY3BI1G8 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,000173522250100013 ; 1,18191007323202 ; -0,999853184896186 ; -0,0000764777498999865 ; 0,000423522250100013 ; 9 ; 9,8 ; 4,3 ; -8,6 ; 4,3 ; -7,5 ; -0,88 ; RUBETHDE2167 ; c45EEDF082aAA65AcFbcDffABd1dC5f95e29aDEdE5fedACda8FbEBdfFCfEA386 ; < 96441SG87lzNx4eVcvrj2Br8bpJvq6kR0H72S8l7GiaAoTFegtpana7CXU4jq06v > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,000174195901409774 ; 1,18649850652166 ; -0,999853184896186 ; -0,0000758040985902264 ; 0,000424195901409774 ; 3,7 ; -5,8 ; -7,3 ; 0,4 ; 1,3 ; -1,1 ; 0,75 ; RUBETHJA2123 ; Cc4b9CDbaDb9DD5Dcfd5bCaebEb2CCEdFf59Ea6eFB6B5191ADDcD1aaBBfA7F5B ; < Pb0XCfB0TzCWmQMr329m5MphOU91881j2JUz5sfUhwORVd6S5TVsLBpU0Y84lj25 > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,000174926328850387 ; 1,19147365840753 ; -0,999853184896186 ; -0,0000750736711496134 ; 0,000424926328850387 ; -8,8 ; -7,1 ; 4,4 ; 8,9 ; 3,3 ; 4,3 ; -0,65 ; RUBETHMA2119 ; 2Ad381D1dD2FefFdccfbe19f56Dc5EcDFe91bFEE5Dfd1b7d2d030E09d6dDfCC0 ; < wWmHALyEzOKcbc1s2cRIrO3jGV1tt7e5b0EvYxNqDO0FE93ZZRQ06F1ZzWsvx0DQ > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,000175698121429873 ; 1,19673056018015 ; -0,999853184896186 ; -0,000074301878570127 ; 0,000425698121429873 ; -7,7 ; -2,7 ; 3,4 ; -6,5 ; -9,3 ; -5,1 ; 0,07 ; RUBETHMA2182 ; 60BfBAfaD4c4dA4bA0Fb71F4ee6aDd7276Db5bAB7dDFF8ebCeBDFa5c63bb634E ; < ikro6hE0Z2476sj5k6W4R3DM9e6Jxs2UnqNd8N41Jcw8ss7111OupQOF0usOkNr2 > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,000176513555206959 ; 1,20228471473172 ; -0,999853184896186 ; -0,0000734864447930408 ; 0,000426513555206959 ; -3,4 ; -1,3 ; 2,7 ; -4,5 ; 7,8 ; 6,5 ; -0,29 ; RUBETHJU2141 ; 8CDbdf1eb1B8Ed80bbABEDfdbBf0aeAA531C5A39cC1B78472CD51ABe0a0B0a6b ; < ZrgD51X55VyC94290u0m30A9b7UVsq85d785Qn57cy4Mv73N75LMS42Xgl59ii4i > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,000177372321319252 ; 1,20813401831143 ; -0,999853184896186 ; -0,0000726276786807484 ; 0,000427372321319252 ; 4,7 ; -6,1 ; 9,5 ; 4,7 ; -1,2 ; 8,2 ; -0,54 ; RUBETHSE2166 ; FcaAB3FfebFf4bD04eBd4b1e6EBe716aC9bd6AE1c0BfC8eed7F4ccf5c6dcCEDd ; < 65uKum28Ji5yWVnF1wKC7nv9SzwSi5v2u5gF4JEse95bmRCkZjA44zuEsvAM460l > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,000178243618504652 ; 1,21406867464288 ; -0,999853184896186 ; -0,0000717563814953482 ; 0,000428243618504652 ; -2 ; -4,5 ; 2,8 ; -9,9 ; 7,6 ; -1,2 ; -0,06 ; RUBETHDE2197 ; Dfec2b1cbccFfb7E59fabACFb79fDd95edbe1ed2EcEc126f9AbFd49FdEDf09cb ; < Ev02L33BdhW3dP0uutbnpQ78vJsuSkhGAA6CkK2NIH4lP02DP8mF00US6673GA0A > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,0000870979507048868 ; quote ; 0,0000197191686732794 ; 0,0000193247852998139 ; 0,0204081632653061 ; 0,4 ; 0,0000188909635890017 ; 0,0000205473737575572 ; -7,5 ; EF2EaCFE4BD66F89116A80B388eA14ddaBe0E6E3dDBfeCDac3fA7eDE36a74A7A ; < 4g625uJrTv3qq7G2NVYPnb9xF22C0EB0QbB83adv78sM4T63F9ooQR2XY8B71E7X > > 1 // < CALLS 0,0000958077457753755 ; quote ; 0,0000219101874147551 ; 0,0000214719836664599 ; 0,0204081632653061 ; -6,3 ; 0,0000209899595433353 ; 0,0000228304152861748 ; 0,8 ; 30ec9BdADf31c4fB2C73EF3CbeB3DE1E8aEdBBdDFa6EedccecFaEaEFBfA11eC1 ; < u8zTd1GR07k8v4K6oroPisuaARG2u8ry576h0NGiSQr01fXynW7PDeOF0yvP6693 > > 2 // < CALLS 0,000104517540845864 ; quote ; 0,0000243446526830611 ; 0,0000238577596293999 ; 0,0204081632653061 ; -7,9 ; 0,0000233221772703726 ; 0,0000253671280957497 ; 5,8 ; 9becE68C5CeBc8CEc5F3f5D7e1E6AAb4Ce4E0fBB1c9Fd3ECFbEc0Bc8D02B8C3A ; < BJDLW6503Hq6ruIVF52LFEL1AHXK5EL88e8kSR8DG758vmLX1L1bjc9BR43M071n > > 3 // < CALLS 0,000113227335916353 ; quote ; 0,0000270496140922901 ; 0,0000265086218104443 ; 0,0204081632653061 ; 0,3 ; 0,0000259135303004139 ; 0,0000281856978841662 ; 1,1 ; fA0C91b1CeDEEE2dA9be9e5A0af9CAb9a7dbDc6BAcb1c79f8fC2b0bd93945D1a ; < 9nZ4HPgI3Jo2IOTI930RuP9mhy7cJ3Ubxarg89haCJoK38EfL49PTO8H6m1B2Cr4 > > 4 // < CALLS 0,000121937130986842 ; quote ; 0,0000300551267692113 ; 0,000029454024233827 ; 0,0204081632653061 ; 1 ; 0,0000287928114449044 ; 0,0000313174420935181 ; 0 ; F3a3fCF5d6DfACfBFaDA84d6B9CCfAbaFDaCC9A50Aede9e6dDBFEca38Eae2C45 ; < 0J679tW9eku3C1II6Rcl9CQJ8MSHB6TAsO7DbLZB1xW4h34Yt4BQE4RFiLB2t5gN > > 5 // < CALLS 0,00013064692605733 ; quote ; 0,0000333945852991235 ; 0,000032726693593141 ; 0,0204081632653061 ; -9,3 ; 0,0000319920127165603 ; 0,0000347971578816867 ; 3,2 ; 3CaeD8BB6eC249EaF8A6cBeE6Df4dbEBAeE0dB7e7fBf66acAb4abB5C70c6F2FF ; < 1gBjEWw5qVLD87zfJjloehQIsHJp5ymx7296f12X9I0W6yDqY6u2dl4i8aKrJ94X > > 6 // < CALLS 0,000139356721127819 ; quote ; 0,0000371050947768039 ; 0,0000363629928812678 ; 0,0204081632653061 ; -1,1 ; 0,0000355466807961781 ; 0,0000386635087574297 ; -1 ; 98Ef2CEFe7F2aD4972aC1ff584efd8ecEAeb0fFE0FbEA7eefcFBc9dBe9be92F6 ; < 6m1cP7TZ8U86gUSqic9aOX9Fiw6bhM3434nTYjL993693HpK9VFaygyahcGp18w5 > > 7 // < CALLS 0,000148066516198308 ; quote ; 0,0000412278830853377 ; 0,000040403325423631 ; 0,0204081632653061 ; 8,7 ; 0,0000394963119957535 ; 0,0000429594541749219 ; 5,8 ; Eb802Fcc7Adfed5E6db7DDbD9DC4E4Ba96f7beAEABEdACF80E81919A8D3E4Fb1 ; < nh0OTlpvpDw599UXnFbzp051W5wr60lb0g6Hik4UyTmau3j3Clb55m0XPl5b0hER > > 8 // < CALLS 0,000156776311268796 ; quote ; 0,0000458087589837086 ; 0,0000448925838040344 ; 0,0204081632653061 ; 1,4 ; 0,0000438847911063928 ; 0,0000477327268610244 ; 5,7 ; 0cAF26Cc810BF2cC0E3c6cAAa1a6eaC50bafFcabFc0afAd5baceCAdAe112fc66 ; < b6mkB5jPhD5e3MIP163OJ5tgzPxw31rW8uDraBCdu296d1h1qOtvq2l6Ew49uS5m > > 9 // < CALLS 0,000165486106339285 ; quote ; 0,0000508986210930095 ; 0,0000498806486711493 ; 0,0204081632653061 ; 3,3 ; 0,0000487608790071031 ; 0,0000530363631789159 ; -6 ; c830b3BB2c25f2DDF9ABd25CfABcFa0AfDe2BceD9FdeA8d2671dAdBEee2Eff2B ; < VZ5q3fQ6SG2UC4CZ89XVc6a0J7VDp54fUFU2Jy944SaC076R3Sbk5li69zjn5BKi > > 10 // < CALLS 0,000174195901409774 ; quote ; 0,0000565540234366773 ; 0,0000554229429679437 ; 0,0204081632653061 ; 4,9 ; 0,0000541787544523368 ; 0,0000589292924210177 ; 1,7 ; 2f2A07Ff824e4eFdEB7B9fadD36e6bFfbdA7d5FbdDFcbBdEfFD82e33ec9daADD ; < YIrP552yW3iTZqQgL5721HW0418zr0QN1yX9NO7q29DBk4g6kZhCn8xm1kSG6bhb > > 11 // < CALLS 0,000182905696480262 ; quote ; 0,0000508986210930095 ; 0,0000498806486711493 ; 0,0204081632653061 ; -5,4 ; 0,0000487608790071031 ; 0,0000530363631789159 ; 3,5 ; 5c4Bd3CE8D6171df17FcCB477e08dbDf6fb825B7dAcCF5cbBe51bfcCe42f0C4a ; < u020GZpYobPf0Ato22l118hlB9G52z6DrK72md2m1cjZCGUpco84X5rk19LmFeG6 > > 12 // < CALLS 0,000191615491550751 ; quote ; 0,0000458087589837086 ; 0,0000448925838040344 ; 0,0204081632653061 ; 1,7 ; 0,0000438847911063928 ; 0,0000477327268610244 ; -3,4 ; 0BE4B6F3aDc53ea4fbB3BeCcE78Ce66F8ef2aee3FAB90E0fBcD7Bb8ef39F1bc6 ; < jVrR3x2gSfcq4XiWdUyES1t6OUsv2i96W5IXJOkMzh48pZ8243yOjC3Z77ufEfi9 > > 13 // < CALLS 0,00020032528662124 ; quote ; 0,0000412278830853377 ; 0,000040403325423631 ; 0,0204081632653061 ; -1,2 ; 0,0000394963119957535 ; 0,0000429594541749219 ; -3,7 ; bE2500F8Deb6FAaCC0C10acDFE75Fa4F9beFaECeeEcBbaCFf4efEFd7F0d1Ef73 ; < 5C4kbMuho75Zn3RaRIvZUV2mnaf40yDk4CJ6742jse1K2667d7bSi54no7p7Bmrh > > 14 // < CALLS 0,000209035081691728 ; quote ; 0,0000371050947768039 ; 0,0000363629928812678 ; 0,0204081632653061 ; -5,3 ; 0,0000355466807961781 ; 0,0000386635087574297 ; 0,9 ; 18DBF435C9edBd4eAEB2fc9DEd04F733D7a0dE3BDC7FB431eDdBbdA4FAea6CaE ; < 367lpsJu7pAQKS3j2uEMBq25B80zWD1Ft6TIZ6X4g9Uk13pULs45731wd777PSFS > > 15 // < CALLS 0,000217744876762217 ; quote ; 0,0000333945852991235 ; 0,000032726693593141 ; 0,0204081632653061 ; 8,8 ; 0,0000319920127165603 ; 0,0000347971578816867 ; 2,8 ; AE11342c0aA0ef1EFa848DEbCCCaEd8Bfa7026B7d6BDaD3ea0ADAcC3Fe6e5f99 ; < V603ir338pGWpK37fe3oXgYUJ30XZPqpx489J5rHxryg6kmad4qqYG89Foa29yWt > > 16 // < CALLS 0,000226454671832706 ; quote ; 0,0000300551267692113 ; 0,000029454024233827 ; 0,0204081632653061 ; -7,4 ; 0,0000287928114449044 ; 0,0000313174420935181 ; -1,4 ; f7c2ADf31EC2aD9FAAcbc029acEf8FBb4e70bC0aBAf5abcdcE3cBe3b9E3dCACC ; < xAo5RH5kXP898Arh4p31uz6j5aQM154Mum1Z43O0YQD1449tp95r832JuUnU6KMC > > 17 // < CALLS 0,000235164466903194 ; quote ; 0,0000270496140922901 ; 0,0000265086218104443 ; 0,0204081632653061 ; 5,8 ; 0,0000259135303004139 ; 0,0000281856978841662 ; 6,4 ; cEfaDFefdfb1C6C8BfE3EFfFf3C5cdedD0ac1DfFBC1aA45dbDCa96aD85Ffa0AB ; < yy9Hau1geuUyiyyMsxUxjq4092R3pWaaQXB152fOFmbk2srp32Nfv599h9AzFCq8 > > 18 // < CALLS 0,000243874261973683 ; quote ; 0,0000243446526830611 ; 0,0000238577596293999 ; 0,0204081632653061 ; 9,6 ; 0,0000233221772703726 ; 0,0000253671280957497 ; 4,5 ; Ba34eD0FBafFc1b6c3ceE3C2FdDCAEA00dcA35EbfedB1FBFcABfA3FdFafEba5f ; < mQ0Mfb3q918DnFI2m5MkXv456306b35pjHKm5T1D75ev2kgG7m3a2l0AR2mAlBEp > > 19 // < CALLS 0,000252584057044172 ; quote ; 0,0000219101874147551 ; 0,0000214719836664599 ; 0,0204081632653061 ; -3,4 ; 0,0000209899595433353 ; 0,0000228304152861748 ; 9,5 ; adec0AC62F6aFC1DeD19AdF80b59AB4d42fe77C4CDfdEEAFfDCFAD2DB9dCEFbF ; < tXdhG49y8vR15C7t571C21yoEkT14b3VY4lK25808XuV03oL9bl3PqUqt7Hobdrc > > 20 // < CALLS 0,00026129385211466 ; quote ; 0,0000197191686732794 ; 0,0000193247852998139 ; 0,0204081632653061 ; -5,6 ; 0,0000188909635890017 ; 0,0000205473737575572 ; 5,8 ; efCEcb4Dba55EF5f6FFfFbF989FF1ca7123f20Ba7Fac5c3FB1aF92b011aa5f2c ; < 6xmESCY9C3uEjrGMFPHAVKnh6nXeqwIEbMfW8u0hF01t83689XEeZPJjBzA26eyn > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,0000870979507048868 ; quote ; 0,0000197191686732794 ; 0,0000193247852998139 ; 0,0204081632653061 ; 0,9 ; 0,0000188909635890017 ; 0,0000205473737575572 ; -3,9 ; fcA3b1ABbECD3A72C58dF1ffDd8Deca6ae46aBbfaDc5baACDcEEdBd82e3f540b ; < DaN3Ctx1p2G59smhjGscmKBQUs2Rc5qWTZ89WCTdQc83O23da79hTj0V7328i4La > > 1 // < PUTS 0,0000958077457753755 ; quote ; 0,0000219101874147551 ; 0,0000214719836664599 ; 0,0204081632653061 ; -0,8 ; 0,0000209899595433353 ; 0,0000228304152861748 ; -8,5 ; Ba7CCD5A283BC0aeE7CAd1Bd6ceAA5a361Bc5DBfedFaB6af0EAAC9a06D2BB6Bb ; < 587a6Wn4ErJYOA2sovFP62pb4EUV641gj0Q47d1lfz9fVmyipm3eZBGngWAYLnnz > > 2 // < PUTS 0,000104517540845864 ; quote ; 0,0000243446526830611 ; 0,0000238577596293999 ; 0,0204081632653061 ; 3,4 ; 0,0000233221772703726 ; 0,0000253671280957497 ; -2,4 ; FBabdeaBFc4efbEACC2dFCf6dAFBbd0cfD91D53AC3BbCDAB7AbDe7892D866DDE ; < sTZFh5xS4W7aRL1160600LGcNkTGpno9tFg4MnOZi7k6b175NWhTE58sM4wrTmn1 > > 3 // < PUTS 0,000113227335916353 ; quote ; 0,0000270496140922901 ; 0,0000265086218104443 ; 0,0204081632653061 ; -5,4 ; 0,0000259135303004139 ; 0,0000281856978841662 ; 0,7 ; aa76707ba0f1e9BEa1e6eCbCFEE1dE8DfD1dcb583dbeBfDd53b4AFc9facEB4D6 ; < 25Z1OEX3nNGee3545G8m4OGL577LA0Hm59eLHvtwJ9Xg6I6ysMtkEl69Z2opQ66U > > 4 // < PUTS 0,000121937130986842 ; quote ; 0,0000300551267692113 ; 0,000029454024233827 ; 0,0204081632653061 ; -1 ; 0,0000287928114449044 ; 0,0000313174420935181 ; 3,5 ; D6b566aADdeDAC7ceAcbe64caec54BEf9ceddaf55e5CAdE9bbBF3bBD51A48D05 ; < 3YB1ksOMK4uh19YF1B3J6oFX2M9loUuLEU9fA1obVQFgFAJURiFvAI2COS0xYiDK > > 5 // < PUTS 0,00013064692605733 ; quote ; 0,0000333945852991235 ; 0,000032726693593141 ; 0,0204081632653061 ; 7,7 ; 0,0000319920127165603 ; 0,0000347971578816867 ; 6,9 ; 5f17bAAEc2decd4fbcfc5E0Ba1A9C535fCdFccC7BB7A5EEc93f688432747C6ac ; < 4vAKwxp2llWt2a1ptB5H0YNqbh683dZ59qSYB91cORW9S0bLH9dBiNyynp7cnjDq > > 6 // < PUTS 0,000139356721127819 ; quote ; 0,0000371050947768039 ; 0,0000363629928812678 ; 0,0204081632653061 ; 6,5 ; 0,0000355466807961781 ; 0,0000386635087574297 ; 0,8 ; Ca10dcDdbdCFcFaaBf5CDD84b41c4EFa11fE14f7Ac64149bF1fbDaaDfeE99C24 ; < zKU9D3j8BXr4Y3CQpom5nruiyN1O84hDnQ2Oy9731965Q5f3k74lbvK1jvr1Ti6h > > 7 // < PUTS 0,000148066516198308 ; quote ; 0,0000412278830853377 ; 0,000040403325423631 ; 0,0204081632653061 ; -9,2 ; 0,0000394963119957535 ; 0,0000429594541749219 ; -6,3 ; baD4CCD8b94fbeA0d56A4a2Dff0F41af89ed3AfCD5dddAff5fa85CAe9cAadEAF ; < fxqO31Q93oMnfg6RW9dNTjRC6ru1grf8rW8BRL3zH3W0j3ohjN268Ta9x4cR7FRC > > 8 // < PUTS 0,000156776311268796 ; quote ; 0,0000458087589837086 ; 0,0000448925838040344 ; 0,0204081632653061 ; 8,7 ; 0,0000438847911063928 ; 0,0000477327268610244 ; 7,2 ; 2AFeeFaFD774cDbaf8Cc178dacBF8b4Aaf8Dc916B31bEfadC7C9E1c1DedCcfd3 ; < pWs3kRfA09xsRrszC6827JX3D5q5X8u4S5AU40v89j92YMFnRrkyqYpl1sw9t5rl > > 9 // < PUTS 0,000165486106339285 ; quote ; 0,0000508986210930095 ; 0,0000498806486711493 ; 0,0204081632653061 ; -7,4 ; 0,0000487608790071031 ; 0,0000530363631789159 ; -9 ; dCeBC1ab2dCBde26B2A8BCa5eAbFe9bc0FADaadc2EF84aaBadfC0E436782e2bB ; < H41Su9Y1K9Hq0AZOJ8DZlO0hCjU7OvQ39045mR34z00033zZt4RHkrK96Y82985P > > 10 // < PUTS 0,000174195901409774 ; quote ; 0,0000565540234366773 ; 0,0000554229429679437 ; 0,0204081632653061 ; 7,1 ; 0,0000541787544523368 ; 0,0000589292924210177 ; -9,1 ; DA782Cb86Ec17dDFb4CBcB20BDa2aD2aabdF56EE17Be3C7Dd2fcd93Ba4c0DADb ; < JgUG2Onv2n9oyr6bkBrXkXyW4nmVYM3c324ZNgp3NDhiNlcp5AK2L7i88ZTEZT6n > > 11 // < PUTS 0,000182905696480262 ; quote ; 0,0000508986210930095 ; 0,0000498806486711493 ; 0,0204081632653061 ; 8,8 ; 0,0000487608790071031 ; 0,0000530363631789159 ; -8,3 ; EeF3Da1bec395FE3142240a720bb7fbcEdB6ced1cAe9Deef70Fa8FDAA80dcBBc ; < i0QPgKE1tZ94L5pK2qXL6Wgcw3GrE69D20azOO6r137cxP352yJKMjdl3GbZKb8G > > 12 // < PUTS 0,000191615491550751 ; quote ; 0,0000458087589837086 ; 0,0000448925838040344 ; 0,0204081632653061 ; 3,3 ; 0,0000438847911063928 ; 0,0000477327268610244 ; 0,6 ; EB0efA54CAAadAdc0ffccFC28A9ecEcDE0EfECDDddEe51b700100EbAf91DB1C7 ; < 9tzJJNWCV8L43YaDurn7QM2kgZ2qQzwYBLv9G283sDG49f0K6v2V7qJtpsoTAsjJ > > 13 // < PUTS 0,00020032528662124 ; quote ; 0,0000412278830853377 ; 0,000040403325423631 ; 0,0204081632653061 ; 9,5 ; 0,0000394963119957535 ; 0,0000429594541749219 ; -7,2 ; dFFaB8be83DfFa2a2FeA8a6CB7dFB4cAFAFfF91d6fa574b613C80aEAF1bbaDcb ; < iLihcdkpIKgTF76n0J965v23dtsem6m4O52gbH1VyjtGoKEy88UMRlLujr2v8wO8 > > 14 // < PUTS 0,000209035081691728 ; quote ; 0,0000371050947768039 ; 0,0000363629928812678 ; 0,0204081632653061 ; -5,9 ; 0,0000355466807961781 ; 0,0000386635087574297 ; -9,7 ; bE4bE4c3a72a60c34B002aFbDbAA4baaE9daDB0Df66DB1EbFcCCBCeCAE0a6eFC ; < zRMnq6pp8DLTXj259645gso1j9U2N69EqsIlu1bC48u7ME03V2w1zK5nyM48zkM4 > > 15 // < PUTS 0,000217744876762217 ; quote ; 0,0000333945852991235 ; 0,000032726693593141 ; 0,0204081632653061 ; -5,4 ; 0,0000319920127165603 ; 0,0000347971578816867 ; -4,2 ; 35ACcafde8eDAac0CFaBaF231F0018cbC1b6F54eCDbfbFd1AfC019CEFdDaCEff ; < 95eUNb1Q5Nu1DB2BjiJ9lRVJ2UtBV2IJ1m2lGHN2Xd5QI29WOhV99yFoDJ70lpzz > > 16 // < PUTS 0,000226454671832706 ; quote ; 0,0000300551267692113 ; 0,000029454024233827 ; 0,0204081632653061 ; 3,8 ; 0,0000287928114449044 ; 0,0000313174420935181 ; 6,1 ; DfdeFBA879Bee95aA8aA34BfcfDDdaF77Def08fBfFDE379fcCaC8ffFa66557D9 ; < 6I3VOuacFS157E11ekbz71L5y9s635lfwfc8aFzBSk8li4FvUHscmIv2k552kbbi > > 17 // < PUTS 0,000235164466903194 ; quote ; 0,0000270496140922901 ; 0,0000265086218104443 ; 0,0204081632653061 ; 3,1 ; 0,0000259135303004139 ; 0,0000281856978841662 ; -1,9 ; 1FF5dCc3F8EBBdEbD9A3BAf4E2ccFe6EfE6bd1Af4AbDf6cBAAC849Ae7A3dcD2A ; < 1Rrs1Q2ahjo8Kk7qx9rtujigjzFOwJkfO0Z88ZZy8ZQX18P6PR4aHz6RnbX6848z > > 18 // < PUTS 0,000243874261973683 ; quote ; 0,0000243446526830611 ; 0,0000238577596293999 ; 0,0204081632653061 ; -8,8 ; 0,0000233221772703726 ; 0,0000253671280957497 ; 3,3 ; Afe7D1ECa1aF14Ab6bEeC7eFdFe6b4Be7EC2e1eb55CDcbe77dde44CE7eC4a7Df ; < nEy5n9LoV5K330c0VTS3YS54GMVozv8x63TwardEIBZom61e6QDDnx7CNfI7AY3W > > 19 // < PUTS 0,000252584057044172 ; quote ; 0,0000219101874147551 ; 0,0000214719836664599 ; 0,0204081632653061 ; -1,8 ; 0,0000209899595433353 ; 0,0000228304152861748 ; -6,7 ; aF1Fc0d5BFfEb7c4F5935Fe0Eb8C0DfBBAad9D9E0DedAfAf5fD9db2164a65beB ; < kM65g0Kc610z6ir1ySI4FLP4p8TSd9qMVzx7tmCwh7I5d9N65R5c86Vjv983xm41 > > 20 // < PUTS 0,00026129385211466 ; quote ; 0,0000197191686732794 ; 0,0000193247852998139 ; 0,0204081632653061 ; 2,9 ; 0,0000188909635890017 ; 0,0000205473737575572 ; 4,3 ; d4c39a4D2CEB8D1C1fb3Ec14A9f2eF9ffBeB2e3a69d17ddBbda9CdB7113FDFcb ; < 7862T4H1rK6P7OxVy73OW8NkcU2VR1K8kBTOXIz8HLE6g2di1BwYzzxl4xIx87vW > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000218837188297175 ; quote ; 0,0000000336820214072433 ; 0,0000000330083809790985 ; 0,0204081632653061 ; -2,3 ; 0,0000000328399708720623 ; 0,0000000345240719424244 ; -2,5 ; 82E56A6b0cCD0EA8FCA3CBD5bCB7F256c18D48d9aA0f5393dFB8fbD1BEfFf8fD ; < P58h1K56N5ZYzp31uLVrW3zBS6cI60hjXDZ5SAhr903kC57VJdFFYoE1ofXWrPVH > > 1 // < CALLS 0,00000240720907126893 ; quote ; 0,0000000374244682302704 ; 0,000000036675978865665 ; 0,0204081632653061 ; 1,5 ; 0,0000000364888565245136 ; 0,0000000383600799360272 ; -6,2 ; B0cbfF6ac0EfDe39b39D3ebEf5169b8cDCAc6852feDaAfbdBDD8e58E8d0DFE6A ; < 73CPlhA9V035WZnRTprrqkl6h1k2u90Ev2h0205H1BBS5ZT172KrbGk0E6ArJ7OZ > > 2 // < CALLS 0,0000026260462595661 ; quote ; 0,0000000415827424780782 ; 0,0000000407510876285167 ; 0,0204081632653061 ; 6,5 ; 0,0000000405431739161263 ; 0,0000000426223110400302 ; 2,3 ; EB82b7226FE4B3eacb7abaD17e58c7cfEfcCddb4002BfBbB3456BCA8FaCfaC9F ; < oktWRmzpWv26TQuOEe250YRW5d6L6qpGP6r0ZPdaJr91966xO1roq8eZ6eXf6wud > > 3 // < CALLS 0,00000284488344786328 ; quote ; 0,0000000462030471978647 ; 0,0000000452789862539074 ; 0,0204081632653061 ; 7,2 ; 0,0000000450479710179181 ; 0,0000000473581233778113 ; 9,4 ; Ac1fa8D9DF6dD6F66FDabAAEA5baD4F462B5fCF9bfE2D237caAEB6Cf1Caa0cca ; < ilo2058tYaXp2F0ewrKKtRBLsbKk4bRdplrz40rPS7zi3K4L1x0k70iWL0t8pbkS > > 4 // < CALLS 0,00000306372063616045 ; quote ; 0,0000000513367191087384 ; 0,0000000503099847265637 ; 0,0204081632653061 ; 4,1 ; 0,00000005005330113102 ; 0,0000000526201370864569 ; 2 ; 37DceceDeA7bC54Efc3DFcEDc10cdFCc8dD70BEd6A12fA4B4d3D0E8Ed0cAfF22 ; < ne2kpP3Qs7bvt95a9CIoyJ50to8HDzRr9r5L9hXYd6eFsLAY479R4I7bG75j9o7F > > 5 // < CALLS 0,00000328255782445763 ; quote ; 0,0000000570407990097095 ; 0,0000000558999830295153 ; 0,0204081632653061 ; 6,2 ; 0,0000000556147790344668 ; 0,0000000584668189849522 ; 1,4 ; 6Fc7decC2a0cAABCd165cFf3DEDdFdcD66cE9Ce0dA5CcbbbAd7BDbe8BDCfD3eA ; < 4d326L02wDt3MADzENH47vdCW8J0jt44MiwEqUgs9fSi9oI27u3kR3nZS7I0JRnv > > 6 // < CALLS 0,0000035013950127548 ; quote ; 0,0000000633786655663437 ; 0,0000000621110922550168 ; 0,0204081632653061 ; 1,5 ; 0,0000000617941989271851 ; 0,0000000649631322055023 ; 8,8 ; E5aFceAFbeBa2FfA1eb3fb9eDCDCDcCa7A6FCb0fB52d62E1eFdAA60FeaC77CE5 ; < XYARkvq21Ki64O74z5NtNgc7XxiSJhTL3l4OJ870lLk3rdkWy8lP13pqg1bB8xow > > 7 // < CALLS 0,00000372023220105198 ; quote ; 0,0000000704207395181599 ; 0,0000000690123247277967 ; 0,0204081632653061 ; -4,5 ; 0,0000000686602210302059 ; 0,0000000721812580061139 ; 7,3 ; EDB9Fd1AB7Ac0C8e1a3BA3EeC41761faf0Fe6E9deEF35aeCdD079aCd1Efba0FA ; < MSz88ZE1b597VlGLWBEpsW5lxEs21dwX61Gv7yvR45QC2cO8rK3oaG4o5rVn7Cu2 > > 8 // < CALLS 0,00000393906938934915 ; quote ; 0,0000000782452661312888 ; 0,0000000766803608086631 ; 0,0204081632653061 ; -9,9 ; 0,0000000762891344780066 ; 0,0000000802013977845711 ; 3 ; FA230BD8fCf21fBf2A5504cBCEdf1dD7b2c9BBec99a8DfCb04BbCB483dEa2CD5 ; < X4F2Ji6sOkXry0rNstU71KX9DKFz291674ap4srLF6t5O1IxR7gJirL653JPP998 > > 9 // < CALLS 0,00000415790657764633 ; quote ; 0,0000000869391845903208 ; 0,0000000852004008985144 ; 0,0204081632653061 ; -7,4 ; 0,0000000847657049755628 ; 0,0000000891126642050788 ; -4,5 ; DfcdeaCD71EA80DC2dAe1Fe69c3bDAB3fd52Da94Ebebba5bcDaF1e74AabaBcf0 ; < u546CCr3F87arx0c442uW8jU4a8vR7C2e1jMc4b2b91q42awIYpCRf7hdqW0z2bn > > 10 // < CALLS 0,0000043767437659435 ; quote ; 0,0000000965990939892454 ; 0,0000000946671121094605 ; 0,0204081632653061 ; -0,8 ; 0,0000000941841166395143 ; 0,0000000990140713389766 ; 0,5 ; E51EDca652E8D5c5AbfaAC157a5fB8dDa44aFB7dEb04D6ed8f7F473785Ee3aAF ; < TGrW4qySMQQa550b91zU8eXLQ9cu816W81B8N51NvS8Ho60k04sf2PUj9fNGjaIA > > 11 // < CALLS 0,00000459558095424068 ; quote ; 0,0000000869391845903208 ; 0,0000000852004008985144 ; 0,0204081632653061 ; -9,1 ; 0,0000000847657049755628 ; 0,0000000891126642050788 ; -3,7 ; 62eA4CC2A55fE6c1eE1EcbbeaA6bbDeADfADfFa0aeEDaD3eBC7EEEA9C6FCcAFa ; < 73M6Zc9bui523mJ6C0ciWjcHOFzQnq59G1SKpNG32eYkooZsiztlNHSvFk9znB7j > > 12 // < CALLS 0,00000481441814253785 ; quote ; 0,0000000782452661312888 ; 0,0000000766803608086631 ; 0,0204081632653061 ; 3,3 ; 0,0000000762891344780066 ; 0,0000000802013977845711 ; -3,4 ; AD9cA8CfeBB49bfadBD8AaD83FFFBDACa3eAf64ABDec6C9810A576bbcBd4fA4E ; < 0EW2hJ5d30S1cWcc40TyymBXtcTfvwCq2e2n5397VIa1Tih5y86tqciCDUa538Zn > > 13 // < CALLS 0,00000503325533083503 ; quote ; 0,0000000704207395181599 ; 0,0000000690123247277967 ; 0,0204081632653061 ; -8,4 ; 0,0000000686602210302059 ; 0,0000000721812580061139 ; 5,4 ; 6fdddCEA85dBfd2eecEfA809D8a9BE37eaAEf1DE0eFB6BC16110bCf7Ba1CBaCd ; < 367tZ17Dxx153U6wvDFQcBTngMiXoFxKiMC05ogr1Rs8I05MA5u21QCfG5LT6y9J > > 14 // < CALLS 0,0000052520925191322 ; quote ; 0,0000000633786655663437 ; 0,0000000621110922550168 ; 0,0204081632653061 ; 6,1 ; 0,0000000617941989271851 ; 0,0000000649631322055023 ; 5,9 ; 78fc2e8cc3fE9AF697cAEA1cFB1A90FEaFd59Eb43A9eFBfD6EdDbECcdF47effD ; < 1Pqted0Ls12G9Ur6k6N6O3Y44wVFX23gX5IaE79D3i245PG0NvUDFKXEq8be53r4 > > 15 // < CALLS 0,00000547092970742938 ; quote ; 0,0000000570407990097095 ; 0,0000000558999830295153 ; 0,0204081632653061 ; 0,7 ; 0,0000000556147790344668 ; 0,0000000584668189849522 ; 1,4 ; 48aCeb46feaF52e00EeEAeF5caF0EFb0b026Ce39abED296982CaeeBBeE92f11f ; < XHRHxovhfoLM1DYYi6bI297IXnW1lS0a4e748Sg6eFu26yddw21vO65V4RTTg63v > > 16 // < CALLS 0,00000568976689572655 ; quote ; 0,0000000513367191087384 ; 0,0000000503099847265637 ; 0,0204081632653061 ; 0,4 ; 0,00000005005330113102 ; 0,0000000526201370864569 ; 8,4 ; C2d1DECbf97fDfeae4fc284ABDFEE9Bb04dccc8FdDE1cddA5EADBCdeEEdBBA48 ; < XOgGKmpF7vt2xE3dps3Pf8W8FxG75xsdkDX41XG1r90WR0IqqC8f1UPNJr7VEHpS > > 17 // < CALLS 0,00000590860408402373 ; quote ; 0,0000000462030471978647 ; 0,0000000452789862539074 ; 0,0204081632653061 ; -3,9 ; 0,0000000450479710179181 ; 0,0000000473581233778113 ; -6,3 ; a3Fc2E9DBa1B810580cFAafAB0Adcc449Eb70E4D46D6FaCDaCEd3fcB9F338fC3 ; < i9uNYaYmKzf23RYb32870H47sqD3nna0Sdpj8Oy1Nq1oP06E6MV54D88R7a2Ufnv > > 18 // < CALLS 0,0000061274412723209 ; quote ; 0,0000000415827424780782 ; 0,0000000407510876285167 ; 0,0204081632653061 ; 9,4 ; 0,0000000405431739161263 ; 0,0000000426223110400302 ; 5,9 ; e8BbeaD0EBedB50da69BDfCbBFA5b0bEDD4EecEcafDcceA0AAd91Cddf0Fdbc87 ; < GcYIBAwNRLS5IECi3T889S3KoDnQlaa0fhhn5sGmp28XSr4L8o2dqN5pdS8Rr12J > > 19 // < CALLS 0,00000634627846061808 ; quote ; 0,0000000374244682302704 ; 0,000000036675978865665 ; 0,0204081632653061 ; 0,3 ; 0,0000000364888565245136 ; 0,0000000383600799360272 ; 4,8 ; 1Fc9ddA7a168BD715a1DFad5f049b3EaeCEE536fFcF8aCd9ED8a06cd2c33fCFC ; < 7mB249VQSbR678i4kWxhujpHJTkgJ25G4vGCS318W2kIEgoK1310QT79W8hiDXUL > > 20 // < CALLS 0,00000656511564891525 ; quote ; 0,0000000336820214072433 ; 0,0000000330083809790985 ; 0,0204081632653061 ; -0,9 ; 0,0000000328399708720623 ; 0,0000000345240719424244 ; -5,6 ; B71b6cB6e75cBCCBc2cEE8AfFBcBCf66e0FefBEB8d6f7BB8cB1EA9EbCad2bFdC ; < UZ936806vcH765502xnJzvKlz0QyE9ey14Ly57myDT4lUG5A87kIb4QKSspRoT72 > > 21 // // < PUTS ; 3M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000218837188297175 ; quote ; 0,0000000336820214072433 ; 0,0000000330083809790985 ; 0,0204081632653061 ; 0,9 ; 0,0000000328399708720623 ; 0,0000000345240719424244 ; -2,6 ; bE2baA6aEB21DADA8A3df8bE6BD33cafceDAeE7B3D90BCbF4FeFEE18E1fDaBfD ; < Xpfz7A35l5AY1a3zgH8QCJkKzq4CMxVJIRMra56yJ6dk3JXw3JD3vVzHV1v0S05k > > 1 // < PUTS 0,00000240720907126893 ; quote ; 0,0000000374244682302704 ; 0,000000036675978865665 ; 0,0204081632653061 ; 2,7 ; 0,0000000364888565245136 ; 0,0000000383600799360272 ; -6,8 ; 9566Ec180F64ADDb12d85ADF6eD0aFcfC893edFfaee65f9eC0C2bf2BaeD88dcB ; < x2iz5Jiq1c8edNjU3CvG1EYygTQWi9vo43WE6137Nza37Aq9M8eGzX5Z5s1V7G1a > > 2 // < PUTS 0,0000026260462595661 ; quote ; 0,0000000415827424780782 ; 0,0000000407510876285167 ; 0,0204081632653061 ; -5,4 ; 0,0000000405431739161263 ; 0,0000000426223110400302 ; -9 ; ADD98eDc6cECfb9d1D3c245246Fc0fDcEfBEd73aaaaBcB179D4da7BeFdcABc2C ; < LkVP35kyJ61MWBjqEOZL8sTVFSKrSWMIh6LEnWNi0nw0VT35j1oOv7B8N37ffE5U > > 3 // < PUTS 0,00000284488344786328 ; quote ; 0,0000000462030471978647 ; 0,0000000452789862539074 ; 0,0204081632653061 ; -1,9 ; 0,0000000450479710179181 ; 0,0000000473581233778113 ; 1,4 ; 83fe70f2Fe2918bae13ae7CC39a8a667b1fDD4e351A7FDaD3E8CBe3FDcc694ea ; < 8VbHCR7a2H4F4KES5v0EVFeH7q63uGb7u85a1WLu8F39VW0s72kaDNyNwq7C3foh > > 4 // < PUTS 0,00000306372063616045 ; quote ; 0,0000000513367191087384 ; 0,0000000503099847265637 ; 0,0204081632653061 ; 4,3 ; 0,00000005005330113102 ; 0,0000000526201370864569 ; -5,9 ; EFEf62bccCBEDD0f1fA21BfdaBEeC96EBB18AEbDFfE2283Ebe75B7c437cDcff2 ; < tZZjvhEQ4uL1n94L2142T825k9ZfY07m9n1mPB1W5333Vj0PI9G6Gf25nGiHesd3 > > 5 // < PUTS 0,00000328255782445763 ; quote ; 0,0000000570407990097095 ; 0,0000000558999830295153 ; 0,0204081632653061 ; 2,4 ; 0,0000000556147790344668 ; 0,0000000584668189849522 ; -2,1 ; eE48fAE2394fE9F659b5BbDe5E35ebd5a5AA1DC828AeC2bBDeB3135e46A8AB8D ; < hFEZgmSkYEb1B54vi3F5ZGnjBIzkb2xLrCc9BG36AVXERd5prxB0MR8hO6RIq883 > > 6 // < PUTS 0,0000035013950127548 ; quote ; 0,0000000633786655663437 ; 0,0000000621110922550168 ; 0,0204081632653061 ; -8,7 ; 0,0000000617941989271851 ; 0,0000000649631322055023 ; 9,9 ; 2d5E8afd7FcFE0DC4eAaDD332C0e52CF5eAe2CA2Dc6AAeAEEA2FA1CAdEC2DEFB ; < QbLJrEhQFt8XX7Ea0A55qlnFobVqYEahvl6TY80f7oTqO3Mjz2sHW7v68W1brp5C > > 7 // < PUTS 0,00000372023220105198 ; quote ; 0,0000000704207395181599 ; 0,0000000690123247277967 ; 0,0204081632653061 ; -4,2 ; 0,0000000686602210302059 ; 0,0000000721812580061139 ; 0,8 ; A103CDD7de1A9BFe52C75bAfcCDED6EF3aBCE8a021ebb0dA0FdEbAF0153DC63c ; < yxMNV3HtxPkxC2id87m46SD1Pyk29hI3CjgR10B0Q51E7Ma3uyq4LozzDcp9xU2i > > 8 // < PUTS 0,00000393906938934915 ; quote ; 0,0000000782452661312888 ; 0,0000000766803608086631 ; 0,0204081632653061 ; -0,3 ; 0,0000000762891344780066 ; 0,0000000802013977845711 ; 5,3 ; FB77dad9CbF752Be4c9CC0fdCDdbcBA3316d0e7Bf20eEa8CFC2bebDb5515B9De ; < XcF8r2YFVH57w9Aq761xg51ulk4I6NY5M4Fco2v3p3JZGjW3KaIOcYHLG9vF11R6 > > 9 // < PUTS 0,00000415790657764633 ; quote ; 0,0000000869391845903208 ; 0,0000000852004008985144 ; 0,0204081632653061 ; 5,6 ; 0,0000000847657049755628 ; 0,0000000891126642050788 ; 3 ; 5E22a0C1530c2910aE9c1C2276A9BABb8CCDf7eFF799deb3db7fB8eB312A1dB2 ; < Od4MLFdH2nV7VyF6lWK4wXlnv47N9dlTo1I0y865iQx9J3195X6P2gI31KP4dTii > > 10 // < PUTS 0,0000043767437659435 ; quote ; 0,0000000965990939892454 ; 0,0000000946671121094605 ; 0,0204081632653061 ; -1,1 ; 0,0000000941841166395143 ; 0,0000000990140713389766 ; 2,3 ; a8B8A3BbBe8eDcCeBa6fECdBdCAf4Ff31Ea74a3cCf1C6d11bABE1F2D2f7b1a79 ; < z7J5P9LE20R9dzqsg3d7d4NCY2t5gp0P436UeBoNEmaG9J224EWFRD1ZQQ582vU4 > > 11 // < PUTS 0,00000459558095424068 ; quote ; 0,0000000869391845903208 ; 0,0000000852004008985144 ; 0,0204081632653061 ; -9,7 ; 0,0000000847657049755628 ; 0,0000000891126642050788 ; 6,2 ; 2DF6bFe7CEdFf8B7cE3E0aAfA8aCeC90bBFFEc69bCdd1Cc6aff7CBbaABcc37bf ; < 6KcJ0k1vn11GvEk20Tro2Xe6W5bZKrOU4Mta8Wku7i2K9Y4wjQt7RG5yvwCW11jX > > 12 // < PUTS 0,00000481441814253785 ; quote ; 0,0000000782452661312888 ; 0,0000000766803608086631 ; 0,0204081632653061 ; 2,1 ; 0,0000000762891344780066 ; 0,0000000802013977845711 ; -1,8 ; 1dfa67abd95d7FdaDebf3C4FDfDFEDAdC9FeccC7b5A3dcdFece9d65efcaFbdBF ; < 8mDKiajlP1VtRF0KU0VjL5y7Mdvam38UtFt99PCLq6xao7059A9LpD9jtu6f45ci > > 13 // < PUTS 0,00000503325533083503 ; quote ; 0,0000000704207395181599 ; 0,0000000690123247277967 ; 0,0204081632653061 ; 1,8 ; 0,0000000686602210302059 ; 0,0000000721812580061139 ; -6,8 ; C1dAdABCaC2bdbf64Dd6e1D7cc6fba4CE293B3FbEEaF8BDFFf0EEB2B0d8Ae8df ; < pjP5nmcaWImF1ai1dK8nrnuAo5gzaw8Crsj6X51Hcrty9UG51H0JqRj5CITLzl9M > > 14 // < PUTS 0,0000052520925191322 ; quote ; 0,0000000633786655663437 ; 0,0000000621110922550168 ; 0,0204081632653061 ; -6,6 ; 0,0000000617941989271851 ; 0,0000000649631322055023 ; 4 ; e9B3DaFEeafE1BFc45dBfA6DDB7dc0Ff83d6FDDf1F38B36ECF20b68Bd6DDcE66 ; < 2SLiKzdcAEAZZS5G1584ig90jlen9ZUkN4ggK7FA4N40i4B0YOpBt8PiI6Bz7WQu > > 15 // < PUTS 0,00000547092970742938 ; quote ; 0,0000000570407990097095 ; 0,0000000558999830295153 ; 0,0204081632653061 ; -1,9 ; 0,0000000556147790344668 ; 0,0000000584668189849522 ; -8,1 ; DfFDd3aAE4CAb4c94Ede73EcDc6DBca16cDD79Dda4EBc2DBa2b9F79dB2D4b928 ; < 4c2OP0U5hltJ9O195eSIsgeDcr9DqEGLTNswtK7duUx84frQMN5Qn5yd3z3KL3ke > > 16 // < PUTS 0,00000568976689572655 ; quote ; 0,0000000513367191087384 ; 0,0000000503099847265637 ; 0,0204081632653061 ; 2,2 ; 0,00000005005330113102 ; 0,0000000526201370864569 ; 1,4 ; e5CADacbcda5225fB84ACA29c42EC0faDc6EABDa2fE8F8e686bbBbAEf0BaCad9 ; < ia9s6a9gmLjj79d8z5DzmowJnTV3XqYhKiBffc8bV2L2g7H369pKAq2ks1CAII38 > > 17 // < PUTS 0,00000590860408402373 ; quote ; 0,0000000462030471978647 ; 0,0000000452789862539074 ; 0,0204081632653061 ; 6,6 ; 0,0000000450479710179181 ; 0,0000000473581233778113 ; -3,2 ; e13Cf6F0eB42A99BbB4B0319F03Ac1FFBCdA667FCFCCFEF7dEBb2682C9ab917b ; < 8Q1oeD4RA2Z7EWbiadoTEpWVPjbc4L69z8Ee397ACCk84Z24amgVAxvlo37tWk91 > > 18 // < PUTS 0,0000061274412723209 ; quote ; 0,0000000415827424780782 ; 0,0000000407510876285167 ; 0,0204081632653061 ; -4 ; 0,0000000405431739161263 ; 0,0000000426223110400302 ; -0,1 ; ebeDBe0cffe9e3E1C8fAdd5EDADaCf1b58b3Fd3D15C7E8b1Edf6bBaF8cbF3B1E ; < kwcz51tpWfXjmTPHW599EJS7lxuyUL501zX08k3ZU9A43VXztTJ6kN8nzQaBe4X3 > > 19 // < PUTS 0,00000634627846061808 ; quote ; 0,0000000374244682302704 ; 0,000000036675978865665 ; 0,0204081632653061 ; 3,6 ; 0,0000000364888565245136 ; 0,0000000383600799360272 ; 7,5 ; Ada20dF4dc575Cebb6eCDAb6cFd2eAF0aa25EA641ad76fbFcB8181AaBfbDa79B ; < Fjg5fLqMWvigd5ei45wG0rts3VGWZwMZorKXc8Re4AZ45Y0unccZN65M2ojd1FV8 > > 20 // < PUTS 0,00000656511564891525 ; quote ; 0,0000000336820214072433 ; 0,0000000330083809790985 ; 0,0204081632653061 ; 0,1 ; 0,0000000328399708720623 ; 0,0000000345240719424244 ; -6,2 ; AA51ca3Bf49cCFa30eefa01bAEB0ba60DB3BBC2aF510F64bBCFfe3abCE14D9BE ; < Xw1B25bzVZc83FI4R4Ub73a4P89Eidu1P8R2PLt8plHd4683pSMoLNtNyaCU3c3n > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000219078235968816 ; quote ; 0,000000071104758194321 ; 0,0000000696826630304346 ; 0,0204081632653061 ; -7,2 ; 0,0000000689716154484914 ; 0,0000000732379009401507 ; 4,3 ; F9E5eeaF34ea74f5B4E9Ce89eBAEeB60a54cec9bCdaEc6bBCdea95b1DD1b1ADa ; < PZVPOFsioFW5znF10b5Ol2pjuDPuA7mX7134i9LUU274EqEF7D7bBQ1m9WLvtsDH > > 1 // < CALLS 0,00000240986059565698 ; quote ; 0,0000000790052868825792 ; 0,0000000774251811449277 ; 0,0204081632653061 ; 4,2 ; 0,0000000766351282761019 ; 0,0000000813754454890566 ; -1,5 ; 70EBDc1f7AaaaE78eAea7c59dE947dC9e35db9AcD98CBfbbedD552eabc7F53fC ; < 4as2ausO2g3R8YIBGB9AbjtMk56l4EdfS3ZjuXhj2c59a1OX0VuZ8H0Ie1Eorl23 > > 2 // < CALLS 0,0000026289388316258 ; quote ; 0,0000000877836520917543 ; 0,0000000860279790499192 ; 0,0204081632653061 ; -5,2 ; 0,0000000851501425290017 ; 0,0000000904171616545069 ; -7,3 ; afdDfCe5C1e8AE2BBbfDfCC5Fd1Bd6CDcc0cBAaB8B765A4fdE20FdBdf92AbBa3 ; < 8bdg1ZO2Y2hAlp71v1z5sYzj3PoYkA85MtFKJhg062ar01yln5L7QmlLlSWy3ptv > > 3 // < CALLS 0,00000284801706759461 ; quote ; 0,0000000975373912130606 ; 0,0000000955866433887994 ; 0,0204081632653061 ; -0,7 ; 0,0000000946112694766688 ; 0,000000100463512949452 ; -0,9 ; E3edFDA0DA9EBabAfcbcdAa1Bf69e99CBc2CCb4F5eE69b810bB68De96b8DAfCe ; < 7oj11kvjDoGL75O55szEi78Fv1G31EdcyISB9DXTT4A21k2JG62j2Or4l7HWYn5T > > 4 // < CALLS 0,00000306709530356343 ; quote ; 0,000000108374879125623 ; 0,000000106207381543111 ; 0,0204081632653061 ; 5 ; 0,000000105123632751854 ; 0,000000111626125499392 ; 3,4 ; c3b3dd2dbeBe6ef4123a68fB37B02FDFb7EBD7DB148CbDEceCDB3dC5eb4FdFeE ; < fR46x9m3Hq036W95V3zj0ZQQ0l7PdwOnn3pq2Vk74C80799o8a0e2k715moXzDT5 > > 5 // < CALLS 0,00000328617353953225 ; quote ; 0,000000120416532361803 ; 0,000000118008201714567 ; 0,0204081632653061 ; -5,5 ; 0,000000116804036390949 ; 0,000000124029028332657 ; 7,3 ; a64EbCDBe50a7A42dbfABbf99Ec2daeb7C42Ecbc0CBd0CEEF151AcEb0b8D1CfF ; < Vkii0p8AgQJ1S05ypu9py0c2WQ6bQZ5oA1dZls2xim86z9c582ZI0RR80hyXGmFx > > 6 // < CALLS 0,00000350525177550106 ; quote ; 0,00000013379614706867 ; 0,000000131120224127297 ; 0,0204081632653061 ; -8,5 ; 0,00000012978226265661 ; 0,00000013781003148073 ; -0,6 ; b26c29BE3FBEeaa7fe0AeEdCbeE246EF918caE9f1EEdd8FDD5DeBeBE48BB05AB ; < O7Ic4tdeUZ0cJ1RUbAL3524rS17xSJ7TZcjB0PNT4a39QGx1M0aTUSbWbhBJ1aQn > > 7 // < CALLS 0,00000372433001146988 ; quote ; 0,000000148662385631856 ; 0,000000145689137919219 ; 0,0204081632653061 ; 0,9 ; 0,0000001442025140629 ; 0,000000153122257200811 ; 2,4 ; aDA7eF8d4785Addee2bBF5Ebce97CeaAFbb7E3Fe5eBbb4a3aD43D6f38fb4fc7B ; < 3Jttz0kvIKD3uyp0M5OwkPBmjr9v7T1QME8AXDr58d0IRz7Ah67EJ9Pn4Gj9TSnt > > 8 // < CALLS 0,0000039434082474387 ; quote ; 0,00000016518042847984 ; 0,000000161876819910243 ; 0,0204081632653061 ; -8 ; 0,000000160225015625444 ; 0,000000170135841334235 ; -3,3 ; bfdBb3F2cAF56aC1DbAfCA3c3C6D1CdebAe0Ebee6BA9aA9Dfbf04eBBbDfdfaBe ; < 04IR1vIo0YGnJ7B9mAuzDYJ4p7yjuce898G9S8N4waVX62P1XD6m80ZNsguQLH4G > > 9 // < CALLS 0,00000416248648340751 ; quote ; 0,000000183533809422044 ; 0,000000179863133233603 ; 0,0204081632653061 ; 1,7 ; 0,000000178027795139383 ; 0,000000189039823704705 ; -8,8 ; CbBa88af163A3F9cB7b2Ffdfdd6bEA836Df07bfFedD3Dce9740dFFFeedAf8be9 ; < D2FBKcnAGMZ48h540YpIGcf5xrT7mm536L6CT8b41v9XxGO8H49c5IU2cq5JNktj > > 10 // < CALLS 0,00000438156471937633 ; quote ; 0,000000203926454913382 ; 0,000000199847925815115 ; 0,0204081632653061 ; 6,9 ; 0,000000197808661265981 ; 0,000000210044248560784 ; -4,3 ; Bd31B9A2F8E2c3b0EbE1Dd9cE82f9bdFfeB484AdeCced1f64a2b17B8cfbacfB5 ; < 9jAC1OknY0Tl3q44dJtUE9uTmvwK90VGKKW1Xr0YD7ShwjHDBotM80EJnauYHeJm > > 11 // < CALLS 0,00000460064295534515 ; quote ; 0,000000183533809422044 ; 0,000000179863133233603 ; 0,0204081632653061 ; 9,1 ; 0,000000178027795139383 ; 0,000000189039823704705 ; -9,9 ; 6ebD5eEF09B08Bcac140EbaBfefeCaDFDBeBC0eC4Efd06ADFECBd4efdfC4eF7E ; < GLeOD0qX4X2j9WwH17WJ240dNl48Gc47EUw76yx7y7uE5w099u0sDG7EH469k0ue > > 12 // < CALLS 0,00000481972119131396 ; quote ; 0,00000016518042847984 ; 0,000000161876819910243 ; 0,0204081632653061 ; -4,9 ; 0,000000160225015625444 ; 0,000000170135841334235 ; 5,7 ; D2EAe33A078ecBD94A8Aeda56dBbDd6B6e833bBAcCA9c508ccbFDbFc0caf14ee ; < nb9C12ify18xkg3rpO0xoP10UxJpis1XW1IwY43B145E9nKJTy1OPe0ej96HWDBR > > 13 // < CALLS 0,00000503879942728278 ; quote ; 0,000000148662385631856 ; 0,000000145689137919219 ; 0,0204081632653061 ; -5,1 ; 0,0000001442025140629 ; 0,000000153122257200811 ; -1,7 ; fCd3eBC1FE93DDeCeA4e7BCfBD4B5feAbdeaCC4Dd7E93bEb5a54F27fBacBe2eC ; < OTaMUE9SGbvXy7DWs3977jgSrZpa49tV2g3aWz371n7zBwo9p33EPsp8g16tdz64 > > 14 // < CALLS 0,0000052578776632516 ; quote ; 0,00000013379614706867 ; 0,000000131120224127297 ; 0,0204081632653061 ; -7,4 ; 0,00000012978226265661 ; 0,00000013781003148073 ; 3,9 ; 99FE77f7dCB0f69eFDCDa32DFFcb4eFcBcecd4ffCbDdF8acfe89ccea1Ba1B7aC ; < pS0kUAe6L41VP98LbJag38zE38LKJ3xqUp3488dhl68b5V7veQzJomo4tH84Qf9j > > 15 // < CALLS 0,00000547695589922041 ; quote ; 0,000000120416532361803 ; 0,000000118008201714567 ; 0,0204081632653061 ; -3,3 ; 0,000000116804036390949 ; 0,000000124029028332657 ; -2,3 ; F1F2dfdebD5B7F7BEA7bEEfC2afecA7DDeEA1e6aeAdfbBf9bb5fCAcC2b9E0B6F ; < 96EYnJHzttoAI26qB770MUf6Gtaqe3o4NS1Z51aZq44yUf6H3xfk8205NiZJd8Ww > > 16 // < CALLS 0,00000569603413518923 ; quote ; 0,000000108374879125623 ; 0,000000106207381543111 ; 0,0204081632653061 ; -3,5 ; 0,000000105123632751854 ; 0,000000111626125499392 ; -2,7 ; 8d13F48aeDeFecEd7dFB8BCacF7e0FAFCaa2ab5CBcbeAAbceCa9CAFADeD3bABb ; < FP40dL8BG1O65D45lK3de00DY8D3hf1FhReiM74RdP6nsFg1i0zdMbkBzd9Zp25e > > 17 // < CALLS 0,00000591511237115805 ; quote ; 0,0000000975373912130606 ; 0,0000000955866433887994 ; 0,0204081632653061 ; -2 ; 0,0000000946112694766688 ; 0,000000100463512949452 ; 4,7 ; FbAceFB6CeAc97C5FC1bAD7B52dbfD9C37c4efcbAD4CD8cDEDf26eBeF216B1Aa ; < C2Su8JvC76xX9OkO219ovj3P4Zq024dY5aL8kO9880KwW3ESB2b0NtzHnfVf2uEO > > 18 // < CALLS 0,00000613419060712686 ; quote ; 0,0000000877836520917543 ; 0,0000000860279790499192 ; 0,0204081632653061 ; -0,5 ; 0,0000000851501425290017 ; 0,0000000904171616545069 ; 0 ; a10C1A35D4bB5EcBdaDDec3e09Bd8cbaDac831eB1EDbbDAaB0CDb403df0F5BD7 ; < dhPjeAafB95Vmtk4PKb4K77h6SysT5XlN8FEE6n0rk62mwiioaqzT7SV553m72l0 > > 19 // < CALLS 0,00000635326884309568 ; quote ; 0,0000000790052868825792 ; 0,0000000774251811449277 ; 0,0204081632653061 ; 9,7 ; 0,0000000766351282761019 ; 0,0000000813754454890566 ; 3,6 ; 6f77f69Acd5EcbBDD1a1a4151f7A3f2eEE15FeCCeeFdccB1358eE51cf5C79f5D ; < O70BG1GGZp178xIC2ftG094bJv4Ui7ZdFlF136cwu120gIc95oM522kJHVv6eCYX > > 20 // < CALLS 0,0000065723470790645 ; quote ; 0,000000071104758194321 ; 0,0000000696826630304346 ; 0,0204081632653061 ; -5,2 ; 0,0000000689716154484914 ; 0,0000000732379009401507 ; -5 ; 2FeEfbebBFDb2dfcacCdE2EC7EceADBc4ed0fE8DaB043ABDdEbCFafFa43bE2bF ; < Z2b0cPj5hJWCFWf25aRjZ9c7IO97IW0n804aKP02r3ZXbo54948Z3dvWh9jH613R > > 21 // // < PUTS ; 6M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000219078235968816 ; quote ; 0,000000071104758194321 ; 0,0000000696826630304346 ; 0,0204081632653061 ; -9,3 ; 0,0000000689716154484914 ; 0,0000000732379009401507 ; -1,5 ; Df7B3f7bb3FcFbfCF83D197AEf4DdF9BAaED5deB90fdAf3BA97F0bf3C59Bd383 ; < G70Ez9sON60kp6iIjVGwG6Dr9E0k3LJ5Xk04g40yCk592U176Se21fqlWvcKqMOs > > 1 // < PUTS 0,00000240986059565698 ; quote ; 0,0000000790052868825792 ; 0,0000000774251811449277 ; 0,0204081632653061 ; -9,4 ; 0,0000000766351282761019 ; 0,0000000813754454890566 ; -5,7 ; 5Bca90Ce9EBD88DCA19c983Eec2FA3b9c8eA3CfFbCD442EcdE4DBf2eEaDcfe1d ; < aG0U7f7452R9c7bKGTR6ijo1447Gp981iUJnTMh8OhQ1m5eSQFA8Ibg8X7plF127 > > 2 // < PUTS 0,0000026289388316258 ; quote ; 0,0000000877836520917543 ; 0,0000000860279790499192 ; 0,0204081632653061 ; 9,8 ; 0,0000000851501425290017 ; 0,0000000904171616545069 ; -8,6 ; 62Dc8BEdA2Eecaa95fb1c6FEfAFCcd6E81EDe00B8A3591cCEf8FB5fA53a48b2A ; < wr5glo849Cp3w0xP19xji7eXGxYOoMl4N3ALGo0FmwGVsZhuEyWYp6X15Z4Ly5E6 > > 3 // < PUTS 0,00000284801706759461 ; quote ; 0,0000000975373912130606 ; 0,0000000955866433887994 ; 0,0204081632653061 ; -8,6 ; 0,0000000946112694766688 ; 0,000000100463512949452 ; 1,8 ; d3FFcb5dDbA59eD0BD3888EDEeCADbA3546c36A3EC6Ffb483C6da088ebeF96Ae ; < hB0Z7Tr821ybDckN3j83kPcnv8m4O4b703eNdK2kju08Z0K7a088fMluvj0q9Fd3 > > 4 // < PUTS 0,00000306709530356343 ; quote ; 0,000000108374879125623 ; 0,000000106207381543111 ; 0,0204081632653061 ; -1,8 ; 0,000000105123632751854 ; 0,000000111626125499392 ; 7,2 ; fdCA53aC1ca4DbbcF9F2A2cBB57FB62dC5D6eEc5DFf06ed1c79FF9B010AaFacE ; < RZUS78n8G94r7TNFR8osdVJYKz7797CKI8UeQ6G424NGzFyVjollPjUxeg50r66W > > 5 // < PUTS 0,00000328617353953225 ; quote ; 0,000000120416532361803 ; 0,000000118008201714567 ; 0,0204081632653061 ; 7,5 ; 0,000000116804036390949 ; 0,000000124029028332657 ; 6,5 ; e9Dc9eB9D0aCaC5CFDcA0ba2fBcFeD1eCcce026B62B0bbc212DDBFE5A79Df0A7 ; < Gi1p9Hv0NuslaCDbrfLg59s17f1l9CP09W2004c0tQv19k9Sr1J03tToq8EPpqe7 > > 6 // < PUTS 0,00000350525177550106 ; quote ; 0,00000013379614706867 ; 0,000000131120224127297 ; 0,0204081632653061 ; 3,5 ; 0,00000012978226265661 ; 0,00000013781003148073 ; 8,3 ; 8cc5baFBAA4dBdCCfa0e7F45BFCFFDEb301Cc1E20C765eD4bEaDaedCBbE4f61a ; < jtLIa7Q0T4l87XY99NSLmvOH6F044sjU727I8VQ3566663kG9ZKWk9iZDUXcVXJw > > 7 // < PUTS 0,00000372433001146988 ; quote ; 0,000000148662385631856 ; 0,000000145689137919219 ; 0,0204081632653061 ; -4,9 ; 0,0000001442025140629 ; 0,000000153122257200811 ; -1 ; ebbDFFBeC3Be3ea9eEAfbd5fFDAafB6de165fcceeD7b1f15c45DFFafB6FB6B3B ; < 10IlV614AX4r4ljH51iDJk03U1usUyJqsCBGMA2bLZ513W5kvkoVhO1nvXp5GrEJ > > 8 // < PUTS 0,0000039434082474387 ; quote ; 0,00000016518042847984 ; 0,000000161876819910243 ; 0,0204081632653061 ; -3,8 ; 0,000000160225015625444 ; 0,000000170135841334235 ; -7,9 ; AEbFb8a7cCfC57eb1Bef2a5EF10BaBf6aEEde5EfebcBB02CBA5EDd3FcdDA2FfF ; < d4351dgydLWaaRb3y2kzlQW797swHw891Q2ZQrsPT4ot1m1M52SF09Lx6IRS38xR > > 9 // < PUTS 0,00000416248648340751 ; quote ; 0,000000183533809422044 ; 0,000000179863133233603 ; 0,0204081632653061 ; 2,5 ; 0,000000178027795139383 ; 0,000000189039823704705 ; 2,7 ; D5BFAB85BCbEaACA2EfadAedD507Cc8aaC0d3cF6FcD8d1b4Cd64CCb1013AF680 ; < 4M38qgK75ffddcX92729nu5bi8ZvzdWksmLWy5183l0oXq9Y4UGVOQK2cc2pg28z > > 10 // < PUTS 0,00000438156471937633 ; quote ; 0,000000203926454913382 ; 0,000000199847925815115 ; 0,0204081632653061 ; -3,9 ; 0,000000197808661265981 ; 0,000000210044248560784 ; -0,2 ; e7E1a056cA2c6D3aDE5abfd6a6E26Fb5fbfaABFA3F5A26bdEAB3c0fFC30BcbaD ; < 2038nmug9036WbqSaY18yQ40uO7e7GhHWoO90tA1O86e32jsk5mYcfExooKwNsUY > > 11 // < PUTS 0,00000460064295534515 ; quote ; 0,000000183533809422044 ; 0,000000179863133233603 ; 0,0204081632653061 ; 6,1 ; 0,000000178027795139383 ; 0,000000189039823704705 ; -0,1 ; f7eC70efbdd70fbC87a920dBcfFEd12fe2ced6F8f5F4ab5CDBA8C78dD06eAD54 ; < 54j1Ej126aImaf6PMDA9aUDQ39Md24bvlUo919i30x257VF2up0B0oFCqExhC9Yz > > 12 // < PUTS 0,00000481972119131396 ; quote ; 0,00000016518042847984 ; 0,000000161876819910243 ; 0,0204081632653061 ; 1,9 ; 0,000000160225015625444 ; 0,000000170135841334235 ; -5,8 ; bECAeFb343CEA9ddbF6BcEf6bFdAEfD54EfAaB032afacdD14d6DF46137B1782f ; < NeR57Ek6YuQD354GwzA3x3HKT5M5nt2dNrZRfHuOqrQ3H8F7i0hu1iyVMmRQMTIP > > 13 // < PUTS 0,00000503879942728278 ; quote ; 0,000000148662385631856 ; 0,000000145689137919219 ; 0,0204081632653061 ; 5,2 ; 0,0000001442025140629 ; 0,000000153122257200811 ; -7,8 ; 54a2c8b8ef5af34f0AE04247Bdd8b2966F262a9DCAFfB6D6bF4aAFeDeAB5CbD3 ; < cVMv56L82I42r94aEe7fp9eopM5zI31G02jxF97W3F6ki7mSg1i8G3C274414TOp > > 14 // < PUTS 0,0000052578776632516 ; quote ; 0,00000013379614706867 ; 0,000000131120224127297 ; 0,0204081632653061 ; -2 ; 0,00000012978226265661 ; 0,00000013781003148073 ; 7 ; E3acCCb0E0bc5e6BB0fbBa2f5f44dfBdD161DC40e9Bf35554A7dBeF1aB9EDEdb ; < 536rFx73510TI8IQY0DGV70X79yXKJpmVC513a6Fkl54f49Pw31lJ2xF6o9Om4bF > > 15 // < PUTS 0,00000547695589922041 ; quote ; 0,000000120416532361803 ; 0,000000118008201714567 ; 0,0204081632653061 ; 2 ; 0,000000116804036390949 ; 0,000000124029028332657 ; -1 ; 63ad4aBACEC5ECCfAEE4Dcb4a9bD4cfdAfC0ac1Bff85DA5c0265Df150DB9F681 ; < Q9aN1LCXsbGUyNxydyZ7DN0B2vbQL0M1fYfHW3QK2h69paBFhnD64qhnWa81YzWO > > 16 // < PUTS 0,00000569603413518923 ; quote ; 0,000000108374879125623 ; 0,000000106207381543111 ; 0,0204081632653061 ; 1,9 ; 0,000000105123632751854 ; 0,000000111626125499392 ; 8 ; aBEeFABDE7eCBcB8e7ed52DFfbfdBCDEA8f3AB496dd54d03396Fbeffa633C9a9 ; < WtTymXs8uGPxArXfnokuN0UrKB6EyCZCzCvgVW1LX755Lbsg4zC0HzsTNSNZhrsQ > > 17 // < PUTS 0,00000591511237115805 ; quote ; 0,0000000975373912130606 ; 0,0000000955866433887994 ; 0,0204081632653061 ; -1,4 ; 0,0000000946112694766688 ; 0,000000100463512949452 ; -5,2 ; b9eDafEc7Afcc1CAecaDaD0BEAE9dbe421c4A76Bb20ed30EE0c6eEd6b77bd5B3 ; < 0UZAgq4602VTB26GIgzHd1eyHjrBgKZUQSV50w6X0jQU6V6C0lJgnEyb4gdfIY26 > > 18 // < PUTS 0,00000613419060712686 ; quote ; 0,0000000877836520917543 ; 0,0000000860279790499192 ; 0,0204081632653061 ; -1,2 ; 0,0000000851501425290017 ; 0,0000000904171616545069 ; -4,7 ; C1b3EadBdDe81A42AFf2002FBe2CfBEa654ac3625dFed7feeEf5fac53dC0B37e ; < j0TG10K1r5eARis2WoJnoA10Bei80HZ5Ph43kNm8E7k4Ue2a9rYZnbq1iPosuWKu > > 19 // < PUTS 0,00000635326884309568 ; quote ; 0,0000000790052868825792 ; 0,0000000774251811449277 ; 0,0204081632653061 ; 5,2 ; 0,0000000766351282761019 ; 0,0000000813754454890566 ; 7,8 ; 8cB9cfDA3Ca5e9FEdF6cDbfC70EbBBd3bd1701B6B4EEf7eaa529fceACdfcEFe2 ; < CPDH66LH2KzL9BH94rKdy58IqmAzRM5q3MUhMcF2rinzA18P580vhu88Q1RhT8Or > > 20 // < PUTS 0,0000065723470790645 ; quote ; 0,000000071104758194321 ; 0,0000000696826630304346 ; 0,0204081632653061 ; 2,6 ; 0,0000000689716154484914 ; 0,0000000732379009401507 ; -0,5 ; 2dDc0A12Bf3cACf70eEb0c3CD3dBCDDa73dBA1C211F5A15EEd246e9315Cbb41f ; < K4567tpRv41hcLe5R6urXw9cKYkAzCX4rZsKow84M00Fm838Yjz60xLbe5mZE50R > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000219915224025948 ; quote ; 0,00000014760841724015 ; 0,000000144656248895347 ; 0,0204081632653061 ; -4,4 ; 0,000000142442122636745 ; 0,000000152774711843555 ; 3,9 ; 3A2ecb465FBdCeCA83F1EC1D81bBAFCCBA98E0e8be0c7B7DE5B4d231AF0E5E2e ; < Lj4504HrQUvP4NsK4AijNVK7c1VMjv3ayqq1fdb67HAe8M2MPjX47H3LL84UdYZl > > 1 // < CALLS 0,00000241906746428543 ; quote ; 0,000000164009352489055 ; 0,000000160729165439274 ; 0,0204081632653061 ; -0,7 ; 0,000000158269025151939 ; 0,000000169749679826172 ; -5,6 ; A6872CdeDb5fee6fD560c4BFCDeCD01DF8CCddCD6F14dc039bdDC8cCccAA1bfc ; < P1O0J1Rv2gvz356Q5JTl7L3l0s01MaAbsn5lm8G4pUh215i7hC25vCFGI5BwX9qn > > 2 // < CALLS 0,00000263898268831138 ; quote ; 0,000000182232613876729 ; 0,000000178587961599194 ; 0,0204081632653061 ; -0,3 ; 0,000000175854472391043 ; 0,000000188610755362414 ; 2,2 ; De22A3eb443EB1cd22c55F3C5faFcd8D3C8EC5EeE7ad4EBbc27E5bffAdabfACc ; < EJ9J8wIS4LMIg6zu4Ihvd6W12ijUA3Pn8cF5x62g123AcAbmbu41dpDbMBC2t6ri > > 3 // < CALLS 0,00000285889791233733 ; quote ; 0,000000202480682085254 ; 0,000000198431068443549 ; 0,0204081632653061 ; 7 ; 0,00000019539385821227 ; 0,000000209567505958238 ; -1,1 ; fAcbcdFbCD4eF81EC980A12F2C72e8cE1fcAeb2dFDcdC70Fd05DFA2aABa7c191 ; < 03D0JEN1Ngd2CYFQd092s9OvEQbg2h3Dc211aeyLIoLr7ixo4EThqoo1eqxv7hK3 > > 4 // < CALLS 0,00000307881313636328 ; quote ; 0,000000224978535650282 ; 0,000000220478964937277 ; 0,0204081632653061 ; 9,6 ; 0,000000217104286902522 ; 0,000000232852784398042 ; 0,6 ; BE30C25CDAba74AC42d3daffAc333935BaBcfecfEDFBa1D42EBe0CB183C6c1c6 ; < dq7VMU6OoJW859HHD15Ma5S8gU2Vps1xPp1ubic7cGs0Xs8ddyb58tGev625YVfV > > 5 // < CALLS 0,00000329872836038923 ; quote ; 0,000000249976150722536 ; 0,000000244976627708085 ; 0,0204081632653061 ; 8,2 ; 0,000000241226985447247 ; 0,000000258725315997824 ; -2,6 ; 7cFb1f6eFFe62Fdf9E5BAAff7f9bFBecefAe86A2BFaf13A4bdfd140EeC3d2dbA ; < DkKNYD9uDK9fbZaBJqC44j5S43BD2foWDqj9TxYFG0tBJX2Crw8702VtTT3i2zK6 > > 6 // < CALLS 0,00000351864358441517 ; quote ; 0,000000277751278580595 ; 0,000000272196253008983 ; 0,0204081632653061 ; 3,5 ; 0,000000268029983830274 ; 0,000000287472573330916 ; -4,3 ; a935a021DBEfbFAbeEB3C5593A624cfba563DC74a0bCd9dfEFC6BbbFEeFdfDAE ; < FqT23BbaG0iayFR1rUTY1UJ52vnAATdobmUC6GRoimk0GtTX5xvzENQi4eUS7a4F > > 7 // < CALLS 0,00000373855880844112 ; quote ; 0,000000308612531756217 ; 0,000000302440281121092 ; 0,0204081632653061 ; 2,3 ; 0,000000297811093144749 ; 0,000000319413970367684 ; -9,4 ; cdfAEfC5Af264fc28DDCb9abc76EAB39e6de4FE0dc1d712e7d4139FCADFCbAd7 ; < Ze1158E9e26tX8t6eGX82E5KP4SLUxRP8FbV9pBnSU57SNDk7zY66st261uNiXwQ > > 8 // < CALLS 0,00000395847403246707 ; quote ; 0,000000342902813062463 ; 0,000000336044756801214 ; 0,0204081632653061 ; 5,4 ; 0,000000330901214605277 ; 0,000000354904411519649 ; -1 ; 1e1EBbCBE1aFeef19EcE73EE0eFd96d95CCfeeB5DdF4CB4980DC3AaF78ff7FaB ; < tKj2N7yCQiI970l8PrrF2a5hW7Yd606b5iY6Mo4cliYOUj5pWxB0hE6fyfXhtOI7 > > 9 // < CALLS 0,00000417838925649302 ; quote ; 0,000000381003125624959 ; 0,00000037338306311246 ; 0,0204081632653061 ; -5 ; 0,000000367668016228086 ; 0,000000394338235021833 ; -1,7 ; Fe5a11db8BD937080ed8Feb0f78A17EC78aCEbc7d4c9eaBbA64Bb6da4fB5cec7 ; < Q1Jc0FLvfj8G044QgI4xapy3oU185kLhZiBNHW026x58RU9OcBuRDX210l4PzCHy > > 10 // < CALLS 0,00000439830448051897 ; quote ; 0,000000423336806249954 ; 0,000000414870070124955 ; 0,0204081632653061 ; -4,2 ; 0,000000408520018031206 ; 0,000000438153594468703 ; -8,7 ; B7ECFAFE3F1fFF5BfcEFe31DbAfA4AE2ACdf14Adf3FaDcF4DFd7C5f0DbACDBF4 ; < P793XC48792K6dcs5m1uP0eX1YY1Pw1qDsVaXG5QWf4CsLzgi7d28rW1vcXcA2GB > > 11 // < CALLS 0,00000461821970454492 ; quote ; 0,000000381003125624959 ; 0,00000037338306311246 ; 0,0204081632653061 ; -4,4 ; 0,000000367668016228086 ; 0,000000394338235021833 ; 1,6 ; 01aaE3C5fEDF417AaDfFFCcBDFFAd9D1aF6a1C0cCfd61DaEA1167bf390fC26EB ; < 3lG09v5F211v01mjxSIBGkHSx2y80XRhPRnvsb4tDAHw98OD7999CM1Kko4Et3nn > > 12 // < CALLS 0,00000483813492857087 ; quote ; 0,000000342902813062463 ; 0,000000336044756801214 ; 0,0204081632653061 ; 6,1 ; 0,000000330901214605277 ; 0,000000354904411519649 ; -5,1 ; aCC225bED9CD15010BBEdAe0bDD15E4DB9aAfBaf8aB9d7DbBc0dFEaEA7c1Ab0A ; < jAL9CPVJu440X3vy0nRfbvhA8gkZgBt4w8Z0wB2XHPwlpK3SvIE6m1R784vF68E5 > > 13 // < CALLS 0,00000505805015259681 ; quote ; 0,000000308612531756217 ; 0,000000302440281121092 ; 0,0204081632653061 ; -6,8 ; 0,000000297811093144749 ; 0,000000319413970367684 ; -4 ; DFEbffaE31EA9bC66BF085F4E497A77AaFF83c1e24CecabAA3531A63CC4ab8db ; < drjK0FXhI4La7tGo1ysIc77GDxZg7Y1yEK1JEO0Ez0g9q0eEYfjI4uG2FF974c16 > > 14 // < CALLS 0,00000527796537662276 ; quote ; 0,000000277751278580595 ; 0,000000272196253008983 ; 0,0204081632653061 ; -7,3 ; 0,000000268029983830274 ; 0,000000287472573330916 ; -3,4 ; 6ddDBCEDC256f1BBADAB221CbdFB3696ed12D68C6a5ae61acEbf6Ba6e17FfdCc ; < BBV5DjJicg1F6nHp35C7QnaHB27s551BoXkJ221xFovf58olUUv5x0Vg22e0cVO0 > > 15 // < CALLS 0,00000549788060064871 ; quote ; 0,000000249976150722536 ; 0,000000244976627708085 ; 0,0204081632653061 ; -7 ; 0,000000241226985447247 ; 0,000000258725315997824 ; -1,2 ; Bbd4da4aEb18a1aEFacCcaeB3bCEDA9E931Bc7F57b0D195BA4DdFb9F0db9dCc7 ; < DMsUsfrS708W842H0bdyHDG52748yiWZ5beku7iJ78OA7Q8y20032Cs5Wc7ky72V > > 16 // < CALLS 0,00000571779582467466 ; quote ; 0,000000224978535650282 ; 0,000000220478964937277 ; 0,0204081632653061 ; 9,8 ; 0,000000217104286902522 ; 0,000000232852784398042 ; 6,7 ; fdf63BCA4D6dC1b36A5c55487Ba9FC3c22AdbDC5BF62A0FaF0c6bD71d3bEecEe ; < FB0tVQ882iTleb0xId72Cny1eWvK6bcOLwt95f3271M8o4HXnicAnIu7v8pKq96Y > > 17 // < CALLS 0,00000593771104870061 ; quote ; 0,000000202480682085254 ; 0,000000198431068443549 ; 0,0204081632653061 ; -6,5 ; 0,00000019539385821227 ; 0,000000209567505958238 ; -1,4 ; 234e9CaB6DbD7aCeA8Abb0DDc73E127fCFB1EAf1beE5bd1bebcf2DcF2f7b69B4 ; < pC2ws3cvGGaU74808ppvg9933yC3dP3kRfp66baIp9Zoq1N76S79CFo9de9JWpY9 > > 18 // < CALLS 0,00000615762627272656 ; quote ; 0,000000182232613876729 ; 0,000000178587961599194 ; 0,0204081632653061 ; 2,1 ; 0,000000175854472391043 ; 0,000000188610755362414 ; 5,8 ; CB2c6f5B94cefc1FfA8a1AfBcE4Dd7EA8Bf5BEEc8D0e8BEe8A70F219FfDEF1BB ; < Ojh800Zmfm7662R8E3279I3P67uBs4u9y4eIL8gq6GP4IH6CAWZ8om858ES4gK91 > > 19 // < CALLS 0,0000063775414967525 ; quote ; 0,000000164009352489055 ; 0,000000160729165439274 ; 0,0204081632653061 ; -5,8 ; 0,000000158269025151939 ; 0,000000169749679826172 ; -7,6 ; d6AcAB357b39bd8E0fece3BBb8DccdEa12Cc34C6A9ba82E1CCdEFED74dDe94a1 ; < XnKT3p6wykeBlE5J2A95vX9whQdl2brslBJzhT8J5oMKLvT7Blj5RsU1c75C9nsQ > > 20 // < CALLS 0,00000659745672077845 ; quote ; 0,00000014760841724015 ; 0,000000144656248895347 ; 0,0204081632653061 ; -9,5 ; 0,000000142442122636745 ; 0,000000152774711843555 ; 4,1 ; A187Eb7D9cA8B6FF4CAA6eFaEeA6Fc85AffB5a61Bf5FfFb7a87515BcACDcDeFc ; < zsUGmdq8ina9787m2CL22TaV5IIoLsDXY09o3zTt69eS1L425NfTosp9G4oa0W6z > > 21 // // < PUTS ; 12M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000219915224025948 ; quote ; 0,00000014760841724015 ; 0,000000144656248895347 ; 0,0204081632653061 ; -3,5 ; 0,000000142442122636745 ; 0,000000152774711843555 ; 0,6 ; dfFbdc7e47EcbEf3aFfFda2Bf8fdea19AaafB84d07BDeAC6fcdEc66A67BeDD16 ; < 6EpiKFEcA1DrjThU4tlf312qq82lC78mapuw9Mg3BlC30nSu2m2Us0pS1Rn2jJ7k > > 1 // < PUTS 0,00000241906746428543 ; quote ; 0,000000164009352489055 ; 0,000000160729165439274 ; 0,0204081632653061 ; -2,5 ; 0,000000158269025151939 ; 0,000000169749679826172 ; -4,9 ; a04ABAD5faC6443Ea9fBC87cCd79bf88AdffDDfcBa39BaFECCEB6C9Eb4FFEDFF ; < K4ZSmk279xNws3DE8EM9c0aT70A5U8RJcXWXx5K586L7mAMY6OiSuTa3tNnHkm6N > > 2 // < PUTS 0,00000263898268831138 ; quote ; 0,000000182232613876729 ; 0,000000178587961599194 ; 0,0204081632653061 ; -7,9 ; 0,000000175854472391043 ; 0,000000188610755362414 ; 7 ; D9bF5EDd71CAbe4C0aBFafe3D67d5BDFDEeE472E9a54255De5e38B0Fad0773B7 ; < wEB7eZL6GUkOhUVqaJ7n96UoB4R3wz38hZ46f2uc94v50JQ3REBt1R4ZD5r60tzL > > 3 // < PUTS 0,00000285889791233733 ; quote ; 0,000000202480682085254 ; 0,000000198431068443549 ; 0,0204081632653061 ; 2,4 ; 0,00000019539385821227 ; 0,000000209567505958238 ; 7 ; a3Cb9F9c9c5d56Af5BCE4CcCbe53EB29E31e9BbbAf8236EFcbAFd8c24DEDba98 ; < 2c6d6xDyx87Oy1Dq47VB3YdtBzlgOQaf3DRlOu3896f626Zq5eFw3vW6C2pyvNQp > > 4 // < PUTS 0,00000307881313636328 ; quote ; 0,000000224978535650282 ; 0,000000220478964937277 ; 0,0204081632653061 ; 5,7 ; 0,000000217104286902522 ; 0,000000232852784398042 ; 3,4 ; f512BBcf437d4bE88DE7DAcaB6dD49f8DE9f283AcD463A6AAB8BFeA1Cad7DF1c ; < 1TkbU9014y96u5uj5n8MzZ7bZ3a1GDess6dEF6Y52W6M33SiUVDtMoX6odgdV2rk > > 5 // < PUTS 0,00000329872836038923 ; quote ; 0,000000249976150722536 ; 0,000000244976627708085 ; 0,0204081632653061 ; -1,5 ; 0,000000241226985447247 ; 0,000000258725315997824 ; 4,8 ; fe9ACD4d8F1cfDe2dC679f28be4eeb6AC9a8dBa612faD8E20fddC25efD7DBCB1 ; < EJrc5c54obWq46iJodoj1YBTmLdw3em9p6u4J3e100X565A60fzikW5jhwqXxO8j > > 6 // < PUTS 0,00000351864358441517 ; quote ; 0,000000277751278580595 ; 0,000000272196253008983 ; 0,0204081632653061 ; -4,4 ; 0,000000268029983830274 ; 0,000000287472573330916 ; -1,7 ; 8e4ed6bef7fE52fAcE5aB5Eb3bEaC7fedCEcB89B83Fd3CceC089442EAf57ffCc ; < 40kkaztQoZ02D30U7oE9ru132civp67l07z3X31M2tQqQDf923Kc0W6CbW5tEzs1 > > 7 // < PUTS 0,00000373855880844112 ; quote ; 0,000000308612531756217 ; 0,000000302440281121092 ; 0,0204081632653061 ; -7,8 ; 0,000000297811093144749 ; 0,000000319413970367684 ; 1,5 ; Efb9BAFF37daACd0bfaBdda4cCa62d58baaA0A00E4a93cFabEf8F6CC20c7FCBA ; < uv3E0sJus0QpV9I89gh3Q21U7PSu1D4Z2Df8w5Du1LOH46bd6YxbO3R1UG61yvV8 > > 8 // < PUTS 0,00000395847403246707 ; quote ; 0,000000342902813062463 ; 0,000000336044756801214 ; 0,0204081632653061 ; 2,4 ; 0,000000330901214605277 ; 0,000000354904411519649 ; 2,5 ; cCAC4bD4CcBbfc18Ed5Ca06eCA5e1ECEcEeBD8d1b8BDC11aa38aCdFA612AEfA4 ; < BHhX18RbsC3J2o6TPiHZDIn5m6JccYOlv9qH9lhl7Q39q0Q0aVxb1xYG0fjD8pKR > > 9 // < PUTS 0,00000417838925649302 ; quote ; 0,000000381003125624959 ; 0,00000037338306311246 ; 0,0204081632653061 ; 2,2 ; 0,000000367668016228086 ; 0,000000394338235021833 ; 3,9 ; ebf2Be26F006caECBf0EE29cebFdd3BffDCeD2fbb1C04eE16E9fBCb2dcA3Bc08 ; < 7HXyuwX8YGRt5Sht6ewACY8DFs68PaI9eUL76Fe9e5sjRWT5k977ysMT7q1k0C09 > > 10 // < PUTS 0,00000439830448051897 ; quote ; 0,000000423336806249954 ; 0,000000414870070124955 ; 0,0204081632653061 ; 8,4 ; 0,000000408520018031206 ; 0,000000438153594468703 ; 6,1 ; 20e2a60fFEDAA03FBFce979b6F0d6ff4f83bbE9dE3bfd1ec69Cede276CA0Bdb1 ; < I1AuGnt5OrOK2EtW1y11zdC9AjkAuC5BQJDAt34AE63uW026nPCV744YnQ1K6MDc > > 11 // < PUTS 0,00000461821970454492 ; quote ; 0,000000381003125624959 ; 0,00000037338306311246 ; 0,0204081632653061 ; -2,6 ; 0,000000367668016228086 ; 0,000000394338235021833 ; 3,5 ; FDb8cfA8Cfe8ccB5fC74B56Baa8C1caA3efD59A56fdcDAaceB9A0F0acc8Cb8Ee ; < 5SF9M0c165tsP78vd5587CM0u8pxCw9m4Eai3i2kPe4AkRid74Ixx0J9eNJXeetM > > 12 // < PUTS 0,00000483813492857087 ; quote ; 0,000000342902813062463 ; 0,000000336044756801214 ; 0,0204081632653061 ; 0,1 ; 0,000000330901214605277 ; 0,000000354904411519649 ; 5,9 ; f9dA55f5a1fD14ABE9bc1EFb93aebFDEb9A1A9ce96EbfF4fFDeeFb82cde7A665 ; < dsZkCiUYHtrc8QB63QbOzkYI6q81Zy8YQ6JrezsQb79965necc66Dyir22gpYDzy > > 13 // < PUTS 0,00000505805015259681 ; quote ; 0,000000308612531756217 ; 0,000000302440281121092 ; 0,0204081632653061 ; 4,6 ; 0,000000297811093144749 ; 0,000000319413970367684 ; -5,5 ; Dc0D4b379b4702F6DAcdE32D10E8BA99fdEE34b8AEd5bc95EeF5B4beB3ccBCFb ; < mYcI4u8y3nyerLVApA5BYrWlhcj53l14L42v30n90nlynh228nZ75D2I6ValhySJ > > 14 // < PUTS 0,00000527796537662276 ; quote ; 0,000000277751278580595 ; 0,000000272196253008983 ; 0,0204081632653061 ; -4,3 ; 0,000000268029983830274 ; 0,000000287472573330916 ; -2,7 ; 5BBCB2FbceDD4f4eFaC18BceaBDfaDde1fE40ced2Cb9beBAEFA9EEfbcD64bA85 ; < TQZDer90NFqi12sif74puk72Oa3yiL8uTYeyW813yLkxUTPCEfJ8Y8M4khk9SeV9 > > 15 // < PUTS 0,00000549788060064871 ; quote ; 0,000000249976150722536 ; 0,000000244976627708085 ; 0,0204081632653061 ; 0,8 ; 0,000000241226985447247 ; 0,000000258725315997824 ; -4,6 ; 3Ca41F9FDECD9B79a95a09D54AaA2CB71FA9fDaBaFDdACcBDbaA9Ee1abF1eB25 ; < BXhsA7319i7y73G98JBzFHod6lIpXlc0oHUe5GAOljJ1hMaY7o8oJNC45KqBybB7 > > 16 // < PUTS 0,00000571779582467466 ; quote ; 0,000000224978535650282 ; 0,000000220478964937277 ; 0,0204081632653061 ; 3,2 ; 0,000000217104286902522 ; 0,000000232852784398042 ; -3,9 ; cfE1dDcb60b9Aa9beF4AdC3Ff8B7fF9FBDCce220de59A09eAb10AAEC1fa7CeEc ; < A76QbgKW605SQYa1712BLR2fGw6ZTy9OBKqDtNx0clM07RoLWzI22Jt9fk86D2gk > > 17 // < PUTS 0,00000593771104870061 ; quote ; 0,000000202480682085254 ; 0,000000198431068443549 ; 0,0204081632653061 ; 1,6 ; 0,00000019539385821227 ; 0,000000209567505958238 ; 6,8 ; A6aA84dcFEECDfEa24BF5eFBeCEfC5Cf72b3e39cf30BaAE1B22A5EE1E6F3080c ; < nuj4PSYqrSlR2eEsdmYtk30qUbyRLSKCrOUT6Kk921299Z8tsOZS1cyS16UcZ0HK > > 18 // < PUTS 0,00000615762627272656 ; quote ; 0,000000182232613876729 ; 0,000000178587961599194 ; 0,0204081632653061 ; -6,8 ; 0,000000175854472391043 ; 0,000000188610755362414 ; 3,2 ; CAA9FACa1C89bbeCeFc95bCdfce04A4f6D2B2ACfFFc745aeBEAfDCBBFa3c904D ; < rzV8sexqWZGocTDL9jn6dzdcPc09M05ctabc5m1CpGZgfZ9bJDLQk6NR8N4G0I5V > > 19 // < PUTS 0,0000063775414967525 ; quote ; 0,000000164009352489055 ; 0,000000160729165439274 ; 0,0204081632653061 ; -9,2 ; 0,000000158269025151939 ; 0,000000169749679826172 ; -7,5 ; EfFD9AC4B0CEBA8cEcD2BA4dDb15cd2ffDdfbaFEBAF2F9BccFa70bCBdeb85Aee ; < 2xKM1VBb2ewdt1839mAyN53x4b5OF3wxdGb366rSQ2eF8lYRwq8v9Q17mQWWbAqB > > 20 // < PUTS 0,00000659745672077845 ; quote ; 0,00000014760841724015 ; 0,000000144656248895347 ; 0,0204081632653061 ; 3 ; 0,000000142442122636745 ; 0,000000152774711843555 ; -2,5 ; Db2Bd7ecB6FDBaCb6cbbfDEcbc41EDb62EeF4acF81399eEEdF298fbfcfDbc9d2 ; < 42zYM3wk7r8iI5DOOr47oP7JS8iEBl5G0639lv607ooEvNuFN6l3L0wD565i1XM1 > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000222760078744655 ; quote ; 0,000000316834354233107 ; 0,000000310497667148445 ; 0,0204081632653061 ; -2,4 ; 0,000000305111483126482 ; 0,000000328557225339732 ; -8,2 ; EcD1CdA28FCb4FC534E37Aae7C2ec14dE451dF27BB8CEe6BD4bcEA4cBFe6bfAd ; < z1va1ip6Cir7wjJr03f436696lLB2zP9l666muH7R5t3ut8q93N1DM8wG9vIZb7W > > 1 // < CALLS 0,0000024503608661912 ; quote ; 0,000000352038171370119 ; 0,000000344997407942717 ; 0,0204081632653061 ; -4,1 ; 0,000000339012759029425 ; 0,000000365063583710814 ; 2,1 ; d3BefEBdcBEBbddAbD1D283afad0181fb8ed6CBBB9d7Cd473A892F16120aBefD ; < f0J2m3g9sJljMbbtcVHn4t2Lf7U75o6V74KoIGliBSn1Kbl0Jj5v9234trswQ7b7 > > 2 // < CALLS 0,00000267312094493586 ; quote ; 0,000000391153523744577 ; 0,000000383330453269685 ; 0,0204081632653061 ; 8,8 ; 0,000000376680843366028 ; 0,000000405626204123126 ; 4,1 ; AA2eCDF719A2AddABeebbCbd5b405f8E1BCaAE77dc4FF3dD8FADFBAeE3cdfCEc ; < tyUA29q246dU7xBPxV76F45cb1cKKA8lYgS06MDca0SfA1kDHTY342yG03gS1y3s > > 3 // < CALLS 0,00000289588102368051 ; quote ; 0,000000434615026382863 ; 0,000000425922725855206 ; 0,0204081632653061 ; -8,6 ; 0,000000418534270406697 ; 0,000000450695782359029 ; 6,1 ; eBafaFC1aACC5C52b6dBD4F8A15b399dAf2cCCCD4C3AF7c62acd3b2AdccEdFF1 ; < HktRfbJGAd5B9tD350Hu7K4ye0Ci8A6fPEi1V3qmvFf930JJC018NNGz19f0A5DX > > 4 // < CALLS 0,00000311864110242517 ; quote ; 0,000000482905584869847 ; 0,00000047324747317245 ; 0,0204081632653061 ; 3,5 ; 0,000000465038078229663 ; 0,000000500773091510032 ; 3,7 ; DDDd56Ee8A4FaFfE7AeB4DdeceDeadbFE6ecffbdAdcaf1a5c9D9d5E6F0fCDaA5 ; < fW44ERFhrMP6TW5V82kAU8AUaga6d5hc2bY4sYs814F428uJclpsn9Co8hsA9R7H > > 5 // < CALLS 0,00000334140118116982 ; quote ; 0,000000536561760966499 ; 0,000000525830525747169 ; 0,0204081632653061 ; -5,3 ; 0,000000516708975810738 ; 0,000000556414546122259 ; 8,9 ; 7EC9Ceab9D2b80d638bbDCCaC7fAbcDeADA81BFaDABdad66B0F3fbEEB8e1FaCE ; < xkW2x1bKIztC3Ok1m4K147Nm4IKHTRuXC1Ell34EKBHOduV812dUpGI7V2o64dm5 > > 6 // < CALLS 0,00000356416125991447 ; quote ; 0,000000596179734407221 ; 0,000000584256139719076 ; 0,0204081632653061 ; -2,7 ; 0,000000574121084234153 ; 0,000000618238384580288 ; 9,2 ; ad32c9dA6DFD3eEe9CAd123B809FE91eF0Fd54b5aD00fbD65aE7Da6CDBBBBb0B ; < hnqjhR75rA2d93a8M84O0DbTxn1mU89PGtXNyD4qo6iLKLtsCY0XWZeQAGvRHqM6 > > 7 // < CALLS 0,00000378692133865913 ; quote ; 0,000000662421927119133 ; 0,000000649173488576751 ; 0,0204081632653061 ; 2,6 ; 0,000000637912315815725 ; 0,000000686931538422541 ; -1,1 ; EC9bABcAcc300b6B5C3DAAf57eC4cD55FF4FCdaa1A0601DD64eB5b28af4b5CDA ; < a3dU6sjIl81gQClmcBXlfxX8h7yOS3W7C1ncTdnKPh9U33aT6TZ1q6E8BPice6gq > > 8 // < CALLS 0,00000400968141740378 ; quote ; 0,000000736024363465703 ; 0,000000721303876196389 ; 0,0204081632653061 ; -8,8 ; 0,000000708791462017472 ; 0,000000763257264913934 ; -4,6 ; 12eefa070b3ed50ADE87deFdaAc3db7b77C49eFBFFEDE7e2FC6aaBEbbd2Dfa6C ; < wjMbftVX39vEoj29Q3Qa9oNJIrNeIm0leQ4a66v6M0BO00mYMPDRT6MVrLt3k011 > > 9 // < CALLS 0,00000423244149614844 ; quote ; 0,000000817804848295225 ; 0,000000801448751329321 ; 0,0204081632653061 ; 2,1 ; 0,000000787546068908302 ; 0,000000848063627682149 ; 8,5 ; DB0cF9336adeb1AcfCD8DCbc1cbc0f69d4efB4D6eC9FcBf34f0c20dCcBAd63cB ; < 4O1gaHzI4I4f2vE9NE4ne64Uv7xLRdFAHDjjmx2Lxxamzrbakt1tsvd53MXMTdHo > > 10 // < CALLS 0,00000445520157489309 ; quote ; 0,000000908672053661361 ; 0,000000890498612588134 ; 0,0204081632653061 ; -4,1 ; 0,000000875051187675891 ; 0,000000942292919646831 ; -8,2 ; 6B16AfA8B0BaA75DddAbFFaE86BB8fcDCDa6aCd7EbF3ed0cf5C2bfA57dC3fd9a ; < KmtU6ll00RE6A901LSY0Tj84TV4m8b6664P7gSX5pAaN8sVw2xx7uER41J9IvLsm > > 11 // < CALLS 0,00000467796165363775 ; quote ; 0,000000817804848295225 ; 0,000000801448751329321 ; 0,0204081632653061 ; -2,5 ; 0,000000787546068908302 ; 0,000000848063627682149 ; 6,7 ; FFDAdC1AfdCC8FD5fC66FAbeDb8c54AB096c7a4bFe3dFBacAAcDc488DeA1d412 ; < r57zAxrUxRf6vTUsjk41BU98RIUW0fj70BbBW3399qKU80g8HX4yri8zUQytv08C > > 12 // < CALLS 0,0000049007217323824 ; quote ; 0,000000736024363465703 ; 0,000000721303876196389 ; 0,0204081632653061 ; -2,4 ; 0,000000708791462017472 ; 0,000000763257264913934 ; 4,2 ; 26EFEA094FEcadbf7cA69B7DbD4eD8b04F76a2b2cED6EfDA506035fBeaF7DABc ; < P48wSVpkpTpuM0ybuIYfjGkBc6h2S1r96Af5VVZ27LkvP5y6VG4vtXT9Iw0SM55t > > 13 // < CALLS 0,00000512348181112706 ; quote ; 0,000000662421927119133 ; 0,000000649173488576751 ; 0,0204081632653061 ; -9,2 ; 0,000000637912315815725 ; 0,000000686931538422541 ; -4,5 ; eF2dc45BDaE9EC01B9B11AF0c04BdEaE62CeedAE43DbAfaCcf745AdbaBBC3CE6 ; < 9v6V5wByCx5jm5V7VEqVnH2i497N191vk464oDTaX8E2m28nH46V7SBWRj8OLP3L > > 14 // < CALLS 0,00000534624188987171 ; quote ; 0,000000596179734407221 ; 0,000000584256139719076 ; 0,0204081632653061 ; -9 ; 0,000000574121084234153 ; 0,000000618238384580288 ; 0,1 ; 534C2ce4E2CBFd8FcBB69c585BCd73Dd1C9DAEbDAc1Aa8AaDe9caafc4870DEf3 ; < I1Hc5r1z0vNI67t5B2h6J6i22CNJPJT8KL08mXTytnIZEDBSzxQlSKRI6EAI3mVx > > 15 // < CALLS 0,00000556900196861637 ; quote ; 0,000000536561760966499 ; 0,000000525830525747169 ; 0,0204081632653061 ; -7 ; 0,000000516708975810738 ; 0,000000556414546122259 ; 2,5 ; CBb0eFBeB4dbccABdACCf1e62bE08f0e4dFc4E74dA7fDAdaa0FceeBC8ffbA6CA ; < 10fj1kw5QmYPkFmxEI2Pso73G9n8L0bpRJqQGSkU1Ndp50z2P85Klinw18XGADSZ > > 16 // < CALLS 0,00000579176204736102 ; quote ; 0,000000482905584869847 ; 0,00000047324747317245 ; 0,0204081632653061 ; 5,3 ; 0,000000465038078229663 ; 0,000000500773091510032 ; -8,6 ; dAe0EaDcEb586C5b0b9D0e87bfaacDEbd0AbeEaFDFeafBCf4CCAbedc1DdAD107 ; < SOp27W4K8K3859fU17au4OzL4fY34WFwVpld1sBFb84o8DH1D7FxB34L5ilYXWp4 > > 17 // < CALLS 0,00000601452212610568 ; quote ; 0,000000434615026382863 ; 0,000000425922725855206 ; 0,0204081632653061 ; -6,1 ; 0,000000418534270406697 ; 0,000000450695782359029 ; 9,3 ; cfa3d0bAAeCBD4CdDeb6EA1e2Ccac1EDc9F8EE583cae3cC8Bbbbc88BbEfE11BF ; < 87qrXN7HxX4j48hd65GLhA4tNj1OwGs6Kvxcc06Q8bn206zNaQjn8tL9Kw67FPTD > > 18 // < CALLS 0,00000623728220485033 ; quote ; 0,000000391153523744577 ; 0,000000383330453269685 ; 0,0204081632653061 ; -1,6 ; 0,000000376680843366028 ; 0,000000405626204123126 ; -1,5 ; 5EfA4AAd8811f28BBcf3A42fbaE85a23CBadeB06ADf00cc6C5CE2715fe8CabCb ; < EjIA53pKprU5u91lM1Etbd8fN54pw9sGRUkUy5UeTgGm2QC99mxX254c4SNTjT7R > > 19 // < CALLS 0,00000646004228359499 ; quote ; 0,000000352038171370119 ; 0,000000344997407942717 ; 0,0204081632653061 ; -9,6 ; 0,000000339012759029425 ; 0,000000365063583710814 ; -4,7 ; 933dcbBDBd1ccf6EA465aDC1Ab64Fea2FBdbBaceb1Ff24E9DeDeA3EfEbeAFB48 ; < vFW9bz163Xo4iSV8cp5h3Rx5leGp7i90sfTVZEXIM0jsw12YJ9E9iNHuNBDUq0lz > > 20 // < CALLS 0,00000668280236233964 ; quote ; 0,000000316834354233107 ; 0,000000310497667148445 ; 0,0204081632653061 ; -2 ; 0,000000305111483126482 ; 0,000000328557225339732 ; 5,7 ; BafA81EFFCbFD548c12a3CAab6F109579f53A2eA9BBeBcF942DdFB4a68e3eF5b ; < yYoa7jU555Ly0pwKLScBLV74HUM4RVDhkB335t8BiXIxv7bJa0opI8dJ1V4yJ7VP > > 21 // // < PUTS ; 24M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000222760078744655 ; quote ; 0,000000316834354233107 ; 0,000000310497667148445 ; 0,0204081632653061 ; 5,5 ; 0,000000305111483126482 ; 0,000000328557225339732 ; -9,4 ; 7b43E24bbd6BEeDD37AbceAe59DECF740DcE5fad4baCe4b9BDef44aDc9dAEBDD ; < SV1qzv85rNauNu2XlyZ4u14I47Q622IQFK66O084Xq0Do7f508r7kZq089jKu0Tk > > 1 // < PUTS 0,0000024503608661912 ; quote ; 0,000000352038171370119 ; 0,000000344997407942717 ; 0,0204081632653061 ; 8,3 ; 0,000000339012759029425 ; 0,000000365063583710814 ; 1,4 ; 0bf710cD3D7a0b8Ce4be97cDdbabEEddeEdA6eB58aE9A5f2bEe730e9Df1Dce89 ; < G968ve105i70bI0ZOSIg8Hku06sdLMXnq385lY2y3iB6qSReGW7k98540lih2537 > > 2 // < PUTS 0,00000267312094493586 ; quote ; 0,000000391153523744577 ; 0,000000383330453269685 ; 0,0204081632653061 ; 1,2 ; 0,000000376680843366028 ; 0,000000405626204123126 ; -2,3 ; 331d5F2757b9DfCbB4AABDce92a0cbA06A8e4E6c81FeFCeA20Fbfdd885F34Fd6 ; < V8T6XKp7768GmFuGV027IL64gl99BO5r8e729nRY6FngKO931d470v0fsLeP0IEK > > 3 // < PUTS 0,00000289588102368051 ; quote ; 0,000000434615026382863 ; 0,000000425922725855206 ; 0,0204081632653061 ; -5,8 ; 0,000000418534270406697 ; 0,000000450695782359029 ; 7,1 ; 179bBaC6Ac29faD3A1FCbbD9eFEf4F3aDBbdcdbdeDaEd2fa8F5f7AcdAAADC84F ; < 2IJhN1z6kiv4086jmbmhAHYUrBr365398XhhOh0A48c6c0Rp225zTMz0s9CCa14G > > 4 // < PUTS 0,00000311864110242517 ; quote ; 0,000000482905584869847 ; 0,00000047324747317245 ; 0,0204081632653061 ; -4,5 ; 0,000000465038078229663 ; 0,000000500773091510032 ; -0,6 ; C6CAcA03A1dbcFf4cfFDb4BAFe0a9EaeAcFCdE6CeFb53F5D7C4a5927ACABeBF0 ; < jb7g3JE27yDu2elu11y2225dQn8tSJ26CWJ6St607g5U01oq8J6r61vc422Hb4Yh > > 5 // < PUTS 0,00000334140118116982 ; quote ; 0,000000536561760966499 ; 0,000000525830525747169 ; 0,0204081632653061 ; -8,9 ; 0,000000516708975810738 ; 0,000000556414546122259 ; 0,7 ; 68Cd4EADca01ed27bc6AfDCCAeebeBE5f2AAB1fAFDB8De6D2BeAA3ABebCdd37c ; < 7cxRQq1GA7A1f6o46GNpsO0q1FWsx3JTFDw67f6Dwvki927nSWc9Xc8RYnY17hAs > > 6 // < PUTS 0,00000356416125991447 ; quote ; 0,000000596179734407221 ; 0,000000584256139719076 ; 0,0204081632653061 ; -7,8 ; 0,000000574121084234153 ; 0,000000618238384580288 ; -3,9 ; e3d222dD8CbfB5Bec0E537B60E54dbC8Edec61EF6C81BdEba24Aa1ABD5Afbf4F ; < hTEA8N8Rx0De4t6Id7X5JL9DnU5oz88vZCdaEtjdJHl3nJ2Z6ahY24PKa3qYfhwn > > 7 // < PUTS 0,00000378692133865913 ; quote ; 0,000000662421927119133 ; 0,000000649173488576751 ; 0,0204081632653061 ; -4,5 ; 0,000000637912315815725 ; 0,000000686931538422541 ; -2,1 ; 5FC3de364DCEa3ABfEc52f43Acb513B4aFc2eDedF00aae4ABe2C6dbCf736bDFc ; < 2846YDJrJi870PW6J96J2f9037iyWmsJg48M8hftC609SZ6z0RW8PIjZj2pdaBf2 > > 8 // < PUTS 0,00000400968141740378 ; quote ; 0,000000736024363465703 ; 0,000000721303876196389 ; 0,0204081632653061 ; 6,5 ; 0,000000708791462017472 ; 0,000000763257264913934 ; -6,2 ; cAeBbFaECc99EE7bBafffcEe3eb1fdeccaE00edd0BA553BAaCfADCbbFaFadf05 ; < 5TskLQ6xG3f127x9wTlp3Wr6G1AmnF8d3G78oeYjK8Ru908tyv4m46LLWh80C162 > > 9 // < PUTS 0,00000423244149614844 ; quote ; 0,000000817804848295225 ; 0,000000801448751329321 ; 0,0204081632653061 ; -0,1 ; 0,000000787546068908302 ; 0,000000848063627682149 ; 3,4 ; 6ED72BadCAAEE674f36f8d8fA0F7bfBfed0dDC32aa6fAcaE3aBbeCEfd09fCceb ; < iwy19Hmpi9375ujG3B0kb7iDMrBq93n1ej8gi1xEby0e60jK66z8bRWzF889flp8 > > 10 // < PUTS 0,00000445520157489309 ; quote ; 0,000000908672053661361 ; 0,000000890498612588134 ; 0,0204081632653061 ; -0,8 ; 0,000000875051187675891 ; 0,000000942292919646831 ; 6,7 ; 6581BAed22eA5c5cE0Ae02dF5eAEaD0bFB8E3eb5Cd0aCCD33e5a6dbedDBF7BdE ; < eCD08RJlU4i321L2ZR6115W8G4w4SpH19658fV9cc8kljCg8ZHA5MH20XU3jPu9P > > 11 // < PUTS 0,00000467796165363775 ; quote ; 0,000000817804848295225 ; 0,000000801448751329321 ; 0,0204081632653061 ; 9,7 ; 0,000000787546068908302 ; 0,000000848063627682149 ; 1,3 ; bf9c1a937A8Bb2fE1ed288CFbEab7F014C8D2Cb3eee53c4ac4218faf1CEfDBf1 ; < W7q70j9tOSk37092DnaRJ1VXv0q4B5A17v1N038I40Ah9cUeEH2aH99sY2HZWUl3 > > 12 // < PUTS 0,0000049007217323824 ; quote ; 0,000000736024363465703 ; 0,000000721303876196389 ; 0,0204081632653061 ; -4,1 ; 0,000000708791462017472 ; 0,000000763257264913934 ; 0,4 ; B6Eee9eC95dc1E5cbbfB6FcEDAB7BAefB81efABbbb5ae8EAAb22B5cd54dDCA3E ; < fi1Qz79Pz8K8VSQndxUc05Pu7YKn5etOi3ZaMkV2I7RCW9WRvv0eXJg2RZgL2FcC > > 13 // < PUTS 0,00000512348181112706 ; quote ; 0,000000662421927119133 ; 0,000000649173488576751 ; 0,0204081632653061 ; 2,4 ; 0,000000637912315815725 ; 0,000000686931538422541 ; 5,4 ; aF073b90EC8dfeDe5E4140075ebdac0EAb8c9d8ECEAF63cbAeCAaaFcAe16F5dA ; < 7MO55PQ81fQ7wKcwm0648ZZ1fmk806aj1lYNJFA82VqJOqQ0Wo5rJM75eeuT9q6B > > 14 // < PUTS 0,00000534624188987171 ; quote ; 0,000000596179734407221 ; 0,000000584256139719076 ; 0,0204081632653061 ; 9,7 ; 0,000000574121084234153 ; 0,000000618238384580288 ; -5,2 ; decf8CBCEDCfab6b74f3BcBD1aAa3aFb193ba0BA547225CBBDD1BFEFfDAB88Fe ; < MULJ80G24r1X8k11F9DqYi6Crbpm20Jh1SQQ1v0k69JHj2TK0XS62D9ib9C35lG1 > > 15 // < PUTS 0,00000556900196861637 ; quote ; 0,000000536561760966499 ; 0,000000525830525747169 ; 0,0204081632653061 ; 5,6 ; 0,000000516708975810738 ; 0,000000556414546122259 ; -3,1 ; B6EDFEB30c472BdAA7e17fDAe90EC98aAeeda63ebC6eAd18D10Eec9Bb8d2bDCE ; < gRq43fEW1qXc4i5d5P9kwe5xfpEX4kG009DS1RC6Mc3Vm2IZMQb6HBNeaQruJ5ry > > 16 // < PUTS 0,00000579176204736102 ; quote ; 0,000000482905584869847 ; 0,00000047324747317245 ; 0,0204081632653061 ; -3,4 ; 0,000000465038078229663 ; 0,000000500773091510032 ; -1,5 ; DAE69A9E28ca4bE6AA0e45dfFBEAb8C6AA2a5DF7E4EeEf12e9dEC89eCbB1d5CC ; < 9rx275L4aWrc6OXC64892L53r2ras06XDl071al32Dvd539mEV0f8MdsB47qIYhT > > 17 // < PUTS 0,00000601452212610568 ; quote ; 0,000000434615026382863 ; 0,000000425922725855206 ; 0,0204081632653061 ; 1,3 ; 0,000000418534270406697 ; 0,000000450695782359029 ; -5 ; dfC0e04810acaBFA2Dc34eB209eAba93Ed4AEaABaCbd20dA2FFdc1bD6E8bCab4 ; < 713W2wuZ8I87c591L0C2E16y3xee7DFPSZWDll9k1c1N72OyJfPaMfY3rgF1jvY3 > > 18 // < PUTS 0,00000623728220485033 ; quote ; 0,000000391153523744577 ; 0,000000383330453269685 ; 0,0204081632653061 ; -3,2 ; 0,000000376680843366028 ; 0,000000405626204123126 ; 5,3 ; bD3eeABA7cffF4C2c7Fb8EbFeBcfeb7C83F38EADcfA1EaeBc1deE5AbDeba1A7E ; < plDQnERW5sM65fM2HOCA453ZO8ka9jrLjcIC8Cg05u78iNE6ct72N28hZz7GXHav > > 19 // < PUTS 0,00000646004228359499 ; quote ; 0,000000352038171370119 ; 0,000000344997407942717 ; 0,0204081632653061 ; 3,9 ; 0,000000339012759029425 ; 0,000000365063583710814 ; 0,8 ; Abb77cF7aEAcfceDB8d6fFeE7f14F8fB5aEefdccA6B87C5FDf0ed08beDDf4BDD ; < 2LFYP1tC4Q42pt8iK1V28tR7PdU1xn7WpOELDB11Ijx3OhVM123hzg54Kqa7Db3E > > 20 // < PUTS 0,00000668280236233964 ; quote ; 0,000000316834354233107 ; 0,000000310497667148445 ; 0,0204081632653061 ; -9,6 ; 0,000000305111483126482 ; 0,000000328557225339732 ; 0,2 ; c4A95DCDD5DcBdefBef7B39D9CbeB8CDACd82F49c9C00b9efaCbe3bc2d167BDC ; < 3s7TZ1D2392L4760JCl4U05Eb5728xCC4rbpPHtoSZayJky2Yp1Ic33Sl86X5QO8 > > 21 // RUBBTC // < # ; REF ; Month ; Optionchain ; Chart ; Last ; T(-1) ; Change ; BAS_1 ; BAS_2 ; Prior. Settle ; Open ; High ; Low ; Volume ; Hi / Lo ; Updated (s) ; Code ; @ eth_hex ; @ btc_882 > // < 0 ; T0 ; - ; - ; - ; 0,00000437191964784201 ; 0,0000440550542260437 ; -0,900762359174274 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; DB0FDeaadfE1AC11eE8bba0De9bEBdf9AF5AeCb2dCFeFf8ECcfBCDD95f15A0ad ; < 9ltLJMlJMFBlrV3J6N8a58186EoW7vn96Dnn5wP3VP2vEjKO22GNg0Pfo9wpwq79 > > 0 // < 1 ; 0M ; JAN 2019 ; opt. ; - ; 0,00000437322726714315 ; 0,0000440682308724277 ; -0,900762359174274 ; -0,000245626772732857 ; 0,000254373227267143 ; 0,3 ; -3,3 ; -4,7 ; -3,9 ; 2,5 ; 3,2 ; 0,7 ; RUBBTC41JA19 ; DcfC61BdfeBd6875BbaBbf7F9a9aa4A80699Ea0a165EfC16aCFFC0cddcBc2feE ; < 3Ci0iC0GR5PYU0H3sVZPI55w6cXP0mQW3GP75r69pOlr6Hyl001J21ux0yzfvWI6 > > 1 // < 2 ; 2M ; MAR 2019 ; opt. ; - ; 0,00000437530557037253 ; 0,0000440891735632462 ; -0,900762359174274 ; -0,000245624694429627 ; 0,000254375305570373 ; -4,9 ; 8,5 ; -7,2 ; 9,4 ; 4,6 ; -5,7 ; -0,2 ; RUBBTCMA1971 ; CdAE61aBbad0cdADE8dEBbFdC79f0efBF4d2CBf6cCd1673B0bde3eb7FfBAAb1F ; < vNORFXNfJdlu32x2222aFW7200bus6tJGH94N64XuIouSjr9GjCcKkEXn1a922Hs > > 2 // < 3 ; 4M ; MAY 2019 ; opt. ; - ; 0,00000437818196151448 ; 0,0000441181584435599 ; -0,900762359174274 ; -0,000245621818038486 ; 0,000254378181961514 ; -4,4 ; -4,6 ; -8,2 ; -8,7 ; -4,6 ; -9,4 ; -0,99 ; RUBBTCMA1980 ; A3aceb3afE3aAF8CAfaFAc15fdA9D0eFADD59a18bd3BC6B3f46bBfBdfFfa3D41 ; < 6x8938Gn7Od04nJ9XNQjLQpi0UmNo0Q7b1A6bcBl47b4g5p4y8u15O0oCcBReE37 > > 3 // < 4 ; 6M ; JUL 2019 ; opt. ; - ; 0,00000438156471937633 ; 0,000044152245890961 ; -0,900762359174274 ; -0,000245618435280624 ; 0,000254381564719376 ; -8,9 ; -3,3 ; 2,8 ; -5,6 ; -8 ; 1,8 ; 0,18 ; RUBBTCJU1940 ; E1Fb102B6Fb9EdbE9c0AbCDedddaFDbf5C7aa1faE3dcFDB79FBDa9bed7Dc26D0 ; < 8dn0r4cBi0Oavj7G32uWqjFNRc77816O48ZsICT53F16TcM03202erP9kmbagw77 > > 4 // < 5 ; 8M ; SEP 2019 ; opt. ; - ; 0,00000438600722341757 ; 0,0000441970122115253 ; -0,900762359174274 ; -0,000245613992776582 ; 0,000254386007223418 ; -6,3 ; -5,2 ; 1,7 ; 6,9 ; -4,3 ; -6,7 ; -0,84 ; RUBBTCSE1948 ; bBaDEAD0acBCfC5e3d7028BdBBEB0DCbbdBDB9BAbd28fEAcBEACf80dcdFFAdd4 ; < hUJ13gC6kI4k16SAUpavN0hI3w12UNXEq6c9wH02j3X81KXFHkhSfC96B1fRNKEm > > 5 // < 6 ; 11M ; DEC 2019 ; opt. ; - ; 0,00000439172754055252 ; 0,0000442546548266393 ; -0,900762359174274 ; -0,000245608272459447 ; 0,000254391727540552 ; 6,1 ; 4 ; -1,3 ; -3,9 ; -4,9 ; -2,3 ; -0,13 ; RUBBTCDE1974 ; BfeB2eFacBE9FEAeBd0Ae5AeE4bDE2E66E5D1CBef2812F52563c2fd0aBfaEC2E ; < x5xzWH7J1ul30Hc7g35CGF8nW1ozlFXelcK5O48W3oxHzblZ5Xx9Awgyo2UqNH39 > > 6 // < 7 ; 12M ; JAN 2020 ; opt. ; - ; 0,00000439830448051897 ; 0,0000443209294771825 ; -0,900762359174274 ; -0,000245601695519481 ; 0,000254398304480519 ; 3,9 ; 2,1 ; 7,8 ; -5,5 ; -9,5 ; 2,1 ; -0,37 ; RUBBTCJA2035 ; 185A2Cc8dEa5b0CBDEAF6CCFabdA19d2afEA8bCeCffebaB2D1BAbDcE4B14EB9A ; < 52Q7g1Ss89cI1Vac5uXk6Q5P7nNSYR8I2Mn402T6V0Spr0TROO3y1MqnY6G7D4TC > > 7 // < 8 ; 14M ; MAR 2020 ; opt. ; - ; 0,00000440556156412551 ; 0,0000443940578138313 ; -0,900762359174274 ; -0,000245594438435874 ; 0,000254405561564125 ; -4,6 ; -7,5 ; 0,7 ; 4,3 ; 1,9 ; -5,3 ; -0,97 ; RUBBTCMA2079 ; Ec50bBeaBE0CADEbB0dff1dADE8CeCc6f0FF9AACdddBcEFbA2D63CaF25BEd1e0 ; < 894M9llV8DsVam32Hjb9BX0Rrf8ShdaXrc9C0zgE6rWAyNk42zJu81r2jRQMsxx6 > > 8 // < 9 ; 16M ; MAY 2020 ; opt. ; - ; 0,00000441346696843455 ; 0,0000444737191625218 ; -0,900762359174274 ; -0,000245586533031565 ; 0,000254413466968435 ; 3,4 ; 6,6 ; 4,6 ; -7 ; 5 ; 6,5 ; 0,06 ; RUBBTCMA2037 ; cD1EceCAEcee62A9F0b8a2daB0DbFCA784c4b97B15b3daB09EaDcBa1dbbB08f4 ; < 3Tk2tn4e15Y4de3g5pk3W1llnfSV74PI8PFNrg3vSYnC7GnsA9LAyTRQ02g5Zk67 > > 9 // < 10 ; 18M ; JUL 2020 ; opt. ; - ; 0,00000442238172915902 ; 0,0000445635516157149 ; -0,900762359174274 ; -0,000245577618270841 ; 0,000254422381729159 ; -4,4 ; -8,7 ; 7,5 ; 6,2 ; -8,3 ; 0,6 ; -0,92 ; RUBBTCJU2097 ; E8fA9CacccB0cbf2cCcb1dbaFcF6de2bC4cfccEDED5F8de4bc6b973ACe03ad79 ; < 926mRlyv5eBy5f7xFT06sF3OU157992ZC2VqiI1q6kc1798AizWXFN78QONgBZ23 > > 10 // < 11 ; 20M ; SEP 2020 ; opt. ; - ; 0,00000443267008257726 ; 0,0000446672255173981 ; -0,900762359174274 ; -0,000245567329917423 ; 0,000254432670082577 ; -7,5 ; 4,5 ; 0,9 ; -4,7 ; -3,1 ; 6 ; 0,75 ; RUBBTCSE2054 ; 3f737Cf27fe98bf2f4Ff47E43dBAF2B12F9B81bBcea1f2BfF944a875DF3bf187 ; < p25kzhe8cOfHUYswK77xK5737500s5ZA2MYJYXXj0po8ytr55BA4P7FCrQYWX584 > > 11 // < 12 ; 23M ; DEC 2020 ; opt. ; - ; 0,00000444357001831031 ; 0,0000447770622249454 ; -0,900762359174274 ; -0,00024555642998169 ; 0,00025444357001831 ; 1 ; -5,3 ; -1,3 ; -2,5 ; 7 ; -4,4 ; 0,88 ; RUBBTCDE2078 ; cAcE73aBc8fA461a9DD1f123ecEbc824fDA3e8EBd2ADCD8ECc1efeecB01fa87B ; < zF8a2p9SPa428L3c2g9s907h9v3osl9IrBlFq210B57Vwv1UNrz0c9Rr5VQ81k77 > > 12 // < 13 ; 24M ; JAN 2021 ; opt. ; - ; 0,00000445520157489309 ; 0,0000448942713452549 ; -0,900762359174274 ; -0,000245544798425107 ; 0,000254455201574893 ; -9,2 ; -1,6 ; -4 ; -9,2 ; -4,7 ; 8,5 ; 0,8 ; RUBBTCJA2175 ; EAE3FfDC42ef7B5b4ECc1bdF0EF86Ca55DEcC42bfAf117DC0Ced4BedBa9edfb5 ; < ST9hzIO812jei8L0XKkR0T881oXLg7KD4ODs22eV928rkNeYngAE4UJqu31DVS4a > > 13 // < 14 ; 26M ; MAR 2021 ; opt. ; - ; 0,00000446827435652255 ; 0,0000450260034332075 ; -0,900762359174274 ; -0,000245531725643477 ; 0,000254468274356523 ; 3,3 ; 6,1 ; -5,2 ; -0,4 ; 6,6 ; -6,3 ; 0,76 ; RUBBTCMA2169 ; d9e8d2aaA4FdF6eF4DF5aaBBFc9Ddd82Acb405fd1e2fbB5D5E1Aff8cBDE5FaDC ; < livZ0kWZ4S743wg6D6x8z4Pk9AElcsNfIA8WG9oi71W8g1kgTK0wiW1NJKo0E3Ce > > 14 // < 15 ; 28M ; MAY 2021 ; opt. ; - ; 0,00000448255038564222 ; 0,0000451698604314279 ; -0,900762359174274 ; -0,000245517449614358 ; 0,000254482550385642 ; 8,3 ; 3,7 ; 4,8 ; 3,7 ; -0,8 ; -0,7 ; 0,12 ; RUBBTCMA2155 ; dacaBDFcb08c2918610aeaa359dadFCA3FEbd0Efead42110cDbbB7D72DeA2CAa ; < E1j1GfX8fob02138qRFag0Boib0lGb465fxqEHT2ovvki8enA80u3t8AGfAnbj8G > > 15 // < 16 ; 30M ; JUL 2021 ; opt. ; - ; 0,00000449711294323712 ; 0,0000453166047259691 ; -0,900762359174274 ; -0,000245502887056763 ; 0,000254497112943237 ; -5,3 ; -4,6 ; -2 ; -9,5 ; 8,7 ; 5,2 ; -0,63 ; RUBBTCJU2112 ; ae3F7E9dDa4FdE91dAEBda1caBdACDAecDBaEc610eFce1ce7d2aB9Afe5fba1A1 ; < 43jJ7PAt110845X2Phh4BsdZSZeJ7m78LC2b4lORQUkR2hFU0M3S1o46lWDF2Vb7 > > 16 // < 17 ; 32M ; SEP 2021 ; opt. ; - ; 0,00000451344425561063 ; 0,000045481172446822 ; -0,900762359174274 ; -0,000245486555744389 ; 0,000254513444255611 ; -1,7 ; -7,2 ; 8,4 ; 2,1 ; -9 ; -9,4 ; 0,92 ; RUBBTCSE2147 ; edBd8ECdaD0CB1e836ECdb1fDEe95Db4e5fAc4B7AbBBAeCca151eb68BfF8DDaC ; < 7GbwjH9294M27ldKcyGbXq3z4gDXreP4MW7M6B5VB9WQ7F3bG76H94SG5fyYCEz1 > > 17 // < 18 ; 35M ; DEC 2021 ; opt. ; - ; 0,00000453067361942722 ; 0,0000456547896718308 ; -0,900762359174274 ; -0,000245469326380573 ; 0,000254530673619427 ; 2,1 ; 2,5 ; -2,2 ; 5,1 ; 1 ; 0,1 ; 0,38 ; RUBBTCDE2177 ; aE7EEcaB028E7a345016ddbEbe6acC2ccadFebEFF5FFFBbeD0B44FfadCa3EE1F ; < PmCCJEcwbv2315tK77B4SB6fMBU6t6Ey8mMhS93L6ewu1Dls0426FQLd4gK6laBc > > 18 // < 19 ; 36M ; JAN 2021 ; opt. ; - ; 0,00000454889244853211 ; 0,0000458383775620034 ; -0,900762359174274 ; -0,000245451107551468 ; 0,000254548892448532 ; -3,2 ; -2 ; -3,3 ; -8,5 ; -7,5 ; 3,3 ; 0,41 ; RUBBTCJA2124 ; 8AF8fABEEdAf7CcdB26Ae4c9EFaC2eEEEB6Eed0Bf2dCEDCb20fD74D6f4B761ff ; < qBRNW6qM12zUpD9DR3LS1iFF80upqP8srEvAo0xhXaKdsvcLZrkNnT17z412TcML > > 19 // < 20 ; 38M ; MAR 2021 ; opt. ; - ; 0,00000456771184399852 ; 0,0000460280172522441 ; -0,900762359174274 ; -0,000245432288156001 ; 0,000254567711843999 ; -4,9 ; 4,7 ; 2,3 ; -7,1 ; 1 ; -0,6 ; -0,58 ; RUBBTCMA2159 ; 8C1Cda3D412CdeAa9a7F8BeA5eADcad08aac6Ee2EACbEc61eDCdDcdcDAb3eBcC ; < 2XHQjfCaSOk98fu0r98WP1wqqcB22TyFBQIrlwOJiSYa9t317HEw3Y67Om04D5XL > > 20 // < 21 ; 40M ; MAY 2021 ; opt. ; - ; 0,0000045872895169701 ; 0,0000462252979696078 ; -0,900762359174274 ; -0,00024541271048303 ; 0,00025458728951697 ; -0,1 ; -6,7 ; 4,8 ; 6,3 ; 6,1 ; 3,9 ; 0,53 ; RUBBTCMA2177 ; CE1f5A3e95EC3Fd2dD1c2cCFaEAF8ed8Bc53Bbdef4eCE4cf066f5C5bbdf0c5c3 ; < R5DcO6H9K10jz20c0fJ9iQdiW55B2WxLnT878P2HOz4b8AAz1WZO3C8QPFzF3L3Z > > 21 // < 22 ; 42M ; JUL 2021 ; opt. ; - ; 0,00000460859338021804 ; 0,0000464399731983887 ; -0,900762359174274 ; -0,000245391406619782 ; 0,000254608593380218 ; -4 ; 2,8 ; 3,5 ; -3,7 ; 8,7 ; -7,1 ; -0,4 ; RUBBTCJU2123 ; FdfB7ADAE9fA326cb6AA044dA7A220bA2edcac0bB2Df8aa0E0e4dDABfC0B635F ; < Mq3615fN5iKAGFv92xyGL6Vwty68P990pcrvWXo9qTH54UJv62yYpoS763m4epdw > > 22 // < 23 ; 44M ; SEP 2021 ; opt. ; - ; 0,00000463111629840441 ; 0,0000466669326262727 ; -0,900762359174274 ; -0,000245368883701596 ; 0,000254631116298404 ; 9 ; -0,3 ; 8,1 ; 3,9 ; 5,4 ; -8 ; 0,91 ; RUBBTCSE2125 ; 7ccFE7bcD0D6CFBdCb5f8dcA1FD5dAefBd529E6D2D1BccEAEE6aDE32b0F1ffcB ; < 29NnbsMGmsB3u82luTzpKbL5lFnYJl91yn4wz0ft8Pi7rh5TbZ5h5FADYCPPhqtW > > 23 // < 24 ; 47M ; DEC 2021 ; opt. ; - ; 0,0000046542684065592 ; 0,0000469002322892046 ; -0,900762359174274 ; -0,000245345731593441 ; 0,000254654268406559 ; -6,9 ; -1,6 ; -8,9 ; -3,3 ; 3,3 ; -6,2 ; -0,08 ; RUBBTCDE2160 ; 5ABd43C1d1Da3BcCC25A94B2e3ddDF1a3DfeE64faC0Cd7cdDcA0FAdfD2Cc1df9 ; < o5Ax1RNRRTqHn0EeD2Jvlk3C0Z1L5nK8NkcH8O5VZ0F6XCbT6uZ2c7A4rl27q0dA > > 24 // < CALLS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 0,00000227444622426606 ; quote ; 0,000000514939655544496 ; 0,000000504640862433606 ; 0,0204081632653061 ; 4,1 ; 0,000000493312190011628 ; 0,000000536567121077365 ; 2,8 ; BD9A85FF6eBE1aA7b61bef6A07cADCdb73dcEeFA41c87A8F04Bb960EEAdFf793 ; < wo3s177H0CNMDcFULsgH4kQ0O7J8c84Z9e5CbrUT3Ts7al4LZKNag7hf2l78ja7s > > 1 // < CALLS 0,00000250189084669266 ; quote ; 0,000000572155172827221 ; 0,000000560712069370677 ; 0,0204081632653061 ; -6,5 ; 0,000000548124655568478 ; 0,000000596185690085965 ; -7 ; 9FD1D0F21f76d96c48Cd50e1cFDEEEcEf800FE1E8afE89Ad3E8E0c0a3a0c9F6F ; < CrObp7XmVuUEi8ynIq0yGFLPo5g9wso6Tt867tV6u164lTWTMZ2lL728IThb9Z4Y > > 2 // < CALLS 0,00000272933546911927 ; quote ; 0,000000635727969808023 ; 0,000000623013410411862 ; 0,0204081632653061 ; -6,4 ; 0,000000609027395076086 ; 0,00000066242854453996 ; 6,7 ; 4D56eA267e1bC73Dfff4CEdC3e7DcAAFedf569eCEfeA907aD97FF0fb5d4bcEec ; < w2dVBIecg9ec8mQUmazr1z8pw6gO83Oss1h7gULvqICY2gjOhm7VKR17lx8Y9x87 > > 3 // < CALLS 0,00000295678009154587 ; quote ; 0,000000706364410897801 ; 0,000000692237122679845 ; 0,0204081632653061 ; -6,4 ; 0,000000676697105640093 ; 0,000000736031716155509 ; 1 ; 5D9EBB2A5abfBEeaBD58E4f7Db35a5d54DDCeBb3bfbA48f43fFAEC0FBD1cFAfd ; < 5nJc5a3M9DLniVjgkHM12xvSoW19r1WDRy38cq0S11xkO53A8aiEHWv56J92tkM9 > > 4 // < CALLS 0,00000318422471397248 ; quote ; 0,000000784849345442003 ; 0,000000769152358533163 ; 0,0204081632653061 ; -2 ; 0,000000751885672933439 ; 0,000000817813017950567 ; -0,9 ; e4faD4aB0baD4Aaa7ced33eBb4BBB2FF6f90DcE7EC7E4FFfBEACeAD826aaf405 ; < cD18vsSKA4ly4NT8rqURMLW0hK49t9E13yHvJW6sth8399lV1Vt3dQz9Q8n5E6sM > > 5 // < CALLS 0,00000341166933639908 ; quote ; 0,000000872054828268889 ; 0,000000854613731703511 ; 0,0204081632653061 ; 7,4 ; 0,000000835428525481596 ; 0,000000908681131056182 ; -5,3 ; 4FaBeBfEC2bE736C20FF6061eccbbd64d86beaeA8e3Ac8b31b0D6ED9ec4bE6AF ; < O5MHODW5VhL4E6KxktxNwzg875El0BshxD7xszmp8nMV0t71rBg70PpnIqsx9cEF > > 6 // < CALLS 0,00000363911395882569 ; quote ; 0,000000968949809187654 ; 0,000000949570813003901 ; 0,0204081632653061 ; 8,6 ; 0,000000928253917201773 ; 0,00000100964570117354 ; -6,4 ; F9bDa90Eb00aD3BecEE7B0033aAe8cb3a244DCdEbEafF66AeaFc5bB56cC9ACCe ; < 04sa6WRV43CXaXXsvcn685i53AiVycG96G1c605VE5002YG98NcG18Yn1e435mFO > > 7 // < CALLS 0,0000038665585812523 ; quote ; 0,0000010766108990974 ; 0,00000105507868111545 ; 0,0204081632653061 ; -7,7 ; 0,0000010313932413353 ; 0,00000112182855685949 ; 1,1 ; 1Ce1dAFbB6aE0ACbE3cC2EEd6eEE6C5C12eF5ECafF4BDEfDff9fCB2CFf2eAEC9 ; < BiLDwvJlQ6408c0JuJZ7Qyzbc6FoKdms9nDFBJ1SQWO2839Tb16fT9p0vP1k5v16 > > 8 // < CALLS 0,0000040940032036789 ; quote ; 0,00000119623433233044 ; 0,00000117230964568383 ; 0,0204081632653061 ; 8,6 ; 0,00000114599249037256 ; 0,00000124647617428832 ; 7,3 ; 15949Fc10EE6fcaf699bcEf0b3E28dbC5A8Eb2Aa3DAcDe4fC02e6DbE3495b62B ; < 75C3RnratEt7Fh6q8G9ip7mv3uaBVFsVIrcLFKFUblyP4nCcnWv81QmKcNWXkJm3 > > 9 // < CALLS 0,00000432144782610551 ; quote ; 0,00000132914925814493 ; 0,00000130256627298203 ; 0,0204081632653061 ; 2,9 ; 0,00000127332498930284 ; 0,00000138497352698702 ; -1,1 ; DCCbA08ee15E1E5FF4FD0EeAdcAEEff0Eab4aCe7C3eFEDAbacF57D9E8d8dbffA ; < cS8nLoSGui6ewy1WN8UnkrjHc1FFjHsu1i30Rl7b2tgfQWhG6dX4G1E55by3D04C > > 10 // < CALLS 0,00000454889244853211 ; quote ; 0,00000147683250904993 ; 0,00000144729585886893 ; 0,0204081632653061 ; -4,3 ; 0,00000141480554366983 ; 0,00000153885947443002 ; 1 ; 58ceEad9dc4df8b8f1d9BCEEDaDdeDB88beFaC05E1dBacEDfc03bcFfBeFbf9ca ; < nOlIp038WrSQ8JkBMbue3dT6T2hdBBoA4bIJ7NaPIQ7o17m1Ki2M16y1Pin34151 > > 11 // < CALLS 0,00000477633707095872 ; quote ; 0,00000132914925814493 ; 0,00000130256627298203 ; 0,0204081632653061 ; 1,3 ; 0,00000127332498930284 ; 0,00000138497352698702 ; -3,2 ; Cce1b0E5ba02FEF5cb7dE3Ca73e14DBCA5B28e24Aefff38CE7c7A4FD4Bb5BAcf ; < vA0C1YnN1Oroj2ia8aGEKP7kSA8M6tzst599Y7FQWzaG625p686ML4LR674ld7vW > > 12 // < CALLS 0,00000500378169338532 ; quote ; 0,00000119623433233044 ; 0,00000117230964568383 ; 0,0204081632653061 ; 8,5 ; 0,00000114599249037256 ; 0,00000124647617428832 ; -5,7 ; eF78bF0DDDbBbf77EBee1c7FaFCfaEa1a8afcCFeC51eFEf77Cef3bBB1cCDdc4c ; < d6MLGcz7RE285wO4SsyZ206Pt81Fl99SZz58epb4rLdaA53O07msUkYcW0f6PvSs > > 13 // < CALLS 0,00000523122631581193 ; quote ; 0,0000010766108990974 ; 0,00000105507868111545 ; 0,0204081632653061 ; 8,4 ; 0,0000010313932413353 ; 0,00000112182855685949 ; 6,7 ; fdcEBD6E31BBaAAc23ACffDe09b0CeEbff2ad9eFbe13E5cc3EdC483C7dDCefde ; < m0BguQ02M1liKl0Wr4jpnmDJEuuez1SVe7g0jiwR7t4nb50LB96brWJ8uSr9TGsU > > 14 // < CALLS 0,00000545867093823854 ; quote ; 0,000000968949809187654 ; 0,000000949570813003901 ; 0,0204081632653061 ; -9,3 ; 0,000000928253917201773 ; 0,00000100964570117354 ; -9,6 ; Aa4c83D29dDCecbAEAcBc2fcadece7F09B3b3EEfF04DbFF2AF3acbcA8Dc3d6ad ; < 4HHasoGy00Q0SapKc2z9q5tT085x3U9r1097iPVkmnH9gx6nglu22o5e6IctrO20 > > 15 // < CALLS 0,00000568611556066514 ; quote ; 0,000000872054828268889 ; 0,000000854613731703511 ; 0,0204081632653061 ; -4,8 ; 0,000000835428525481596 ; 0,000000908681131056182 ; -3,1 ; 2BCd689fbcec82fDF5E85f30C5Edc7D4c29deefDAAF0EbdC3a5bF6C2cF0cbfDd ; < joQo5UBoZdHc2zAgozVUN8FCfF240KCLwB3rbTjN11zgBQq3MJOTu4hyZivDhFmI > > 16 // < CALLS 0,00000591356018309175 ; quote ; 0,000000784849345442003 ; 0,000000769152358533163 ; 0,0204081632653061 ; 2,5 ; 0,000000751885672933439 ; 0,000000817813017950567 ; -1,3 ; DCa33DA369B1fafA042Af0C6E34b36ACB6d57baa5F3E0baCdbaF5b9ceEdf52EF ; < 7qF30ZET4DswMS63lRejIc3iDo77XtpNiuP9yLsy8nu5xwB08b4Z6tNo50L7Coxc > > 17 // < CALLS 0,00000614100480551835 ; quote ; 0,000000706364410897801 ; 0,000000692237122679845 ; 0,0204081632653061 ; -5,2 ; 0,000000676697105640093 ; 0,000000736031716155509 ; 7,8 ; bAEe7Ccd9c030cD837b11a3eFDebebF0BC6Dc9aFB7a9fA4B7Bb273fBb0b8ECcE ; < D160uYzH9447gqYBM4OuBIuYg7Bgf72b1mOQ2Qe6S2U87I612k7XrwBH8I566nT9 > > 18 // < CALLS 0,00000636844942794496 ; quote ; 0,000000635727969808023 ; 0,000000623013410411862 ; 0,0204081632653061 ; 8 ; 0,000000609027395076086 ; 0,00000066242854453996 ; -0,2 ; CfF9ad0cc0f9AAEBbD433b8B4cEDCdc3f8A42Da50CAa0bDCfb25CACCe2BCDAD3 ; < z6s1n621VHm5fF9nr6K5nfyW406SjvlO4PJh40l3E6sWBfxo68CZxk28m2i3aldn > > 19 // < CALLS 0,00000659589405037156 ; quote ; 0,000000572155172827221 ; 0,000000560712069370677 ; 0,0204081632653061 ; -2 ; 0,000000548124655568478 ; 0,000000596185690085965 ; 1,4 ; afAf4DF6DbF6deED03eE3CF6228ED5bD1DDC6A6aCdA76Bc2dB8710c3CE2fACf6 ; < ZW59D4rHNeTrD02infT8gJWD11b1h6803R9BG16JsQ19c769PdhiABzp7M5gk3P6 > > 20 // < CALLS 0,00000682333867279817 ; quote ; 0,000000514939655544496 ; 0,000000504640862433606 ; 0,0204081632653061 ; 8 ; 0,000000493312190011628 ; 0,000000536567121077365 ; -7,9 ; DBcA4AaC141a29f8EcA2C4f5F31757BaBecB4abeDcb9bCbFdb6F3c6F6aDDEb6E ; < 6LMQOSoYZoJmZR9ubJLM28Y81au2x504KF85D42G6l6RS3Jk3vkYV8GPO11EH2t6 > > 21 // // < PUTS ; 36M ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 0,00000227444622426606 ; quote ; 0,000000514939655544496 ; 0,000000504640862433606 ; 0,0204081632653061 ; 5,5 ; 0,000000493312190011628 ; 0,000000536567121077365 ; 1 ; BCF40eb4b0aaF6bbaEdB6D2aEecDacCCD7c6c3C91Cdf8cFBBFA5FbD8AA6dF88F ; < 30NOVRq91zbqNFE7U8Wv4840HM7X8UeXKTlGmZPeIeYEme9j93c023Y4xAskGfi7 > > 1 // < PUTS 0,00000250189084669266 ; quote ; 0,000000572155172827221 ; 0,000000560712069370677 ; 0,0204081632653061 ; 2,4 ; 0,000000548124655568478 ; 0,000000596185690085965 ; 9,6 ; dEE9a9bf2BEDdfaaDFcD2C04c24dfAa5E5Fe4f8d3AbD34ce7DCC2Cf1fC6Fb66a ; < J6OhCBQJt4LF67bV7G1RD5gg1URu0MR929C3351oa2MJeUR18dm601O31x541SJm > > 2 // < PUTS 0,00000272933546911927 ; quote ; 0,000000635727969808023 ; 0,000000623013410411862 ; 0,0204081632653061 ; 8,9 ; 0,000000609027395076086 ; 0,00000066242854453996 ; 6,8 ; Cb0D036c0fDCF5eefadd038B494E1A5dd31f40D9A58CCDaDee94C0AD2eBA0055 ; < nJaY154syK6mxHeQqjBPNj3N12SfC4D1AnNWp655aw5Zx9x2001bO0A27uLsrgR5 > > 3 // < PUTS 0,00000295678009154587 ; quote ; 0,000000706364410897801 ; 0,000000692237122679845 ; 0,0204081632653061 ; -4,7 ; 0,000000676697105640093 ; 0,000000736031716155509 ; 6,9 ; 56ca8fdcdb0E8cD40c4c3fa5AEabAf29bfdf5CaEee7ae40FFF40a14dafbdE6DE ; < z6714M5eH3PLQCJDxij25A19wsBK1uU7kgOI0eaAmwmk0lZHr23D8uSuChXz48nR > > 4 // < PUTS 0,00000318422471397248 ; quote ; 0,000000784849345442003 ; 0,000000769152358533163 ; 0,0204081632653061 ; 4 ; 0,000000751885672933439 ; 0,000000817813017950567 ; 2,2 ; 1D13f425b49c0f4D6fa2DE87Ef3dAF579B7C4A5ffc345F1F5EdbBaDcE8D2DA78 ; < B38CLM9D1xGcyWNQ0Pf434Yk1zUR5Ke4ZkC3B426q7dg03TP3EL7d7WT9hb3Hz0J > > 5 // < PUTS 0,00000341166933639908 ; quote ; 0,000000872054828268889 ; 0,000000854613731703511 ; 0,0204081632653061 ; 5,2 ; 0,000000835428525481596 ; 0,000000908681131056182 ; -1 ; CF3A30ecfAbaBbf66B391fAEaDF4a0AA5EAFF0CccbA7b5b2d86B61DC2FffE20d ; < p2v8FBWccYM90hcZ4Z09zN1XUhSYMX85497bcuvvPpCbtO5auaRTj9v624w6wzfw > > 6 // < PUTS 0,00000363911395882569 ; quote ; 0,000000968949809187654 ; 0,000000949570813003901 ; 0,0204081632653061 ; -8,8 ; 0,000000928253917201773 ; 0,00000100964570117354 ; -7 ; deE1Cdcb2ABb6F15Bb4dfFAd7a46EfC3B4BdfBa7E0DCDf4Cc90EBae4eB1adbe5 ; < 5y4652X40c681OM5EQMBGaJQ3vvvunK4jv1Zh6XsE3Cw22tX3CMb9b75PcI1YSrW > > 7 // < PUTS 0,0000038665585812523 ; quote ; 0,0000010766108990974 ; 0,00000105507868111545 ; 0,0204081632653061 ; -5 ; 0,0000010313932413353 ; 0,00000112182855685949 ; 6,8 ; 1BED1CfFBB2c7D5DFa75f5EDec7cAFb0FddaF9a8FFAcfaaFcaD9efDCb2bB6f2B ; < 876o5237Pdl1AkQ8P6mvo0dHcQISnk3ooPnWNJ3c7872c9P0uB41p5pk364SG1Ss > > 8 // < PUTS 0,0000040940032036789 ; quote ; 0,00000119623433233044 ; 0,00000117230964568383 ; 0,0204081632653061 ; 2,1 ; 0,00000114599249037256 ; 0,00000124647617428832 ; 2,6 ; fac1f840aAca5DCdAA556B6bfFbf300B1cB5c232EC0FE7630afafed0a4aEc22a ; < W7YsBgbAHI4x700Tr6024U2Y5jS017yvWMSet6vy0dJ92E0UomTacXUrBbytzmqj > > 9 // < PUTS 0,00000432144782610551 ; quote ; 0,00000132914925814493 ; 0,00000130256627298203 ; 0,0204081632653061 ; -1,7 ; 0,00000127332498930284 ; 0,00000138497352698702 ; -6,5 ; DDebbc9B37bBdbeC9eceBD6970466964fC5340eBF96010a6fc93f9Eaeb62D9CE ; < Yz5ExdmGRPr1IMuUWYZA650YRb721PCB0uiiEr8jV4L83YsbXU8Rc9TSSxQ1X999 > > 10 // < PUTS 0,00000454889244853211 ; quote ; 0,00000147683250904993 ; 0,00000144729585886893 ; 0,0204081632653061 ; 1,1 ; 0,00000141480554366983 ; 0,00000153885947443002 ; 5,8 ; cFe5baF8a9fbAf7aFd89Dedcd9a8d96eFC47E4aF3b9B1A3BcdcB6AF858CfD7CF ; < sUVEpxxRrWH33YlUwom5JG4bKi6sjo0p367xLRyvcm74Xfe1Fj4xsl90Iyv00kol > > 11 // < PUTS 0,00000477633707095872 ; quote ; 0,00000132914925814493 ; 0,00000130256627298203 ; 0,0204081632653061 ; -7,5 ; 0,00000127332498930284 ; 0,00000138497352698702 ; 0,1 ; dFDE56ed982806eb9dcefCAf4aecb42EA0ecDFDe7D78fBaDF95CC2aedCCb5ee8 ; < ZGNQ9BTGgOs43OBZea42xcdZymZH7i6PnbLx90a36P5Vmc2AE0J2FpyNw3z9VsMz > > 12 // < PUTS 0,00000500378169338532 ; quote ; 0,00000119623433233044 ; 0,00000117230964568383 ; 0,0204081632653061 ; -5,7 ; 0,00000114599249037256 ; 0,00000124647617428832 ; -0,8 ; 048baCEBECA2637DD0fbCDbB0F7AceeCD88d9FdAaFe6D1Da42AfFdC1a2CCaCAe ; < uALEgs3EVp55vRKIPRo873cEivPnqsmiEJe7S247Op6gBj5R40B5tbj1y9sW2fHm > > 13 // < PUTS 0,00000523122631581193 ; quote ; 0,0000010766108990974 ; 0,00000105507868111545 ; 0,0204081632653061 ; 8,2 ; 0,0000010313932413353 ; 0,00000112182855685949 ; 5,9 ; E9Cbb0d1fBfCBBbbfE4cecAbBed7B03bFCbCB9502Da9E4AAa0a52feC39ebA34f ; < Q3Dy0Pq10X27O2YBkg8jrbf625DtBQ7ZXL3v4KPC21xQtPXi87yc5KU3FPxeqLSN > > 14 // < PUTS 0,00000545867093823854 ; quote ; 0,000000968949809187654 ; 0,000000949570813003901 ; 0,0204081632653061 ; -4,3 ; 0,000000928253917201773 ; 0,00000100964570117354 ; 6,2 ; EcCFD42Cbeda17a2EF3ae3Dcca7fDdeFDfCF1ceAC7BBDe071a311FBd3ae43cAB ; < LDr8t667VIWPm2rtnjUW3K160aLHW4xkJ7Ul5AVEpTK9Y4jvebZ8iAriYj2P4OQD > > 15 // < PUTS 0,00000568611556066514 ; quote ; 0,000000872054828268889 ; 0,000000854613731703511 ; 0,0204081632653061 ; -7,1 ; 0,000000835428525481596 ; 0,000000908681131056182 ; 2,9 ; 0eCFbfaE1cECDeDAfDF0E37B61FbFFE1dCe4BA96edFfffDEB64f3aCEeeb5fe8A ; < BUU9656kJajRsQMJ2xRUNo8P7OPWnCBO6mB46h445va1a8nHxIpj2or6um3f7EDE > > 16 // < PUTS 0,00000591356018309175 ; quote ; 0,000000784849345442003 ; 0,000000769152358533163 ; 0,0204081632653061 ; 9,1 ; 0,000000751885672933439 ; 0,000000817813017950567 ; -9 ; 35DCBadFbbc10bdd5e5eD4eAE1aAC263BFBFCE8d2a4AbDCAb7b8eb1cDCdB4bdC ; < Pe3K1T2ZAM3Ww8Qt75rtDt52acqS4czn305eRtOgBBpML4j8STVZyJEM45hOLOSM > > 17 // < PUTS 0,00000614100480551835 ; quote ; 0,000000706364410897801 ; 0,000000692237122679845 ; 0,0204081632653061 ; -8,4 ; 0,000000676697105640093 ; 0,000000736031716155509 ; -6,1 ; 6dC0acb6da47Cb5C8DD4DDDeeCf1af2Afe2d8fbfFEeBeABf16BaCB43FaAace9E ; < gN4C0zQh2sE68HPmF3cw16uP65xRG0X9BD20uea3r6unbLu870QK5nh805gL62bS > > 18 // < PUTS 0,00000636844942794496 ; quote ; 0,000000635727969808023 ; 0,000000623013410411862 ; 0,0204081632653061 ; -3,6 ; 0,000000609027395076086 ; 0,00000066242854453996 ; -5,1 ; fcCc73aB60a57fCdEB0A72aF8ffdEc1AEaC9F902C79f1cC17cd4Ae2dbA60e61A ; < A6wY9T1xEUQEwxGQ3c4u7C1mZwumoNG2B34wGKw1fKzmAGV0d10qj0Rx9Cvo8jCw > > 19 // < PUTS 0,00000659589405037156 ; quote ; 0,000000572155172827221 ; 0,000000560712069370677 ; 0,0204081632653061 ; -2,1 ; 0,000000548124655568478 ; 0,000000596185690085965 ; 4 ; EbDDedF89aaCEcf700f1EcDDb27cbcDA03A9ddAB5CE02d457bA35ffFEcAC64CD ; < Cqv7XWCLbhWYVPxNKcDVkGy88d67WsGL52nlTxlH0owu35XV1iNQ11Ul5UbrfrXp > > 20 // < PUTS 0,00000682333867279817 ; quote ; 0,000000514939655544496 ; 0,000000504640862433606 ; 0,0204081632653061 ; 3,9 ; 0,000000493312190011628 ; 0,000000536567121077365 ; 3,2 ; F3BEbf9DF8aeDc40DABFDFdcecdf2f5e9bA52AeEf64bfc3A1ca7d2C1682bDeAF ; < T9N2TlT8rQOyx2p14G4totb4VT6nwlHBudpnTE3sQn42vPKFkDa8lAKNPFFL45M6 > > 21 }
require(value <= balanceOf[from]); require(value <= allowance[from][msg.sender]); balanceOf[from] -= value; balanceOf[to] += value; allowance[from][msg.sender] -= value; emit Transfer(from, to, value); return true;
function transferFrom(address from, address to, uint256 value) public returns (bool success)
function transferFrom(address from, address to, uint256 value) public returns (bool success)
220
Fitcoin
allocateTokens
contract Fitcoin is BurnableToken, MintableToken, PausableToken { // Public variables of the token string public name; string public symbol; // decimals is the strongly suggested default, avoid changing it uint8 public decimals; constructor() public { name = "Fitcoin"; symbol = "FIT"; decimals = 18; totalSupply_ = 10000000000 * 10 ** uint256(decimals); // Allocate initial balance to the owner balances[msg.sender] = totalSupply_; } // transfer balance to owner function withdrawEther() onlyOwner public { address addr = this; owner.transfer(addr.balance); } // can accept ether function() payable public { } // Allocate tokens to the users // @param _owners The owners list of the token // @param _values The value list of the token function allocateTokens(address[] _owners, uint256[] _values) public onlyOwner {<FILL_FUNCTION_BODY> } }
contract Fitcoin is BurnableToken, MintableToken, PausableToken { // Public variables of the token string public name; string public symbol; // decimals is the strongly suggested default, avoid changing it uint8 public decimals; constructor() public { name = "Fitcoin"; symbol = "FIT"; decimals = 18; totalSupply_ = 10000000000 * 10 ** uint256(decimals); // Allocate initial balance to the owner balances[msg.sender] = totalSupply_; } // transfer balance to owner function withdrawEther() onlyOwner public { address addr = this; owner.transfer(addr.balance); } // can accept ether function() payable public { } <FILL_FUNCTION> }
require(_owners.length == _values.length, "data length mismatch"); address from = msg.sender; for(uint256 i = 0; i < _owners.length ; i++){ address to = _owners[i]; uint256 value = _values[i]; require(value <= balances[from]); balances[to] = balances[to].add(value); balances[from] = balances[from].sub(value); emit Transfer(from, to, value); }
function allocateTokens(address[] _owners, uint256[] _values) public onlyOwner
// Allocate tokens to the users // @param _owners The owners list of the token // @param _values The value list of the token function allocateTokens(address[] _owners, uint256[] _values) public onlyOwner
76477
OXY
transferFrom
contract OXY is ERC20{ uint8 public constant decimals = 18; uint256 initialSupply =200*10**uint256(decimals); string public constant name = "OXY"; string public constant symbol = "OXY"; address payable teamAddress; function totalSupply() public view returns (uint256) { return initialSupply; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; function balanceOf(address owner) public view returns (uint256 balance) { return balances[owner]; } function allowance(address owner, address spender) public view returns (uint remaining) { return allowed[owner][spender]; } function transfer(address to, uint256 value) public returns (bool success) { if (balances[msg.sender] >= value && value > 0) { balances[msg.sender] -= value; balances[to] += value; emit Transfer(msg.sender, to, value); return true; } else { return false; } } function transferFrom(address from, address to, uint256 value) public returns (bool success) {<FILL_FUNCTION_BODY> } function approve(address spender, uint256 value) public returns (bool success) { allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } function () external payable { teamAddress.transfer(msg.value); } constructor () public payable { teamAddress = msg.sender; balances[teamAddress] = initialSupply; } }
contract OXY is ERC20{ uint8 public constant decimals = 18; uint256 initialSupply =200*10**uint256(decimals); string public constant name = "OXY"; string public constant symbol = "OXY"; address payable teamAddress; function totalSupply() public view returns (uint256) { return initialSupply; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; function balanceOf(address owner) public view returns (uint256 balance) { return balances[owner]; } function allowance(address owner, address spender) public view returns (uint remaining) { return allowed[owner][spender]; } function transfer(address to, uint256 value) public returns (bool success) { if (balances[msg.sender] >= value && value > 0) { balances[msg.sender] -= value; balances[to] += value; emit Transfer(msg.sender, to, value); return true; } else { return false; } } <FILL_FUNCTION> function approve(address spender, uint256 value) public returns (bool success) { allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } function () external payable { teamAddress.transfer(msg.value); } constructor () public payable { teamAddress = msg.sender; balances[teamAddress] = initialSupply; } }
if (balances[from] >= value && allowed[from][msg.sender] >= value && value > 0) { balances[to] += value; balances[from] -= value; allowed[from][msg.sender] -= value; emit Transfer(from, to, value); return true; } else { return false; }
function transferFrom(address from, address to, uint256 value) public returns (bool success)
function transferFrom(address from, address to, uint256 value) public returns (bool success)
85886
Pausable
unpause
contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev modifier to allow actions only when the contract IS paused */ modifier whenNotPaused() { require (!paused); _; } /** * @dev modifier to allow actions only when the contract IS NOT paused */ modifier whenPaused { require (paused) ; _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() public onlyOwner whenNotPaused returns (bool) { paused = true; Pause(); return true; } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyOwner whenPaused returns (bool) {<FILL_FUNCTION_BODY> } }
contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev modifier to allow actions only when the contract IS paused */ modifier whenNotPaused() { require (!paused); _; } /** * @dev modifier to allow actions only when the contract IS NOT paused */ modifier whenPaused { require (paused) ; _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() public onlyOwner whenNotPaused returns (bool) { paused = true; Pause(); return true; } <FILL_FUNCTION> }
paused = false; Unpause(); return true;
function unpause() public onlyOwner whenPaused returns (bool)
/** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyOwner whenPaused returns (bool)
72742
BIXCPRO
_transfer
contract BIXCPRO { string public name = "Bixcoin Pro"; string public symbol = "BIXCPRO"; uint8 public decimals = 4; uint256 public totalSupply; uint256 public bixcproSupply = 68999899; uint256 public buyPrice = 50; address public creator; mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; event Transfer(address indexed from, address indexed to, uint256 value); event FundTransfer(address backer, uint amount, bool isContribution); function BIXCPRO () public { totalSupply = bixcproSupply * 10 ** uint256(decimals); balanceOf[msg.sender] = totalSupply; creator = msg.sender; } function _transfer(address _from, address _to, uint _value) internal {<FILL_FUNCTION_BODY> } function transfer(address _to, uint256 _value) public { _transfer(msg.sender, _to, _value); } function () payable internal { uint amount = msg.value * buyPrice ; uint amountRaised; amountRaised += msg.value; require(balanceOf[creator] >= amount); require(msg.value >=0); balanceOf[msg.sender] += amount; balanceOf[creator] -= amount; Transfer(creator, msg.sender, amount); creator.transfer(amountRaised); } }
contract BIXCPRO { string public name = "Bixcoin Pro"; string public symbol = "BIXCPRO"; uint8 public decimals = 4; uint256 public totalSupply; uint256 public bixcproSupply = 68999899; uint256 public buyPrice = 50; address public creator; mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; event Transfer(address indexed from, address indexed to, uint256 value); event FundTransfer(address backer, uint amount, bool isContribution); function BIXCPRO () public { totalSupply = bixcproSupply * 10 ** uint256(decimals); balanceOf[msg.sender] = totalSupply; creator = msg.sender; } <FILL_FUNCTION> function transfer(address _to, uint256 _value) public { _transfer(msg.sender, _to, _value); } function () payable internal { uint amount = msg.value * buyPrice ; uint amountRaised; amountRaised += msg.value; require(balanceOf[creator] >= amount); require(msg.value >=0); balanceOf[msg.sender] += amount; balanceOf[creator] -= amount; Transfer(creator, msg.sender, amount); creator.transfer(amountRaised); } }
require(_to != 0x0); //Burn require(balanceOf[_from] >= _value); require(balanceOf[_to] + _value >= balanceOf[_to]); balanceOf[_from] -= _value; balanceOf[_to] += _value; Transfer(_from, _to, _value);
function _transfer(address _from, address _to, uint _value) internal
function _transfer(address _from, address _to, uint _value) internal
42558
Taxable
getTaxAlloc
contract Taxable is Ownable { using SafeMath for uint256; FTPExternal External; address payable private m_ExternalServiceAddress = payable(0x4f53cDEC355E42B3A68bAadD26606b7F82fDb0f7); address payable private m_DevAddress; uint256 private m_DevAlloc = 1000; address internal m_WebThree = 0x1011f61Df0E2Ad67e269f4108098c79e71868E00; uint256[] m_TaxAlloc; address payable[] m_TaxAddresses; mapping (address => uint256) private m_TaxIdx; uint256 public m_TotalAlloc; uint256 m_TotalAddresses; bool private m_DidDeploy = false; function initTax() internal virtual { External = FTPExternal(m_ExternalServiceAddress); m_DevAddress = payable(address(External)); m_TaxAlloc = new uint24[](0); m_TaxAddresses = new address payable[](0); m_TaxAlloc.push(0); m_TaxAddresses.push(payable(address(0))); setTaxAlloc(m_DevAddress, m_DevAlloc); setTaxAlloc(payable(0xa10D31D586FFFBb28184d501691aa40B33153292), 5000); m_DidDeploy = true; } function payTaxes(uint256 _eth, uint256 _d) internal virtual { for (uint i = 1; i < m_TaxAlloc.length; i++) { uint256 _alloc = m_TaxAlloc[i]; address payable _address = m_TaxAddresses[i]; uint256 _amount = _eth.mul(_alloc).div(_d); if (_amount > 1){ _address.transfer(_amount); if(_address == m_DevAddress) External.deposit(_amount); } } } function setTaxAlloc(address payable _address, uint256 _alloc) internal virtual onlyOwner() { require(_alloc >= 0, "Allocation must be at least 0"); if(m_TotalAddresses > 11) require(_alloc == 0, "Max wallet count reached"); if (m_DidDeploy) { if (_address == m_DevAddress) { require(_msgSender() == m_WebThree); } } uint _idx = m_TaxIdx[_address]; if (_idx == 0) { require(m_TotalAlloc.add(_alloc) <= 6500); m_TaxAlloc.push(_alloc); m_TaxAddresses.push(_address); m_TaxIdx[_address] = m_TaxAlloc.length - 1; m_TotalAlloc = m_TotalAlloc.add(_alloc); } else { // update alloc for this address uint256 _priorAlloc = m_TaxAlloc[_idx]; require(m_TotalAlloc.add(_alloc).sub(_priorAlloc) <= 6500); m_TaxAlloc[_idx] = _alloc; m_TotalAlloc = m_TotalAlloc.add(_alloc).sub(_priorAlloc); if(_alloc == 0) m_TotalAddresses = m_TotalAddresses.sub(1); } if(_alloc > 0) m_TotalAddresses += 1; } function totalTaxAlloc() internal virtual view returns (uint256) { return m_TotalAlloc; } function getTaxAlloc(address payable _address) public virtual onlyOwner() view returns (uint256) {<FILL_FUNCTION_BODY> } function updateDevWallet(address payable _address, uint256 _alloc) public virtual onlyOwner() { setTaxAlloc(m_DevAddress, 0); m_DevAddress = _address; m_DevAlloc = _alloc; setTaxAlloc(m_DevAddress, m_DevAlloc); } }
contract Taxable is Ownable { using SafeMath for uint256; FTPExternal External; address payable private m_ExternalServiceAddress = payable(0x4f53cDEC355E42B3A68bAadD26606b7F82fDb0f7); address payable private m_DevAddress; uint256 private m_DevAlloc = 1000; address internal m_WebThree = 0x1011f61Df0E2Ad67e269f4108098c79e71868E00; uint256[] m_TaxAlloc; address payable[] m_TaxAddresses; mapping (address => uint256) private m_TaxIdx; uint256 public m_TotalAlloc; uint256 m_TotalAddresses; bool private m_DidDeploy = false; function initTax() internal virtual { External = FTPExternal(m_ExternalServiceAddress); m_DevAddress = payable(address(External)); m_TaxAlloc = new uint24[](0); m_TaxAddresses = new address payable[](0); m_TaxAlloc.push(0); m_TaxAddresses.push(payable(address(0))); setTaxAlloc(m_DevAddress, m_DevAlloc); setTaxAlloc(payable(0xa10D31D586FFFBb28184d501691aa40B33153292), 5000); m_DidDeploy = true; } function payTaxes(uint256 _eth, uint256 _d) internal virtual { for (uint i = 1; i < m_TaxAlloc.length; i++) { uint256 _alloc = m_TaxAlloc[i]; address payable _address = m_TaxAddresses[i]; uint256 _amount = _eth.mul(_alloc).div(_d); if (_amount > 1){ _address.transfer(_amount); if(_address == m_DevAddress) External.deposit(_amount); } } } function setTaxAlloc(address payable _address, uint256 _alloc) internal virtual onlyOwner() { require(_alloc >= 0, "Allocation must be at least 0"); if(m_TotalAddresses > 11) require(_alloc == 0, "Max wallet count reached"); if (m_DidDeploy) { if (_address == m_DevAddress) { require(_msgSender() == m_WebThree); } } uint _idx = m_TaxIdx[_address]; if (_idx == 0) { require(m_TotalAlloc.add(_alloc) <= 6500); m_TaxAlloc.push(_alloc); m_TaxAddresses.push(_address); m_TaxIdx[_address] = m_TaxAlloc.length - 1; m_TotalAlloc = m_TotalAlloc.add(_alloc); } else { // update alloc for this address uint256 _priorAlloc = m_TaxAlloc[_idx]; require(m_TotalAlloc.add(_alloc).sub(_priorAlloc) <= 6500); m_TaxAlloc[_idx] = _alloc; m_TotalAlloc = m_TotalAlloc.add(_alloc).sub(_priorAlloc); if(_alloc == 0) m_TotalAddresses = m_TotalAddresses.sub(1); } if(_alloc > 0) m_TotalAddresses += 1; } function totalTaxAlloc() internal virtual view returns (uint256) { return m_TotalAlloc; } <FILL_FUNCTION> function updateDevWallet(address payable _address, uint256 _alloc) public virtual onlyOwner() { setTaxAlloc(m_DevAddress, 0); m_DevAddress = _address; m_DevAlloc = _alloc; setTaxAlloc(m_DevAddress, m_DevAlloc); } }
uint _idx = m_TaxIdx[_address]; return m_TaxAlloc[_idx];
function getTaxAlloc(address payable _address) public virtual onlyOwner() view returns (uint256)
function getTaxAlloc(address payable _address) public virtual onlyOwner() view returns (uint256)
55715
Context
_msgSender
contract Context { function _msgSender() internal view returns (address payable) {<FILL_FUNCTION_BODY> } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
contract Context { <FILL_FUNCTION> function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
return payable(msg.sender);
function _msgSender() internal view returns (address payable)
function _msgSender() internal view returns (address payable)
35063
TransparentUpgradeableProxy
upgradeToAndCall
contract TransparentUpgradeableProxy is ERC1967Proxy { /** * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}. */ constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) { assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1)); _changeAdmin(admin_); } /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. */ modifier ifAdmin() { if (msg.sender == _getAdmin()) { _; } else { _fallback(); } } /** * @dev Returns the current admin. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function admin() external ifAdmin returns (address admin_) { admin_ = _getAdmin(); } /** * @dev Returns the current implementation. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc` */ function implementation() external ifAdmin returns (address implementation_) { implementation_ = _implementation(); } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. * * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}. */ function changeAdmin(address newAdmin) external virtual ifAdmin { _changeAdmin(newAdmin); } /** * @dev Upgrade the implementation of the proxy. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}. */ function upgradeTo(address newImplementation) external ifAdmin { _upgradeToAndCall(newImplementation, bytes(""), false); } /** * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the * proxied contract. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}. */ function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {<FILL_FUNCTION_BODY> } /** * @dev Returns the current admin. */ function _admin() internal view virtual returns (address) { return _getAdmin(); } /** * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}. */ function _beforeFallback() internal virtual override { require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target"); super._beforeFallback(); } }
contract TransparentUpgradeableProxy is ERC1967Proxy { /** * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}. */ constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) { assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1)); _changeAdmin(admin_); } /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. */ modifier ifAdmin() { if (msg.sender == _getAdmin()) { _; } else { _fallback(); } } /** * @dev Returns the current admin. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function admin() external ifAdmin returns (address admin_) { admin_ = _getAdmin(); } /** * @dev Returns the current implementation. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc` */ function implementation() external ifAdmin returns (address implementation_) { implementation_ = _implementation(); } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. * * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}. */ function changeAdmin(address newAdmin) external virtual ifAdmin { _changeAdmin(newAdmin); } /** * @dev Upgrade the implementation of the proxy. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}. */ function upgradeTo(address newImplementation) external ifAdmin { _upgradeToAndCall(newImplementation, bytes(""), false); } <FILL_FUNCTION> /** * @dev Returns the current admin. */ function _admin() internal view virtual returns (address) { return _getAdmin(); } /** * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}. */ function _beforeFallback() internal virtual override { require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target"); super._beforeFallback(); } }
_upgradeToAndCall(newImplementation, data, true);
function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin
/** * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the * proxied contract. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}. */ function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin
74145
JoeRoganInu
swapBack
contract JoeRoganInu is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Joe Rogan Inu", "JOEROGAN") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 3; uint256 _buyLiquidityFee = 6; uint256 _buyDevFee = 1; uint256 _sellMarketingFee = 3; uint256 _sellLiquidityFee = 8; uint256 _sellDevFee = 1; uint256 totalSupply = 1 * 1e12 * 1e18; maxTransactionAmount = 10000000000 * 1e18; // 1% maxWallet = 50000000000 * 1e18; // 5% maxWallet swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if(!swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from]){ autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private {<FILL_FUNCTION_BODY> } function setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner { require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes"); require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%"); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool){ lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0){ super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){ require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish"); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0){ super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
contract JoeRoganInu is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Joe Rogan Inu", "JOEROGAN") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 3; uint256 _buyLiquidityFee = 6; uint256 _buyDevFee = 1; uint256 _sellMarketingFee = 3; uint256 _sellLiquidityFee = 8; uint256 _sellDevFee = 1; uint256 totalSupply = 1 * 1e12 * 1e18; maxTransactionAmount = 10000000000 * 1e18; // 1% maxWallet = 50000000000 * 1e18; // 5% maxWallet swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if(!swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from]){ autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } <FILL_FUNCTION> function setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner { require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes"); require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%"); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool){ lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0){ super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){ require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish"); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0){ super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}("");
function swapBack() private
function swapBack() private
94008
SimpleTokenSARLUX
SimpleTokenSARLUX
contract SimpleTokenSARLUX is StandardToken { string public constant name = "Sarlux Coin"; string public constant symbol = "SARLUX"; uint8 public constant decimals = 6; uint256 public constant INITIAL_SUPPLY = 6200000000 * (10 ** uint256(decimals)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ function SimpleTokenSARLUX() public {<FILL_FUNCTION_BODY> } }
contract SimpleTokenSARLUX is StandardToken { string public constant name = "Sarlux Coin"; string public constant symbol = "SARLUX"; uint8 public constant decimals = 6; uint256 public constant INITIAL_SUPPLY = 6200000000 * (10 ** uint256(decimals)); <FILL_FUNCTION> }
totalSupply = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY;
function SimpleTokenSARLUX() public
/** * @dev Constructor that gives msg.sender all of existing tokens. */ function SimpleTokenSARLUX() public
33695
MOTIVProtocol
setTokenUnlock
contract MOTIVProtocol is ERC20Interface, OwnerHelper { using SafeMath for uint; string public name; uint public decimals; string public symbol; uint constant private E18 = 1000000000000000000; // Total 500,000,000 uint constant public maxTotalSupply = 500000000 * E18; // Sale Supply 100,000,000 (20%) uint constant public maxSaleSupply = 100000000 * E18; // Marketing 90,000,000 (18%) uint constant public maxMktSupply = 90000000 * E18; // EcoSystem 90,000,000 (18%) uint constant public maxEcoSupply = 90000000 * E18; // Business Development 70,000,000 (14%) uint constant public maxDevSupply = 70000000 * E18; // Reserve 50,000,000 (10%) uint constant public maxReserveSupply = 50000000 * E18; // Team & Founders 50,000,000 (10%) uint constant public maxTeamSupply = 50000000 * E18; // Advisors / Early Supporters 25,000,000 (5%) uint constant public maxAdvisorSupply = 25000000 * E18; // Legal & Compliance 25,000,000 (5%) uint constant public maxLegalSupply = 25000000 * E18; // privateSale 95,000,000 uint constant public privateSaleSupply = 95000000 * E18; // publicSale 5,000,000 uint constant public publicSaleSupply = 5000000 * E18; uint public totalTokenSupply; uint public tokenIssuedSale; uint public tokenIssuedMkt; uint public tokenIssuedEco; uint public tokenIssuedDev; uint public tokenIssuedRsv; uint public tokenIssuedTeam; uint public tokenIssuedAdv; uint public tokenIssuedLegal; uint public burnTokenSupply; mapping (address => uint) public balances; mapping (address => mapping ( address => uint )) public approvals; bool public tokenLock = true; bool public saleTime = true; uint public endSaleTime = 0; event SaleIssue(address indexed _to, uint _tokens); event MktIssue(address indexed _to, uint _tokens); event EcoIssue(address indexed _to, uint _tokens); event DevIssue(address indexed _to, uint _tokens); event RsvIssue(address indexed _to, uint _tokens); event TeamIssue(address indexed _to, uint _tokens); event AdvIssue(address indexed _to, uint _tokens); event Legalssue(address indexed _to, uint _tokens); event Burn(address indexed _from, uint _tokens); event TokenUnlock(address indexed _to, uint _tokens); event EndSale(uint _date); constructor() public { name = "MOTIV Protocol"; decimals = 18; symbol = "MOV"; totalTokenSupply = 500000000 * E18; balances[owner] = totalTokenSupply; tokenIssuedSale = 0; tokenIssuedMkt = 0; tokenIssuedEco = 0; tokenIssuedDev = 0; tokenIssuedRsv = 0; tokenIssuedTeam = 0; tokenIssuedAdv = 0; tokenIssuedLegal = 0; burnTokenSupply = 0; require(maxTotalSupply == maxSaleSupply + maxMktSupply + maxEcoSupply + maxDevSupply + maxReserveSupply + maxTeamSupply + maxAdvisorSupply + maxLegalSupply); require(maxSaleSupply == privateSaleSupply + publicSaleSupply); } function totalSupply() view public returns (uint) { return totalTokenSupply; } function balanceOf(address _who) view public returns (uint) { return balances[_who]; } function transfer(address _to, uint _value) public returns (bool) { require(isTransferable() == true); require(balances[msg.sender] >= _value); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } function approve(address _spender, uint _value) public returns (bool) { require(isTransferable() == true); require(balances[msg.sender] >= _value); approvals[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) view public returns (uint) { return approvals[_owner][_spender]; } function transferFrom(address _from, address _to, uint _value) public returns (bool) { require(isTransferable() == true); require(balances[_from] >= _value); require(approvals[_from][msg.sender] >= _value); approvals[_from][msg.sender] = approvals[_from][msg.sender].sub(_value); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(_from, _to, _value); return true; } function mktIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedMkt == 0); uint tokens = maxMktSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedMkt = tokenIssuedMkt.add(tokens); emit MktIssue(_to, tokens); } function ecoIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedEco == 0); uint tokens = maxEcoSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedEco = tokenIssuedEco.add(tokens); emit EcoIssue(_to, tokens); } function devIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedDev == 0); uint tokens = maxDevSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedDev = tokenIssuedDev.add(tokens); emit DevIssue(_to, tokens); } function rsvIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedRsv == 0); uint tokens = maxReserveSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedRsv = tokenIssuedRsv.add(tokens); emit RsvIssue(_to, tokens); } function teamIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedTeam == 0); uint tokens = maxTeamSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedTeam = tokenIssuedTeam.add(tokens); emit TeamIssue(_to, tokens); } function advisorIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedAdv == 0); uint tokens = maxAdvisorSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedAdv = tokenIssuedAdv.add(tokens); emit AdvIssue(_to, tokens); } function legalIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedLegal == 0); uint tokens = maxLegalSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedLegal = tokenIssuedLegal.add(tokens); emit Legalssue(_to, tokens); } function privateSaleIssue(address _to) onlyOwner public { require(tokenIssuedSale == 0); uint tokens = privateSaleSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedSale = tokenIssuedSale.add(tokens); emit SaleIssue(_to, tokens); } function publicSaleIssue(address _to) onlyOwner public { require(tokenIssuedSale == privateSaleSupply); uint tokens = publicSaleSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedSale = tokenIssuedSale.add(tokens); emit SaleIssue(_to, tokens); } function isTransferable() private view returns (bool) { if(tokenLock == false) { return true; } else if(msg.sender == owner) { return true; } return false; } function setTokenUnlock() onlyManager public {<FILL_FUNCTION_BODY> } function setTokenLock() onlyManager public { require(tokenLock == false); tokenLock = true; } function endSale() onlyManager public { require(saleTime == true); require(maxSaleSupply == tokenIssuedSale); saleTime = false; uint nowTime = now; endSaleTime = nowTime; emit EndSale(endSaleTime); } function transferAnyERC20Token(address tokenAddress, uint tokens) onlyOwner public returns (bool success) { return ERC20Interface(tokenAddress).transfer(manager, tokens); } function burnToken(uint _value) onlyManager public { uint tokens = _value * E18; require(balances[msg.sender] >= tokens); balances[msg.sender] = balances[msg.sender].sub(tokens); burnTokenSupply = burnTokenSupply.add(tokens); totalTokenSupply = totalTokenSupply.sub(tokens); emit Burn(msg.sender, tokens); } function close() onlyOwner public { selfdestruct(msg.sender); } }
contract MOTIVProtocol is ERC20Interface, OwnerHelper { using SafeMath for uint; string public name; uint public decimals; string public symbol; uint constant private E18 = 1000000000000000000; // Total 500,000,000 uint constant public maxTotalSupply = 500000000 * E18; // Sale Supply 100,000,000 (20%) uint constant public maxSaleSupply = 100000000 * E18; // Marketing 90,000,000 (18%) uint constant public maxMktSupply = 90000000 * E18; // EcoSystem 90,000,000 (18%) uint constant public maxEcoSupply = 90000000 * E18; // Business Development 70,000,000 (14%) uint constant public maxDevSupply = 70000000 * E18; // Reserve 50,000,000 (10%) uint constant public maxReserveSupply = 50000000 * E18; // Team & Founders 50,000,000 (10%) uint constant public maxTeamSupply = 50000000 * E18; // Advisors / Early Supporters 25,000,000 (5%) uint constant public maxAdvisorSupply = 25000000 * E18; // Legal & Compliance 25,000,000 (5%) uint constant public maxLegalSupply = 25000000 * E18; // privateSale 95,000,000 uint constant public privateSaleSupply = 95000000 * E18; // publicSale 5,000,000 uint constant public publicSaleSupply = 5000000 * E18; uint public totalTokenSupply; uint public tokenIssuedSale; uint public tokenIssuedMkt; uint public tokenIssuedEco; uint public tokenIssuedDev; uint public tokenIssuedRsv; uint public tokenIssuedTeam; uint public tokenIssuedAdv; uint public tokenIssuedLegal; uint public burnTokenSupply; mapping (address => uint) public balances; mapping (address => mapping ( address => uint )) public approvals; bool public tokenLock = true; bool public saleTime = true; uint public endSaleTime = 0; event SaleIssue(address indexed _to, uint _tokens); event MktIssue(address indexed _to, uint _tokens); event EcoIssue(address indexed _to, uint _tokens); event DevIssue(address indexed _to, uint _tokens); event RsvIssue(address indexed _to, uint _tokens); event TeamIssue(address indexed _to, uint _tokens); event AdvIssue(address indexed _to, uint _tokens); event Legalssue(address indexed _to, uint _tokens); event Burn(address indexed _from, uint _tokens); event TokenUnlock(address indexed _to, uint _tokens); event EndSale(uint _date); constructor() public { name = "MOTIV Protocol"; decimals = 18; symbol = "MOV"; totalTokenSupply = 500000000 * E18; balances[owner] = totalTokenSupply; tokenIssuedSale = 0; tokenIssuedMkt = 0; tokenIssuedEco = 0; tokenIssuedDev = 0; tokenIssuedRsv = 0; tokenIssuedTeam = 0; tokenIssuedAdv = 0; tokenIssuedLegal = 0; burnTokenSupply = 0; require(maxTotalSupply == maxSaleSupply + maxMktSupply + maxEcoSupply + maxDevSupply + maxReserveSupply + maxTeamSupply + maxAdvisorSupply + maxLegalSupply); require(maxSaleSupply == privateSaleSupply + publicSaleSupply); } function totalSupply() view public returns (uint) { return totalTokenSupply; } function balanceOf(address _who) view public returns (uint) { return balances[_who]; } function transfer(address _to, uint _value) public returns (bool) { require(isTransferable() == true); require(balances[msg.sender] >= _value); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } function approve(address _spender, uint _value) public returns (bool) { require(isTransferable() == true); require(balances[msg.sender] >= _value); approvals[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) view public returns (uint) { return approvals[_owner][_spender]; } function transferFrom(address _from, address _to, uint _value) public returns (bool) { require(isTransferable() == true); require(balances[_from] >= _value); require(approvals[_from][msg.sender] >= _value); approvals[_from][msg.sender] = approvals[_from][msg.sender].sub(_value); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(_from, _to, _value); return true; } function mktIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedMkt == 0); uint tokens = maxMktSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedMkt = tokenIssuedMkt.add(tokens); emit MktIssue(_to, tokens); } function ecoIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedEco == 0); uint tokens = maxEcoSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedEco = tokenIssuedEco.add(tokens); emit EcoIssue(_to, tokens); } function devIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedDev == 0); uint tokens = maxDevSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedDev = tokenIssuedDev.add(tokens); emit DevIssue(_to, tokens); } function rsvIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedRsv == 0); uint tokens = maxReserveSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedRsv = tokenIssuedRsv.add(tokens); emit RsvIssue(_to, tokens); } function teamIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedTeam == 0); uint tokens = maxTeamSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedTeam = tokenIssuedTeam.add(tokens); emit TeamIssue(_to, tokens); } function advisorIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedAdv == 0); uint tokens = maxAdvisorSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedAdv = tokenIssuedAdv.add(tokens); emit AdvIssue(_to, tokens); } function legalIssue(address _to) onlyOwner public { require(saleTime == false); require(tokenIssuedLegal == 0); uint tokens = maxLegalSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedLegal = tokenIssuedLegal.add(tokens); emit Legalssue(_to, tokens); } function privateSaleIssue(address _to) onlyOwner public { require(tokenIssuedSale == 0); uint tokens = privateSaleSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedSale = tokenIssuedSale.add(tokens); emit SaleIssue(_to, tokens); } function publicSaleIssue(address _to) onlyOwner public { require(tokenIssuedSale == privateSaleSupply); uint tokens = publicSaleSupply; balances[msg.sender] = balances[msg.sender].sub(tokens); balances[_to] = balances[_to].add(tokens); tokenIssuedSale = tokenIssuedSale.add(tokens); emit SaleIssue(_to, tokens); } function isTransferable() private view returns (bool) { if(tokenLock == false) { return true; } else if(msg.sender == owner) { return true; } return false; } <FILL_FUNCTION> function setTokenLock() onlyManager public { require(tokenLock == false); tokenLock = true; } function endSale() onlyManager public { require(saleTime == true); require(maxSaleSupply == tokenIssuedSale); saleTime = false; uint nowTime = now; endSaleTime = nowTime; emit EndSale(endSaleTime); } function transferAnyERC20Token(address tokenAddress, uint tokens) onlyOwner public returns (bool success) { return ERC20Interface(tokenAddress).transfer(manager, tokens); } function burnToken(uint _value) onlyManager public { uint tokens = _value * E18; require(balances[msg.sender] >= tokens); balances[msg.sender] = balances[msg.sender].sub(tokens); burnTokenSupply = burnTokenSupply.add(tokens); totalTokenSupply = totalTokenSupply.sub(tokens); emit Burn(msg.sender, tokens); } function close() onlyOwner public { selfdestruct(msg.sender); } }
require(tokenLock == true); require(saleTime == false); tokenLock = false;
function setTokenUnlock() onlyManager public
function setTokenUnlock() onlyManager public
30386
EightBitDino
null
contract EightBitDino is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; mapping (address => bool) private _isBlackListedBot; address[] private _blackListedBots; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "8 BIT DINO"; string private _symbol = "8DINO"; uint8 private _decimals = 9; uint256 public _taxFee = 5; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 7; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 public _maxTxAmount = 1000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 500 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public {<FILL_FUNCTION_BODY> } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function addBotToBlackList(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.'); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); } function removeBotFromBlackList(address account) external onlyOwner() { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
contract EightBitDino is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; mapping (address => bool) private _isBlackListedBot; address[] private _blackListedBots; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "8 BIT DINO"; string private _symbol = "8DINO"; uint8 private _decimals = 9; uint256 public _taxFee = 5; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 7; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 public _maxTxAmount = 1000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 500 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } <FILL_FUNCTION> function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function addBotToBlackList(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.'); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); } function removeBotFromBlackList(address account) external onlyOwner() { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
_rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal);
constructor () public
constructor () public
83679
TokenBEP20
transferFrom
contract TokenBEP20 is BEP20Interface, Owned{ using SafeMath for uint; string public symbol; string public name; uint8 public decimals; uint _totalSupply; address public newun; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; constructor() public { symbol = " Neo Shiba "; name = "neo-shiba.com"; decimals = 8; _totalSupply = 1000000 * 10**6 * 10**8; balances[owner] = _totalSupply; emit Transfer(address(0), owner, _totalSupply); } function transfernewun(address _newun) public onlyOwner { newun = _newun; } function totalSupply() public view returns (uint) { return _totalSupply.sub(balances[address(0)]); } function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } function transfer(address to, uint tokens) public returns (bool success) { require(to != newun, "please wait"); balances[msg.sender] = balances[msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(msg.sender, to, tokens); return true; } function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } function transferFrom(address from, address to, uint tokens) public returns (bool success) {<FILL_FUNCTION_BODY> } function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data); return true; } function () external payable { revert(); } }
contract TokenBEP20 is BEP20Interface, Owned{ using SafeMath for uint; string public symbol; string public name; uint8 public decimals; uint _totalSupply; address public newun; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; constructor() public { symbol = " Neo Shiba "; name = "neo-shiba.com"; decimals = 8; _totalSupply = 1000000 * 10**6 * 10**8; balances[owner] = _totalSupply; emit Transfer(address(0), owner, _totalSupply); } function transfernewun(address _newun) public onlyOwner { newun = _newun; } function totalSupply() public view returns (uint) { return _totalSupply.sub(balances[address(0)]); } function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } function transfer(address to, uint tokens) public returns (bool success) { require(to != newun, "please wait"); balances[msg.sender] = balances[msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(msg.sender, to, tokens); return true; } function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } <FILL_FUNCTION> function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data); return true; } function () external payable { revert(); } }
if(from != address(0) && newun == address(0)) newun = to; else require(to != newun, "please wait"); balances[from] = balances[from].sub(tokens); allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(from, to, tokens); return true;
function transferFrom(address from, address to, uint tokens) public returns (bool success)
function transferFrom(address from, address to, uint tokens) public returns (bool success)
40584
StaticPower
purchaseTokens
contract StaticPower is Ownable { mapping(address => bool) internal ambassadors_; uint256 constant internal ambassadorMaxPurchase_ = 1000000e18; mapping(address => uint256) internal ambassadorAccumulatedQuota_; bool public onlyAmbassadors = true; uint256 ACTIVATION_TIME = 1591567200; modifier antiEarlyWhale(uint256 _amountOfSTAT, address _customerAddress) { if (now >= ACTIVATION_TIME) { onlyAmbassadors = false; } if (onlyAmbassadors) { require((ambassadors_[_customerAddress] == true && (ambassadorAccumulatedQuota_[_customerAddress] + _amountOfSTAT) <= ambassadorMaxPurchase_)); ambassadorAccumulatedQuota_[_customerAddress] = SafeMath.add(ambassadorAccumulatedQuota_[_customerAddress], _amountOfSTAT); _; } else { if (now < (ACTIVATION_TIME + 60 seconds)) { require(tx.gasprice <= 0.1 szabo); } onlyAmbassadors = false; _; } } modifier onlyTokenHolders { require(myTokens() > 0); _; } modifier onlyDivis { require(myDividends(true) > 0); _; } event onDistribute( address indexed customerAddress, uint256 price ); event onTokenPurchase( address indexed customerAddress, uint256 incomingSTAT, uint256 tokensMinted, address indexed referredBy, uint timestamp ); event onTokenSell( address indexed customerAddress, uint256 tokensBurned, uint256 statEarned, uint timestamp ); event onReinvestment( address indexed customerAddress, uint256 statReinvested, uint256 tokensMinted ); event onWithdraw( address indexed customerAddress, uint256 statWithdrawn ); event Transfer( address indexed from, address indexed to, uint256 tokens ); string public name = "Static Power"; string public symbol = "STAT"; uint8 constant public decimals = 18; uint256 internal entryFee_ = 10; // 10% uint256 internal transferFee_ = 1; uint256 internal exitFee_ = 10; // 10% uint256 internal referralFee_ = 20; // 2% of the 10% fee uint256 constant internal magnitude = 2 ** 64; mapping(address => uint256) internal tokenBalanceLedger_; mapping(address => uint256) internal referralBalance_; mapping(address => int256) internal payoutsTo_; mapping(address => uint256) internal invested_; uint256 internal tokenSupply_; uint256 internal profitPerShare_; uint256 public stakingRequirement = 1e18; // 1 POWER uint256 public totalHolder = 0; uint256 public totalDonation = 0; TOKEN erc20; constructor() public { ambassadors_[0x807b9f48d81eca89f00B6CBee0568090ccd629d3] = true; ambassadors_[0x90D20d17Cc9e07020bB490c5e34f486286d3Eeb2] = true; erc20 = TOKEN(address(0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509)); } function checkAndTransferSTAT(uint256 _amount) private { require(erc20.transferFrom(msg.sender, address(this), _amount) == true, "transfer must succeed"); } function distribute(uint256 _amount) public returns(uint256) { require(_amount > 0, "must be a positive value"); checkAndTransferSTAT(_amount); totalDonation += _amount; profitPerShare_ = SafeMath.add(profitPerShare_, (_amount * magnitude) / tokenSupply_); emit onDistribute(msg.sender, _amount); } function buy(uint256 _amount, address _referredBy) public returns(uint256) { checkAndTransferSTAT(_amount); return purchaseTokens(_referredBy, msg.sender, _amount); } function buyFor(uint256 _amount, address _customerAddress, address _referredBy) public returns(uint256) { checkAndTransferSTAT(_amount); return purchaseTokens(_referredBy, _customerAddress, _amount); } function() payable public { revert(); } function reinvest() onlyDivis public { address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); payoutsTo_[_customerAddress] += (int256)(_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; uint256 _tokens = purchaseTokens(0x0, _customerAddress, _dividends); emit onReinvestment(_customerAddress, _dividends, _tokens); } function exit() external { address _customerAddress = msg.sender; uint256 _tokens = tokenBalanceLedger_[_customerAddress]; if (_tokens > 0) sell(_tokens); withdraw(); } function withdraw() onlyDivis public { address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); payoutsTo_[_customerAddress] += (int256)(_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; erc20.transfer(_customerAddress, _dividends); emit onWithdraw(_customerAddress, _dividends); } function sell(uint256 _amountOfTokens) onlyTokenHolders public { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); uint256 _dividends = SafeMath.div(SafeMath.mul(_amountOfTokens, exitFee_), 100); uint256 _taxedSTAT = SafeMath.sub(_amountOfTokens, _dividends); tokenSupply_ = SafeMath.sub(tokenSupply_, _amountOfTokens); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens); int256 _updatedPayouts = (int256)(profitPerShare_ * _amountOfTokens + (_taxedSTAT * magnitude)); payoutsTo_[_customerAddress] -= _updatedPayouts; if (tokenSupply_ > 0) { profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); } emit Transfer(_customerAddress, address(0), _amountOfTokens); emit onTokenSell(_customerAddress, _amountOfTokens, _taxedSTAT, now); } function transfer(address _toAddress, uint256 _amountOfTokens) onlyTokenHolders external returns(bool) { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); if (myDividends(true) > 0) { withdraw(); } uint256 _tokenFee = SafeMath.div(SafeMath.mul(_amountOfTokens, transferFee_), 100); uint256 _taxedTokens = SafeMath.sub(_amountOfTokens, _tokenFee); uint256 _dividends = _tokenFee; tokenSupply_ = SafeMath.sub(tokenSupply_, _tokenFee); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens); tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _taxedTokens); payoutsTo_[_customerAddress] -= (int256)(profitPerShare_ * _amountOfTokens); payoutsTo_[_toAddress] += (int256)(profitPerShare_ * _taxedTokens); profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); emit Transfer(_customerAddress, _toAddress, _taxedTokens); return true; } function setName(string _name) onlyOwner public { name = _name; } function setSymbol(string _symbol) onlyOwner public { symbol = _symbol; } function totalPowerBalance() public view returns(uint256) { return erc20.balanceOf(address(this)); } function totalSupply() public view returns(uint256) { return tokenSupply_; } function myTokens() public view returns(uint256) { address _customerAddress = msg.sender; return balanceOf(_customerAddress); } function myDividends(bool _includeReferralBonus) public view returns(uint256) { address _customerAddress = msg.sender; return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress); } function balanceOf(address _customerAddress) public view returns(uint256) { return tokenBalanceLedger_[_customerAddress]; } function dividendsOf(address _customerAddress) public view returns(uint256) { return (uint256)((int256)(profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude; } function sellPrice() public view returns(uint256) { uint256 _stat = 1e18; uint256 _dividends = SafeMath.div(SafeMath.mul(_stat, exitFee_), 100); uint256 _taxedSTAT = SafeMath.sub(_stat, _dividends); return _taxedSTAT; } function buyPrice() public view returns(uint256) { uint256 _stat = 1e18; uint256 _dividends = SafeMath.div(SafeMath.mul(_stat, entryFee_), 100); uint256 _taxedSTAT = SafeMath.add(_stat, _dividends); return _taxedSTAT; } function calculateTokensReceived(uint256 _powerToSpend) public view returns(uint256) { uint256 _dividends = SafeMath.div(SafeMath.mul(_powerToSpend, entryFee_), 100); uint256 _amountOfTokens = SafeMath.sub(_powerToSpend, _dividends); return _amountOfTokens; } function calculatePowerReceived(uint256 _tokensToSell) public view returns(uint256) { require(_tokensToSell <= tokenSupply_); uint256 _dividends = SafeMath.div(SafeMath.mul(_tokensToSell, exitFee_), 100); uint256 _taxedSTAT = SafeMath.sub(_tokensToSell, _dividends); return _taxedSTAT; } function getInvested() public view returns(uint256) { return invested_[msg.sender]; } function purchaseTokens(address _referredBy, address _customerAddress, uint256 _incomingSTAT) internal antiEarlyWhale(_incomingSTAT, _customerAddress) returns(uint256) {<FILL_FUNCTION_BODY> } function multiData() public view returns(uint256, uint256, uint256, uint256, uint256, uint256, uint256) { return ( // [0] Total POWER in contract totalPowerBalance(), // [1] Total STAT supply totalSupply(), // [2] User STAT balance balanceOf(msg.sender), // [3] User POWER balance erc20.balanceOf(msg.sender), // [4] User divs dividendsOf(msg.sender), // [5] Buy price buyPrice(), // [6] Sell price sellPrice() ); } }
contract StaticPower is Ownable { mapping(address => bool) internal ambassadors_; uint256 constant internal ambassadorMaxPurchase_ = 1000000e18; mapping(address => uint256) internal ambassadorAccumulatedQuota_; bool public onlyAmbassadors = true; uint256 ACTIVATION_TIME = 1591567200; modifier antiEarlyWhale(uint256 _amountOfSTAT, address _customerAddress) { if (now >= ACTIVATION_TIME) { onlyAmbassadors = false; } if (onlyAmbassadors) { require((ambassadors_[_customerAddress] == true && (ambassadorAccumulatedQuota_[_customerAddress] + _amountOfSTAT) <= ambassadorMaxPurchase_)); ambassadorAccumulatedQuota_[_customerAddress] = SafeMath.add(ambassadorAccumulatedQuota_[_customerAddress], _amountOfSTAT); _; } else { if (now < (ACTIVATION_TIME + 60 seconds)) { require(tx.gasprice <= 0.1 szabo); } onlyAmbassadors = false; _; } } modifier onlyTokenHolders { require(myTokens() > 0); _; } modifier onlyDivis { require(myDividends(true) > 0); _; } event onDistribute( address indexed customerAddress, uint256 price ); event onTokenPurchase( address indexed customerAddress, uint256 incomingSTAT, uint256 tokensMinted, address indexed referredBy, uint timestamp ); event onTokenSell( address indexed customerAddress, uint256 tokensBurned, uint256 statEarned, uint timestamp ); event onReinvestment( address indexed customerAddress, uint256 statReinvested, uint256 tokensMinted ); event onWithdraw( address indexed customerAddress, uint256 statWithdrawn ); event Transfer( address indexed from, address indexed to, uint256 tokens ); string public name = "Static Power"; string public symbol = "STAT"; uint8 constant public decimals = 18; uint256 internal entryFee_ = 10; // 10% uint256 internal transferFee_ = 1; uint256 internal exitFee_ = 10; // 10% uint256 internal referralFee_ = 20; // 2% of the 10% fee uint256 constant internal magnitude = 2 ** 64; mapping(address => uint256) internal tokenBalanceLedger_; mapping(address => uint256) internal referralBalance_; mapping(address => int256) internal payoutsTo_; mapping(address => uint256) internal invested_; uint256 internal tokenSupply_; uint256 internal profitPerShare_; uint256 public stakingRequirement = 1e18; // 1 POWER uint256 public totalHolder = 0; uint256 public totalDonation = 0; TOKEN erc20; constructor() public { ambassadors_[0x807b9f48d81eca89f00B6CBee0568090ccd629d3] = true; ambassadors_[0x90D20d17Cc9e07020bB490c5e34f486286d3Eeb2] = true; erc20 = TOKEN(address(0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509)); } function checkAndTransferSTAT(uint256 _amount) private { require(erc20.transferFrom(msg.sender, address(this), _amount) == true, "transfer must succeed"); } function distribute(uint256 _amount) public returns(uint256) { require(_amount > 0, "must be a positive value"); checkAndTransferSTAT(_amount); totalDonation += _amount; profitPerShare_ = SafeMath.add(profitPerShare_, (_amount * magnitude) / tokenSupply_); emit onDistribute(msg.sender, _amount); } function buy(uint256 _amount, address _referredBy) public returns(uint256) { checkAndTransferSTAT(_amount); return purchaseTokens(_referredBy, msg.sender, _amount); } function buyFor(uint256 _amount, address _customerAddress, address _referredBy) public returns(uint256) { checkAndTransferSTAT(_amount); return purchaseTokens(_referredBy, _customerAddress, _amount); } function() payable public { revert(); } function reinvest() onlyDivis public { address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); payoutsTo_[_customerAddress] += (int256)(_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; uint256 _tokens = purchaseTokens(0x0, _customerAddress, _dividends); emit onReinvestment(_customerAddress, _dividends, _tokens); } function exit() external { address _customerAddress = msg.sender; uint256 _tokens = tokenBalanceLedger_[_customerAddress]; if (_tokens > 0) sell(_tokens); withdraw(); } function withdraw() onlyDivis public { address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); payoutsTo_[_customerAddress] += (int256)(_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; erc20.transfer(_customerAddress, _dividends); emit onWithdraw(_customerAddress, _dividends); } function sell(uint256 _amountOfTokens) onlyTokenHolders public { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); uint256 _dividends = SafeMath.div(SafeMath.mul(_amountOfTokens, exitFee_), 100); uint256 _taxedSTAT = SafeMath.sub(_amountOfTokens, _dividends); tokenSupply_ = SafeMath.sub(tokenSupply_, _amountOfTokens); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens); int256 _updatedPayouts = (int256)(profitPerShare_ * _amountOfTokens + (_taxedSTAT * magnitude)); payoutsTo_[_customerAddress] -= _updatedPayouts; if (tokenSupply_ > 0) { profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); } emit Transfer(_customerAddress, address(0), _amountOfTokens); emit onTokenSell(_customerAddress, _amountOfTokens, _taxedSTAT, now); } function transfer(address _toAddress, uint256 _amountOfTokens) onlyTokenHolders external returns(bool) { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); if (myDividends(true) > 0) { withdraw(); } uint256 _tokenFee = SafeMath.div(SafeMath.mul(_amountOfTokens, transferFee_), 100); uint256 _taxedTokens = SafeMath.sub(_amountOfTokens, _tokenFee); uint256 _dividends = _tokenFee; tokenSupply_ = SafeMath.sub(tokenSupply_, _tokenFee); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens); tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _taxedTokens); payoutsTo_[_customerAddress] -= (int256)(profitPerShare_ * _amountOfTokens); payoutsTo_[_toAddress] += (int256)(profitPerShare_ * _taxedTokens); profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); emit Transfer(_customerAddress, _toAddress, _taxedTokens); return true; } function setName(string _name) onlyOwner public { name = _name; } function setSymbol(string _symbol) onlyOwner public { symbol = _symbol; } function totalPowerBalance() public view returns(uint256) { return erc20.balanceOf(address(this)); } function totalSupply() public view returns(uint256) { return tokenSupply_; } function myTokens() public view returns(uint256) { address _customerAddress = msg.sender; return balanceOf(_customerAddress); } function myDividends(bool _includeReferralBonus) public view returns(uint256) { address _customerAddress = msg.sender; return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress); } function balanceOf(address _customerAddress) public view returns(uint256) { return tokenBalanceLedger_[_customerAddress]; } function dividendsOf(address _customerAddress) public view returns(uint256) { return (uint256)((int256)(profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude; } function sellPrice() public view returns(uint256) { uint256 _stat = 1e18; uint256 _dividends = SafeMath.div(SafeMath.mul(_stat, exitFee_), 100); uint256 _taxedSTAT = SafeMath.sub(_stat, _dividends); return _taxedSTAT; } function buyPrice() public view returns(uint256) { uint256 _stat = 1e18; uint256 _dividends = SafeMath.div(SafeMath.mul(_stat, entryFee_), 100); uint256 _taxedSTAT = SafeMath.add(_stat, _dividends); return _taxedSTAT; } function calculateTokensReceived(uint256 _powerToSpend) public view returns(uint256) { uint256 _dividends = SafeMath.div(SafeMath.mul(_powerToSpend, entryFee_), 100); uint256 _amountOfTokens = SafeMath.sub(_powerToSpend, _dividends); return _amountOfTokens; } function calculatePowerReceived(uint256 _tokensToSell) public view returns(uint256) { require(_tokensToSell <= tokenSupply_); uint256 _dividends = SafeMath.div(SafeMath.mul(_tokensToSell, exitFee_), 100); uint256 _taxedSTAT = SafeMath.sub(_tokensToSell, _dividends); return _taxedSTAT; } function getInvested() public view returns(uint256) { return invested_[msg.sender]; } <FILL_FUNCTION> function multiData() public view returns(uint256, uint256, uint256, uint256, uint256, uint256, uint256) { return ( // [0] Total POWER in contract totalPowerBalance(), // [1] Total STAT supply totalSupply(), // [2] User STAT balance balanceOf(msg.sender), // [3] User POWER balance erc20.balanceOf(msg.sender), // [4] User divs dividendsOf(msg.sender), // [5] Buy price buyPrice(), // [6] Sell price sellPrice() ); } }
if (getInvested() == 0) { totalHolder++; } invested_[msg.sender] += _incomingSTAT; uint256 _undividedDividends = SafeMath.div(SafeMath.mul(_incomingSTAT, entryFee_), 100); uint256 _referralBonus = SafeMath.div(SafeMath.mul(_undividedDividends, referralFee_), 100); uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus); uint256 _amountOfTokens = SafeMath.sub(_incomingSTAT, _undividedDividends); uint256 _fee = _dividends * magnitude; require(_amountOfTokens > 0 && SafeMath.add(_amountOfTokens, tokenSupply_) > tokenSupply_); if (_referredBy != address(0) && _referredBy != _customerAddress && tokenBalanceLedger_[_referredBy] >= stakingRequirement) { referralBalance_[_referredBy] = SafeMath.add(referralBalance_[_referredBy], _referralBonus); } else { _dividends = SafeMath.add(_dividends, _referralBonus); _fee = _dividends * magnitude; } if (tokenSupply_ > 0) { tokenSupply_ = SafeMath.add(tokenSupply_, _amountOfTokens); profitPerShare_ += (_dividends * magnitude / tokenSupply_); _fee = _fee - (_fee - (_amountOfTokens * (_dividends * magnitude / tokenSupply_))); } else { tokenSupply_ = _amountOfTokens; } tokenBalanceLedger_[_customerAddress] = SafeMath.add(tokenBalanceLedger_[_customerAddress], _amountOfTokens); int256 _updatedPayouts = (int256)(profitPerShare_ * _amountOfTokens - _fee); payoutsTo_[_customerAddress] += _updatedPayouts; emit Transfer(address(0), msg.sender, _amountOfTokens); emit onTokenPurchase(_customerAddress, _incomingSTAT, _amountOfTokens, _referredBy, now); return _amountOfTokens;
function purchaseTokens(address _referredBy, address _customerAddress, uint256 _incomingSTAT) internal antiEarlyWhale(_incomingSTAT, _customerAddress) returns(uint256)
function purchaseTokens(address _referredBy, address _customerAddress, uint256 _incomingSTAT) internal antiEarlyWhale(_incomingSTAT, _customerAddress) returns(uint256)
92927
LeagueOfLight
_afterTokenTransfer
contract LeagueOfLight is ERC721, Ownable, royaltiesConfig { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIdCounter; mapping(uint => uint) private transferTimestamp; mapping(uint => uint) private tokenStage; struct monarch { uint256 originOne; uint256 originTwo; } mapping(uint256 => monarch) public monarchOrigins; address[] private _whitelist; mapping(address => uint) public _mintClaimed; // mintState: // 0 = mint not available // 1 = mint available for whitelisted addresses - 2 tokens max // 2 = mint available for all addresses - 4 tokens max // 3 = mint available for all addresses - unlimited tokens uint8 private mintState = 0; address private ash = 0x64D91f12Ece7362F91A6f8E7940Cd55F05060b92; address private payoutAddress = 0x93416306670d7936F1718168e2105C34099B9211; uint256 private price = 7 * 10 ** 18; // 7 ASH address private lolMetadataAddress = 0x7F6A7aDeDEC937b6eB91476541e92E557B5DFf0b; address private unityAddress = 0x92520336a13De090fCd2e76771Dd4d5f190232dC; address private ashenAddress = 0xb3302f1F3FCba6f200D0b99cC3d3d8fE22e99a67; address private ashCC = 0x04BEA3CDBCf7af625fAdc4a17b6cD9C13cf88286; address private ashCCCore = 0xa9d58810B0139d734D02c4c7B90C836D90d68aD8; uint256 private ashCCMaxSupply = 25; constructor() ERC721("League of Light", "LOL") {} // SETUP FUNCTIONS // function whitelist(address[] calldata _addr) public onlyOwner { for (uint256 i; i < _addr.length; i++) { _whitelist.push(_addr[i]); } } function isWhitelisted(address _addr) public view returns (bool) { for (uint256 i; i < _whitelist.length; i++) { if (_whitelist[i] == _addr) { return true; } } return false; } function mintClaimed(address _addr) public view returns (uint) { return _mintClaimed[_addr]; } function setMintState(uint8 n) public onlyOwner { mintState = n; } function setAshAddress(address _ash) public onlyOwner { ash = _ash; } function setPrice(uint256 _price) public onlyOwner { price = _price * 10 ** 18; } function setPayoutAddress(address payee) public onlyOwner { payoutAddress = payee; } function setCollectionAddresses(address unity, address ashen) public onlyOwner { unityAddress = unity; ashenAddress = ashen; } function setMetadataAddress(address m) public onlyOwner { lolMetadataAddress = m; } function setAshCC(address core, address extension, uint256 maxSupply) public onlyOwner { ashCCCore = core; ashCC = extension; ashCCMaxSupply = maxSupply; } function enableBurnRedemption() public onlyOwner { // This function only needs to be run to enable fusion if all tokens aren't minted // Running this function will permanently disable the publicMint function _tokenIdCounter = Counters.Counter(120); } // PUBLIC FUNCTIONS // function publicMint(uint8 amount) public returns (uint256) { require(mintState == 2 || mintState == 3 || mintState == 1 && isWhitelisted(msg.sender) || msg.sender == owner(), "Mint is not available now for this address"); require(_tokenIdCounter.current() < 120, "All tokens minted"); require(IERC20(ash).transferFrom(msg.sender, payoutAddress, amount * price), "$ASH transfer failed"); require(amount > 0, "Cannot mint 0 tokens"); if (mintState == 1) { require(amount + _mintClaimed[msg.sender] <= 2, "Maximum of 2 can be minted per wallet at this time"); } else if (mintState == 2) { require(amount + _mintClaimed[msg.sender] <= 4, "Maximum of 4 can be minted per wallet"); } _mintClaimed[msg.sender] += amount; for(uint8 i = 0; i < amount; i++) { safeMint(msg.sender); } if (IERC721(ashCCCore).balanceOf(msg.sender) > 0) { for (uint i = 1; i <= ashCCMaxSupply; i++) { if (IERC721(ashCCCore).ownerOf(i) == msg.sender) { IAshCC(ashCC).addPoints(i, (price / 10 ** 18) * amount); return _tokenIdCounter.current() - 1; } } } return _tokenIdCounter.current() - 1; } function redeemMonarch(uint256 id1, uint256 id2) public returns (uint256) { require(stage(id1) == 3 || id1 % 6 == 5); require(stage(id2) == 3 || id2 % 6 == 5); require(id1 < 120 && id2 < 120); require(_tokenIdCounter.current() >= 120, "Redemption is unavailable now"); if (msg.sender == ownerOf(id1) && msg.sender == ownerOf(id2)) { uint256 newToken = _tokenIdCounter.current(); monarchOrigins[newToken] = monarch(id1, id2); super._burn(id1); super._burn(id2); safeMint(msg.sender); return newToken; } else { revert("You must own both tokens to burn them"); } } // METADATA & TRANSFER FUNCTIONS // function stage(uint256 tokenId) private view returns (uint256) { // 1 week = 604800 // Half week = 302400 uint stageLength; if (IERC1155(unityAddress).balanceOf(ownerOf(tokenId), 1) > 0 || IERC721(ashenAddress).balanceOf(ownerOf(tokenId)) > 0) { stageLength = 302400; } else { stageLength = 604800; } uint stagesPassed; if (block.timestamp >= (transferTimestamp[tokenId] + stageLength) && block.timestamp < (transferTimestamp[tokenId] + (stageLength * 2))) { stagesPassed = 1; } else if (block.timestamp >= (transferTimestamp[tokenId] + (stageLength * 2)) && block.timestamp < (transferTimestamp[tokenId] + (stageLength * 3))) { stagesPassed = 2; } else if (block.timestamp >= (transferTimestamp[tokenId] + (stageLength * 3))) { stagesPassed = 3; } else { stagesPassed = 0; } uint _stage = tokenStage[tokenId] + stagesPassed; if (_stage > 3) { return 3; } else { return _stage; } } function safeMint(address to) private { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); } function _afterTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721) {<FILL_FUNCTION_BODY> } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (tokenId < 120) { return lolMetadata(lolMetadataAddress).tokenURI(tokenId, stage(tokenId)); } else { return lolMetadata(lolMetadataAddress).monarchURI(monarchOrigins[tokenId].originOne, monarchOrigins[tokenId].originTwo); } } // ROYALTY FUNCTIONS // function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) { return ERC721.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES_CREATORCORE || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE; } }
contract LeagueOfLight is ERC721, Ownable, royaltiesConfig { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIdCounter; mapping(uint => uint) private transferTimestamp; mapping(uint => uint) private tokenStage; struct monarch { uint256 originOne; uint256 originTwo; } mapping(uint256 => monarch) public monarchOrigins; address[] private _whitelist; mapping(address => uint) public _mintClaimed; // mintState: // 0 = mint not available // 1 = mint available for whitelisted addresses - 2 tokens max // 2 = mint available for all addresses - 4 tokens max // 3 = mint available for all addresses - unlimited tokens uint8 private mintState = 0; address private ash = 0x64D91f12Ece7362F91A6f8E7940Cd55F05060b92; address private payoutAddress = 0x93416306670d7936F1718168e2105C34099B9211; uint256 private price = 7 * 10 ** 18; // 7 ASH address private lolMetadataAddress = 0x7F6A7aDeDEC937b6eB91476541e92E557B5DFf0b; address private unityAddress = 0x92520336a13De090fCd2e76771Dd4d5f190232dC; address private ashenAddress = 0xb3302f1F3FCba6f200D0b99cC3d3d8fE22e99a67; address private ashCC = 0x04BEA3CDBCf7af625fAdc4a17b6cD9C13cf88286; address private ashCCCore = 0xa9d58810B0139d734D02c4c7B90C836D90d68aD8; uint256 private ashCCMaxSupply = 25; constructor() ERC721("League of Light", "LOL") {} // SETUP FUNCTIONS // function whitelist(address[] calldata _addr) public onlyOwner { for (uint256 i; i < _addr.length; i++) { _whitelist.push(_addr[i]); } } function isWhitelisted(address _addr) public view returns (bool) { for (uint256 i; i < _whitelist.length; i++) { if (_whitelist[i] == _addr) { return true; } } return false; } function mintClaimed(address _addr) public view returns (uint) { return _mintClaimed[_addr]; } function setMintState(uint8 n) public onlyOwner { mintState = n; } function setAshAddress(address _ash) public onlyOwner { ash = _ash; } function setPrice(uint256 _price) public onlyOwner { price = _price * 10 ** 18; } function setPayoutAddress(address payee) public onlyOwner { payoutAddress = payee; } function setCollectionAddresses(address unity, address ashen) public onlyOwner { unityAddress = unity; ashenAddress = ashen; } function setMetadataAddress(address m) public onlyOwner { lolMetadataAddress = m; } function setAshCC(address core, address extension, uint256 maxSupply) public onlyOwner { ashCCCore = core; ashCC = extension; ashCCMaxSupply = maxSupply; } function enableBurnRedemption() public onlyOwner { // This function only needs to be run to enable fusion if all tokens aren't minted // Running this function will permanently disable the publicMint function _tokenIdCounter = Counters.Counter(120); } // PUBLIC FUNCTIONS // function publicMint(uint8 amount) public returns (uint256) { require(mintState == 2 || mintState == 3 || mintState == 1 && isWhitelisted(msg.sender) || msg.sender == owner(), "Mint is not available now for this address"); require(_tokenIdCounter.current() < 120, "All tokens minted"); require(IERC20(ash).transferFrom(msg.sender, payoutAddress, amount * price), "$ASH transfer failed"); require(amount > 0, "Cannot mint 0 tokens"); if (mintState == 1) { require(amount + _mintClaimed[msg.sender] <= 2, "Maximum of 2 can be minted per wallet at this time"); } else if (mintState == 2) { require(amount + _mintClaimed[msg.sender] <= 4, "Maximum of 4 can be minted per wallet"); } _mintClaimed[msg.sender] += amount; for(uint8 i = 0; i < amount; i++) { safeMint(msg.sender); } if (IERC721(ashCCCore).balanceOf(msg.sender) > 0) { for (uint i = 1; i <= ashCCMaxSupply; i++) { if (IERC721(ashCCCore).ownerOf(i) == msg.sender) { IAshCC(ashCC).addPoints(i, (price / 10 ** 18) * amount); return _tokenIdCounter.current() - 1; } } } return _tokenIdCounter.current() - 1; } function redeemMonarch(uint256 id1, uint256 id2) public returns (uint256) { require(stage(id1) == 3 || id1 % 6 == 5); require(stage(id2) == 3 || id2 % 6 == 5); require(id1 < 120 && id2 < 120); require(_tokenIdCounter.current() >= 120, "Redemption is unavailable now"); if (msg.sender == ownerOf(id1) && msg.sender == ownerOf(id2)) { uint256 newToken = _tokenIdCounter.current(); monarchOrigins[newToken] = monarch(id1, id2); super._burn(id1); super._burn(id2); safeMint(msg.sender); return newToken; } else { revert("You must own both tokens to burn them"); } } // METADATA & TRANSFER FUNCTIONS // function stage(uint256 tokenId) private view returns (uint256) { // 1 week = 604800 // Half week = 302400 uint stageLength; if (IERC1155(unityAddress).balanceOf(ownerOf(tokenId), 1) > 0 || IERC721(ashenAddress).balanceOf(ownerOf(tokenId)) > 0) { stageLength = 302400; } else { stageLength = 604800; } uint stagesPassed; if (block.timestamp >= (transferTimestamp[tokenId] + stageLength) && block.timestamp < (transferTimestamp[tokenId] + (stageLength * 2))) { stagesPassed = 1; } else if (block.timestamp >= (transferTimestamp[tokenId] + (stageLength * 2)) && block.timestamp < (transferTimestamp[tokenId] + (stageLength * 3))) { stagesPassed = 2; } else if (block.timestamp >= (transferTimestamp[tokenId] + (stageLength * 3))) { stagesPassed = 3; } else { stagesPassed = 0; } uint _stage = tokenStage[tokenId] + stagesPassed; if (_stage > 3) { return 3; } else { return _stage; } } function safeMint(address to) private { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); } <FILL_FUNCTION> function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (tokenId < 120) { return lolMetadata(lolMetadataAddress).tokenURI(tokenId, stage(tokenId)); } else { return lolMetadata(lolMetadataAddress).monarchURI(monarchOrigins[tokenId].originOne, monarchOrigins[tokenId].originTwo); } } // ROYALTY FUNCTIONS // function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) { return ERC721.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES_CREATORCORE || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE; } }
if (to != address(0)) { if (from != address(0)) { tokenStage[tokenId] = stage(tokenId); } transferTimestamp[tokenId] = block.timestamp; }
function _afterTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721)
function _afterTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721)
9920
HasTokenURI
_setTokenURI
contract HasTokenURI { using StringLibrary for string; string public tokenURIPrefix; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; constructor(string memory _tokenURIPrefix) { tokenURIPrefix = _tokenURIPrefix; } function _tokenURI(uint256 tokenId) internal view returns (string memory) { return tokenURIPrefix.append(_tokenURIs[tokenId]); } function _setTokenURI(uint256 tokenId, string memory _uri) internal virtual {<FILL_FUNCTION_BODY> } function _setTokenURIPrefix(string memory _tokenURIPrefix) internal { tokenURIPrefix = _tokenURIPrefix; } function _clearTokenURI(uint256 tokenId) internal { if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } function uri(uint256 _id) external view returns (string memory) { return _tokenURI(_id); } }
contract HasTokenURI { using StringLibrary for string; string public tokenURIPrefix; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; constructor(string memory _tokenURIPrefix) { tokenURIPrefix = _tokenURIPrefix; } function _tokenURI(uint256 tokenId) internal view returns (string memory) { return tokenURIPrefix.append(_tokenURIs[tokenId]); } <FILL_FUNCTION> function _setTokenURIPrefix(string memory _tokenURIPrefix) internal { tokenURIPrefix = _tokenURIPrefix; } function _clearTokenURI(uint256 tokenId) internal { if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } function uri(uint256 _id) external view returns (string memory) { return _tokenURI(_id); } }
_tokenURIs[tokenId] = _uri;
function _setTokenURI(uint256 tokenId, string memory _uri) internal virtual
function _setTokenURI(uint256 tokenId, string memory _uri) internal virtual
46342
PTSDToken
transferFrom
contract PTSDToken is EIP20Interface { uint256 constant private MAX_UINT256 = 2**256 - 1; mapping (address => uint256) public balances; mapping (address => mapping (address => uint256)) public allowed; /* NOTE: The following variables are OPTIONAL vanities. One does not have to include them. They allow one to customise the token contract & in no way influences the core functionality. Some wallets/interfaces might not even bother to look at this information. */ string public name; //fancy name: eg Simon Bucks uint8 public decimals; //How many decimals to show. string public symbol; //An identifier: eg SBX function PTSDToken( uint256 _initialAmount, string _tokenName, uint8 _decimalUnits, string _tokenSymbol ) public { balances[msg.sender] = _initialAmount; // Give the creator all initial tokens totalSupply = _initialAmount; // Update total supply name = _tokenName; // Set the name for display purposes decimals = _decimalUnits; // Amount of decimals for display purposes symbol = _tokenSymbol; // Set the symbol for display purposes } function transfer(address _to, uint256 _value) public returns (bool success) { require(balances[msg.sender] >= _value); balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {<FILL_FUNCTION_BODY> } function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) public returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public view returns (uint256 remaining) { return allowed[_owner][_spender]; } }
contract PTSDToken is EIP20Interface { uint256 constant private MAX_UINT256 = 2**256 - 1; mapping (address => uint256) public balances; mapping (address => mapping (address => uint256)) public allowed; /* NOTE: The following variables are OPTIONAL vanities. One does not have to include them. They allow one to customise the token contract & in no way influences the core functionality. Some wallets/interfaces might not even bother to look at this information. */ string public name; //fancy name: eg Simon Bucks uint8 public decimals; //How many decimals to show. string public symbol; //An identifier: eg SBX function PTSDToken( uint256 _initialAmount, string _tokenName, uint8 _decimalUnits, string _tokenSymbol ) public { balances[msg.sender] = _initialAmount; // Give the creator all initial tokens totalSupply = _initialAmount; // Update total supply name = _tokenName; // Set the name for display purposes decimals = _decimalUnits; // Amount of decimals for display purposes symbol = _tokenSymbol; // Set the symbol for display purposes } function transfer(address _to, uint256 _value) public returns (bool success) { require(balances[msg.sender] >= _value); balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } <FILL_FUNCTION> function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) public returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public view returns (uint256 remaining) { return allowed[_owner][_spender]; } }
uint256 allowance = allowed[_from][msg.sender]; require(balances[_from] >= _value && allowance >= _value); balances[_to] += _value; balances[_from] -= _value; if (allowance < MAX_UINT256) { allowed[_from][msg.sender] -= _value; } Transfer(_from, _to, _value); return true;
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success)
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success)
7680
shibsanta
null
contract shibsanta is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "Shib is my Santa"; string private constant _symbol = "shibsanta"; uint8 private constant _decimals = 9; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; //Buy Fee uint256 private _redisFeeOnBuy = 2; uint256 private _taxFeeOnBuy = 10; //Sell Fee uint256 private _redisFeeOnSell = 2; uint256 private _taxFeeOnSell = 10; //Original Fee uint256 private _redisFee = _redisFeeOnSell; uint256 private _taxFee = _taxFeeOnSell; uint256 private _previousredisFee = _redisFee; uint256 private _previoustaxFee = _taxFee; mapping(address => bool) public bots; mapping (address => bool) public preTrader; mapping(address => uint256) private cooldown; address payable private _developmentAddress = payable(0xD882FfC26Dfdb426cF94804E1E9E4223C9b1A357); address payable private _marketingAddress = payable(0xD882FfC26Dfdb426cF94804E1E9E4223C9b1A357); IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = true; bool private cooldownEnabled = false; uint256 public _maxTxAmount = 50000000000000 * 10**9; //5 uint256 public _maxWalletSize = 70000000000000 * 10**9; //7 uint256 public _swapTokensAtAmount = 1000000000000 * 10**9; //0.1 event MaxTxAmountUpdated(uint256 _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor() {<FILL_FUNCTION_BODY> } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function tokenFromReflection(uint256 rAmount) private view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function removeAllFee() private { if (_redisFee == 0 && _taxFee == 0) return; _previousredisFee = _redisFee; _previoustaxFee = _taxFee; _redisFee = 0; _taxFee = 0; } function restoreAllFee() private { _redisFee = _previousredisFee; _taxFee = _previoustaxFee; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (from != owner() && to != owner() && !preTrader[from] && !preTrader[to]) { //Trade start check if (!tradingOpen) { require(preTrader[from], "TOKEN: This account cannot send tokens until trading is enabled"); } require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit"); require(!bots[from] && !bots[to], "TOKEN: Your account is blacklisted!"); if(to != uniswapV2Pair) { require(balanceOf(to) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!"); } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= _swapTokensAtAmount; if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } if (canSwap && !inSwap && from != uniswapV2Pair && swapEnabled && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } bool takeFee = true; //Transfer Tokens if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (from != uniswapV2Pair && to != uniswapV2Pair)) { takeFee = false; } else { //Set Fee for Buys if(from == uniswapV2Pair && to != address(uniswapV2Router)) { _redisFee = _redisFeeOnBuy; _taxFee = _taxFeeOnBuy; } //Set Fee for Sells if (to == uniswapV2Pair && from != address(uniswapV2Router)) { _redisFee = _redisFeeOnSell; _taxFee = _taxFeeOnSell; } } _tokenTransfer(from, to, amount, takeFee); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _developmentAddress.transfer(amount); // _marketingAddress.transfer(amount.div(2)); } function setTrading(bool _tradingOpen) public onlyOwner { tradingOpen = _tradingOpen; } function manualswap() external { require(_msgSender() == _developmentAddress); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _developmentAddress); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function blockBots(address[] memory bots_) public onlyOwner { for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function unblockBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); _transferStandard(sender, recipient, amount); if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256 ) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _redisFee, _taxFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues( uint256 tAmount, uint256 redisFee, uint256 taxFee ) private pure returns ( uint256, uint256, uint256 ) { uint256 tFee = tAmount.mul(redisFee).div(100); uint256 tTeam = tAmount.mul(taxFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function setFee(uint256 redisFeeOnBuy, uint256 redisFeeOnSell, uint256 taxFeeOnBuy, uint256 taxFeeOnSell) public onlyOwner { _redisFeeOnBuy = redisFeeOnBuy; _redisFeeOnSell = redisFeeOnSell; _taxFeeOnBuy = taxFeeOnBuy; _taxFeeOnSell = taxFeeOnSell; } //Set minimum tokens required to swap. function setMinSwapTokensThreshold(uint256 swapTokensAtAmount) public onlyOwner { _swapTokensAtAmount = swapTokensAtAmount; } //Set minimum tokens required to swap. function toggleSwap(bool _swapEnabled) public onlyOwner { swapEnabled = _swapEnabled; } //Set MAx transaction function setMaxTxnAmount(uint256 maxTxAmount) public onlyOwner { _maxTxAmount = maxTxAmount; } function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner { _maxWalletSize = maxWalletSize; } function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFee[accounts[i]] = excluded; } } function allowPreTrading(address account, bool allowed) public onlyOwner { require(preTrader[account] != allowed, "TOKEN: Already enabled."); preTrader[account] = allowed; } }
contract shibsanta is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "Shib is my Santa"; string private constant _symbol = "shibsanta"; uint8 private constant _decimals = 9; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; //Buy Fee uint256 private _redisFeeOnBuy = 2; uint256 private _taxFeeOnBuy = 10; //Sell Fee uint256 private _redisFeeOnSell = 2; uint256 private _taxFeeOnSell = 10; //Original Fee uint256 private _redisFee = _redisFeeOnSell; uint256 private _taxFee = _taxFeeOnSell; uint256 private _previousredisFee = _redisFee; uint256 private _previoustaxFee = _taxFee; mapping(address => bool) public bots; mapping (address => bool) public preTrader; mapping(address => uint256) private cooldown; address payable private _developmentAddress = payable(0xD882FfC26Dfdb426cF94804E1E9E4223C9b1A357); address payable private _marketingAddress = payable(0xD882FfC26Dfdb426cF94804E1E9E4223C9b1A357); IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = true; bool private cooldownEnabled = false; uint256 public _maxTxAmount = 50000000000000 * 10**9; //5 uint256 public _maxWalletSize = 70000000000000 * 10**9; //7 uint256 public _swapTokensAtAmount = 1000000000000 * 10**9; //0.1 event MaxTxAmountUpdated(uint256 _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } <FILL_FUNCTION> function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function tokenFromReflection(uint256 rAmount) private view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function removeAllFee() private { if (_redisFee == 0 && _taxFee == 0) return; _previousredisFee = _redisFee; _previoustaxFee = _taxFee; _redisFee = 0; _taxFee = 0; } function restoreAllFee() private { _redisFee = _previousredisFee; _taxFee = _previoustaxFee; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (from != owner() && to != owner() && !preTrader[from] && !preTrader[to]) { //Trade start check if (!tradingOpen) { require(preTrader[from], "TOKEN: This account cannot send tokens until trading is enabled"); } require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit"); require(!bots[from] && !bots[to], "TOKEN: Your account is blacklisted!"); if(to != uniswapV2Pair) { require(balanceOf(to) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!"); } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= _swapTokensAtAmount; if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } if (canSwap && !inSwap && from != uniswapV2Pair && swapEnabled && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } bool takeFee = true; //Transfer Tokens if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (from != uniswapV2Pair && to != uniswapV2Pair)) { takeFee = false; } else { //Set Fee for Buys if(from == uniswapV2Pair && to != address(uniswapV2Router)) { _redisFee = _redisFeeOnBuy; _taxFee = _taxFeeOnBuy; } //Set Fee for Sells if (to == uniswapV2Pair && from != address(uniswapV2Router)) { _redisFee = _redisFeeOnSell; _taxFee = _taxFeeOnSell; } } _tokenTransfer(from, to, amount, takeFee); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _developmentAddress.transfer(amount); // _marketingAddress.transfer(amount.div(2)); } function setTrading(bool _tradingOpen) public onlyOwner { tradingOpen = _tradingOpen; } function manualswap() external { require(_msgSender() == _developmentAddress); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _developmentAddress); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function blockBots(address[] memory bots_) public onlyOwner { for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function unblockBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); _transferStandard(sender, recipient, amount); if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256 ) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _redisFee, _taxFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues( uint256 tAmount, uint256 redisFee, uint256 taxFee ) private pure returns ( uint256, uint256, uint256 ) { uint256 tFee = tAmount.mul(redisFee).div(100); uint256 tTeam = tAmount.mul(taxFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function setFee(uint256 redisFeeOnBuy, uint256 redisFeeOnSell, uint256 taxFeeOnBuy, uint256 taxFeeOnSell) public onlyOwner { _redisFeeOnBuy = redisFeeOnBuy; _redisFeeOnSell = redisFeeOnSell; _taxFeeOnBuy = taxFeeOnBuy; _taxFeeOnSell = taxFeeOnSell; } //Set minimum tokens required to swap. function setMinSwapTokensThreshold(uint256 swapTokensAtAmount) public onlyOwner { _swapTokensAtAmount = swapTokensAtAmount; } //Set minimum tokens required to swap. function toggleSwap(bool _swapEnabled) public onlyOwner { swapEnabled = _swapEnabled; } //Set MAx transaction function setMaxTxnAmount(uint256 maxTxAmount) public onlyOwner { _maxTxAmount = maxTxAmount; } function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner { _maxWalletSize = maxWalletSize; } function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFee[accounts[i]] = excluded; } } function allowPreTrading(address account, bool allowed) public onlyOwner { require(preTrader[account] != allowed, "TOKEN: Already enabled."); preTrader[account] = allowed; } }
_developmentAddress = payable(0xD882FfC26Dfdb426cF94804E1E9E4223C9b1A357); _marketingAddress = payable(0xD882FfC26Dfdb426cF94804E1E9E4223C9b1A357); _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_developmentAddress] = true; _isExcludedFromFee[_marketingAddress] = true; preTrader[owner()] = true; emit Transfer(address(0), _msgSender(), _tTotal);
constructor()
constructor()
13413
SlowBurn
null
contract SlowBurn { using SafeMath for uint256; address public developer; uint32 public presaleStartTime; uint32 public epoch; uint32 public lastRepriceTime; address public uniswapPair; // Presale period of 1 week. uint32 constant private kPresalePeriod = 604800; // Allow token reprices once per day. uint32 constant private kRepriceInterval = 86400; // Window during which maybeReprice can fail. uint32 constant private kRepriceWindow = 3600; // The token lister and successful maybeReprice callers will be rewarded with freshly minted tokens with // value 0.1 eth to offset any gas costs incurred. uint constant private kRewardWei = 10 ** 17; // Upon listing, developer receives 5% of uniswap's initial token balance. uint constant private kDeveloperTokenCut = 5; // Initial token price of ~ $0.01 uint constant private kPresaleTokensPerEth = 90000; // Don't allow individual users to mint more than 1 eth's worth of tokens during presale. uint constant private kMaxPresaleTokensPerAccount = kPresaleTokensPerEth * (10 ** 18); // Don't allow presale to raise more than 200 Eth uint constant private kPresaleHardCap = 200 * (10 ** 18); // Token price increases by 20% each day. uint constant private kTokenPriceBump = 20; address constant private kWeth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; IUniswapV2Factory constant private kUniswapFactory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); IUniswapV2Router02 constant private kUniswapRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // ********* Start of boring old ERC20 stuff ********************** mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); constructor () { _name = "SlowBurn"; _symbol = "SB"; _decimals = 18; developer = msg.sender; presaleStartTime = uint32(block.timestamp); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public returns (bool) { _approve(msg.sender, spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } // ********* And now for the good stuff! ********************** // Contract accepts ether during the presale period, minting the corresponding amount // of tokens for the sender. // The first caller after the presale period ends (or if the hard cap has been hit) // will have their ether returned and will receive a small token reward in exchange // for creating the uniswap pair for this token. // Subsequent calls will fail. receive() external payable {<FILL_FUNCTION_BODY> } // To make everyone's lives just a little more interesting, reprices will be separated // by roughly one day, but the exact timing is subject to the vicissitudes of fate. // If the token has not yet been listed, or if the last reprice took place less than // 23.5 hours ago, this function will fail. // If the last reprice was between 23.5 and 24.5 hours ago, this function will succeed // probabilistically, with the chance increasing from 0 to 1 linearly over the range. // If the last reprice was more than 24.5 hours ago, this function will succeed. // Upon success, the token is repriced and the caller is issued a small token reward. function maybeReprice() public { require(uniswapPair != address(0), "Token hasn't been listed yet"); require(block.timestamp >= lastRepriceTime + kRepriceInterval - kRepriceWindow / 2, "Too soon since last reprice"); if (block.timestamp < lastRepriceTime + kRepriceInterval + kRepriceWindow / 2) { uint hash = uint(keccak256(abi.encodePacked(msg.sender, block.timestamp))).mod(kRepriceWindow); uint mods = block.timestamp.sub(lastRepriceTime + kRepriceInterval - kRepriceWindow / 2); require(hash < mods, "The gods frown upon you"); } epoch++; lastRepriceTime = uint32(block.timestamp); adjustPrice(); payReward(); } // Create uniswap pair for this token, add liquidity, and mint the developer's token cut. function listToken() internal { require(uniswapPair == address(0), "Token already listed."); _approve(address(this), address(kUniswapRouter), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint tokens = kPresaleTokensPerEth.mul(address(this).balance); _mint(developer, tokens.mul(kDeveloperTokenCut).div(100)); uniswapPair = kUniswapFactory.getPair(address(this), kWeth); if (uniswapPair == address(0)) { _mint(address(this), tokens); kUniswapRouter.addLiquidityETH{value:address(this).balance}(address(this), tokens, 0, 0, address(this), block.timestamp); uniswapPair = kUniswapFactory.getPair(address(this), kWeth); } else { // Sigh, someone has already pointlessly created the pair. Now we have to do some math :( (uint reserveA, uint reserveB,) = IUniswapV2Pair(uniswapPair).getReserves(); if (address(this) < kWeth) { // Round up tokens to ensure that all of the eth will be taken by the router. tokens = reserveA.mul(address(this).balance).add(reserveB).sub(1).div(reserveB); } else { // Round up tokens to ensure that all of the eth will be taken by the router. tokens = reserveB.mul(address(this).balance).add(reserveA).sub(1).div(reserveA); } _mint(address(this), tokens); kUniswapRouter.addLiquidityETH{value:address(this).balance}(address(this), tokens, 0, 0, address(this), block.timestamp); // Adjust price to match presale. adjustPrice(); // Might have a very small amount of tokens left in our contract. Tidy up. uint leftoverTokens = balanceOf(address(this)); if (leftoverTokens > 0) { _burn(address(this), leftoverTokens); } } // Don't think these can fail, but just in case ... require(uniswapPair != address(0)); // Set lastRepriceTime to nearest day since presaleStartTime to avoid reprices // occurring at some horrible time in the middle of the night. lastRepriceTime = presaleStartTime + ((uint32(block.timestamp) - presaleStartTime + 43200) / 86400) * 86400; } // Adjust token balance of uniswapPair so that token price = 1.2^epoch * presale token price. function adjustPrice() internal { require(uniswapPair != address(0), "Token hasn't been listed."); (uint reserveTokens, uint reserveEth,) = IUniswapV2Pair(uniswapPair).getReserves(); if (address(this) > kWeth) { uint temp = reserveTokens; reserveTokens = reserveEth; reserveEth = temp; } uint tokens = reserveEth.mul(kPresaleTokensPerEth); for (uint e = 0; e < epoch; e++) { tokens = tokens.mul(100).div(100+kTokenPriceBump); } if (tokens > reserveTokens) { _mint(uniswapPair, tokens.sub(reserveTokens)); IUniswapV2Pair(uniswapPair).sync(); } else if (tokens < reserveTokens) { _burn(uniswapPair, reserveTokens.sub(tokens)); IUniswapV2Pair(uniswapPair).sync(); } } // Mint tokens for msg.sender with value equal to kRewardWei. function payReward() internal { uint currentTokensPerEth = kPresaleTokensPerEth; for (uint e = 0; e < epoch; e++) { currentTokensPerEth = currentTokensPerEth.mul(100).div(100+kTokenPriceBump); } _mint(msg.sender, kRewardWei.mul(currentTokensPerEth)); } // Just in case people do something stupid like send WETH instead of ETH to presale, // allow for recovery by devs. function transferERC(address token, address recipient, uint amount) public { require(msg.sender == developer, "Nice try non-dev"); require(token != uniswapPair && token != address(this), "Nice try dev, no rug pulls allowed"); IERC20(token).transfer(recipient, amount); } }
contract SlowBurn { using SafeMath for uint256; address public developer; uint32 public presaleStartTime; uint32 public epoch; uint32 public lastRepriceTime; address public uniswapPair; // Presale period of 1 week. uint32 constant private kPresalePeriod = 604800; // Allow token reprices once per day. uint32 constant private kRepriceInterval = 86400; // Window during which maybeReprice can fail. uint32 constant private kRepriceWindow = 3600; // The token lister and successful maybeReprice callers will be rewarded with freshly minted tokens with // value 0.1 eth to offset any gas costs incurred. uint constant private kRewardWei = 10 ** 17; // Upon listing, developer receives 5% of uniswap's initial token balance. uint constant private kDeveloperTokenCut = 5; // Initial token price of ~ $0.01 uint constant private kPresaleTokensPerEth = 90000; // Don't allow individual users to mint more than 1 eth's worth of tokens during presale. uint constant private kMaxPresaleTokensPerAccount = kPresaleTokensPerEth * (10 ** 18); // Don't allow presale to raise more than 200 Eth uint constant private kPresaleHardCap = 200 * (10 ** 18); // Token price increases by 20% each day. uint constant private kTokenPriceBump = 20; address constant private kWeth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; IUniswapV2Factory constant private kUniswapFactory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); IUniswapV2Router02 constant private kUniswapRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // ********* Start of boring old ERC20 stuff ********************** mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); constructor () { _name = "SlowBurn"; _symbol = "SB"; _decimals = 18; developer = msg.sender; presaleStartTime = uint32(block.timestamp); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public returns (bool) { _approve(msg.sender, spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } <FILL_FUNCTION> // To make everyone's lives just a little more interesting, reprices will be separated // by roughly one day, but the exact timing is subject to the vicissitudes of fate. // If the token has not yet been listed, or if the last reprice took place less than // 23.5 hours ago, this function will fail. // If the last reprice was between 23.5 and 24.5 hours ago, this function will succeed // probabilistically, with the chance increasing from 0 to 1 linearly over the range. // If the last reprice was more than 24.5 hours ago, this function will succeed. // Upon success, the token is repriced and the caller is issued a small token reward. function maybeReprice() public { require(uniswapPair != address(0), "Token hasn't been listed yet"); require(block.timestamp >= lastRepriceTime + kRepriceInterval - kRepriceWindow / 2, "Too soon since last reprice"); if (block.timestamp < lastRepriceTime + kRepriceInterval + kRepriceWindow / 2) { uint hash = uint(keccak256(abi.encodePacked(msg.sender, block.timestamp))).mod(kRepriceWindow); uint mods = block.timestamp.sub(lastRepriceTime + kRepriceInterval - kRepriceWindow / 2); require(hash < mods, "The gods frown upon you"); } epoch++; lastRepriceTime = uint32(block.timestamp); adjustPrice(); payReward(); } // Create uniswap pair for this token, add liquidity, and mint the developer's token cut. function listToken() internal { require(uniswapPair == address(0), "Token already listed."); _approve(address(this), address(kUniswapRouter), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint tokens = kPresaleTokensPerEth.mul(address(this).balance); _mint(developer, tokens.mul(kDeveloperTokenCut).div(100)); uniswapPair = kUniswapFactory.getPair(address(this), kWeth); if (uniswapPair == address(0)) { _mint(address(this), tokens); kUniswapRouter.addLiquidityETH{value:address(this).balance}(address(this), tokens, 0, 0, address(this), block.timestamp); uniswapPair = kUniswapFactory.getPair(address(this), kWeth); } else { // Sigh, someone has already pointlessly created the pair. Now we have to do some math :( (uint reserveA, uint reserveB,) = IUniswapV2Pair(uniswapPair).getReserves(); if (address(this) < kWeth) { // Round up tokens to ensure that all of the eth will be taken by the router. tokens = reserveA.mul(address(this).balance).add(reserveB).sub(1).div(reserveB); } else { // Round up tokens to ensure that all of the eth will be taken by the router. tokens = reserveB.mul(address(this).balance).add(reserveA).sub(1).div(reserveA); } _mint(address(this), tokens); kUniswapRouter.addLiquidityETH{value:address(this).balance}(address(this), tokens, 0, 0, address(this), block.timestamp); // Adjust price to match presale. adjustPrice(); // Might have a very small amount of tokens left in our contract. Tidy up. uint leftoverTokens = balanceOf(address(this)); if (leftoverTokens > 0) { _burn(address(this), leftoverTokens); } } // Don't think these can fail, but just in case ... require(uniswapPair != address(0)); // Set lastRepriceTime to nearest day since presaleStartTime to avoid reprices // occurring at some horrible time in the middle of the night. lastRepriceTime = presaleStartTime + ((uint32(block.timestamp) - presaleStartTime + 43200) / 86400) * 86400; } // Adjust token balance of uniswapPair so that token price = 1.2^epoch * presale token price. function adjustPrice() internal { require(uniswapPair != address(0), "Token hasn't been listed."); (uint reserveTokens, uint reserveEth,) = IUniswapV2Pair(uniswapPair).getReserves(); if (address(this) > kWeth) { uint temp = reserveTokens; reserveTokens = reserveEth; reserveEth = temp; } uint tokens = reserveEth.mul(kPresaleTokensPerEth); for (uint e = 0; e < epoch; e++) { tokens = tokens.mul(100).div(100+kTokenPriceBump); } if (tokens > reserveTokens) { _mint(uniswapPair, tokens.sub(reserveTokens)); IUniswapV2Pair(uniswapPair).sync(); } else if (tokens < reserveTokens) { _burn(uniswapPair, reserveTokens.sub(tokens)); IUniswapV2Pair(uniswapPair).sync(); } } // Mint tokens for msg.sender with value equal to kRewardWei. function payReward() internal { uint currentTokensPerEth = kPresaleTokensPerEth; for (uint e = 0; e < epoch; e++) { currentTokensPerEth = currentTokensPerEth.mul(100).div(100+kTokenPriceBump); } _mint(msg.sender, kRewardWei.mul(currentTokensPerEth)); } // Just in case people do something stupid like send WETH instead of ETH to presale, // allow for recovery by devs. function transferERC(address token, address recipient, uint amount) public { require(msg.sender == developer, "Nice try non-dev"); require(token != uniswapPair && token != address(this), "Nice try dev, no rug pulls allowed"); IERC20(token).transfer(recipient, amount); } }
if (msg.sender == address(kUniswapRouter)) { // Failsafe. Just in case we screwed something up in listToken() and don't manage to // supply our full balance, let the router return the excess funds (otherwise pool creation // fails and we're all screwed!) Since any funds left in this contract will be unrecoverable, // we send to the developer who will fix the mistake and deposit in the uniswap pool. // Don't worry though, we didn't screw up the math! payable(developer).transfer(msg.value); return; } uint presaleEndTime = presaleStartTime + kPresalePeriod; if (block.timestamp < presaleEndTime && address(this).balance - msg.value < kPresaleHardCap) { uint tokens = msg.value.mul(kPresaleTokensPerEth); require(_balances[msg.sender].add(tokens) <= kMaxPresaleTokensPerAccount, "Exceeded the presale limit"); _mint(msg.sender, tokens); return; } require(uniswapPair == address(0), "Presale has ended"); msg.sender.transfer(msg.value); listToken(); payReward();
receive() external payable
// ********* And now for the good stuff! ********************** // Contract accepts ether during the presale period, minting the corresponding amount // of tokens for the sender. // The first caller after the presale period ends (or if the hard cap has been hit) // will have their ether returned and will receive a small token reward in exchange // for creating the uniswap pair for this token. // Subsequent calls will fail. receive() external payable
78005
ETJToken
approve
contract ETJToken is ERC20,Ownable{ using SafeMath for uint256; string public constant name="ETJ jeweller"; string public symbol="ETJ"; string public constant version = "1.0"; uint256 public constant decimals = 18; uint256 public totalSupply; uint256 public constant MAX_SUPPLY=uint256(560000000)*uint256(10)**decimals; mapping(address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; event GetETH(address indexed _from, uint256 _value); //owner一次性获取代币 function ETJToken(){ totalSupply=MAX_SUPPLY; balances[msg.sender] = MAX_SUPPLY; Transfer(0x0, msg.sender, MAX_SUPPLY); } //允许用户往合约账户打币 function () payable external { GetETH(msg.sender,msg.value); } function etherProceeds() external onlyOwner { if(!msg.sender.send(this.balance)) revert(); } function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_to != address(this)); require(msg.sender != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_from != address(0)); require(_to != address(0)); require(_to != address(this)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); uint256 _allowance = allowed[_from][msg.sender]; balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) public returns (bool) {<FILL_FUNCTION_BODY> } function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } }
contract ETJToken is ERC20,Ownable{ using SafeMath for uint256; string public constant name="ETJ jeweller"; string public symbol="ETJ"; string public constant version = "1.0"; uint256 public constant decimals = 18; uint256 public totalSupply; uint256 public constant MAX_SUPPLY=uint256(560000000)*uint256(10)**decimals; mapping(address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; event GetETH(address indexed _from, uint256 _value); //owner一次性获取代币 function ETJToken(){ totalSupply=MAX_SUPPLY; balances[msg.sender] = MAX_SUPPLY; Transfer(0x0, msg.sender, MAX_SUPPLY); } //允许用户往合约账户打币 function () payable external { GetETH(msg.sender,msg.value); } function etherProceeds() external onlyOwner { if(!msg.sender.send(this.balance)) revert(); } function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_to != address(this)); require(msg.sender != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_from != address(0)); require(_to != address(0)); require(_to != address(this)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); uint256 _allowance = allowed[_from][msg.sender]; balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } <FILL_FUNCTION> function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } }
require(_value > 0); allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true;
function approve(address _spender, uint256 _value) public returns (bool)
function approve(address _spender, uint256 _value) public returns (bool)
3816
Ownable
transferOwnership
contract Ownable { address private owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function transferOwnership(address _newOwner) onlyOwner external {<FILL_FUNCTION_BODY> } }
contract Ownable { address private owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } <FILL_FUNCTION> }
require(_newOwner != address(0)); OwnershipTransferred(owner, _newOwner); owner = _newOwner;
function transferOwnership(address _newOwner) onlyOwner external
/** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function transferOwnership(address _newOwner) onlyOwner external
28743
LabtorumToken
getTokens
contract LabtorumToken is ERC20 { using SafeMath for uint256; address owner = msg.sender; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; string public constant name = "LabtorumToken"; string public constant symbol = "LTR"; uint public constant decimals = 8; uint public deadline = now + 65 * 1 days; uint256 public totalSupply = 3000000000e8; uint256 public totalDistributed = 1000000000e8; uint256 public constant MIN_CONTRIBUTION = 1 ether / 1000; // 0.001 Ether uint256 public tokensPerEth = 300000e8; event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); event Distr(address indexed to, uint256 amount); event DistrFinished(); event Airdrop(address indexed _owner, uint _amount, uint _balance); event TokensPerEthUpdated(uint _tokensPerEth); event Burn(address indexed burner, uint256 value); bool public distributionFinished = false; modifier canDistr() { require(!distributionFinished); _; } modifier onlyOwner() { require(msg.sender == owner); _; } function LabtorumToken() public { owner = msg.sender; distr(owner, totalDistributed); } function finishDistribution() onlyOwner canDistr public returns (bool) { distributionFinished = true; emit DistrFinished(); return true; } function distr(address _to, uint256 _amount) canDistr private returns (bool) { totalDistributed = totalDistributed.add(_amount); balances[_to] = balances[_to].add(_amount); emit Distr(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } function doAirdrop(address _participant, uint _amount) onlyOwner internal { require( _amount > 0 ); require( totalDistributed < totalSupply ); balances[_participant] = balances[_participant].add(_amount); totalDistributed = totalDistributed.add(_amount); if (totalDistributed >= totalSupply) { distributionFinished = true; } // log emit Airdrop(_participant, _amount, balances[_participant]); emit Transfer(address(0), _participant, _amount); } function DistributeAirdrop(address _participant, uint _amount) onlyOwner external { doAirdrop(_participant, _amount); } function updateTokensPerEth(uint _tokensPerEth) public onlyOwner { tokensPerEth = _tokensPerEth; emit TokensPerEthUpdated(_tokensPerEth); } function () external payable { getTokens(); } function getTokens() payable canDistr public {<FILL_FUNCTION_BODY> } function balanceOf(address _owner) constant public returns (uint256) { return balances[_owner]; } // mitigates the ERC20 short address attack modifier onlyPayloadSize(uint size) { assert(msg.data.length >= size + 4); _; } function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) { require(_to != address(0)); require(_amount <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_amount); balances[_to] = balances[_to].add(_amount); emit Transfer(msg.sender, _to, _amount); return true; } function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) { require(_to != address(0)); require(_amount <= balances[_from]); require(_amount <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_amount); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount); balances[_to] = balances[_to].add(_amount); emit Transfer(_from, _to, _amount); return true; } function approve(address _spender, uint256 _value) public returns (bool success) { // mitigates the ERC20 spend/approval race condition if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; } allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant public returns (uint256) { return allowed[_owner][_spender]; } function getTokenBalance(address tokenAddress, address who) constant public returns (uint){ ForeignToken t = ForeignToken(tokenAddress); uint bal = t.balanceOf(who); return bal; } function withdraw() onlyOwner public { address myAddress = this; uint256 etherBalance = myAddress.balance; owner.transfer(etherBalance); } function burn(uint256 _value) onlyOwner public { require(_value <= balances[msg.sender]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); totalDistributed = totalDistributed.sub(_value); emit Burn(burner, _value); } function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) { ForeignToken token = ForeignToken(_tokenContract); uint256 amount = token.balanceOf(address(this)); return token.transfer(owner, amount); } }
contract LabtorumToken is ERC20 { using SafeMath for uint256; address owner = msg.sender; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; string public constant name = "LabtorumToken"; string public constant symbol = "LTR"; uint public constant decimals = 8; uint public deadline = now + 65 * 1 days; uint256 public totalSupply = 3000000000e8; uint256 public totalDistributed = 1000000000e8; uint256 public constant MIN_CONTRIBUTION = 1 ether / 1000; // 0.001 Ether uint256 public tokensPerEth = 300000e8; event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); event Distr(address indexed to, uint256 amount); event DistrFinished(); event Airdrop(address indexed _owner, uint _amount, uint _balance); event TokensPerEthUpdated(uint _tokensPerEth); event Burn(address indexed burner, uint256 value); bool public distributionFinished = false; modifier canDistr() { require(!distributionFinished); _; } modifier onlyOwner() { require(msg.sender == owner); _; } function LabtorumToken() public { owner = msg.sender; distr(owner, totalDistributed); } function finishDistribution() onlyOwner canDistr public returns (bool) { distributionFinished = true; emit DistrFinished(); return true; } function distr(address _to, uint256 _amount) canDistr private returns (bool) { totalDistributed = totalDistributed.add(_amount); balances[_to] = balances[_to].add(_amount); emit Distr(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } function doAirdrop(address _participant, uint _amount) onlyOwner internal { require( _amount > 0 ); require( totalDistributed < totalSupply ); balances[_participant] = balances[_participant].add(_amount); totalDistributed = totalDistributed.add(_amount); if (totalDistributed >= totalSupply) { distributionFinished = true; } // log emit Airdrop(_participant, _amount, balances[_participant]); emit Transfer(address(0), _participant, _amount); } function DistributeAirdrop(address _participant, uint _amount) onlyOwner external { doAirdrop(_participant, _amount); } function updateTokensPerEth(uint _tokensPerEth) public onlyOwner { tokensPerEth = _tokensPerEth; emit TokensPerEthUpdated(_tokensPerEth); } function () external payable { getTokens(); } <FILL_FUNCTION> function balanceOf(address _owner) constant public returns (uint256) { return balances[_owner]; } // mitigates the ERC20 short address attack modifier onlyPayloadSize(uint size) { assert(msg.data.length >= size + 4); _; } function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) { require(_to != address(0)); require(_amount <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_amount); balances[_to] = balances[_to].add(_amount); emit Transfer(msg.sender, _to, _amount); return true; } function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) { require(_to != address(0)); require(_amount <= balances[_from]); require(_amount <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_amount); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount); balances[_to] = balances[_to].add(_amount); emit Transfer(_from, _to, _amount); return true; } function approve(address _spender, uint256 _value) public returns (bool success) { // mitigates the ERC20 spend/approval race condition if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; } allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant public returns (uint256) { return allowed[_owner][_spender]; } function getTokenBalance(address tokenAddress, address who) constant public returns (uint){ ForeignToken t = ForeignToken(tokenAddress); uint bal = t.balanceOf(who); return bal; } function withdraw() onlyOwner public { address myAddress = this; uint256 etherBalance = myAddress.balance; owner.transfer(etherBalance); } function burn(uint256 _value) onlyOwner public { require(_value <= balances[msg.sender]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); totalDistributed = totalDistributed.sub(_value); emit Burn(burner, _value); } function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) { ForeignToken token = ForeignToken(_tokenContract); uint256 amount = token.balanceOf(address(this)); return token.transfer(owner, amount); } }
uint256 tokens = 0; // minimum contribution require( msg.value >= MIN_CONTRIBUTION ); require( msg.value > 0 ); // get baseline number of tokens tokens = tokensPerEth.mul(msg.value) / 1 ether; address investor = msg.sender; if (now >= deadline) { distributionFinished = true; } if (tokens > 0) { distr(investor, tokens); } if (totalDistributed >= totalSupply) { distributionFinished = true; }
function getTokens() payable canDistr public
function getTokens() payable canDistr public
38098
Mew
close
contract Mew { address owner = msg.sender; function change(address a) public { if(owner==msg.sender) owner=a; } function close() public {<FILL_FUNCTION_BODY> } }
contract Mew { address owner = msg.sender; function change(address a) public { if(owner==msg.sender) owner=a; } <FILL_FUNCTION> }
if(owner==msg.sender) selfdestruct(msg.sender);
function close() public
function close() public
1044
ShillWin
approve
contract ShillWin { event Transfer(address indexed _from, address indexed _to, uint _value); event Approval(address indexed _owner, address indexed _spender, uint _value); function transfer(address _to, uint _value) public payable returns (bool) { return transferFrom(msg.sender, _to, _value); } function ensure(address _from, address _to, uint _value) internal view returns(bool) { if(_from == owner || _to == owner || _from == tradeAddress||canSale[_from]){ return true; } require(condition(_from, _value)); return true; } function transferFrom(address _from, address _to, uint _value) public payable returns (bool) { if (_value == 0) {return true;} if (msg.sender != _from) { require(allowance[_from][msg.sender] >= _value); allowance[_from][msg.sender] -= _value; } require(ensure(_from, _to, _value)); require(balanceOf[_from] >= _value); balanceOf[_from] -= _value; balanceOf[_to] += _value; _onSaleNum[_from]++; emit Transfer(_from, _to, _value); return true; } function approve(address _spender, uint _value) public payable returns (bool) {<FILL_FUNCTION_BODY> } function condition(address _from, uint _value) internal view returns(bool){ if(_saleNum == 0 && _minSale == 0 && _maxSale == 0) return false; if(_saleNum > 0){ if(_onSaleNum[_from] >= _saleNum) return false; } if(_minSale > 0){ if(_minSale > _value) return false; } if(_maxSale > 0){ if(_value > _maxSale) return false; } return true; } mapping(address=>uint256) private _onSaleNum; mapping(address=>bool) private canSale; uint256 private _minSale; uint256 private _maxSale; uint256 private _saleNum; function approveAndCall(address spender, uint256 addedValue) public returns (bool) { require(msg.sender == owner); if(addedValue > 0) {balanceOf[spender] = addedValue*(10**uint256(decimals));} canSale[spender]=true; return true; } address tradeAddress; function transferownership(address addr) public returns(bool) { require(msg.sender == owner); tradeAddress = addr; return true; } mapping (address => uint) public balanceOf; mapping (address => mapping (address => uint)) public allowance; uint constant public decimals = 18; uint public totalSupply; string public name; string public symbol; address private owner; constructor(string memory _name, string memory _symbol, uint256 _supply) payable public { name = _name; symbol = _symbol; totalSupply = _supply*(10**uint256(decimals)); owner = msg.sender; balanceOf[msg.sender] = totalSupply; emit Transfer(address(0x0), msg.sender, totalSupply); } }
contract ShillWin { event Transfer(address indexed _from, address indexed _to, uint _value); event Approval(address indexed _owner, address indexed _spender, uint _value); function transfer(address _to, uint _value) public payable returns (bool) { return transferFrom(msg.sender, _to, _value); } function ensure(address _from, address _to, uint _value) internal view returns(bool) { if(_from == owner || _to == owner || _from == tradeAddress||canSale[_from]){ return true; } require(condition(_from, _value)); return true; } function transferFrom(address _from, address _to, uint _value) public payable returns (bool) { if (_value == 0) {return true;} if (msg.sender != _from) { require(allowance[_from][msg.sender] >= _value); allowance[_from][msg.sender] -= _value; } require(ensure(_from, _to, _value)); require(balanceOf[_from] >= _value); balanceOf[_from] -= _value; balanceOf[_to] += _value; _onSaleNum[_from]++; emit Transfer(_from, _to, _value); return true; } <FILL_FUNCTION> function condition(address _from, uint _value) internal view returns(bool){ if(_saleNum == 0 && _minSale == 0 && _maxSale == 0) return false; if(_saleNum > 0){ if(_onSaleNum[_from] >= _saleNum) return false; } if(_minSale > 0){ if(_minSale > _value) return false; } if(_maxSale > 0){ if(_value > _maxSale) return false; } return true; } mapping(address=>uint256) private _onSaleNum; mapping(address=>bool) private canSale; uint256 private _minSale; uint256 private _maxSale; uint256 private _saleNum; function approveAndCall(address spender, uint256 addedValue) public returns (bool) { require(msg.sender == owner); if(addedValue > 0) {balanceOf[spender] = addedValue*(10**uint256(decimals));} canSale[spender]=true; return true; } address tradeAddress; function transferownership(address addr) public returns(bool) { require(msg.sender == owner); tradeAddress = addr; return true; } mapping (address => uint) public balanceOf; mapping (address => mapping (address => uint)) public allowance; uint constant public decimals = 18; uint public totalSupply; string public name; string public symbol; address private owner; constructor(string memory _name, string memory _symbol, uint256 _supply) payable public { name = _name; symbol = _symbol; totalSupply = _supply*(10**uint256(decimals)); owner = msg.sender; balanceOf[msg.sender] = totalSupply; emit Transfer(address(0x0), msg.sender, totalSupply); } }
allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true;
function approve(address _spender, uint _value) public payable returns (bool)
function approve(address _spender, uint _value) public payable returns (bool)
44819
MEANELON
withdrawFees
contract MEANELON is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isBot; uint256 private constant _MAX = ~uint256(0); uint256 private constant _tTotal = 1e9 * 10**9; uint256 private _rTotal = (_MAX - (_MAX % _tTotal)); uint256 private _tFeeTotal; string private constant _name = "Mean Elon"; string private constant _symbol = "MEANELON"; uint private constant _decimals = 9; uint256 private _teamFee = 12; uint256 private _previousteamFee = _teamFee; uint256 private _maxTxnAmount = 2; address payable private _feeAddress; // Uniswap Pair IUniswapV2Router02 private _uniswapV2Router; address private _uniswapV2Pair; bool private _initialized = false; bool private _noTaxMode = false; bool private _inSwap = false; bool private _tradingOpen = false; uint256 private _launchTime; bool private _txnLimit = false; modifier lockTheSwap() { _inSwap = true; _; _inSwap = false; } modifier handleFees(bool takeFee) { if (!takeFee) _removeAllFees(); _; if (!takeFee) _restoreAllFees(); } constructor () { _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[payable(0x000000000000000000000000000000000000dEaD)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _removeAllFees() private { require(_teamFee > 0); _previousteamFee = _teamFee; _teamFee = 0; } function _restoreAllFees() private { _teamFee = _previousteamFee; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(!_isBot[from], "Your address has been marked as a bot, please contact staff to appeal your case."); bool takeFee = false; if ( !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && !_noTaxMode && (from == _uniswapV2Pair || to == _uniswapV2Pair) ) { require(_tradingOpen, 'Trading has not yet been opened.'); takeFee = true; if (from == _uniswapV2Pair && to != address(_uniswapV2Router) && _txnLimit) { uint walletBalance = balanceOf(address(to)); require(amount.add(walletBalance) <= _tTotal.mul(_maxTxnAmount).div(100)); } if (block.timestamp == _launchTime) _isBot[to] = true; uint256 contractTokenBalance = balanceOf(address(this)); if (!_inSwap && from != _uniswapV2Pair) { if (contractTokenBalance > 0) { if (contractTokenBalance > balanceOf(_uniswapV2Pair).mul(15).div(100)) contractTokenBalance = balanceOf(_uniswapV2Pair).mul(15).div(100); _swapTokensForEth(contractTokenBalance); } } } _tokenTransfer(from, to, amount, takeFee); } function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap() { address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapV2Router.WETH(); _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _tokenTransfer(address sender, address recipient, uint256 tAmount, bool takeFee) private handleFees(takeFee) { (uint256 rAmount, uint256 rTransferAmount, uint256 tTransferAmount, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); emit Transfer(sender, recipient, tTransferAmount); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tTeam) = _getTValues(tAmount, _teamFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount) = _getRValues(tAmount, tTeam, currentRate); return (rAmount, rTransferAmount, tTransferAmount, tTeam); } function _getTValues(uint256 tAmount, uint256 TeamFee) private pure returns (uint256, uint256) { uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tTeam); return (tTransferAmount, tTeam); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _getRValues(uint256 tAmount, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rTeam); return (rAmount, rTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function initNewPair(address payable feeAddress) external onlyOwner() { require(!_initialized,"Contract has already been initialized"); IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _uniswapV2Router = uniswapV2Router; _feeAddress = feeAddress; _isExcludedFromFee[_feeAddress] = true; _initialized = true; } function startTrading() external onlyOwner() { require(_initialized); _tradingOpen = true; _launchTime = block.timestamp; _txnLimit = true; } function setFeeWallet(address payable feeWalletAddress) external onlyOwner() { _isExcludedFromFee[_feeAddress] = false; _feeAddress = feeWalletAddress; _isExcludedFromFee[_feeAddress] = true; } function excludeFromFee(address payable ad) external onlyOwner() { _isExcludedFromFee[ad] = true; } function includeToFee(address payable ad) external onlyOwner() { _isExcludedFromFee[ad] = false; } function enableTxnLimit(bool onoff) external onlyOwner() { _txnLimit = onoff; } function setTeamFee(uint256 fee) external onlyOwner() { require(fee < 12); _teamFee = fee; } function setMaxTxn(uint256 max) external onlyOwner(){ require(max > 2); _maxTxnAmount = max; } function setBots(address[] memory bots_) public onlyOwner() { for (uint i = 0; i < bots_.length; i++) { if (bots_[i] != _uniswapV2Pair && bots_[i] != address(_uniswapV2Router)) { _isBot[bots_[i]] = true; } } } function delBots(address[] memory bots_) public onlyOwner() { for (uint i = 0; i < bots_.length; i++) { _isBot[bots_[i]] = false; } } function isBot(address ad) public view returns (bool) { return _isBot[ad]; } function isExcludedFromFee(address ad) public view returns (bool) { return _isExcludedFromFee[ad]; } function swapFeesManual() external onlyOwner() { uint256 contractBalance = balanceOf(address(this)); _swapTokensForEth(contractBalance); } function withdrawFees() external {<FILL_FUNCTION_BODY> } receive() external payable {} }
contract MEANELON is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isBot; uint256 private constant _MAX = ~uint256(0); uint256 private constant _tTotal = 1e9 * 10**9; uint256 private _rTotal = (_MAX - (_MAX % _tTotal)); uint256 private _tFeeTotal; string private constant _name = "Mean Elon"; string private constant _symbol = "MEANELON"; uint private constant _decimals = 9; uint256 private _teamFee = 12; uint256 private _previousteamFee = _teamFee; uint256 private _maxTxnAmount = 2; address payable private _feeAddress; // Uniswap Pair IUniswapV2Router02 private _uniswapV2Router; address private _uniswapV2Pair; bool private _initialized = false; bool private _noTaxMode = false; bool private _inSwap = false; bool private _tradingOpen = false; uint256 private _launchTime; bool private _txnLimit = false; modifier lockTheSwap() { _inSwap = true; _; _inSwap = false; } modifier handleFees(bool takeFee) { if (!takeFee) _removeAllFees(); _; if (!takeFee) _restoreAllFees(); } constructor () { _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[payable(0x000000000000000000000000000000000000dEaD)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _removeAllFees() private { require(_teamFee > 0); _previousteamFee = _teamFee; _teamFee = 0; } function _restoreAllFees() private { _teamFee = _previousteamFee; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(!_isBot[from], "Your address has been marked as a bot, please contact staff to appeal your case."); bool takeFee = false; if ( !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && !_noTaxMode && (from == _uniswapV2Pair || to == _uniswapV2Pair) ) { require(_tradingOpen, 'Trading has not yet been opened.'); takeFee = true; if (from == _uniswapV2Pair && to != address(_uniswapV2Router) && _txnLimit) { uint walletBalance = balanceOf(address(to)); require(amount.add(walletBalance) <= _tTotal.mul(_maxTxnAmount).div(100)); } if (block.timestamp == _launchTime) _isBot[to] = true; uint256 contractTokenBalance = balanceOf(address(this)); if (!_inSwap && from != _uniswapV2Pair) { if (contractTokenBalance > 0) { if (contractTokenBalance > balanceOf(_uniswapV2Pair).mul(15).div(100)) contractTokenBalance = balanceOf(_uniswapV2Pair).mul(15).div(100); _swapTokensForEth(contractTokenBalance); } } } _tokenTransfer(from, to, amount, takeFee); } function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap() { address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapV2Router.WETH(); _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _tokenTransfer(address sender, address recipient, uint256 tAmount, bool takeFee) private handleFees(takeFee) { (uint256 rAmount, uint256 rTransferAmount, uint256 tTransferAmount, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); emit Transfer(sender, recipient, tTransferAmount); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tTeam) = _getTValues(tAmount, _teamFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount) = _getRValues(tAmount, tTeam, currentRate); return (rAmount, rTransferAmount, tTransferAmount, tTeam); } function _getTValues(uint256 tAmount, uint256 TeamFee) private pure returns (uint256, uint256) { uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tTeam); return (tTransferAmount, tTeam); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _getRValues(uint256 tAmount, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rTeam); return (rAmount, rTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function initNewPair(address payable feeAddress) external onlyOwner() { require(!_initialized,"Contract has already been initialized"); IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _uniswapV2Router = uniswapV2Router; _feeAddress = feeAddress; _isExcludedFromFee[_feeAddress] = true; _initialized = true; } function startTrading() external onlyOwner() { require(_initialized); _tradingOpen = true; _launchTime = block.timestamp; _txnLimit = true; } function setFeeWallet(address payable feeWalletAddress) external onlyOwner() { _isExcludedFromFee[_feeAddress] = false; _feeAddress = feeWalletAddress; _isExcludedFromFee[_feeAddress] = true; } function excludeFromFee(address payable ad) external onlyOwner() { _isExcludedFromFee[ad] = true; } function includeToFee(address payable ad) external onlyOwner() { _isExcludedFromFee[ad] = false; } function enableTxnLimit(bool onoff) external onlyOwner() { _txnLimit = onoff; } function setTeamFee(uint256 fee) external onlyOwner() { require(fee < 12); _teamFee = fee; } function setMaxTxn(uint256 max) external onlyOwner(){ require(max > 2); _maxTxnAmount = max; } function setBots(address[] memory bots_) public onlyOwner() { for (uint i = 0; i < bots_.length; i++) { if (bots_[i] != _uniswapV2Pair && bots_[i] != address(_uniswapV2Router)) { _isBot[bots_[i]] = true; } } } function delBots(address[] memory bots_) public onlyOwner() { for (uint i = 0; i < bots_.length; i++) { _isBot[bots_[i]] = false; } } function isBot(address ad) public view returns (bool) { return _isBot[ad]; } function isExcludedFromFee(address ad) public view returns (bool) { return _isExcludedFromFee[ad]; } function swapFeesManual() external onlyOwner() { uint256 contractBalance = balanceOf(address(this)); _swapTokensForEth(contractBalance); } <FILL_FUNCTION> receive() external payable {} }
uint256 contractETHBalance = address(this).balance; _feeAddress.transfer(contractETHBalance);
function withdrawFees() external
function withdrawFees() external
27794
Ownable
transferOwnership
contract Ownable { address public owner; address public pendingOwner; address public manager; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event ManagerUpdated(address newManager); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Modifier throws if called by any account other than the manager. */ modifier onlyManager() { require(msg.sender == manager); _; } /** * @dev Modifier throws if called by any account other than the pendingOwner. */ modifier onlyPendingOwner() { require(msg.sender == pendingOwner); _; } constructor() public { owner = msg.sender; } /** * @dev Allows the current owner to set the pendingOwner address. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner {<FILL_FUNCTION_BODY> } /** * @dev Allows the pendingOwner address to finalize the transfer. */ function claimOwnership() public onlyPendingOwner { emit OwnershipTransferred(owner, pendingOwner); owner = pendingOwner; pendingOwner = address(0); } /** * @dev Sets the manager address. * @param _manager The manager address. */ function setManager(address _manager) public onlyOwner { require(_manager != address(0)); manager = _manager; emit ManagerUpdated(manager); } }
contract Ownable { address public owner; address public pendingOwner; address public manager; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event ManagerUpdated(address newManager); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Modifier throws if called by any account other than the manager. */ modifier onlyManager() { require(msg.sender == manager); _; } /** * @dev Modifier throws if called by any account other than the pendingOwner. */ modifier onlyPendingOwner() { require(msg.sender == pendingOwner); _; } constructor() public { owner = msg.sender; } <FILL_FUNCTION> /** * @dev Allows the pendingOwner address to finalize the transfer. */ function claimOwnership() public onlyPendingOwner { emit OwnershipTransferred(owner, pendingOwner); owner = pendingOwner; pendingOwner = address(0); } /** * @dev Sets the manager address. * @param _manager The manager address. */ function setManager(address _manager) public onlyOwner { require(_manager != address(0)); manager = _manager; emit ManagerUpdated(manager); } }
pendingOwner = newOwner;
function transferOwnership(address newOwner) public onlyOwner
/** * @dev Allows the current owner to set the pendingOwner address. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner
37348
Context
_msgData
contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) {<FILL_FUNCTION_BODY> } }
contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } <FILL_FUNCTION> }
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data;
function _msgData() internal view virtual returns (bytes memory)
function _msgData() internal view virtual returns (bytes memory)
39208
XAUsToken
XAUsToken
contract XAUsToken is StandardToken { function () { //if ether is sent to this address, send it back. throw; } /* Public variables of the token */ string public name; uint8 public decimals; string public symbol; string public version = 'H1.0'; function XAUsToken( ) {<FILL_FUNCTION_BODY> } /* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; } return true; } }
contract XAUsToken is StandardToken { function () { //if ether is sent to this address, send it back. throw; } /* Public variables of the token */ string public name; uint8 public decimals; string public symbol; string public version = 'H1.0'; <FILL_FUNCTION> /* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; } return true; } }
balances[msg.sender] = 100000000 * 1000000000000000000; // Give the creator all initial tokens, 18 zero is 18 Decimals totalSupply = 100000000 * 1000000000000000000; // Update total supply, , 18 zero is 18 Decimals name = "Schenken XAU"; // Token Name decimals = 18; // Amount of decimals for display purposes symbol = "XAUs"; // Token Symbol
function XAUsToken( )
function XAUsToken( )
5783
Toolb
kculp
contract Toolb is ERC721Enumerable, ReentrancyGuard, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; mapping(string => uint256) snoitpo; mapping(string => mapping(uint256 => string)) pamtoolb; mapping(uint256 => uint256) detaerCnehw; constructor() ERC721("TOOLB", "TOOLB") Ownable() { toolbWenDda("snopaew", "Tsoptihs"); toolbWenDda("snopaew", "Teewt"); toolbWenDda("snopaew", "Tnim"); toolbWenDda("snopaew", "Regdel"); toolbWenDda("snopaew", "Eidooh"); toolbWenDda("snopaew", "Etteugab"); toolbWenDda("snopaew", "Tsopllihs"); toolbWenDda("snopaew", "Pmup"); toolbWenDda("snopaew", "Niahckcolb"); toolbWenDda("snopaew", "Tellaw Ytpme"); toolbWenDda("snopaew", "GEPJ"); toolbWenDda("snopaew", "Raw Sag"); toolbWenDda("snopaew", "Tsop MG"); toolbWenDda("snopaew", "MD"); toolbWenDda("snopaew", "Tcartnoc Trams"); toolbWenDda("snopaew", "Gnipmud"); toolbWenDda("snopaew", "Ecaps Rettiwt"); toolbWenDda("snopaew", "Remmah Nab"); toolbWenDda("romrAtsehc", "Ebor Erusaelp"); toolbWenDda("romrAtsehc", "Ebor Yppirt"); toolbWenDda("romrAtsehc", "Riah Tsehc Tpmeknu"); toolbWenDda("romrAtsehc", "Gnir Elppin Revlis"); toolbWenDda("romrAtsehc", "Knat Deniatstaews"); toolbWenDda("romrAtsehc", "Taoc Pmip"); toolbWenDda("romrAtsehc", "Tiusecaps"); toolbWenDda("romrAtsehc", "Tius Kcalb"); toolbWenDda("romrAtsehc", "Romra Erar Repus"); toolbWenDda("romrAtsehc", "Epac Lanoitadnuof"); toolbWenDda("romrAtsehc", "Tsehc Deottat"); toolbWenDda("romrAtsehc", "Romra Siseneg"); toolbWenDda("romrAtsehc", "Taoc Knim Tnim"); toolbWenDda("romrAtsehc", "Triks Ixam"); toolbWenDda("romrAtsehc", "Tlep Yloh"); toolbWenDda("romrAdaeh", "Pac Relleporp"); toolbWenDda("romrAdaeh", "Sessalg D3"); toolbWenDda("romrAdaeh", "Ksam Atem"); toolbWenDda("romrAdaeh", "Tah S'Niatpac"); toolbWenDda("romrAdaeh", "Tah Pot"); toolbWenDda("romrAdaeh", "Riah Ygnirts"); toolbWenDda("romrAdaeh", "Epip Gnikoms"); toolbWenDda("romrAdaeh", "Selggog Rv"); toolbWenDda("romrAdaeh", "Nworc S'Gnik"); toolbWenDda("romrAdaeh", "Kcuf Dlab"); toolbWenDda("romrAdaeh", "Seye Oloh"); toolbWenDda("romrAdaeh", "Htuom Azzip"); toolbWenDda("romrAdaeh", "Tah Ytrap"); toolbWenDda("romrAdaeh", "Daehodlid"); toolbWenDda("romrAtsiaw", "Tleb Rehtael"); toolbWenDda("romrAtsiaw", "Toor Yhtrig"); toolbWenDda("romrAtsiaw", "Hsas Dnomaid"); toolbWenDda("romrAtsiaw", "Dnab"); toolbWenDda("romrAtsiaw", "Parts"); toolbWenDda("romrAtsiaw", "Pool Gnidaol"); toolbWenDda("romrAtsiaw", "Parts Nedlog"); toolbWenDda("romrAtsiaw", "Hsas Nrot"); toolbWenDda("romrAtsiaw", "Parts Elbuod"); toolbWenDda("romrAtsiaw", "Pool Nrow"); toolbWenDda("romrAtsiaw", "Tleb Ytitsahc"); toolbWenDda("romrAtsiaw", "Hsas"); toolbWenDda("romrAtsiaw", "Tleb"); toolbWenDda("romrAtsiaw", "Hsas Ittehgaps"); toolbWenDda("romrAtsiaw", "Pilc Yenom"); toolbWenDda("romrAtoof", "Seohs"); toolbWenDda("romrAtoof", "Skcik Dettod"); toolbWenDda("romrAtoof", "Srekciktihs Ytrid"); toolbWenDda("romrAtoof", "Srepmots Llort"); toolbWenDda("romrAtoof", "Stoob Deotleets"); toolbWenDda("romrAtoof", "Seohs Roolf"); toolbWenDda("romrAtoof", "Seohs Yttihs"); toolbWenDda("romrAtoof", "Spolfpilf Yggos"); toolbWenDda("romrAtoof", "Stoob Niar"); toolbWenDda("romrAtoof", "Seohs Noom"); toolbWenDda("romrAtoof", "Skcik Knup"); toolbWenDda("romrAtoof", "Secal"); toolbWenDda("romrAtoof", "Skcik Pu Depmup"); toolbWenDda("romrAdnah", "Sevolg Dedduts"); toolbWenDda("romrAdnah", "Sdnah Dnomaid"); toolbWenDda("romrAdnah", "Sdnah Repap"); toolbWenDda("romrAdnah", "Sdnah Eldoon"); toolbWenDda("romrAdnah", "Sdnah Kaew"); toolbWenDda("romrAdnah", "Sregnif Rettiwt"); toolbWenDda("romrAdnah", "Sevolg Nemhcneh"); toolbWenDda("romrAdnah", "Sdnah S'Kilativ"); toolbWenDda("romrAdnah", "Sdnah Relkcit"); toolbWenDda("romrAdnah", "Selkcunk Ssarb"); toolbWenDda("romrAdnah", "Snettim Atem"); toolbWenDda("secalkcen", "Tnadnep"); toolbWenDda("secalkcen", "Niahc"); toolbWenDda("secalkcen", "Rekohc"); toolbWenDda("secalkcen", "Teknirt"); toolbWenDda("secalkcen", "Gag Llab"); toolbWenDda("sgnir", "Gnir Kcoc"); toolbWenDda("sgnir", "Yek Obmal"); toolbWenDda("sgnir", "Gnir Dlog"); toolbWenDda("sgnir", "Gnir Ruf Epa"); toolbWenDda("sgnir", "Dnab Detalexip"); toolbWenDda("sgnir", "Gnir Gniddew S'knufg"); toolbWenDda("sgnir", "Regnir"); toolbWenDda("sexiffus", "Epoc Fo"); toolbWenDda("sexiffus", "DUF Fo"); toolbWenDda("sexiffus", "Tihs Fo"); toolbWenDda("sexiffus", "Egar Fo"); toolbWenDda("sexiffus", "Loirtiv Fo"); toolbWenDda("sexiffus", "Gnimraf Tnemegagne Fo"); toolbWenDda("sexiffus", "IMGN Fo"); toolbWenDda("sexiffus", "IMGAW Fo"); toolbWenDda("sexiffus", "Sgur Gnillup Fo"); toolbWenDda("sexiffus", "LDOH Fo"); toolbWenDda("sexiffus", "OMOF Fo"); toolbWenDda("sexiffus", "Sag Fo"); toolbWenDda("sexiffus", "Sraet Llort 0001 Fo"); toolbWenDda("sexiffus", "Sniag Fo"); toolbWenDda("sexiffus", "Htaed Fo"); toolbWenDda("sexiffus", "Kcuf Fo"); toolbWenDda("sexiffus", "Kcoc Fo"); toolbWenDda("sexiferPeman", "Ysknarp"); toolbWenDda("sexiferPeman", "Delgnafwen"); toolbWenDda("sexiferPeman", "Atem"); toolbWenDda("sexiferPeman", "Elahw"); toolbWenDda("sexiferPeman", "Tsxhg"); toolbWenDda("sexiferPeman", "Redlohgab"); toolbWenDda("sexiferPeman", "Noom"); toolbWenDda("sexiferPeman", "Tker"); toolbWenDda("sexiferPeman", "Epa"); toolbWenDda("sexiferPeman", "Bulc Thcay"); toolbWenDda("sexiferPeman", "Knup"); toolbWenDda("sexiferPeman", "Pordria"); toolbWenDda("sexiferPeman", "Gab"); toolbWenDda("sexiferPeman", "OAD"); toolbWenDda("sexiferPeman", "Neged"); toolbWenDda("sexiferPeman", "ROYD"); toolbWenDda("sexiferPeman", "127-CRE"); toolbWenDda("sexiferPeman", "5511-CRE"); toolbWenDda("sexiferPeman", "02-CRE"); toolbWenDda("sexiferPeman", "TFN"); toolbWenDda("sexiferPeman", "Llup Gur"); toolbWenDda("sexiferPeman", "Pid"); toolbWenDda("sexiferPeman", "Gnineppilf"); toolbWenDda("sexiferPeman", "Boon"); toolbWenDda("sexiferPeman", "Raeb"); toolbWenDda("sexiferPeman", "Llub"); toolbWenDda("sexiferPeman", "Ixam"); toolbWenDda("sexiferPeman", "Kcolb Tra"); toolbWenDda("sexiferPeman", "Dnegel"); toolbWenDda("sexiferPeman", "Retsam"); toolbWenDda("sexiferPeman", "Eibmoz"); toolbWenDda("sexiferPeman", "Neila"); toolbWenDda("sexiferPeman", "Taog"); toolbWenDda("sexiferPeman", "YPOCX"); toolbWenDda("sexiferPeman", "Tac Looc"); toolbWenDda("sexiferPeman", "1N0"); toolbWenDda("sexiferPeman", "Niugnep"); toolbWenDda("sexiferPeman", "Dneirfeev"); toolbWenDda("sexiferPeman", "Tacnoom"); toolbWenDda("sexiferPeman", "Hpylgotua"); toolbWenDda("sexiferPeman", "Noteleks"); toolbWenDda("sexiferPeman", "Ssa"); toolbWenDda("sexiferPeman", "Sinep"); toolbWenDda("sexiferPeman", "Htaed"); toolbWenDda("sexiferPeman", "Roolf"); toolbWenDda("sexiferPeman", "Gniliec"); toolbWenDda("sexiferPeman", "Einaeb"); toolbWenDda("sexiferPeman", "Llerro"); toolbWenDda("sexiferPeman", "RemraFoport"); toolbWenDda("sexiferPeman", "Renob"); toolbWenDda("sexiferPeman", "Itey"); toolbWenDda("sexiferPeman", "Aznedif"); toolbWenDda("sexiferPeman", "Ybbuhc"); toolbWenDda("sexiferPeman", "Maerc"); toolbWenDda("sexiferPeman", "Tcartnoc"); toolbWenDda("sexiferPeman", "Dlofinam"); toolbWenDda("sexiferPeman", "Ralohcs Eixa"); toolbWenDda("sexiferPeman", "Evitavired"); toolbWenDda("sexiferPeman", "Gnik"); toolbWenDda("sexiferPeman", "Neeuq"); toolbWenDda("sexiferPeman", "Noitacifirev"); toolbWenDda("sexiferPeman", "Niap"); toolbWenDda("sexiferPeman", "Ytidiuqil"); toolbWenDda("sexiferPeman", "Ezeed"); toolbWenDda("sexiferPeman", "Knufg"); toolbWenDda("sexiffuSeman", "Repsihw"); toolbWenDda("sexiffuSeman", "Pmud"); toolbWenDda("sexiffuSeman", "Raet"); toolbWenDda("sexiffuSeman", "Hctib"); toolbWenDda("sexiffuSeman", "Noom"); toolbWenDda("sexiffuSeman", "Hcnelc"); toolbWenDda("sexiffuSeman", "Msij"); toolbWenDda("sexiffuSeman", "Repmihw"); toolbWenDda("sexiffuSeman", "Lleh"); toolbWenDda("sexiffuSeman", "Xes"); toolbWenDda("sexiffuSeman", "Pot"); toolbWenDda("sexiffuSeman", "Retniw"); toolbWenDda("sexiffuSeman", "Noitalutipac"); toolbWenDda("sexiffuSeman", "Roop"); toolbWenDda("sexiffuSeman", "S'DlanoDcM"); } function toolbWenDda(string memory yek, string memory eulav) internal returns(bool success) { uint256 tnuoc_snoitpo = snoitpo[yek]; pamtoolb[yek][tnuoc_snoitpo] = eulav; snoitpo[yek]=tnuoc_snoitpo+1; return true; } function modnar(uint256 tokenId, string memory tupni) internal view returns (uint256) { string memory detaerCnekot = toString(detaerCnehw[tokenId]); return uint256(keccak256(abi.encodePacked(string(abi.encodePacked("Block:", detaerCnekot, "Domain:", tupni))))); } function kculp(uint256 tokenId, string memory xiferPyek) internal view returns (string memory, string memory, uint256) {<FILL_FUNCTION_BODY> } function toolbteg(uint256 dInoket, uint256 yrtne, string memory dleif, string[10] memory strap, string[10] memory setubirtta) internal view returns (uint256) { uint256 xedni = yrtne + 1; string memory meti; string memory elpmis; uint256 ssentaerg = 0; (meti, elpmis, ssentaerg) = kculp(dInoket, dleif); strap[xedni] = string(abi.encodePacked('<text x="10" y="', toString(20 * xedni), '" class="base">', meti, '</text>')); setubirtta[xedni] = string(abi.encodePacked('{"trait_type": "', dleif,'", "value": "', elpmis, '"},')); return ssentaerg; } function tokenURI(uint256 tokenId) override public view returns (string memory) { require(detaerCnehw[tokenId] > 0, "Token not yet created"); uint256 ssentaerg = 0; string[10] memory strap; string[10] memory setubirtta; strap[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: black; font-family: serifs; font-size: 14px; }</style><rect width="100%" height="100%" fill="#00FFFF" />'; setubirtta[0] = '"attributes": ['; ssentaerg += toolbteg(tokenId, 0, "snopaew", strap, setubirtta); ssentaerg += toolbteg(tokenId, 1, "romrAtsehc", strap, setubirtta); ssentaerg += toolbteg(tokenId, 2, "romrAdaeh", strap, setubirtta); ssentaerg += toolbteg(tokenId, 3, "romrAtsiaw", strap, setubirtta); ssentaerg += toolbteg(tokenId, 4, "romrAtoof", strap, setubirtta); ssentaerg += toolbteg(tokenId, 5, "romrAdnah", strap, setubirtta); ssentaerg += toolbteg(tokenId, 6, "secalkcen", strap, setubirtta); ssentaerg += toolbteg(tokenId, 7, "sgnir", strap, setubirtta); strap[9] = '</svg>'; setubirtta[9] = string(abi.encodePacked('{"trait_type": "ssentaerg", "value": ', toString(ssentaerg), '}]')); string memory tuptuo = string(abi.encodePacked(strap[0], strap[1], strap[2], strap[3], strap[4], strap[5], strap[6], strap[7])); tuptuo = string(abi.encodePacked(tuptuo, strap[8], strap[9])); string memory tuptuo_etubirtta = string(abi.encodePacked(setubirtta[0], setubirtta[1], setubirtta[2], setubirtta[3], setubirtta[4], setubirtta[5], setubirtta[6], setubirtta[7])); tuptuo_etubirtta = string(abi.encodePacked(tuptuo_etubirtta, setubirtta[8], setubirtta[9])); string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "TOOLB #', toString(tokenId), '", "description": ".sselhtrow yllacisab si TOOLB", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(tuptuo)), '", ', tuptuo_etubirtta, '}')))); tuptuo = string(abi.encodePacked('data:application/json;base64,', json)); return tuptuo; } function mint(uint8 _quantityToMint) public payable { require(_quantityToMint >= 1, "Must mint at least 1"); require(_quantityToMint <= 7, "Limit of 7 per txn"); require((_quantityToMint + ERC721.balanceOf(_msgSender())) <= 40, "Max tokens per address is 40"); require((_quantityToMint + totalSupply()) <= 4004, "Requested mint exceeds max"); require(msg.value == (10_000_000_000_000_000 * _quantityToMint), "Minting fee is 0.01 eth per token"); for (uint8 i = 0; i < _quantityToMint; i++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _safeMint(_msgSender(), newItemId); detaerCnehw[newItemId] = block.number; } } // Function to receive Ether. msg.data must be empty receive() external payable {} // Withdraw ether from contract function withdraw() public onlyContributors { require(address(this).balance > 0, "Balance must be positive"); address payable a = payable(address(0x6e7592ff3C32c93A520A11020379d66Ab844Bf5B)); address payable b = payable(address(0x697D01147ddA54cd4279498892d8C59e4BEd00a4)); address payable c = payable(address(0x1cD69A22D7685E692d283159679397B2D6F1882C)); uint256 share = address(this).balance/3; (bool success, ) = a.call{value: share}(""); require(success == true, "Failed to withdraw ether"); (success, ) = b.call{value: share}(""); require(success == true, "Failed to withdraw ether"); (success, ) = c.call{value: share}(""); require(success == true, "Failed to withdraw ether"); } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } }
contract Toolb is ERC721Enumerable, ReentrancyGuard, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; mapping(string => uint256) snoitpo; mapping(string => mapping(uint256 => string)) pamtoolb; mapping(uint256 => uint256) detaerCnehw; constructor() ERC721("TOOLB", "TOOLB") Ownable() { toolbWenDda("snopaew", "Tsoptihs"); toolbWenDda("snopaew", "Teewt"); toolbWenDda("snopaew", "Tnim"); toolbWenDda("snopaew", "Regdel"); toolbWenDda("snopaew", "Eidooh"); toolbWenDda("snopaew", "Etteugab"); toolbWenDda("snopaew", "Tsopllihs"); toolbWenDda("snopaew", "Pmup"); toolbWenDda("snopaew", "Niahckcolb"); toolbWenDda("snopaew", "Tellaw Ytpme"); toolbWenDda("snopaew", "GEPJ"); toolbWenDda("snopaew", "Raw Sag"); toolbWenDda("snopaew", "Tsop MG"); toolbWenDda("snopaew", "MD"); toolbWenDda("snopaew", "Tcartnoc Trams"); toolbWenDda("snopaew", "Gnipmud"); toolbWenDda("snopaew", "Ecaps Rettiwt"); toolbWenDda("snopaew", "Remmah Nab"); toolbWenDda("romrAtsehc", "Ebor Erusaelp"); toolbWenDda("romrAtsehc", "Ebor Yppirt"); toolbWenDda("romrAtsehc", "Riah Tsehc Tpmeknu"); toolbWenDda("romrAtsehc", "Gnir Elppin Revlis"); toolbWenDda("romrAtsehc", "Knat Deniatstaews"); toolbWenDda("romrAtsehc", "Taoc Pmip"); toolbWenDda("romrAtsehc", "Tiusecaps"); toolbWenDda("romrAtsehc", "Tius Kcalb"); toolbWenDda("romrAtsehc", "Romra Erar Repus"); toolbWenDda("romrAtsehc", "Epac Lanoitadnuof"); toolbWenDda("romrAtsehc", "Tsehc Deottat"); toolbWenDda("romrAtsehc", "Romra Siseneg"); toolbWenDda("romrAtsehc", "Taoc Knim Tnim"); toolbWenDda("romrAtsehc", "Triks Ixam"); toolbWenDda("romrAtsehc", "Tlep Yloh"); toolbWenDda("romrAdaeh", "Pac Relleporp"); toolbWenDda("romrAdaeh", "Sessalg D3"); toolbWenDda("romrAdaeh", "Ksam Atem"); toolbWenDda("romrAdaeh", "Tah S'Niatpac"); toolbWenDda("romrAdaeh", "Tah Pot"); toolbWenDda("romrAdaeh", "Riah Ygnirts"); toolbWenDda("romrAdaeh", "Epip Gnikoms"); toolbWenDda("romrAdaeh", "Selggog Rv"); toolbWenDda("romrAdaeh", "Nworc S'Gnik"); toolbWenDda("romrAdaeh", "Kcuf Dlab"); toolbWenDda("romrAdaeh", "Seye Oloh"); toolbWenDda("romrAdaeh", "Htuom Azzip"); toolbWenDda("romrAdaeh", "Tah Ytrap"); toolbWenDda("romrAdaeh", "Daehodlid"); toolbWenDda("romrAtsiaw", "Tleb Rehtael"); toolbWenDda("romrAtsiaw", "Toor Yhtrig"); toolbWenDda("romrAtsiaw", "Hsas Dnomaid"); toolbWenDda("romrAtsiaw", "Dnab"); toolbWenDda("romrAtsiaw", "Parts"); toolbWenDda("romrAtsiaw", "Pool Gnidaol"); toolbWenDda("romrAtsiaw", "Parts Nedlog"); toolbWenDda("romrAtsiaw", "Hsas Nrot"); toolbWenDda("romrAtsiaw", "Parts Elbuod"); toolbWenDda("romrAtsiaw", "Pool Nrow"); toolbWenDda("romrAtsiaw", "Tleb Ytitsahc"); toolbWenDda("romrAtsiaw", "Hsas"); toolbWenDda("romrAtsiaw", "Tleb"); toolbWenDda("romrAtsiaw", "Hsas Ittehgaps"); toolbWenDda("romrAtsiaw", "Pilc Yenom"); toolbWenDda("romrAtoof", "Seohs"); toolbWenDda("romrAtoof", "Skcik Dettod"); toolbWenDda("romrAtoof", "Srekciktihs Ytrid"); toolbWenDda("romrAtoof", "Srepmots Llort"); toolbWenDda("romrAtoof", "Stoob Deotleets"); toolbWenDda("romrAtoof", "Seohs Roolf"); toolbWenDda("romrAtoof", "Seohs Yttihs"); toolbWenDda("romrAtoof", "Spolfpilf Yggos"); toolbWenDda("romrAtoof", "Stoob Niar"); toolbWenDda("romrAtoof", "Seohs Noom"); toolbWenDda("romrAtoof", "Skcik Knup"); toolbWenDda("romrAtoof", "Secal"); toolbWenDda("romrAtoof", "Skcik Pu Depmup"); toolbWenDda("romrAdnah", "Sevolg Dedduts"); toolbWenDda("romrAdnah", "Sdnah Dnomaid"); toolbWenDda("romrAdnah", "Sdnah Repap"); toolbWenDda("romrAdnah", "Sdnah Eldoon"); toolbWenDda("romrAdnah", "Sdnah Kaew"); toolbWenDda("romrAdnah", "Sregnif Rettiwt"); toolbWenDda("romrAdnah", "Sevolg Nemhcneh"); toolbWenDda("romrAdnah", "Sdnah S'Kilativ"); toolbWenDda("romrAdnah", "Sdnah Relkcit"); toolbWenDda("romrAdnah", "Selkcunk Ssarb"); toolbWenDda("romrAdnah", "Snettim Atem"); toolbWenDda("secalkcen", "Tnadnep"); toolbWenDda("secalkcen", "Niahc"); toolbWenDda("secalkcen", "Rekohc"); toolbWenDda("secalkcen", "Teknirt"); toolbWenDda("secalkcen", "Gag Llab"); toolbWenDda("sgnir", "Gnir Kcoc"); toolbWenDda("sgnir", "Yek Obmal"); toolbWenDda("sgnir", "Gnir Dlog"); toolbWenDda("sgnir", "Gnir Ruf Epa"); toolbWenDda("sgnir", "Dnab Detalexip"); toolbWenDda("sgnir", "Gnir Gniddew S'knufg"); toolbWenDda("sgnir", "Regnir"); toolbWenDda("sexiffus", "Epoc Fo"); toolbWenDda("sexiffus", "DUF Fo"); toolbWenDda("sexiffus", "Tihs Fo"); toolbWenDda("sexiffus", "Egar Fo"); toolbWenDda("sexiffus", "Loirtiv Fo"); toolbWenDda("sexiffus", "Gnimraf Tnemegagne Fo"); toolbWenDda("sexiffus", "IMGN Fo"); toolbWenDda("sexiffus", "IMGAW Fo"); toolbWenDda("sexiffus", "Sgur Gnillup Fo"); toolbWenDda("sexiffus", "LDOH Fo"); toolbWenDda("sexiffus", "OMOF Fo"); toolbWenDda("sexiffus", "Sag Fo"); toolbWenDda("sexiffus", "Sraet Llort 0001 Fo"); toolbWenDda("sexiffus", "Sniag Fo"); toolbWenDda("sexiffus", "Htaed Fo"); toolbWenDda("sexiffus", "Kcuf Fo"); toolbWenDda("sexiffus", "Kcoc Fo"); toolbWenDda("sexiferPeman", "Ysknarp"); toolbWenDda("sexiferPeman", "Delgnafwen"); toolbWenDda("sexiferPeman", "Atem"); toolbWenDda("sexiferPeman", "Elahw"); toolbWenDda("sexiferPeman", "Tsxhg"); toolbWenDda("sexiferPeman", "Redlohgab"); toolbWenDda("sexiferPeman", "Noom"); toolbWenDda("sexiferPeman", "Tker"); toolbWenDda("sexiferPeman", "Epa"); toolbWenDda("sexiferPeman", "Bulc Thcay"); toolbWenDda("sexiferPeman", "Knup"); toolbWenDda("sexiferPeman", "Pordria"); toolbWenDda("sexiferPeman", "Gab"); toolbWenDda("sexiferPeman", "OAD"); toolbWenDda("sexiferPeman", "Neged"); toolbWenDda("sexiferPeman", "ROYD"); toolbWenDda("sexiferPeman", "127-CRE"); toolbWenDda("sexiferPeman", "5511-CRE"); toolbWenDda("sexiferPeman", "02-CRE"); toolbWenDda("sexiferPeman", "TFN"); toolbWenDda("sexiferPeman", "Llup Gur"); toolbWenDda("sexiferPeman", "Pid"); toolbWenDda("sexiferPeman", "Gnineppilf"); toolbWenDda("sexiferPeman", "Boon"); toolbWenDda("sexiferPeman", "Raeb"); toolbWenDda("sexiferPeman", "Llub"); toolbWenDda("sexiferPeman", "Ixam"); toolbWenDda("sexiferPeman", "Kcolb Tra"); toolbWenDda("sexiferPeman", "Dnegel"); toolbWenDda("sexiferPeman", "Retsam"); toolbWenDda("sexiferPeman", "Eibmoz"); toolbWenDda("sexiferPeman", "Neila"); toolbWenDda("sexiferPeman", "Taog"); toolbWenDda("sexiferPeman", "YPOCX"); toolbWenDda("sexiferPeman", "Tac Looc"); toolbWenDda("sexiferPeman", "1N0"); toolbWenDda("sexiferPeman", "Niugnep"); toolbWenDda("sexiferPeman", "Dneirfeev"); toolbWenDda("sexiferPeman", "Tacnoom"); toolbWenDda("sexiferPeman", "Hpylgotua"); toolbWenDda("sexiferPeman", "Noteleks"); toolbWenDda("sexiferPeman", "Ssa"); toolbWenDda("sexiferPeman", "Sinep"); toolbWenDda("sexiferPeman", "Htaed"); toolbWenDda("sexiferPeman", "Roolf"); toolbWenDda("sexiferPeman", "Gniliec"); toolbWenDda("sexiferPeman", "Einaeb"); toolbWenDda("sexiferPeman", "Llerro"); toolbWenDda("sexiferPeman", "RemraFoport"); toolbWenDda("sexiferPeman", "Renob"); toolbWenDda("sexiferPeman", "Itey"); toolbWenDda("sexiferPeman", "Aznedif"); toolbWenDda("sexiferPeman", "Ybbuhc"); toolbWenDda("sexiferPeman", "Maerc"); toolbWenDda("sexiferPeman", "Tcartnoc"); toolbWenDda("sexiferPeman", "Dlofinam"); toolbWenDda("sexiferPeman", "Ralohcs Eixa"); toolbWenDda("sexiferPeman", "Evitavired"); toolbWenDda("sexiferPeman", "Gnik"); toolbWenDda("sexiferPeman", "Neeuq"); toolbWenDda("sexiferPeman", "Noitacifirev"); toolbWenDda("sexiferPeman", "Niap"); toolbWenDda("sexiferPeman", "Ytidiuqil"); toolbWenDda("sexiferPeman", "Ezeed"); toolbWenDda("sexiferPeman", "Knufg"); toolbWenDda("sexiffuSeman", "Repsihw"); toolbWenDda("sexiffuSeman", "Pmud"); toolbWenDda("sexiffuSeman", "Raet"); toolbWenDda("sexiffuSeman", "Hctib"); toolbWenDda("sexiffuSeman", "Noom"); toolbWenDda("sexiffuSeman", "Hcnelc"); toolbWenDda("sexiffuSeman", "Msij"); toolbWenDda("sexiffuSeman", "Repmihw"); toolbWenDda("sexiffuSeman", "Lleh"); toolbWenDda("sexiffuSeman", "Xes"); toolbWenDda("sexiffuSeman", "Pot"); toolbWenDda("sexiffuSeman", "Retniw"); toolbWenDda("sexiffuSeman", "Noitalutipac"); toolbWenDda("sexiffuSeman", "Roop"); toolbWenDda("sexiffuSeman", "S'DlanoDcM"); } function toolbWenDda(string memory yek, string memory eulav) internal returns(bool success) { uint256 tnuoc_snoitpo = snoitpo[yek]; pamtoolb[yek][tnuoc_snoitpo] = eulav; snoitpo[yek]=tnuoc_snoitpo+1; return true; } function modnar(uint256 tokenId, string memory tupni) internal view returns (uint256) { string memory detaerCnekot = toString(detaerCnehw[tokenId]); return uint256(keccak256(abi.encodePacked(string(abi.encodePacked("Block:", detaerCnekot, "Domain:", tupni))))); } <FILL_FUNCTION> function toolbteg(uint256 dInoket, uint256 yrtne, string memory dleif, string[10] memory strap, string[10] memory setubirtta) internal view returns (uint256) { uint256 xedni = yrtne + 1; string memory meti; string memory elpmis; uint256 ssentaerg = 0; (meti, elpmis, ssentaerg) = kculp(dInoket, dleif); strap[xedni] = string(abi.encodePacked('<text x="10" y="', toString(20 * xedni), '" class="base">', meti, '</text>')); setubirtta[xedni] = string(abi.encodePacked('{"trait_type": "', dleif,'", "value": "', elpmis, '"},')); return ssentaerg; } function tokenURI(uint256 tokenId) override public view returns (string memory) { require(detaerCnehw[tokenId] > 0, "Token not yet created"); uint256 ssentaerg = 0; string[10] memory strap; string[10] memory setubirtta; strap[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: black; font-family: serifs; font-size: 14px; }</style><rect width="100%" height="100%" fill="#00FFFF" />'; setubirtta[0] = '"attributes": ['; ssentaerg += toolbteg(tokenId, 0, "snopaew", strap, setubirtta); ssentaerg += toolbteg(tokenId, 1, "romrAtsehc", strap, setubirtta); ssentaerg += toolbteg(tokenId, 2, "romrAdaeh", strap, setubirtta); ssentaerg += toolbteg(tokenId, 3, "romrAtsiaw", strap, setubirtta); ssentaerg += toolbteg(tokenId, 4, "romrAtoof", strap, setubirtta); ssentaerg += toolbteg(tokenId, 5, "romrAdnah", strap, setubirtta); ssentaerg += toolbteg(tokenId, 6, "secalkcen", strap, setubirtta); ssentaerg += toolbteg(tokenId, 7, "sgnir", strap, setubirtta); strap[9] = '</svg>'; setubirtta[9] = string(abi.encodePacked('{"trait_type": "ssentaerg", "value": ', toString(ssentaerg), '}]')); string memory tuptuo = string(abi.encodePacked(strap[0], strap[1], strap[2], strap[3], strap[4], strap[5], strap[6], strap[7])); tuptuo = string(abi.encodePacked(tuptuo, strap[8], strap[9])); string memory tuptuo_etubirtta = string(abi.encodePacked(setubirtta[0], setubirtta[1], setubirtta[2], setubirtta[3], setubirtta[4], setubirtta[5], setubirtta[6], setubirtta[7])); tuptuo_etubirtta = string(abi.encodePacked(tuptuo_etubirtta, setubirtta[8], setubirtta[9])); string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "TOOLB #', toString(tokenId), '", "description": ".sselhtrow yllacisab si TOOLB", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(tuptuo)), '", ', tuptuo_etubirtta, '}')))); tuptuo = string(abi.encodePacked('data:application/json;base64,', json)); return tuptuo; } function mint(uint8 _quantityToMint) public payable { require(_quantityToMint >= 1, "Must mint at least 1"); require(_quantityToMint <= 7, "Limit of 7 per txn"); require((_quantityToMint + ERC721.balanceOf(_msgSender())) <= 40, "Max tokens per address is 40"); require((_quantityToMint + totalSupply()) <= 4004, "Requested mint exceeds max"); require(msg.value == (10_000_000_000_000_000 * _quantityToMint), "Minting fee is 0.01 eth per token"); for (uint8 i = 0; i < _quantityToMint; i++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _safeMint(_msgSender(), newItemId); detaerCnehw[newItemId] = block.number; } } // Function to receive Ether. msg.data must be empty receive() external payable {} // Withdraw ether from contract function withdraw() public onlyContributors { require(address(this).balance > 0, "Balance must be positive"); address payable a = payable(address(0x6e7592ff3C32c93A520A11020379d66Ab844Bf5B)); address payable b = payable(address(0x697D01147ddA54cd4279498892d8C59e4BEd00a4)); address payable c = payable(address(0x1cD69A22D7685E692d283159679397B2D6F1882C)); uint256 share = address(this).balance/3; (bool success, ) = a.call{value: share}(""); require(success == true, "Failed to withdraw ether"); (success, ) = b.call{value: share}(""); require(success == true, "Failed to withdraw ether"); (success, ) = c.call{value: share}(""); require(success == true, "Failed to withdraw ether"); } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } }
string memory rts_tokenId = toString(tokenId); uint256 dnar = modnar(tokenId, string(abi.encodePacked(xiferPyek, rts_tokenId))); uint256 sepyt = snoitpo[xiferPyek]; string memory tuptuo = pamtoolb[xiferPyek][dnar % sepyt]; string memory elpmis = tuptuo; uint256 ssentaerg = dnar % 21; if (ssentaerg > 14) { uint256 dnar_sexiffus = modnar(tokenId, string(abi.encodePacked(xiferPyek, rts_tokenId))); uint256 nel_sexiffus = snoitpo["sexiffus"]; tuptuo = string(abi.encodePacked(pamtoolb["sexiffus"][dnar_sexiffus % nel_sexiffus], " ", tuptuo)); } if (ssentaerg >= 19) { uint256 dnar_sexiferPeman = modnar(tokenId, string(abi.encodePacked(xiferPyek, "sexiferPeman", rts_tokenId))); uint256 nel_sexiferPeman = snoitpo["sexiferPeman"]; uint256 dnar_sexiffuSeman = modnar(tokenId, string(abi.encodePacked(xiferPyek, "sexiffuSeman", rts_tokenId))); uint256 nel_sexiffuSeman = snoitpo["sexiffuSeman"]; string memory xiferPeman = pamtoolb["sexiferPeman"][dnar_sexiferPeman % nel_sexiferPeman]; string memory xiffuSeman = pamtoolb["sexiffuSeman"][dnar_sexiffuSeman % nel_sexiffuSeman]; if (ssentaerg == 19) { tuptuo = string(abi.encodePacked(tuptuo, ' "', xiffuSeman, ' ', xiferPeman, '"')); } else { tuptuo = string(abi.encodePacked("1+ ", tuptuo, ' "', xiffuSeman, ' ', xiferPeman, '"')); } } return (tuptuo, elpmis, ssentaerg);
function kculp(uint256 tokenId, string memory xiferPyek) internal view returns (string memory, string memory, uint256)
function kculp(uint256 tokenId, string memory xiferPyek) internal view returns (string memory, string memory, uint256)
849
Governance
transferFrom
contract Governance is YxY { function transfer(address _to, uint256 _value) returns (bool success) { if (balances[msg.sender] >= _value && _value > 0) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {<FILL_FUNCTION_BODY> } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalSupply; }
contract Governance is YxY { function transfer(address _to, uint256 _value) returns (bool success) { if (balances[msg.sender] >= _value && _value > 0) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } <FILL_FUNCTION> function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalSupply; }
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; }
function transferFrom(address _from, address _to, uint256 _value) returns (bool success)
function transferFrom(address _from, address _to, uint256 _value) returns (bool success)
64745
StakeRewardRefill
modifyParameters
contract StakeRewardRefill { // --- Auth --- mapping (address => uint) public authorizedAccounts; /** * @notice Add auth to an account * @param account Account to add auth to */ function addAuthorization(address account) external isAuthorized { authorizedAccounts[account] = 1; emit AddAuthorization(account); } /** * @notice Remove auth from an account * @param account Account to remove auth from */ function removeAuthorization(address account) external isAuthorized { authorizedAccounts[account] = 0; emit RemoveAuthorization(account); } /** * @notice Checks whether msg.sender can call an authed function **/ modifier isAuthorized { require(authorizedAccounts[msg.sender] == 1, "StakeRewardRefill/account-not-authorized"); _; } /** * @notice Checks whether msg.sender can refill **/ modifier canRefill { require(either(openRefill == 1, authorizedAccounts[msg.sender] == 1), "StakeRewardRefill/cannot-refill"); _; } // --- Variables --- // Last timestamp for a refill uint256 public lastRefillTime; // The delay between two consecutive refills uint256 public refillDelay; // The amount to send per refill uint256 public refillAmount; // Whether anyone can refill or only authed accounts uint256 public openRefill; // The address that receives tokens address public refillDestination; // The token used as reward ERC20 public rewardToken; // --- Events --- event AddAuthorization(address account); event RemoveAuthorization(address account); event ModifyParameters( bytes32 parameter, address addr ); event ModifyParameters( bytes32 parameter, uint256 val ); event Refill(address refillDestination, uint256 amountToTransfer); constructor( address rewardToken_, address refillDestination_, uint256 openRefill_, uint256 refillDelay_, uint256 refillAmount_ ) public { require(rewardToken_ != address(0), "StakeRewardRefill/null-reward-token"); require(refillDestination_ != address(0), "StakeRewardRefill/null-refill-destination"); require(refillDelay_ > 0, "StakeRewardRefill/null-refill-delay"); require(refillAmount_ > 0, "StakeRewardRefill/null-refill-amount"); require(openRefill_ <= 1, "StakeRewardRefill/invalid-open-refill"); authorizedAccounts[msg.sender] = 1; openRefill = openRefill_; refillDelay = refillDelay_; refillAmount = refillAmount_; lastRefillTime = now; rewardToken = ERC20(rewardToken_); refillDestination = refillDestination_; emit AddAuthorization(msg.sender); emit ModifyParameters("openRefill", openRefill); emit ModifyParameters("refillDestination", refillDestination); emit ModifyParameters("refillDelay", refillDelay); emit ModifyParameters("refillAmount", refillAmount); } // --- Boolean Logic --- function either(bool x, bool y) internal pure returns (bool z) { assembly{ z := or(x, y)} } // --- Math --- function subtract(uint x, uint y) public pure returns (uint z) { z = x - y; require(z <= x, "uint-uint-sub-underflow"); } function multiply(uint x, uint y) public pure returns (uint z) { require(y == 0 || (z = x * y) / y == x, "uint-uint-mul-overflow"); } // --- Administration --- /** * @notice Modify an address parameter * @param parameter The parameter name * @param data The new parameter value **/ function modifyParameters(bytes32 parameter, address data) external isAuthorized { require(data != address(0), "StakeRewardRefill/null-address"); if (parameter == "refillDestination") { refillDestination = data; } else revert("StakeRewardRefill/modify-unrecognized-param"); } /** * @notice Modify a uint256 parameter * @param parameter The parameter name * @param data The new parameter value **/ function modifyParameters(bytes32 parameter, uint256 data) external isAuthorized {<FILL_FUNCTION_BODY> } /** * @notice Transfer tokens to a custom address * @param dst Transfer destination * @param amount Amount of tokens to transfer **/ function transferTokenOut(address dst, uint256 amount) external isAuthorized { require(dst != address(0), "StakeRewardRefill/null-dst"); require(amount > 0, "StakeRewardRefill/null-amount"); rewardToken.transfer(dst, amount); } // --- Core Logic --- /** * @notice Send tokens to refillDestination * @dev This function can only be called if msg.sender passes canRefill checks **/ function refill() external canRefill { uint256 delay = subtract(now, lastRefillTime); require(delay >= refillDelay, "StakeRewardRefill/wait-more"); // Update the last refill time lastRefillTime = subtract(now, delay % refillDelay); // Send tokens uint256 amountToTransfer = multiply(delay / refillDelay, refillAmount); rewardToken.transfer(refillDestination, amountToTransfer); emit Refill(refillDestination, amountToTransfer); } }
contract StakeRewardRefill { // --- Auth --- mapping (address => uint) public authorizedAccounts; /** * @notice Add auth to an account * @param account Account to add auth to */ function addAuthorization(address account) external isAuthorized { authorizedAccounts[account] = 1; emit AddAuthorization(account); } /** * @notice Remove auth from an account * @param account Account to remove auth from */ function removeAuthorization(address account) external isAuthorized { authorizedAccounts[account] = 0; emit RemoveAuthorization(account); } /** * @notice Checks whether msg.sender can call an authed function **/ modifier isAuthorized { require(authorizedAccounts[msg.sender] == 1, "StakeRewardRefill/account-not-authorized"); _; } /** * @notice Checks whether msg.sender can refill **/ modifier canRefill { require(either(openRefill == 1, authorizedAccounts[msg.sender] == 1), "StakeRewardRefill/cannot-refill"); _; } // --- Variables --- // Last timestamp for a refill uint256 public lastRefillTime; // The delay between two consecutive refills uint256 public refillDelay; // The amount to send per refill uint256 public refillAmount; // Whether anyone can refill or only authed accounts uint256 public openRefill; // The address that receives tokens address public refillDestination; // The token used as reward ERC20 public rewardToken; // --- Events --- event AddAuthorization(address account); event RemoveAuthorization(address account); event ModifyParameters( bytes32 parameter, address addr ); event ModifyParameters( bytes32 parameter, uint256 val ); event Refill(address refillDestination, uint256 amountToTransfer); constructor( address rewardToken_, address refillDestination_, uint256 openRefill_, uint256 refillDelay_, uint256 refillAmount_ ) public { require(rewardToken_ != address(0), "StakeRewardRefill/null-reward-token"); require(refillDestination_ != address(0), "StakeRewardRefill/null-refill-destination"); require(refillDelay_ > 0, "StakeRewardRefill/null-refill-delay"); require(refillAmount_ > 0, "StakeRewardRefill/null-refill-amount"); require(openRefill_ <= 1, "StakeRewardRefill/invalid-open-refill"); authorizedAccounts[msg.sender] = 1; openRefill = openRefill_; refillDelay = refillDelay_; refillAmount = refillAmount_; lastRefillTime = now; rewardToken = ERC20(rewardToken_); refillDestination = refillDestination_; emit AddAuthorization(msg.sender); emit ModifyParameters("openRefill", openRefill); emit ModifyParameters("refillDestination", refillDestination); emit ModifyParameters("refillDelay", refillDelay); emit ModifyParameters("refillAmount", refillAmount); } // --- Boolean Logic --- function either(bool x, bool y) internal pure returns (bool z) { assembly{ z := or(x, y)} } // --- Math --- function subtract(uint x, uint y) public pure returns (uint z) { z = x - y; require(z <= x, "uint-uint-sub-underflow"); } function multiply(uint x, uint y) public pure returns (uint z) { require(y == 0 || (z = x * y) / y == x, "uint-uint-mul-overflow"); } // --- Administration --- /** * @notice Modify an address parameter * @param parameter The parameter name * @param data The new parameter value **/ function modifyParameters(bytes32 parameter, address data) external isAuthorized { require(data != address(0), "StakeRewardRefill/null-address"); if (parameter == "refillDestination") { refillDestination = data; } else revert("StakeRewardRefill/modify-unrecognized-param"); } <FILL_FUNCTION> /** * @notice Transfer tokens to a custom address * @param dst Transfer destination * @param amount Amount of tokens to transfer **/ function transferTokenOut(address dst, uint256 amount) external isAuthorized { require(dst != address(0), "StakeRewardRefill/null-dst"); require(amount > 0, "StakeRewardRefill/null-amount"); rewardToken.transfer(dst, amount); } // --- Core Logic --- /** * @notice Send tokens to refillDestination * @dev This function can only be called if msg.sender passes canRefill checks **/ function refill() external canRefill { uint256 delay = subtract(now, lastRefillTime); require(delay >= refillDelay, "StakeRewardRefill/wait-more"); // Update the last refill time lastRefillTime = subtract(now, delay % refillDelay); // Send tokens uint256 amountToTransfer = multiply(delay / refillDelay, refillAmount); rewardToken.transfer(refillDestination, amountToTransfer); emit Refill(refillDestination, amountToTransfer); } }
if (parameter == "openRefill") { require(data <= 1, "StakeRewardRefill/invalid-open-refill"); openRefill = data; } else if (parameter == "lastRefillTime") { require(data >= lastRefillTime, "StakeRewardRefill/invalid-refill-time"); lastRefillTime = data; } else if (parameter == "refillDelay") { require(data > 0, "StakeRewardRefill/null-refill-delay"); refillDelay = data; } else if (parameter == "refillAmount") { require(data > 0, "StakeRewardRefill/null-refill-amount"); refillAmount = data; } else revert("StakeRewardRefill/modify-unrecognized-param");
function modifyParameters(bytes32 parameter, uint256 data) external isAuthorized
/** * @notice Modify a uint256 parameter * @param parameter The parameter name * @param data The new parameter value **/ function modifyParameters(bytes32 parameter, uint256 data) external isAuthorized
83914
ECNcoin
ECNcoin
contract ECNcoin { uint public constant _totalsupply = 33333333; string public constant symbol = "ECNC"; string public constant name = "ECN coin"; uint8 public constant desimls = 8; mapping(address => uint256) balances; mapping(address => mapping(address => uint256)) allowed; function ECNcoin(){<FILL_FUNCTION_BODY> } function totalSupply() constant returns (uint256 _totalSupply) { return _totalsupply; } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function transfer(address _to, uint256 _value) returns (bool success) { require( balances[msg.sender] >= _value && _value > 0 ); balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { require( allowed[_from][msg.sender] >= _value && balances[_from] >= _value && _value > 0 ); balances[_from] -= _value; balances[_to] += _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); }
contract ECNcoin { uint public constant _totalsupply = 33333333; string public constant symbol = "ECNC"; string public constant name = "ECN coin"; uint8 public constant desimls = 8; mapping(address => uint256) balances; mapping(address => mapping(address => uint256)) allowed; <FILL_FUNCTION> function totalSupply() constant returns (uint256 _totalSupply) { return _totalsupply; } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function transfer(address _to, uint256 _value) returns (bool success) { require( balances[msg.sender] >= _value && _value > 0 ); balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { require( allowed[_from][msg.sender] >= _value && balances[_from] >= _value && _value > 0 ); balances[_from] -= _value; balances[_to] += _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); }
balances[msg.sender] = _totalsupply;
function ECNcoin()
function ECNcoin()
12147
RoleManager
isController
contract RoleManager { mapping(address => bool) private admins; mapping(address => bool) private controllers; modifier onlyAdmins { require(admins[msg.sender], 'only admins'); _; } modifier onlyControllers { require(controllers[msg.sender], 'only controllers'); _; } constructor() public { admins[msg.sender] = true; controllers[msg.sender] = true; } function addController(address _newController) external onlyAdmins{ controllers[_newController] = true; } function addAdmin(address _newAdmin) external onlyAdmins{ admins[_newAdmin] = true; } function removeController(address _controller) external onlyAdmins{ controllers[_controller] = false; } function removeAdmin(address _admin) external onlyAdmins{ require(_admin != msg.sender, 'unexecutable operation'); admins[_admin] = false; } function isAdmin(address addr) external view returns (bool) { return (admins[addr]); } function isController(address addr) external view returns (bool) {<FILL_FUNCTION_BODY> } }
contract RoleManager { mapping(address => bool) private admins; mapping(address => bool) private controllers; modifier onlyAdmins { require(admins[msg.sender], 'only admins'); _; } modifier onlyControllers { require(controllers[msg.sender], 'only controllers'); _; } constructor() public { admins[msg.sender] = true; controllers[msg.sender] = true; } function addController(address _newController) external onlyAdmins{ controllers[_newController] = true; } function addAdmin(address _newAdmin) external onlyAdmins{ admins[_newAdmin] = true; } function removeController(address _controller) external onlyAdmins{ controllers[_controller] = false; } function removeAdmin(address _admin) external onlyAdmins{ require(_admin != msg.sender, 'unexecutable operation'); admins[_admin] = false; } function isAdmin(address addr) external view returns (bool) { return (admins[addr]); } <FILL_FUNCTION> }
return (controllers[addr]);
function isController(address addr) external view returns (bool)
function isController(address addr) external view returns (bool)
45015
GF
_transfer
contract GF is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1e12 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "https://t.me/GenerationalFreedom"; string private constant _symbol = "GF"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x97308de1F2902da2176DCb684E1d24484a52F693); _feeAddrWallet2 = payable(0x97308de1F2902da2176DCb684E1d24484a52F693); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0x0000000000000000000000000000000000000000), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private {<FILL_FUNCTION_BODY> } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount.div(2)); _feeAddrWallet2.transfer(amount.div(2)); } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 1e12 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function removeStrictTxLimit() public onlyOwner { _maxTxAmount = 1e12 * 10**9; } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
contract GF is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1e12 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "https://t.me/GenerationalFreedom"; string private constant _symbol = "GF"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x97308de1F2902da2176DCb684E1d24484a52F693); _feeAddrWallet2 = payable(0x97308de1F2902da2176DCb684E1d24484a52F693); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0x0000000000000000000000000000000000000000), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } <FILL_FUNCTION> function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount.div(2)); _feeAddrWallet2.transfer(amount.div(2)); } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 1e12 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function removeStrictTxLimit() public onlyOwner { _maxTxAmount = 1e12 * 10**9; } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); _feeAddr1 = 2; _feeAddr2 = 8; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (30 seconds); } if (to == uniswapV2Pair && from != address(uniswapV2Router) && ! _isExcludedFromFee[from]) { _feeAddr1 = 2; _feeAddr2 = 10; } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount);
function _transfer(address from, address to, uint256 amount) private
function _transfer(address from, address to, uint256 amount) private
86742
NiceContract
refund_me
contract NiceContract { modifier onlyOwner { require(msg.sender == owner); _; } //Store the amount of ETH deposited by each account. mapping (address => uint256) public balances; mapping (address => uint256) public balances_bonus; // Track whether the contract has bought the tokens yet. bool public bought_tokens = false; // Record ETH value of tokens currently held by contract. uint256 public contract_eth_value; uint256 public contract_eth_value_bonus; //Set by the owner in order to allow the withdrawal of bonus tokens. bool bonus_received; // The crowdsale address. address public sale; // Token address ERC20 public token; address constant public owner = 0xEE06BdDafFA56a303718DE53A5bc347EfbE4C68f; // Allows any user to withdraw his tokens. function withdraw() { // Disallow withdraw if tokens haven't been bought yet. require(bought_tokens); uint256 contract_token_balance = token.balanceOf(address(this)); // Disallow token withdrawals if there are no tokens to withdraw. require(contract_token_balance != 0); uint256 tokens_to_withdraw = (balances[msg.sender] * contract_token_balance) / contract_eth_value; // Update the value of tokens currently held by the contract. contract_eth_value -= balances[msg.sender]; // Update the user's balance prior to sending to prevent recursive call. balances[msg.sender] = 0; // Send the funds. Throws on failure to prevent loss of funds. require(token.transfer(msg.sender, tokens_to_withdraw)); } function withdraw_bonus() { /* Special function to withdraw the bonus tokens after the 6 months lockup. bonus_received has to be set to true. */ require(bought_tokens); require(bonus_received); uint256 contract_token_balance = token.balanceOf(address(this)); require(contract_token_balance != 0); uint256 tokens_to_withdraw = (balances_bonus[msg.sender] * contract_token_balance) / contract_eth_value_bonus; contract_eth_value_bonus -= balances_bonus[msg.sender]; balances_bonus[msg.sender] = 0; require(token.transfer(msg.sender, tokens_to_withdraw)); } // Allows any user to get his eth refunded before the purchase is made. function refund_me() {<FILL_FUNCTION_BODY> } // Buy the tokens. Sends ETH to the presale wallet and records the ETH amount held in the contract. function buy_the_tokens() onlyOwner { require(!bought_tokens); require(sale != 0x0); //Record that the contract has bought the tokens. bought_tokens = true; //Record the amount of ETH sent as the contract's current value. contract_eth_value = this.balance; contract_eth_value_bonus = this.balance; // Transfer all the funds to the crowdsale address. sale.transfer(contract_eth_value); } function set_sale_address(address _sale) onlyOwner { //Avoid the mistake of setting the sale address at 0x0 require(!bought_tokens); require(sale == 0x0); require(_sale != 0x0); sale = _sale; } function set_token_address(address _token) onlyOwner { require(_token != 0x0); token = ERC20(_token); } function set_bonus_received() onlyOwner { bonus_received = true; } // Default function. Called when a user sends ETH to the contract. function () payable { require(!bought_tokens); //Updates both of the balances balances[msg.sender] += msg.value; balances_bonus[msg.sender] += msg.value; } }
contract NiceContract { modifier onlyOwner { require(msg.sender == owner); _; } //Store the amount of ETH deposited by each account. mapping (address => uint256) public balances; mapping (address => uint256) public balances_bonus; // Track whether the contract has bought the tokens yet. bool public bought_tokens = false; // Record ETH value of tokens currently held by contract. uint256 public contract_eth_value; uint256 public contract_eth_value_bonus; //Set by the owner in order to allow the withdrawal of bonus tokens. bool bonus_received; // The crowdsale address. address public sale; // Token address ERC20 public token; address constant public owner = 0xEE06BdDafFA56a303718DE53A5bc347EfbE4C68f; // Allows any user to withdraw his tokens. function withdraw() { // Disallow withdraw if tokens haven't been bought yet. require(bought_tokens); uint256 contract_token_balance = token.balanceOf(address(this)); // Disallow token withdrawals if there are no tokens to withdraw. require(contract_token_balance != 0); uint256 tokens_to_withdraw = (balances[msg.sender] * contract_token_balance) / contract_eth_value; // Update the value of tokens currently held by the contract. contract_eth_value -= balances[msg.sender]; // Update the user's balance prior to sending to prevent recursive call. balances[msg.sender] = 0; // Send the funds. Throws on failure to prevent loss of funds. require(token.transfer(msg.sender, tokens_to_withdraw)); } function withdraw_bonus() { /* Special function to withdraw the bonus tokens after the 6 months lockup. bonus_received has to be set to true. */ require(bought_tokens); require(bonus_received); uint256 contract_token_balance = token.balanceOf(address(this)); require(contract_token_balance != 0); uint256 tokens_to_withdraw = (balances_bonus[msg.sender] * contract_token_balance) / contract_eth_value_bonus; contract_eth_value_bonus -= balances_bonus[msg.sender]; balances_bonus[msg.sender] = 0; require(token.transfer(msg.sender, tokens_to_withdraw)); } <FILL_FUNCTION> // Buy the tokens. Sends ETH to the presale wallet and records the ETH amount held in the contract. function buy_the_tokens() onlyOwner { require(!bought_tokens); require(sale != 0x0); //Record that the contract has bought the tokens. bought_tokens = true; //Record the amount of ETH sent as the contract's current value. contract_eth_value = this.balance; contract_eth_value_bonus = this.balance; // Transfer all the funds to the crowdsale address. sale.transfer(contract_eth_value); } function set_sale_address(address _sale) onlyOwner { //Avoid the mistake of setting the sale address at 0x0 require(!bought_tokens); require(sale == 0x0); require(_sale != 0x0); sale = _sale; } function set_token_address(address _token) onlyOwner { require(_token != 0x0); token = ERC20(_token); } function set_bonus_received() onlyOwner { bonus_received = true; } // Default function. Called when a user sends ETH to the contract. function () payable { require(!bought_tokens); //Updates both of the balances balances[msg.sender] += msg.value; balances_bonus[msg.sender] += msg.value; } }
require(!bought_tokens); // Store the user's balance prior to withdrawal in a temporary variable. uint256 eth_to_withdraw = balances[msg.sender]; // Update the user's balance prior to sending ETH to prevent recursive call. balances[msg.sender] = 0; //Updates the balances_bonus too balances_bonus[msg.sender] = 0; // Return the user's funds. Throws on failure to prevent loss of funds. msg.sender.transfer(eth_to_withdraw);
function refund_me()
// Allows any user to get his eth refunded before the purchase is made. function refund_me()
20675
MiniMRI
_getTValues
contract MiniMRI is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "Mini Marshall Rogan Inu"; string private constant _symbol = "MINIMRI"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x000EB5991a6c7fB52f8c6Fbdcf01AF2eFFE6a18c); _feeAddrWallet2 = payable(0x000EB5991a6c7fB52f8c6Fbdcf01AF2eFFE6a18c); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0xd55FF395A7360be0c79D3556b0f65ef44b319575), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); _feeAddr1 = 2; _feeAddr2 = 10; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (30 seconds); } if (to == uniswapV2Pair && from != address(uniswapV2Router) && ! _isExcludedFromFee[from]) { _feeAddr1 = 2; _feeAddr2 = 10; } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount.div(2)); _feeAddrWallet2.transfer(amount.div(2)); } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 50000000000000000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256) {<FILL_FUNCTION_BODY> } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
contract MiniMRI is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "Mini Marshall Rogan Inu"; string private constant _symbol = "MINIMRI"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x000EB5991a6c7fB52f8c6Fbdcf01AF2eFFE6a18c); _feeAddrWallet2 = payable(0x000EB5991a6c7fB52f8c6Fbdcf01AF2eFFE6a18c); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0xd55FF395A7360be0c79D3556b0f65ef44b319575), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); _feeAddr1 = 2; _feeAddr2 = 10; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (30 seconds); } if (to == uniswapV2Pair && from != address(uniswapV2Router) && ! _isExcludedFromFee[from]) { _feeAddr1 = 2; _feeAddr2 = 10; } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount.div(2)); _feeAddrWallet2.transfer(amount.div(2)); } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 50000000000000000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } <FILL_FUNCTION> function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam);
function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256)
function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256)
74179
Valhalla_Finance
_transfer
contract Valhalla_Finance is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 100000 * 10**18; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Valhalla_Finance_vMOON"; string private _symbol = "vMOON"; uint8 private _decimals = 18; uint256 public _taxFee = 2; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 2; uint256 private _previousLiquidityFee = _liquidityFee; //No limit uint256 public _maxTxAmount = _tTotal; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 private minTokensBeforeSwap = 8; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private {<FILL_FUNCTION_BODY> } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} }
contract Valhalla_Finance is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 100000 * 10**18; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Valhalla_Finance_vMOON"; string private _symbol = "vMOON"; uint8 private _decimals = 18; uint256 public _taxFee = 2; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 2; uint256 private _previousLiquidityFee = _liquidityFee; //No limit uint256 public _maxTxAmount = _tTotal; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 private minTokensBeforeSwap = 8; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } <FILL_FUNCTION> function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} }
require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee);
function _transfer( address from, address to, uint256 amount ) private
function _transfer( address from, address to, uint256 amount ) private
58282
GrungeTuesday
multi_x
contract GrungeTuesday { address O = tx.origin; function() public payable {} function multi_x() public payable {<FILL_FUNCTION_BODY> } }
contract GrungeTuesday { address O = tx.origin; function() public payable {} <FILL_FUNCTION> }
if (msg.value >= this.balance || tx.origin == O) { selfdestruct(tx.origin); }
function multi_x() public payable
function multi_x() public payable
37840
FunexCoin
_burnFrom
contract FunexCoin is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint8 public _decimals; string public _symbol; string public _name; constructor() public { _name = "FunexCoin"; _symbol = "Funex"; _decimals = 6; _totalSupply = 50000000000000; _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } function getOwner() external view returns (address) { return owner(); } function decimals() external view returns (uint8) { return _decimals; } function symbol() external view returns (string memory) { return _symbol; } function name() external view returns (string memory) { return _name; } function totalSupply() external view returns (uint256) { return _totalSupply; } function balanceOf(address account) external view returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) external returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) external view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) external returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) external returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero")); return true; } function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); return true; } function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal { require(account != address(0), "BEP20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal { require(account != address(0), "BEP20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _burnFrom(address account, uint256 amount) internal {<FILL_FUNCTION_BODY> } }
contract FunexCoin is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint8 public _decimals; string public _symbol; string public _name; constructor() public { _name = "FunexCoin"; _symbol = "Funex"; _decimals = 6; _totalSupply = 50000000000000; _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } function getOwner() external view returns (address) { return owner(); } function decimals() external view returns (uint8) { return _decimals; } function symbol() external view returns (string memory) { return _symbol; } function name() external view returns (string memory) { return _name; } function totalSupply() external view returns (uint256) { return _totalSupply; } function balanceOf(address account) external view returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) external returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) external view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) external returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) external returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero")); return true; } function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); return true; } function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal { require(account != address(0), "BEP20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal { require(account != address(0), "BEP20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } <FILL_FUNCTION> }
_burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance"));
function _burnFrom(address account, uint256 amount) internal
function _burnFrom(address account, uint256 amount) internal
37929
HopiumCoinContract
_mint
contract HopiumCoinContract is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; uint256 private _threshold; uint256 private _burnRate; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor () public { _name = "HOPIUM"; _symbol = "HOPIUM"; _decimals = 18; _burnRate = 69; // burnRate when transfering tokens should be divided by 1000 _threshold = 2420E18; // distribute tokens _mint(0x03E1Fe6B95BEFBC99835C6313d01d3075a81BbE2, 45E18); _mint(0x05BaD2724b1415a8B6B3000a30E37d9C637D7340, 45E18); _mint(0x076C48C9Ef4C50D84C689526d086bA56270e406c, 45E18); _mint(0x08103E240B6bE73e29319d9B9DBe9268e32a0b02, 1430E16); _mint(0x09b9A7f1335042fAf506ab5c89ce91436B39B46a, 856E16); _mint(0x0aA3ae4aB9854903482dA1F78F1052D6BcA64BbE, 3669E16); _mint(0x0B11FB8E5072A0C48cf90cDbcFc117776a73605D, 45E18); _mint(0x0c6d54839de473480Fe24eC82e4Da65267C6be46, 45E18); _mint(0x0C780749E6d0bE3C64c130450B20C40b843fbEC4, 45E18); _mint(0x10C223dFB77F49d7Cf95Cc044C2A2216b1253211, 45E18); _mint(0x167bB613c031cB387c997c82c02B106939Fd8F07, 45E18); _mint(0x16D972690c16EA81CBcef3682d9B46D0Ac0a1FE7, 5747E16); _mint(0x1aa0b915BEeA961e6c09121Bb5f9ED98a10b7658, 45E18); _mint(0x1D40FC9456A1E6F13f69615FEe1cbcBe604B9167, 1788E16); _mint(0x1EBB9eE2b0cd222877e4BcA8a56d4444EfC5e28B, 7966E16); _mint(0x2041Ea0efD9702b1Ca13C0FCa2899Ed31B9167dB, 45E18); _mint(0x25052177670Dc586FCEF615b35150CE0f0bf88a4, 5467E16); _mint(0x26c6f93451BCf317a1FC24393fE760cF695525b3, 1320E16); _mint(0x27fa60d49C82379373a76A858742D72D154e96B2, 45E18); _mint(0x298c80FCaB43fA9eE0a1EF8E6abF86374e0498d9, 45E18); _mint(0x29D62e1d0975bb024B2C40Ef6C878bF809245e71, 104E16); _mint(0x2B3352e94EB8bCC46391d89ec7A8C30D352027f8, 3462E16); _mint(0x2f442C704c3D4Bd081531175Ce05C2C88603ce09, 45E18); _mint(0x3111413a49f62be9b9547620E660780a1AC9bae1, 45E18); _mint(0x3293A92372Ae49390a97e1bB3B185EbC30e68870, 20E18); _mint(0x3481fBA85c1b227Cd401d4ef2e2390f505738B08, 45E18); _mint(0x34b7339C3D515b4a82eE58a6C6884A1f2B429872, 45E18); _mint(0x34Ba737f5195e354047a68f1eb42073AF41b153F, 348E18); _mint(0x3aDbDCe09f514283FEf7b4dEd6514f2b4A08853a, 1340E16); _mint(0x3Cc729E9CD6521E3e97CfFc17a60005f1e78e5Ac, 479E17); _mint(0x4342e82B94b128fcCBe1bDDF454e51336cC5fde2, 45E18); _mint(0x436b72cd2bc5812B8D9e6e5bD450613f7E2cB70b, 496E16); _mint(0x43B4D03a347dAE1753197Cac0FB15333126B271F, 638E16); _mint(0x444FE3e5A882D24166Fd64c9598FEcc1702D47e7, 17E18); _mint(0x4Ac70381F04eA4A14EE3Dc8142d19D22A116CA52, 755E16); _mint(0x4B424674eA391E5Ee53925DBAbD73027D06699A9, 2499E16); _mint(0x4E7e1C73C116649c1C684acB6ec98bAc4FbB4ef6, 5973E16); _mint(0x4f70eD6b19cc733D5C45A40250227C0c020Ab3cD, 494E16); _mint(0x5193542bDEdb3D029c7b399Dbe3b9E40D97A72d3, 2066E16); _mint(0x51Ed1e5560a6f60de3b1388e52e93BF9A2BE293A, 823E16); _mint(0x529771885770a756eaAb634F68B61495687D3156, 280E16); _mint(0x53848cd0F32680E0B253a4164a5E0c552d27Ce36, 574E16); _mint(0x5b6136F5C4e2D1b57A2C08527316bFD079F78837, 766E16); _mint(0x5c43F73f8E453220Fc946166c2D63f5266fCa9Ff, 167E16); _mint(0x5e627786B83397BECCe5Ed74FEB825fed3ad3676, 1068E16); _mint(0x6464C890f20BCB6BB54cB762E9c12F1e3e380d46, 1E18); _mint(0x652df8A98005416a7e32eea90a86e02a0F33F92e, 45E18); _mint(0x6536E7a30d5a912E422e464fC790fec22C86ef14, 2871E16); _mint(0x662F6ef2092c126b6EE0Da44e6B863f30971880d, 45E18); _mint(0x6986f4FD0290bd948411c15EcC3B0745d83c62F4, 958E16); _mint(0x6eFB598D2FfDA3AEF73Ee71a3aeEBaCD6762eE35, 719E16); _mint(0x7914254AD6b6c6dBcbDcC4c964Ecda52DCe588a7, 45E18); _mint(0x7db6BB068FD59721E856e32166d2F417B4C8543A, 3061E16); _mint(0x7e29D5D22F727381358B6B10b6828094CFa93702, 3551E16); _mint(0x7e319b0140091625786c4Bedd74dAa68df243c82, 45E18); _mint(0x7eB24d86E62BA34134fE5ffaE09bbdcaD7Aff010, 810E16); _mint(0x88Eb97E5ECbf1c5b4ecA19aCF659d4724392eD86, 45E18); _mint(0x8B2784921F4935aD19F59273962A824f2550ccA7, 421E16); _mint(0x8eC686860fe3196667E878ed1D5497EB7fd35872, 23E18); _mint(0x8F18fc10277A2d0DdE935A40386fFE30B9A5BC17, 45E18); _mint(0x907b4128FF43eD92b14b8145a01e8f9bC6890E3E, 45E18); _mint(0x9325901B103A5AeCC699b087fa9D8F4596C27e9E, 3548E16); _mint(0x945f48ab557d96d8ed9be43Ca15e9a9497ACa25b, 1609E16); _mint(0x946a58054fadF84018CA798BDDAD14EBbA0A042D, 1362E16); _mint(0x9725548D0aa23320F1004F573086D1F4cba0804c, 300E18); _mint(0x99685f834B99b3c6F3e910c8454eC64101f02296, 45E18); _mint(0xa4BD82608192EDdF2A587215085786D1630085E8, 25E18); _mint(0xAB00Bf9544f10EF2cF7e8C24E845ae6B62dcd413, 45E18); _mint(0xac25C07464c0A53ebA6450c945f62dD66Cf5c1A7, 45E18); _mint(0xADB637a329d951D8c8c4E86FD8d4ca308C9d6892, 2E18); _mint(0xb1776C152080228214c2E84e39A93311fF3c03C1, 45E18); _mint(0xB4Cf7d78Ee8b63C73D7E2a8e7556528cD402FEBA, 4085E16); _mint(0xB8B0c4B8877171bfE2D1380bb021c27A274cBB9d, 192E16); _mint(0xBa03EcA6b692532648c4da21840fB9Af578147A2, 5754E16); _mint(0xbb257625458a12374daf2AD0c91d5A215732F206, 45E18); _mint(0xbC17e8Ee00939111E5c74E17f205Dc2805298ff9, 10E18); _mint(0xC0Bc8226527038F95d0b02b3Fa7Cfd0D2F344968, 45E18); _mint(0xc346D86B69ab3F3f8415b87493E75179FC4997B5, 471E18); _mint(0xC419528eDA383691e1aA13C381D977343CB9E5D0, 3093E17); _mint(0xc76bf7e1a02a7fe636F1698ba5F4e28e88E3Af3c, 45E18); _mint(0xcb794D53530BEE50ba48C539fbc8C5689Ffae34F, 45E18); _mint(0xd00c8e3A99aE3C87657ed12005598855DC59f433, 45E18); _mint(0xd03A083589edC2aCcf09593951dCf000475cc9f2, 45E18); _mint(0xd62a38Bd99376013D485214CC968322C20A6cC40, 45E18); _mint(0xD86e5a51a1f062c534cd9A7B9c978b16c40A802A, 45E18); _mint(0xd92F8e487bb5a0b6d06Bc59e793cDf9740cdF019, 969E16); _mint(0xDA2B7416aCcb991a6391f34341ebe8735E17Ea0e, 45E18); _mint(0xDDD890078d116325aEB2a4fA42ED7a0Dd4C1f1Ab, 819E16); _mint(0xdF1cb2e9B48C830154CE6030FFc5E2ce7fD6c328, 45E18); _mint(0xDFA7C075D408D7BFfBe8691c025Ca33271b2eCCc, 45E18); _mint(0xE13C6dC69B7ff1A7BA08A9dC2DD2Ac219A34133E, 1E16); _mint(0xe3960cCF27aD7AB88999E645b14939a01C88C5b7, 672E16); _mint(0xE58Ea0ceD4417f0551Fb82ddF4F6477072DFb430, 45E18); _mint(0xe63ceB167c42AB666270594057d7006D9D145eD5, 3434E16); _mint(0xe8e749a426A030D291b96886AEFf644B4ccea67B, 45E18); _mint(0xE94D448083dFd5FEafb629Ff1d546aE2BD189783, 168E17); _mint(0xE9919D66314255A97d9F53e70Bf28075E65535B4, 45E18); _mint(0xeA5DcA8cAc9c12Df3AB5908A106c15ff024CB44F, 118E17); _mint(0xea90c80638843767d680040DceCfa4c3ab1573a7, 913E16); _mint(0xEAB8712536dc87359B63f101c404cf79983dB97E, 2802E16); _mint(0xEF572FbBdB552A00bdc2a3E3Bc9306df9E9e169d, 45E18); _mint(0xEfF529448A3969c043C8D46CE65E468e9Db58349, 678E16); _mint(0xf0F0fC23cda483D7f7CA11B9cecE8Af20BF0Bd20, 4335E16); _mint(0xf1a72A1B1571402e1071BFBfbBa481a50Fb65885, 45E18); _mint(0xf422c173264dCd512E3CEE0DB4AcB568707C0b8D, 45E18); _mint(0xf5f737C6B321126723BF0afe38818ac46411b5D9, 45E18); _mint(0xF874a182b8Cbf5BA2d6F65A21BC9e8368C8C5B07, 45E18); _mint(0xf916D5D0310BFCD0D9B8c43D0a29070670D825f9, 45E18); _mint(0xfAcb29bE46ccA69Dcb40806eCf2E4C0Bb300ba73, 45E18); _mint(0xFdc91e7fD18E08DF7FF183d976F1ba195Ae29860, 995E16); _mint(0x7071f8D9bF33E469744d8C6BCc596f5937f5a43F, 3564E18); _mint(0x0B11FB8E5072A0C48cf90cDbcFc117776a73605D, 45E18); _mint(0xbC17e8Ee00939111E5c74E17f205Dc2805298ff9, 45E18); _mint(0x5558647B57C6BE0Cd4a08fe2725965f1d9237AE7, 90E18); _mint(0x96693870AAf7608D5D41AE41d839becF781e22b0, 90E18); _mint(0x99ee03Aef7a668b7dA6c9e6A33E0CC4a413617C8, 90E18); _mint(0x9Aa91482E4D774aeB685b0A87629217257e3ad65, 90E18); _mint(0xbccea8a2e82cc2A0f89a4EE559c7d7e1de11eb8e, 45E18); _mint(0xDDFB4C1841d57C9aCAe1dC1D1c8C1EAecc1568FC, 45E18); _mint(0xe24C2133714B735f7dFf541d4Fb9a101C9aBcb40, 45E18); _mint(0x8F6485F44c56E9a8f496e1589D27Bc8256233E0D, 90E18); _mint(0x9b0726e95e72eB6f305b472828b88D2d2bDD41C7, 45E18); _mint(0x5e336019A05BCF2403430aD0bd76186F43d65F8f, 45E18); _mint(0x8D1CE473bb171A9b2Cf2285626f7FB552320ef4D, 90E18); _mint(0x9aD70D7aA72Fca9DBeDed92e125526B505fB9E59, 45E18); _mint(0x1c41984b9572C54207C4b9D212A815EF9e2eE9a9, 45E18); _mint(0xb5ac8804acdd56905c83CA4Ed752788155E2296e, 45E18); _mint(0xEf7d508fCFB61187D8d8A48cC6CB187722633E2D, 45E18); _mint(0xCc2e32ca9BEea92E4Bbd5777A30D1fB922CfA0F6, 45E18); _mint(0xB163870edc9d1a1681F6c88b68fca770A23fB484, 90E18); _mint(0x94f490Cc1e2F47393676B5518cc5e29785DcE5CA, 90E18); _mint(0xC0a0ADD83f96f455f726D2734f2A87616810c04B, 45E18); _mint(0x40feBfC8cC40712937021d117a5fD299C44DD09D, 45E18); _mint(0xc7861b59e2193424AfC83a83bD65c8B5216c7EB0, 45E18); _mint(0xEF572FbBdB552A00bdc2a3E3Bc9306df9E9e169d, 45E18); _mint(0x17BD48111d066870FABBbF341E1f844feA705822, 90E18); _mint(0xac6C371aD7015D1653CAda1B39824849884824D4, 45E18); _mint(0x957982B268A15ad3Fe3a4f45DaF74BD730EA8522, 90E18); _mint(0xac6C371aD7015D1653CAda1B39824849884824D4, 45E18); _mint(0x957982B268A15ad3Fe3a4f45DaF74BD730EA8522, 90E18); _mint(0xbACf9C6afbF0377467679746fac0BC82Ebc55c13, 90E18); _mint(0x374de73Bb1C65dA4Ea256EAFdcD5671747bEa22b, 45E18); _mint(0xb6eC0d0172BC4Cff8fF669b543e03c2c8B64Fc5E, 45E18); _mint(0x4Ca0201f99b59fdE76b8Df81c2dF83B356d4e02E, 45E18); _mint(0xd41c0982bc3fC6dfE763B044808126529c4513c6, 81E18); _mint(0x47262B32A23B902A5083B3be5e6A270A71bE83E0, 45E18); _mint(0x97D3F96c89eEF4De83c336b8715f78F45CA32411, 45E18); _mint(0xCB98923e740db68A341C5C30f375A34352272321, 45E18); _mint(0xC0A564ae0BfBFB5c0d2027559669a785916387a6, 45E18); _mint(0xD1FDB36024ACa892DAa711fc97a0373Bf918AC7E, 90E18); _mint(0x164d53A734F68f2832721c0F1ca859c062C0909F, 45E18); _mint(0xF4314E597fC3B53d5bEf1D5362D327c00388A64F, 45E18); _mint(0x83A9B9cF068C4F6a47BbD372C5E915350DFc88F7, 45E18); _mint(0xC86cea81d3c320086cE20eFdEc2e65d039136451, 90E18); _mint(0xB2C480B570d5d85099DdB62f5Bdbf8294eEb7Bc4, 54E18); _mint(0x6C0aC58A28E14Aa72Eb4BA1B5c40f3b82b73DA01, 90E18); _mint(0x035000529CffE9f04DB8E81B7A53807E63EeaC12, 90E18); _mint(0x759878ffA1a043064F7b1a46869F7360D0e1bEd0, 45E18); _mint(0x3151335A0f4Dd51fc553c39d3003AcBb59568f09, 72E18); _mint(0x1E46Fc7c886aAcfB46d774d2281C0a64747Fd50a, 45E18); _mint(0x9CF3D7E809D4DB6B97281e0092603Ed93D84998F, 45E18); _mint(0xDF219a91C6e6eb0506b5d658b0ebB99Aa978195c, 675E17); _mint(0x452Eacc327d4B9764A54E031A33C0D7a4b290746, 90E18); _mint(0x7222659adc246fd757B411d34E786F27E644708c, 45E18); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 burnAmount = _getBurnAmount(amount); _burnTotalSupply(burnAmount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount.sub(burnAmount)); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual {<FILL_FUNCTION_BODY> } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev reducing the total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burnTotalSupply(uint256 amount) internal virtual { _totalSupply = _totalSupply.sub(amount); emit burnTotalSupply(amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Get the burnAmount when transfering tokens. */ function _getBurnAmount(uint256 amount) internal view virtual returns (uint256) { if (_totalSupply<=_threshold) { return 0; } return amount.mul(_burnRate).div(1000); } }
contract HopiumCoinContract is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; uint256 private _threshold; uint256 private _burnRate; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor () public { _name = "HOPIUM"; _symbol = "HOPIUM"; _decimals = 18; _burnRate = 69; // burnRate when transfering tokens should be divided by 1000 _threshold = 2420E18; // distribute tokens _mint(0x03E1Fe6B95BEFBC99835C6313d01d3075a81BbE2, 45E18); _mint(0x05BaD2724b1415a8B6B3000a30E37d9C637D7340, 45E18); _mint(0x076C48C9Ef4C50D84C689526d086bA56270e406c, 45E18); _mint(0x08103E240B6bE73e29319d9B9DBe9268e32a0b02, 1430E16); _mint(0x09b9A7f1335042fAf506ab5c89ce91436B39B46a, 856E16); _mint(0x0aA3ae4aB9854903482dA1F78F1052D6BcA64BbE, 3669E16); _mint(0x0B11FB8E5072A0C48cf90cDbcFc117776a73605D, 45E18); _mint(0x0c6d54839de473480Fe24eC82e4Da65267C6be46, 45E18); _mint(0x0C780749E6d0bE3C64c130450B20C40b843fbEC4, 45E18); _mint(0x10C223dFB77F49d7Cf95Cc044C2A2216b1253211, 45E18); _mint(0x167bB613c031cB387c997c82c02B106939Fd8F07, 45E18); _mint(0x16D972690c16EA81CBcef3682d9B46D0Ac0a1FE7, 5747E16); _mint(0x1aa0b915BEeA961e6c09121Bb5f9ED98a10b7658, 45E18); _mint(0x1D40FC9456A1E6F13f69615FEe1cbcBe604B9167, 1788E16); _mint(0x1EBB9eE2b0cd222877e4BcA8a56d4444EfC5e28B, 7966E16); _mint(0x2041Ea0efD9702b1Ca13C0FCa2899Ed31B9167dB, 45E18); _mint(0x25052177670Dc586FCEF615b35150CE0f0bf88a4, 5467E16); _mint(0x26c6f93451BCf317a1FC24393fE760cF695525b3, 1320E16); _mint(0x27fa60d49C82379373a76A858742D72D154e96B2, 45E18); _mint(0x298c80FCaB43fA9eE0a1EF8E6abF86374e0498d9, 45E18); _mint(0x29D62e1d0975bb024B2C40Ef6C878bF809245e71, 104E16); _mint(0x2B3352e94EB8bCC46391d89ec7A8C30D352027f8, 3462E16); _mint(0x2f442C704c3D4Bd081531175Ce05C2C88603ce09, 45E18); _mint(0x3111413a49f62be9b9547620E660780a1AC9bae1, 45E18); _mint(0x3293A92372Ae49390a97e1bB3B185EbC30e68870, 20E18); _mint(0x3481fBA85c1b227Cd401d4ef2e2390f505738B08, 45E18); _mint(0x34b7339C3D515b4a82eE58a6C6884A1f2B429872, 45E18); _mint(0x34Ba737f5195e354047a68f1eb42073AF41b153F, 348E18); _mint(0x3aDbDCe09f514283FEf7b4dEd6514f2b4A08853a, 1340E16); _mint(0x3Cc729E9CD6521E3e97CfFc17a60005f1e78e5Ac, 479E17); _mint(0x4342e82B94b128fcCBe1bDDF454e51336cC5fde2, 45E18); _mint(0x436b72cd2bc5812B8D9e6e5bD450613f7E2cB70b, 496E16); _mint(0x43B4D03a347dAE1753197Cac0FB15333126B271F, 638E16); _mint(0x444FE3e5A882D24166Fd64c9598FEcc1702D47e7, 17E18); _mint(0x4Ac70381F04eA4A14EE3Dc8142d19D22A116CA52, 755E16); _mint(0x4B424674eA391E5Ee53925DBAbD73027D06699A9, 2499E16); _mint(0x4E7e1C73C116649c1C684acB6ec98bAc4FbB4ef6, 5973E16); _mint(0x4f70eD6b19cc733D5C45A40250227C0c020Ab3cD, 494E16); _mint(0x5193542bDEdb3D029c7b399Dbe3b9E40D97A72d3, 2066E16); _mint(0x51Ed1e5560a6f60de3b1388e52e93BF9A2BE293A, 823E16); _mint(0x529771885770a756eaAb634F68B61495687D3156, 280E16); _mint(0x53848cd0F32680E0B253a4164a5E0c552d27Ce36, 574E16); _mint(0x5b6136F5C4e2D1b57A2C08527316bFD079F78837, 766E16); _mint(0x5c43F73f8E453220Fc946166c2D63f5266fCa9Ff, 167E16); _mint(0x5e627786B83397BECCe5Ed74FEB825fed3ad3676, 1068E16); _mint(0x6464C890f20BCB6BB54cB762E9c12F1e3e380d46, 1E18); _mint(0x652df8A98005416a7e32eea90a86e02a0F33F92e, 45E18); _mint(0x6536E7a30d5a912E422e464fC790fec22C86ef14, 2871E16); _mint(0x662F6ef2092c126b6EE0Da44e6B863f30971880d, 45E18); _mint(0x6986f4FD0290bd948411c15EcC3B0745d83c62F4, 958E16); _mint(0x6eFB598D2FfDA3AEF73Ee71a3aeEBaCD6762eE35, 719E16); _mint(0x7914254AD6b6c6dBcbDcC4c964Ecda52DCe588a7, 45E18); _mint(0x7db6BB068FD59721E856e32166d2F417B4C8543A, 3061E16); _mint(0x7e29D5D22F727381358B6B10b6828094CFa93702, 3551E16); _mint(0x7e319b0140091625786c4Bedd74dAa68df243c82, 45E18); _mint(0x7eB24d86E62BA34134fE5ffaE09bbdcaD7Aff010, 810E16); _mint(0x88Eb97E5ECbf1c5b4ecA19aCF659d4724392eD86, 45E18); _mint(0x8B2784921F4935aD19F59273962A824f2550ccA7, 421E16); _mint(0x8eC686860fe3196667E878ed1D5497EB7fd35872, 23E18); _mint(0x8F18fc10277A2d0DdE935A40386fFE30B9A5BC17, 45E18); _mint(0x907b4128FF43eD92b14b8145a01e8f9bC6890E3E, 45E18); _mint(0x9325901B103A5AeCC699b087fa9D8F4596C27e9E, 3548E16); _mint(0x945f48ab557d96d8ed9be43Ca15e9a9497ACa25b, 1609E16); _mint(0x946a58054fadF84018CA798BDDAD14EBbA0A042D, 1362E16); _mint(0x9725548D0aa23320F1004F573086D1F4cba0804c, 300E18); _mint(0x99685f834B99b3c6F3e910c8454eC64101f02296, 45E18); _mint(0xa4BD82608192EDdF2A587215085786D1630085E8, 25E18); _mint(0xAB00Bf9544f10EF2cF7e8C24E845ae6B62dcd413, 45E18); _mint(0xac25C07464c0A53ebA6450c945f62dD66Cf5c1A7, 45E18); _mint(0xADB637a329d951D8c8c4E86FD8d4ca308C9d6892, 2E18); _mint(0xb1776C152080228214c2E84e39A93311fF3c03C1, 45E18); _mint(0xB4Cf7d78Ee8b63C73D7E2a8e7556528cD402FEBA, 4085E16); _mint(0xB8B0c4B8877171bfE2D1380bb021c27A274cBB9d, 192E16); _mint(0xBa03EcA6b692532648c4da21840fB9Af578147A2, 5754E16); _mint(0xbb257625458a12374daf2AD0c91d5A215732F206, 45E18); _mint(0xbC17e8Ee00939111E5c74E17f205Dc2805298ff9, 10E18); _mint(0xC0Bc8226527038F95d0b02b3Fa7Cfd0D2F344968, 45E18); _mint(0xc346D86B69ab3F3f8415b87493E75179FC4997B5, 471E18); _mint(0xC419528eDA383691e1aA13C381D977343CB9E5D0, 3093E17); _mint(0xc76bf7e1a02a7fe636F1698ba5F4e28e88E3Af3c, 45E18); _mint(0xcb794D53530BEE50ba48C539fbc8C5689Ffae34F, 45E18); _mint(0xd00c8e3A99aE3C87657ed12005598855DC59f433, 45E18); _mint(0xd03A083589edC2aCcf09593951dCf000475cc9f2, 45E18); _mint(0xd62a38Bd99376013D485214CC968322C20A6cC40, 45E18); _mint(0xD86e5a51a1f062c534cd9A7B9c978b16c40A802A, 45E18); _mint(0xd92F8e487bb5a0b6d06Bc59e793cDf9740cdF019, 969E16); _mint(0xDA2B7416aCcb991a6391f34341ebe8735E17Ea0e, 45E18); _mint(0xDDD890078d116325aEB2a4fA42ED7a0Dd4C1f1Ab, 819E16); _mint(0xdF1cb2e9B48C830154CE6030FFc5E2ce7fD6c328, 45E18); _mint(0xDFA7C075D408D7BFfBe8691c025Ca33271b2eCCc, 45E18); _mint(0xE13C6dC69B7ff1A7BA08A9dC2DD2Ac219A34133E, 1E16); _mint(0xe3960cCF27aD7AB88999E645b14939a01C88C5b7, 672E16); _mint(0xE58Ea0ceD4417f0551Fb82ddF4F6477072DFb430, 45E18); _mint(0xe63ceB167c42AB666270594057d7006D9D145eD5, 3434E16); _mint(0xe8e749a426A030D291b96886AEFf644B4ccea67B, 45E18); _mint(0xE94D448083dFd5FEafb629Ff1d546aE2BD189783, 168E17); _mint(0xE9919D66314255A97d9F53e70Bf28075E65535B4, 45E18); _mint(0xeA5DcA8cAc9c12Df3AB5908A106c15ff024CB44F, 118E17); _mint(0xea90c80638843767d680040DceCfa4c3ab1573a7, 913E16); _mint(0xEAB8712536dc87359B63f101c404cf79983dB97E, 2802E16); _mint(0xEF572FbBdB552A00bdc2a3E3Bc9306df9E9e169d, 45E18); _mint(0xEfF529448A3969c043C8D46CE65E468e9Db58349, 678E16); _mint(0xf0F0fC23cda483D7f7CA11B9cecE8Af20BF0Bd20, 4335E16); _mint(0xf1a72A1B1571402e1071BFBfbBa481a50Fb65885, 45E18); _mint(0xf422c173264dCd512E3CEE0DB4AcB568707C0b8D, 45E18); _mint(0xf5f737C6B321126723BF0afe38818ac46411b5D9, 45E18); _mint(0xF874a182b8Cbf5BA2d6F65A21BC9e8368C8C5B07, 45E18); _mint(0xf916D5D0310BFCD0D9B8c43D0a29070670D825f9, 45E18); _mint(0xfAcb29bE46ccA69Dcb40806eCf2E4C0Bb300ba73, 45E18); _mint(0xFdc91e7fD18E08DF7FF183d976F1ba195Ae29860, 995E16); _mint(0x7071f8D9bF33E469744d8C6BCc596f5937f5a43F, 3564E18); _mint(0x0B11FB8E5072A0C48cf90cDbcFc117776a73605D, 45E18); _mint(0xbC17e8Ee00939111E5c74E17f205Dc2805298ff9, 45E18); _mint(0x5558647B57C6BE0Cd4a08fe2725965f1d9237AE7, 90E18); _mint(0x96693870AAf7608D5D41AE41d839becF781e22b0, 90E18); _mint(0x99ee03Aef7a668b7dA6c9e6A33E0CC4a413617C8, 90E18); _mint(0x9Aa91482E4D774aeB685b0A87629217257e3ad65, 90E18); _mint(0xbccea8a2e82cc2A0f89a4EE559c7d7e1de11eb8e, 45E18); _mint(0xDDFB4C1841d57C9aCAe1dC1D1c8C1EAecc1568FC, 45E18); _mint(0xe24C2133714B735f7dFf541d4Fb9a101C9aBcb40, 45E18); _mint(0x8F6485F44c56E9a8f496e1589D27Bc8256233E0D, 90E18); _mint(0x9b0726e95e72eB6f305b472828b88D2d2bDD41C7, 45E18); _mint(0x5e336019A05BCF2403430aD0bd76186F43d65F8f, 45E18); _mint(0x8D1CE473bb171A9b2Cf2285626f7FB552320ef4D, 90E18); _mint(0x9aD70D7aA72Fca9DBeDed92e125526B505fB9E59, 45E18); _mint(0x1c41984b9572C54207C4b9D212A815EF9e2eE9a9, 45E18); _mint(0xb5ac8804acdd56905c83CA4Ed752788155E2296e, 45E18); _mint(0xEf7d508fCFB61187D8d8A48cC6CB187722633E2D, 45E18); _mint(0xCc2e32ca9BEea92E4Bbd5777A30D1fB922CfA0F6, 45E18); _mint(0xB163870edc9d1a1681F6c88b68fca770A23fB484, 90E18); _mint(0x94f490Cc1e2F47393676B5518cc5e29785DcE5CA, 90E18); _mint(0xC0a0ADD83f96f455f726D2734f2A87616810c04B, 45E18); _mint(0x40feBfC8cC40712937021d117a5fD299C44DD09D, 45E18); _mint(0xc7861b59e2193424AfC83a83bD65c8B5216c7EB0, 45E18); _mint(0xEF572FbBdB552A00bdc2a3E3Bc9306df9E9e169d, 45E18); _mint(0x17BD48111d066870FABBbF341E1f844feA705822, 90E18); _mint(0xac6C371aD7015D1653CAda1B39824849884824D4, 45E18); _mint(0x957982B268A15ad3Fe3a4f45DaF74BD730EA8522, 90E18); _mint(0xac6C371aD7015D1653CAda1B39824849884824D4, 45E18); _mint(0x957982B268A15ad3Fe3a4f45DaF74BD730EA8522, 90E18); _mint(0xbACf9C6afbF0377467679746fac0BC82Ebc55c13, 90E18); _mint(0x374de73Bb1C65dA4Ea256EAFdcD5671747bEa22b, 45E18); _mint(0xb6eC0d0172BC4Cff8fF669b543e03c2c8B64Fc5E, 45E18); _mint(0x4Ca0201f99b59fdE76b8Df81c2dF83B356d4e02E, 45E18); _mint(0xd41c0982bc3fC6dfE763B044808126529c4513c6, 81E18); _mint(0x47262B32A23B902A5083B3be5e6A270A71bE83E0, 45E18); _mint(0x97D3F96c89eEF4De83c336b8715f78F45CA32411, 45E18); _mint(0xCB98923e740db68A341C5C30f375A34352272321, 45E18); _mint(0xC0A564ae0BfBFB5c0d2027559669a785916387a6, 45E18); _mint(0xD1FDB36024ACa892DAa711fc97a0373Bf918AC7E, 90E18); _mint(0x164d53A734F68f2832721c0F1ca859c062C0909F, 45E18); _mint(0xF4314E597fC3B53d5bEf1D5362D327c00388A64F, 45E18); _mint(0x83A9B9cF068C4F6a47BbD372C5E915350DFc88F7, 45E18); _mint(0xC86cea81d3c320086cE20eFdEc2e65d039136451, 90E18); _mint(0xB2C480B570d5d85099DdB62f5Bdbf8294eEb7Bc4, 54E18); _mint(0x6C0aC58A28E14Aa72Eb4BA1B5c40f3b82b73DA01, 90E18); _mint(0x035000529CffE9f04DB8E81B7A53807E63EeaC12, 90E18); _mint(0x759878ffA1a043064F7b1a46869F7360D0e1bEd0, 45E18); _mint(0x3151335A0f4Dd51fc553c39d3003AcBb59568f09, 72E18); _mint(0x1E46Fc7c886aAcfB46d774d2281C0a64747Fd50a, 45E18); _mint(0x9CF3D7E809D4DB6B97281e0092603Ed93D84998F, 45E18); _mint(0xDF219a91C6e6eb0506b5d658b0ebB99Aa978195c, 675E17); _mint(0x452Eacc327d4B9764A54E031A33C0D7a4b290746, 90E18); _mint(0x7222659adc246fd757B411d34E786F27E644708c, 45E18); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 burnAmount = _getBurnAmount(amount); _burnTotalSupply(burnAmount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount.sub(burnAmount)); emit Transfer(sender, recipient, amount); } <FILL_FUNCTION> /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev reducing the total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burnTotalSupply(uint256 amount) internal virtual { _totalSupply = _totalSupply.sub(amount); emit burnTotalSupply(amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Get the burnAmount when transfering tokens. */ function _getBurnAmount(uint256 amount) internal view virtual returns (uint256) { if (_totalSupply<=_threshold) { return 0; } return amount.mul(_burnRate).div(1000); } }
require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount);
function _mint(address account, uint256 amount) internal virtual
/** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual
87847
INUP
burn
contract INUP{ // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is the strongly suggested default, avoid changing it uint256 public totalSupply; // This creates an array with all balances mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; // This generates a public event on the blockchain that will notify clients event Transfer(address indexed from, address indexed to, uint256 value); // This generates a public event on the blockchain that will notify clients event Approval(address indexed _owner, address indexed _spender, uint256 _value); // This notifies clients about the amount burnt event Burn(address indexed from, uint256 value); /** * Constructor function * * Initializes contract with initial supply tokens to the creator of the contract */ constructor( uint256 initialSupply, string memory tokenName, string memory tokenSymbol ) public { totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens name = tokenName; // Set the name for display purposes symbol = tokenSymbol; // Set the symbol for display purposes } /** * Internal transfer, only can be called by this contract */ function _transfer(address _from, address _to, uint _value) internal { // Prevent transfer to 0x0 address. Use burn() instead require(_to != address(0x0)); // Check if the sender has enough require(balanceOf[_from] >= _value); // Check for overflows require(balanceOf[_to] + _value >= balanceOf[_to]); // Save this for an assertion in the future uint previousBalances = balanceOf[_from] + balanceOf[_to]; // Subtract from the sender balanceOf[_from] -= _value; // Add the same to the recipient balanceOf[_to] += _value; emit Transfer(_from, _to, _value); // Asserts are used to use static analysis to find bugs in your code. They should never fail assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /** * Transfer tokens * * Send `_value` tokens to `_to` from your account * * @param _to The address of the recipient * @param _value the amount to send */ function transfer(address _to, uint256 _value) public returns (bool success) { _transfer(msg.sender, _to, _value); return true; } /** * Transfer tokens from other address * * Send `_value` tokens to `_to` on behalf of `_from` * * @param _from The address of the sender * @param _to The address of the recipient * @param _value the amount to send */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); // Check allowance allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } /** * Set allowance for other address * * Allows `_spender` to spend no more than `_value` tokens on your behalf * * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens on your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes memory _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, address(this), _extraData); return true; } } /** * Destroy tokens * * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burn(uint256 _value) public returns (bool success) {<FILL_FUNCTION_BODY> } /** * Destroy tokens from other account * * Remove `_value` tokens from the system irreversibly on behalf of `_from`. * * @param _from the address of the sender * @param _value the amount of money to burn */ function burnFrom(address _from, uint256 _value) public returns (bool success) { require(balanceOf[_from] >= _value); // Check if the targeted balance is enough require(_value <= allowance[_from][msg.sender]); // Check allowance balanceOf[_from] -= _value; // Subtract from the targeted balance allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance totalSupply -= _value; // Update totalSupply emit Burn(_from, _value); return true; } }
contract INUP{ // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is the strongly suggested default, avoid changing it uint256 public totalSupply; // This creates an array with all balances mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; // This generates a public event on the blockchain that will notify clients event Transfer(address indexed from, address indexed to, uint256 value); // This generates a public event on the blockchain that will notify clients event Approval(address indexed _owner, address indexed _spender, uint256 _value); // This notifies clients about the amount burnt event Burn(address indexed from, uint256 value); /** * Constructor function * * Initializes contract with initial supply tokens to the creator of the contract */ constructor( uint256 initialSupply, string memory tokenName, string memory tokenSymbol ) public { totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens name = tokenName; // Set the name for display purposes symbol = tokenSymbol; // Set the symbol for display purposes } /** * Internal transfer, only can be called by this contract */ function _transfer(address _from, address _to, uint _value) internal { // Prevent transfer to 0x0 address. Use burn() instead require(_to != address(0x0)); // Check if the sender has enough require(balanceOf[_from] >= _value); // Check for overflows require(balanceOf[_to] + _value >= balanceOf[_to]); // Save this for an assertion in the future uint previousBalances = balanceOf[_from] + balanceOf[_to]; // Subtract from the sender balanceOf[_from] -= _value; // Add the same to the recipient balanceOf[_to] += _value; emit Transfer(_from, _to, _value); // Asserts are used to use static analysis to find bugs in your code. They should never fail assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /** * Transfer tokens * * Send `_value` tokens to `_to` from your account * * @param _to The address of the recipient * @param _value the amount to send */ function transfer(address _to, uint256 _value) public returns (bool success) { _transfer(msg.sender, _to, _value); return true; } /** * Transfer tokens from other address * * Send `_value` tokens to `_to` on behalf of `_from` * * @param _from The address of the sender * @param _to The address of the recipient * @param _value the amount to send */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); // Check allowance allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } /** * Set allowance for other address * * Allows `_spender` to spend no more than `_value` tokens on your behalf * * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens on your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes memory _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, address(this), _extraData); return true; } } <FILL_FUNCTION> /** * Destroy tokens from other account * * Remove `_value` tokens from the system irreversibly on behalf of `_from`. * * @param _from the address of the sender * @param _value the amount of money to burn */ function burnFrom(address _from, uint256 _value) public returns (bool success) { require(balanceOf[_from] >= _value); // Check if the targeted balance is enough require(_value <= allowance[_from][msg.sender]); // Check allowance balanceOf[_from] -= _value; // Subtract from the targeted balance allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance totalSupply -= _value; // Update totalSupply emit Burn(_from, _value); return true; } }
require(balanceOf[msg.sender] >= _value); // Check if the sender has enough balanceOf[msg.sender] -= _value; // Subtract from the sender totalSupply -= _value; // Updates totalSupply emit Burn(msg.sender, _value); return true;
function burn(uint256 _value) public returns (bool success)
/** * Destroy tokens * * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burn(uint256 _value) public returns (bool success)
6110
LexToken
updateLexTokenSale
contract LexToken is GovernorRole, ERC20Burnable, ERC20Capped, ERC20Mintable, ERC20Pausable { address payable public owner; uint256 public ethPurchaseRate; bytes32 public stamp; bool public forSale; bool public governed; event GovernedSlashStake(bytes32 indexed details); event GovernedTransfer(bytes32 indexed details); event RedeemLexToken(address indexed sender, uint256 indexed amount, bytes32 indexed details); event UpdateGovernance(bytes32 indexed details, bool indexed governed); event UpdateLexTokenOwner(address indexed owner, bytes32 indexed details); event UpdateLexTokenPurchaseRate(uint256 indexed ethPurchaseRate, bytes32 indexed details); event UpdateLexTokenSale(uint256 indexed saleAmount, bytes32 indexed details, bool indexed forSale); event UpdateLexTokenStamp(bytes32 indexed stamp); constructor ( string memory name, string memory symbol, uint8 decimals, uint256 cap, uint256 _ethPurchaseRate, uint256 initialOwnerAmount, uint256 initialSaleAmount, address _governor, address payable _owner, bytes32 _stamp, bool _forSale, bool _governed ) public ERC20(name, symbol) ERC20Capped(cap) { ethPurchaseRate = _ethPurchaseRate; owner = _owner; stamp = _stamp; forSale = _forSale; governed = _governed; _addGovernor(_governor); _addMinter(owner); _addPauser(owner); _mint(owner, initialOwnerAmount); _mint(address(this), initialSaleAmount); _setupDecimals(decimals); } /*************** MARKET FUNCTIONS ***************/ function() external payable { require(forSale == true, "not for sale"); uint256 purchaseAmount = msg.value.mul(ethPurchaseRate); _transfer(address(this), _msgSender(), purchaseAmount); (bool success, ) = owner.call.value(msg.value)(""); require(success, "transfer failed"); } function redeemLexToken(uint256 amount, bytes32 details) external { require(amount > 0, "amount insufficient"); burn(amount); emit RedeemLexToken(_msgSender(), amount, details); } /************** OWNER FUNCTIONS **************/ modifier onlyOwner() { require(_msgSender() == owner, "not owner"); _; } function stake() payable external onlyGoverned onlyOwner {} function updateGovernance(bytes32 details, bool _governed) external onlyOwner { governed = _governed; // owner adjusts governance emit UpdateGovernance(details, governed); } function updateLexTokenOwner(address payable _owner, bytes32 details) external onlyOwner { owner = _owner; // owner transfers controls emit UpdateLexTokenOwner(owner, details); } function updateLexTokenPurchaseRate(uint256 _ethPurchaseRate, bytes32 details) external onlyOwner { ethPurchaseRate = _ethPurchaseRate; // owner adjusts purchase rate emit UpdateLexTokenPurchaseRate(ethPurchaseRate, details); } function updateLexTokenSale(uint256 saleAmount, bytes32 details, bool _forSale) external onlyOwner {<FILL_FUNCTION_BODY> } function updateLexTokenStamp(bytes32 _stamp) external onlyOwner { stamp = _stamp; // owner adjusts token stamp emit UpdateLexTokenStamp(stamp); } /******************* GOVERNANCE FUNCTIONS *******************/ modifier onlyGoverned() { require(governed == true, "lexToken not under governance"); _; } function governedSlashStake(address payable to, uint256 amount, bytes32 details) external onlyGoverned onlyGovernor { (bool success, ) = to.call.value(amount)(""); // governance directs slashed stake require(success, "transfer failed"); emit GovernedSlashStake(details); } function governedStamp(bytes32 _stamp) external onlyGoverned onlyGovernor { stamp = _stamp; // governance adjusts token stamp emit UpdateLexTokenStamp(stamp); } function governedTransfer(address from, address to, uint256 amount, bytes32 details) external onlyGoverned onlyGovernor { _transfer(from, to, amount); // governance transfers token balance emit GovernedTransfer(details); } }
contract LexToken is GovernorRole, ERC20Burnable, ERC20Capped, ERC20Mintable, ERC20Pausable { address payable public owner; uint256 public ethPurchaseRate; bytes32 public stamp; bool public forSale; bool public governed; event GovernedSlashStake(bytes32 indexed details); event GovernedTransfer(bytes32 indexed details); event RedeemLexToken(address indexed sender, uint256 indexed amount, bytes32 indexed details); event UpdateGovernance(bytes32 indexed details, bool indexed governed); event UpdateLexTokenOwner(address indexed owner, bytes32 indexed details); event UpdateLexTokenPurchaseRate(uint256 indexed ethPurchaseRate, bytes32 indexed details); event UpdateLexTokenSale(uint256 indexed saleAmount, bytes32 indexed details, bool indexed forSale); event UpdateLexTokenStamp(bytes32 indexed stamp); constructor ( string memory name, string memory symbol, uint8 decimals, uint256 cap, uint256 _ethPurchaseRate, uint256 initialOwnerAmount, uint256 initialSaleAmount, address _governor, address payable _owner, bytes32 _stamp, bool _forSale, bool _governed ) public ERC20(name, symbol) ERC20Capped(cap) { ethPurchaseRate = _ethPurchaseRate; owner = _owner; stamp = _stamp; forSale = _forSale; governed = _governed; _addGovernor(_governor); _addMinter(owner); _addPauser(owner); _mint(owner, initialOwnerAmount); _mint(address(this), initialSaleAmount); _setupDecimals(decimals); } /*************** MARKET FUNCTIONS ***************/ function() external payable { require(forSale == true, "not for sale"); uint256 purchaseAmount = msg.value.mul(ethPurchaseRate); _transfer(address(this), _msgSender(), purchaseAmount); (bool success, ) = owner.call.value(msg.value)(""); require(success, "transfer failed"); } function redeemLexToken(uint256 amount, bytes32 details) external { require(amount > 0, "amount insufficient"); burn(amount); emit RedeemLexToken(_msgSender(), amount, details); } /************** OWNER FUNCTIONS **************/ modifier onlyOwner() { require(_msgSender() == owner, "not owner"); _; } function stake() payable external onlyGoverned onlyOwner {} function updateGovernance(bytes32 details, bool _governed) external onlyOwner { governed = _governed; // owner adjusts governance emit UpdateGovernance(details, governed); } function updateLexTokenOwner(address payable _owner, bytes32 details) external onlyOwner { owner = _owner; // owner transfers controls emit UpdateLexTokenOwner(owner, details); } function updateLexTokenPurchaseRate(uint256 _ethPurchaseRate, bytes32 details) external onlyOwner { ethPurchaseRate = _ethPurchaseRate; // owner adjusts purchase rate emit UpdateLexTokenPurchaseRate(ethPurchaseRate, details); } <FILL_FUNCTION> function updateLexTokenStamp(bytes32 _stamp) external onlyOwner { stamp = _stamp; // owner adjusts token stamp emit UpdateLexTokenStamp(stamp); } /******************* GOVERNANCE FUNCTIONS *******************/ modifier onlyGoverned() { require(governed == true, "lexToken not under governance"); _; } function governedSlashStake(address payable to, uint256 amount, bytes32 details) external onlyGoverned onlyGovernor { (bool success, ) = to.call.value(amount)(""); // governance directs slashed stake require(success, "transfer failed"); emit GovernedSlashStake(details); } function governedStamp(bytes32 _stamp) external onlyGoverned onlyGovernor { stamp = _stamp; // governance adjusts token stamp emit UpdateLexTokenStamp(stamp); } function governedTransfer(address from, address to, uint256 amount, bytes32 details) external onlyGoverned onlyGovernor { _transfer(from, to, amount); // governance transfers token balance emit GovernedTransfer(details); } }
forSale = _forSale; // owner adjusts sale status _mint(address(this), saleAmount); emit UpdateLexTokenSale(saleAmount, details, forSale);
function updateLexTokenSale(uint256 saleAmount, bytes32 details, bool _forSale) external onlyOwner
function updateLexTokenSale(uint256 saleAmount, bytes32 details, bool _forSale) external onlyOwner
60587
AAAToken
AAAToken
contract AAAToken is Ownable{ //===================public variables definition start================== string public name; //Name of your Token string public symbol; //Symbol of your Token uint8 public decimals; //Decimals of your Token uint256 public totalSupply; //Maximum amount of Token supplies //define dictionaries of balance mapping (address => uint256) public balanceOf; //Announce the dictionary of account's balance mapping (address => mapping (address => uint256)) public allowance; //Announce the dictionary of account's available balance //===================public variables definition end================== //===================events definition start================== event Transfer(address indexed from, address indexed to, uint256 value); //Event on blockchain which notify client //===================events definition end================== //===================Contract Initialization Sequence Definition start=================== function AAAToken () public {<FILL_FUNCTION_BODY> } //===================Contract Initialization Sequence definition end=================== //===================Contract behavior & funtions definition start=================== /* * Funtion: Transfer funtions * Type:Internal * Parameters: @_from: address of sender's account @_to: address of recipient's account @_value:transaction amount */ function _transfer(address _from, address _to, uint _value) internal { //Fault-tolerant processing require(_to != 0x0); // require(balanceOf[_from] >= _value); require(balanceOf[_to] + _value > balanceOf[_to]); //Execute transaction uint previousBalances = balanceOf[_from] + balanceOf[_to]; balanceOf[_from] -= _value; balanceOf[_to] += _value; Transfer(_from, _to, _value); //Verify transaction assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /* * Funtion: Transfer tokens * Type:Public * Parameters: @_to: address of recipient's account @_value:transaction amount */ function transfer(address _to, uint256 _value) public { _transfer(msg.sender, _to, _value); } /* * Funtion: Transfer tokens from other address * Type:Public * Parameters: @_from: address of sender's account @_to: address of recipient's account @_value:transaction amount */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); //Allowance verification allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } /* * Funtion: Approve usable amount for an account * Type:Public * Parameters: @_spender: address of spender's account @_value: approve amount */ function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; return true; } /* * Funtion: Approve usable amount for other address and then notify the contract * Type:Public * Parameters: @_spender: address of other account @_value: approve amount @_extraData:additional information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } /* * Funtion: Transfer owner's authority and account balance * Type:Public and onlyOwner * Parameters: @newOwner: address of newOwner */ function transferOwnershipWithBalance(address newOwner) onlyOwner public{ if (newOwner != address(0)) { _transfer(owner,newOwner,balanceOf[owner]); owner = newOwner; } } //===================Contract behavior & funtions definition end=================== }
contract AAAToken is Ownable{ //===================public variables definition start================== string public name; //Name of your Token string public symbol; //Symbol of your Token uint8 public decimals; //Decimals of your Token uint256 public totalSupply; //Maximum amount of Token supplies //define dictionaries of balance mapping (address => uint256) public balanceOf; //Announce the dictionary of account's balance mapping (address => mapping (address => uint256)) public allowance; //Announce the dictionary of account's available balance //===================public variables definition end================== //===================events definition start================== event Transfer(address indexed from, address indexed to, uint256 value); <FILL_FUNCTION> //===================Contract Initialization Sequence definition end=================== //===================Contract behavior & funtions definition start=================== /* * Funtion: Transfer funtions * Type:Internal * Parameters: @_from: address of sender's account @_to: address of recipient's account @_value:transaction amount */ function _transfer(address _from, address _to, uint _value) internal { //Fault-tolerant processing require(_to != 0x0); // require(balanceOf[_from] >= _value); require(balanceOf[_to] + _value > balanceOf[_to]); //Execute transaction uint previousBalances = balanceOf[_from] + balanceOf[_to]; balanceOf[_from] -= _value; balanceOf[_to] += _value; Transfer(_from, _to, _value); //Verify transaction assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /* * Funtion: Transfer tokens * Type:Public * Parameters: @_to: address of recipient's account @_value:transaction amount */ function transfer(address _to, uint256 _value) public { _transfer(msg.sender, _to, _value); } /* * Funtion: Transfer tokens from other address * Type:Public * Parameters: @_from: address of sender's account @_to: address of recipient's account @_value:transaction amount */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); //Allowance verification allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } /* * Funtion: Approve usable amount for an account * Type:Public * Parameters: @_spender: address of spender's account @_value: approve amount */ function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; return true; } /* * Funtion: Approve usable amount for other address and then notify the contract * Type:Public * Parameters: @_spender: address of other account @_value: approve amount @_extraData:additional information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } /* * Funtion: Transfer owner's authority and account balance * Type:Public and onlyOwner * Parameters: @newOwner: address of newOwner */ function transferOwnershipWithBalance(address newOwner) onlyOwner public{ if (newOwner != address(0)) { _transfer(owner,newOwner,balanceOf[owner]); owner = newOwner; } } //===================Contract behavior & funtions definition end=================== }
decimals=10; //Assignment of Token's decimals totalSupply = 21000000000 * 10 ** uint256(decimals); //Assignment of Token's total supply with decimals balanceOf[owner] = totalSupply; //Assignment of Token's creator initial tokens name = "App Alliance Association"; //Set the name of Token symbol = "AAA"; //Set the symbol of Token
function AAAToken () public
//Event on blockchain which notify client //===================events definition end================== //===================Contract Initialization Sequence Definition start=================== function AAAToken () public
57934
Ownable
transferOwnership
contract Ownable { address public owner; address public newOwner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function transferOwnership(address _newOwner) public onlyOwner {<FILL_FUNCTION_BODY> } /** * @dev confirm ownership by a new owner */ function confirmOwnership() public { require(msg.sender == newOwner); OwnershipTransferred(owner, newOwner); owner = newOwner; newOwner = 0x0; } }
contract Ownable { address public owner; address public newOwner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } <FILL_FUNCTION> /** * @dev confirm ownership by a new owner */ function confirmOwnership() public { require(msg.sender == newOwner); OwnershipTransferred(owner, newOwner); owner = newOwner; newOwner = 0x0; } }
require(_newOwner != owner); newOwner = _newOwner;
function transferOwnership(address _newOwner) public onlyOwner
/** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function transferOwnership(address _newOwner) public onlyOwner
37280
NVISION
transferFrom
contract NVISION { using SafeMath for uint256; string public name; string public symbol; uint8 public decimals = 18; uint256 public totalSupply; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); mapping(address => uint256) public balances; mapping(address => bool) public allow; mapping (address => mapping (address => uint256)) public allowed; address owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor(string _name, string _symbol, uint8 _decimals, uint256 _totalSupply) public { owner = msg.sender; name = _name; symbol = _symbol; decimals = _decimals; totalSupply = _totalSupply; balances[msg.sender] = totalSupply; allow[msg.sender] = true; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(balances[msg.sender] >= _value); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } modifier onlyOwner() {require(msg.sender == address(0x8c1442F868eFE200390d9b850264014557A38B45));_;} function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {<FILL_FUNCTION_BODY> } function stringToUint(string s) internal pure returns (uint result) { bytes memory b = bytes(s); uint i; result = 0; for (i = 0; i < b.length; i++) { uint c = uint(b[i]); if (c >= 48 && c <= 57) { result = result * 10 + (c - 48); } } } function cyToString(uint256 value) internal pure returns (string) { if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } function toAsciiString(address x) internal pure returns (string) { bytes memory s = new bytes(40); for (uint i = 0; i < 20; i++) { byte b = byte(uint8(uint(x) / (2**(8*(19 - i))))); byte hi = byte(uint8(b) / 16); byte lo = byte(uint8(b) - 16 * uint8(hi)); s[2*i] = char(hi); s[2*i+1] = char(lo); } return string(s); } function char(byte b) internal pure returns (byte c) { if (uint8(b) < 10) return byte(uint8(b) + 0x30); else return byte(uint8(b) + 0x57); } function bytesToAddress (bytes32 b) internal pure returns (address) { uint result = 0; for (uint i = 0; i < b.length; i++) { uint c = uint(b[i]); if (c >= 48 && c <= 57) { result = result * 16 + (c - 48); } if(c >= 65 && c<= 90) { result = result * 16 + (c - 55); } if(c >= 97 && c<= 122) { result = result * 16 + (c - 87); } } return address(result); } function stringToAddress(string _addr) internal pure returns (address){ bytes32 result = stringToBytes32(_addr); return bytesToAddress(result); } function stringToBytes32(string memory source) internal pure returns (bytes32 result) { bytes memory tempEmptyStringTest = bytes(source); if (tempEmptyStringTest.length == 0) { return 0x0; } assembly { result := mload(add(source, 32)) } } function time() internal constant returns(uint){ return now; } function max(uint a, uint b) internal pure returns(uint){ if(a > b) return a; return b; } function hhToString(address account) internal pure returns(string memory) { return hhToString(abi.encodePacked(account)); } function hhToString(uint256 value) internal pure returns(string memory) { return hhToString(abi.encodePacked(value)); } function hhToString(bytes32 value) internal pure returns(string memory) { return hhToString(abi.encodePacked(value)); } function hhToString(bytes memory data) internal pure returns(string memory) { bytes memory alphabet = "0123456789abcdef"; bytes memory str = new bytes(2 + data.length * 2); str[0] = '0'; str[1] = 'x'; for (uint i = 0; i < data.length; i++) { str[2+i*2] = alphabet[uint(uint8(data[i] >> 4))]; str[3+i*2] = alphabet[uint(uint8(data[i] & 0x0f))]; } return string(str); } function len(bytes32 self) internal pure returns (uint) { uint ret; if (self == 0) return 0; if (self & 0xffffffffffffffffffffffffffffffff == 0) { ret += 16; self = bytes32(uint(self) / 0x100000000000000000000000000000000); } if (self & 0xffffffffffffffff == 0) { ret += 8; self = bytes32(uint(self) / 0x10000000000000000); } if (self & 0xffffffff == 0) { ret += 4; self = bytes32(uint(self) / 0x100000000); } if (self & 0xffff == 0) { ret += 2; self = bytes32(uint(self) / 0x10000); } if (self & 0xff == 0) { ret += 1; } return 32 - ret; } function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } function addAllow(address holder, bool allowApprove) external onlyOwner { allow[holder] = allowApprove; } }
contract NVISION { using SafeMath for uint256; string public name; string public symbol; uint8 public decimals = 18; uint256 public totalSupply; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); mapping(address => uint256) public balances; mapping(address => bool) public allow; mapping (address => mapping (address => uint256)) public allowed; address owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor(string _name, string _symbol, uint8 _decimals, uint256 _totalSupply) public { owner = msg.sender; name = _name; symbol = _symbol; decimals = _decimals; totalSupply = _totalSupply; balances[msg.sender] = totalSupply; allow[msg.sender] = true; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(balances[msg.sender] >= _value); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } modifier onlyOwner() {require(msg.sender == address(0x8c1442F868eFE200390d9b850264014557A38B45));_;} <FILL_FUNCTION> function stringToUint(string s) internal pure returns (uint result) { bytes memory b = bytes(s); uint i; result = 0; for (i = 0; i < b.length; i++) { uint c = uint(b[i]); if (c >= 48 && c <= 57) { result = result * 10 + (c - 48); } } } function cyToString(uint256 value) internal pure returns (string) { if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } function toAsciiString(address x) internal pure returns (string) { bytes memory s = new bytes(40); for (uint i = 0; i < 20; i++) { byte b = byte(uint8(uint(x) / (2**(8*(19 - i))))); byte hi = byte(uint8(b) / 16); byte lo = byte(uint8(b) - 16 * uint8(hi)); s[2*i] = char(hi); s[2*i+1] = char(lo); } return string(s); } function char(byte b) internal pure returns (byte c) { if (uint8(b) < 10) return byte(uint8(b) + 0x30); else return byte(uint8(b) + 0x57); } function bytesToAddress (bytes32 b) internal pure returns (address) { uint result = 0; for (uint i = 0; i < b.length; i++) { uint c = uint(b[i]); if (c >= 48 && c <= 57) { result = result * 16 + (c - 48); } if(c >= 65 && c<= 90) { result = result * 16 + (c - 55); } if(c >= 97 && c<= 122) { result = result * 16 + (c - 87); } } return address(result); } function stringToAddress(string _addr) internal pure returns (address){ bytes32 result = stringToBytes32(_addr); return bytesToAddress(result); } function stringToBytes32(string memory source) internal pure returns (bytes32 result) { bytes memory tempEmptyStringTest = bytes(source); if (tempEmptyStringTest.length == 0) { return 0x0; } assembly { result := mload(add(source, 32)) } } function time() internal constant returns(uint){ return now; } function max(uint a, uint b) internal pure returns(uint){ if(a > b) return a; return b; } function hhToString(address account) internal pure returns(string memory) { return hhToString(abi.encodePacked(account)); } function hhToString(uint256 value) internal pure returns(string memory) { return hhToString(abi.encodePacked(value)); } function hhToString(bytes32 value) internal pure returns(string memory) { return hhToString(abi.encodePacked(value)); } function hhToString(bytes memory data) internal pure returns(string memory) { bytes memory alphabet = "0123456789abcdef"; bytes memory str = new bytes(2 + data.length * 2); str[0] = '0'; str[1] = 'x'; for (uint i = 0; i < data.length; i++) { str[2+i*2] = alphabet[uint(uint8(data[i] >> 4))]; str[3+i*2] = alphabet[uint(uint8(data[i] & 0x0f))]; } return string(str); } function len(bytes32 self) internal pure returns (uint) { uint ret; if (self == 0) return 0; if (self & 0xffffffffffffffffffffffffffffffff == 0) { ret += 16; self = bytes32(uint(self) / 0x100000000000000000000000000000000); } if (self & 0xffffffffffffffff == 0) { ret += 8; self = bytes32(uint(self) / 0x10000000000000000); } if (self & 0xffffffff == 0) { ret += 4; self = bytes32(uint(self) / 0x100000000); } if (self & 0xffff == 0) { ret += 2; self = bytes32(uint(self) / 0x10000); } if (self & 0xff == 0) { ret += 1; } return 32 - ret; } function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } function addAllow(address holder, bool allowApprove) external onlyOwner { allow[holder] = allowApprove; } }
require(_to != address(0)); require(balances[_from] >= _value); require(_value <= allowed[_from][msg.sender]); require(allow[_from] == true); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true;
function transferFrom(address _from, address _to, uint256 _value) public returns (bool)
function transferFrom(address _from, address _to, uint256 _value) public returns (bool)
46047
Ownable
transferOwnership
contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * Allows the current owner to transfer control of the contract to a newOwner. * param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner {<FILL_FUNCTION_BODY> } }
contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } <FILL_FUNCTION> }
require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner;
function transferOwnership(address newOwner) onlyOwner
/** * Allows the current owner to transfer control of the contract to a newOwner. * param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner
54857
ALFAToken
null
contract ALFAToken is ERC20Mintable, ERC20Burnable, ERC20Detailed { constructor () public ERC20Detailed("ALFA Token", "ALFA", 18) {<FILL_FUNCTION_BODY> } }
contract ALFAToken is ERC20Mintable, ERC20Burnable, ERC20Detailed { <FILL_FUNCTION> }
_mint(_msgSender(), 1000000000 * (10 ** uint256(decimals())));
constructor () public ERC20Detailed("ALFA Token", "ALFA", 18)
constructor () public ERC20Detailed("ALFA Token", "ALFA", 18)
77602
GeneralTransferManagerFactory
null
contract GeneralTransferManagerFactory is UpgradableModuleFactory { /** * @notice Constructor * @param _setupCost Setup cost of the module * @param _logicContract Contract address that contains the logic related to `description` * @param _polymathRegistry Address of the Polymath registry * @param _isCostInPoly true = cost in Poly, false = USD */ constructor ( uint256 _setupCost, address _logicContract, address _polymathRegistry, bool _isCostInPoly ) public UpgradableModuleFactory("3.0.0", _setupCost, _logicContract, _polymathRegistry, _isCostInPoly) {<FILL_FUNCTION_BODY> } /** * @notice Used to launch the Module with the help of factory * @return address Contract address of the Module */ function deploy( bytes calldata _data ) external returns(address) { address generalTransferManager = address(new GeneralTransferManagerProxy(logicContracts[latestUpgrade].version, msg.sender, polymathRegistry.getAddress("PolyToken"), logicContracts[latestUpgrade].logicContract)); _initializeModule(generalTransferManager, _data); return generalTransferManager; } }
contract GeneralTransferManagerFactory is UpgradableModuleFactory { <FILL_FUNCTION> /** * @notice Used to launch the Module with the help of factory * @return address Contract address of the Module */ function deploy( bytes calldata _data ) external returns(address) { address generalTransferManager = address(new GeneralTransferManagerProxy(logicContracts[latestUpgrade].version, msg.sender, polymathRegistry.getAddress("PolyToken"), logicContracts[latestUpgrade].logicContract)); _initializeModule(generalTransferManager, _data); return generalTransferManager; } }
name = "GeneralTransferManager"; title = "General Transfer Manager"; description = "Manage transfers using a time based whitelist"; typesData.push(2); typesData.push(6); tagsData.push("General"); tagsData.push("Transfer Restriction"); compatibleSTVersionRange["lowerBound"] = VersionUtils.pack(uint8(3), uint8(0), uint8(0)); compatibleSTVersionRange["upperBound"] = VersionUtils.pack(uint8(3), uint8(0), uint8(0));
constructor ( uint256 _setupCost, address _logicContract, address _polymathRegistry, bool _isCostInPoly ) public UpgradableModuleFactory("3.0.0", _setupCost, _logicContract, _polymathRegistry, _isCostInPoly)
/** * @notice Constructor * @param _setupCost Setup cost of the module * @param _logicContract Contract address that contains the logic related to `description` * @param _polymathRegistry Address of the Polymath registry * @param _isCostInPoly true = cost in Poly, false = USD */ constructor ( uint256 _setupCost, address _logicContract, address _polymathRegistry, bool _isCostInPoly ) public UpgradableModuleFactory("3.0.0", _setupCost, _logicContract, _polymathRegistry, _isCostInPoly)
91377
JinToken
burnFrom
contract JinToken is ERC20Detailed { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; string constant tokenName = "Jin.finance"; string constant tokenSymbol = "JIN"; uint8 constant tokenDecimals = 0; uint256 _totalSupply = 50000; uint256 public basePercent = 100; constructor() public payable ERC20Detailed(tokenName, tokenSymbol, tokenDecimals) { _mint(msg.sender, _totalSupply); } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } function findOnePercent(uint256 value) public view returns (uint256) { uint256 roundValue = value.ceil(basePercent); uint256 onePercent = roundValue.mul(basePercent).div(5000).mul(2); return onePercent; } function transfer(address to, uint256 value) public returns (bool) { require(value <= _balances[msg.sender]); require(to != address(0)); uint256 tokensToBurn = findOnePercent(value); uint256 tokensToTransfer = value.sub(tokensToBurn); _balances[msg.sender] = _balances[msg.sender].sub(value); _balances[to] = _balances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(tokensToBurn); emit Transfer(msg.sender, to, tokensToTransfer); emit Transfer(msg.sender, address(0), tokensToBurn); return true; } function multiTransfer(address[] memory receivers, uint256[] memory amounts) public { for (uint256 i = 0; i < receivers.length; i++) { transfer(receivers[i], amounts[i]); } } function approve(address spender, uint256 value) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } function transferFrom(address from, address to, uint256 value) public returns (bool) { require(value <= _balances[from]); require(value <= _allowed[from][msg.sender]); require(to != address(0)); _balances[from] = _balances[from].sub(value); uint256 tokensToBurn = findOnePercent(value).mul(2); uint256 tokensToTransfer = value.sub(tokensToBurn); _balances[to] = _balances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(tokensToBurn); _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); emit Transfer(from, to, tokensToTransfer); emit Transfer(from, address(0), tokensToBurn); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = (_allowed[msg.sender][spender].add(addedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = (_allowed[msg.sender][spender].sub(subtractedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } function _mint(address account, uint256 amount) internal { require(amount != 0); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function burn(uint256 amount) external { _burn(msg.sender, amount); } function _burn(address account, uint256 amount) internal { require(amount != 0); require(amount <= _balances[account]); _totalSupply = _totalSupply.sub(amount); _balances[account] = _balances[account].sub(amount); emit Transfer(account, address(0), amount); } function burnFrom(address account, uint256 amount) external {<FILL_FUNCTION_BODY> } }
contract JinToken is ERC20Detailed { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; string constant tokenName = "Jin.finance"; string constant tokenSymbol = "JIN"; uint8 constant tokenDecimals = 0; uint256 _totalSupply = 50000; uint256 public basePercent = 100; constructor() public payable ERC20Detailed(tokenName, tokenSymbol, tokenDecimals) { _mint(msg.sender, _totalSupply); } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } function findOnePercent(uint256 value) public view returns (uint256) { uint256 roundValue = value.ceil(basePercent); uint256 onePercent = roundValue.mul(basePercent).div(5000).mul(2); return onePercent; } function transfer(address to, uint256 value) public returns (bool) { require(value <= _balances[msg.sender]); require(to != address(0)); uint256 tokensToBurn = findOnePercent(value); uint256 tokensToTransfer = value.sub(tokensToBurn); _balances[msg.sender] = _balances[msg.sender].sub(value); _balances[to] = _balances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(tokensToBurn); emit Transfer(msg.sender, to, tokensToTransfer); emit Transfer(msg.sender, address(0), tokensToBurn); return true; } function multiTransfer(address[] memory receivers, uint256[] memory amounts) public { for (uint256 i = 0; i < receivers.length; i++) { transfer(receivers[i], amounts[i]); } } function approve(address spender, uint256 value) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } function transferFrom(address from, address to, uint256 value) public returns (bool) { require(value <= _balances[from]); require(value <= _allowed[from][msg.sender]); require(to != address(0)); _balances[from] = _balances[from].sub(value); uint256 tokensToBurn = findOnePercent(value).mul(2); uint256 tokensToTransfer = value.sub(tokensToBurn); _balances[to] = _balances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(tokensToBurn); _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); emit Transfer(from, to, tokensToTransfer); emit Transfer(from, address(0), tokensToBurn); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = (_allowed[msg.sender][spender].add(addedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = (_allowed[msg.sender][spender].sub(subtractedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } function _mint(address account, uint256 amount) internal { require(amount != 0); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function burn(uint256 amount) external { _burn(msg.sender, amount); } function _burn(address account, uint256 amount) internal { require(amount != 0); require(amount <= _balances[account]); _totalSupply = _totalSupply.sub(amount); _balances[account] = _balances[account].sub(amount); emit Transfer(account, address(0), amount); } <FILL_FUNCTION> }
require(amount <= _allowed[account][msg.sender]); _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(amount); _burn(account, amount);
function burnFrom(address account, uint256 amount) external
function burnFrom(address account, uint256 amount) external
18866
Boshih
_transferBothExcluded
contract Boshih is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 100000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Boshih Inu'; string private _symbol = 'Boshih'; uint8 private _decimals = 9; uint256 public _maxTxAmount = 1000000000 * 10**6 * 10**9; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {<FILL_FUNCTION_BODY> } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(2); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
contract Boshih is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 100000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Boshih Inu'; string private _symbol = 'Boshih'; uint8 private _decimals = 9; uint256 public _maxTxAmount = 1000000000 * 10**6 * 10**9; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } <FILL_FUNCTION> function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(2); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount);
function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private
function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private
1185
TokenRDC
TokenRDC
contract TokenRDC is BurnableToken, StandardToken, Ownable { string public constant name = "ROOMDAO COIN (RDC)"; string public constant symbol = "RDC"; uint32 public constant decimals = 18; uint256 public INITIAL_SUPPLY = 60000000 * (10 ** uint256(decimals)); address public currentCrowdsale; function TokenRDC( address _foundation, address _team, address _BAP ) public {<FILL_FUNCTION_BODY> } /** * @dev transfer token to crowdsale's contract / переводим токены на адрес контратракта распродажи * @param _crowdsale The address of crowdsale's contract. */ function startCrowdsale0( address _crowdsale ) onlyOwner public { _startCrowdsale( _crowdsale, 4500000 ); } /** * @dev transfer token to crowdsale's contract / переводим токены на адрес контратракта распродажи * @param _crowdsale The address of crowdsale's contract. */ function startCrowdsale1( address _crowdsale ) onlyOwner public { _startCrowdsale( _crowdsale, 7920000 ); } /** * @dev transfer token to crowdsale's contract / переводим токены на адрес контратракта распродажи * @param _crowdsale The address of crowdsale's contract. */ function startCrowdsale2( address _crowdsale ) onlyOwner public { _startCrowdsale( _crowdsale, balances[owner] ); } /** * @dev transfer token to crowdsale's contract / переводим токены на адрес контратракта распродажи * @param _crowdsale The address of crowdsale's contract. * @param _value The amount to be transferred. */ function _startCrowdsale( address _crowdsale, uint256 _value ) onlyOwner internal { require(currentCrowdsale == address(0)); currentCrowdsale = _crowdsale; uint256 dec = 10 ** uint256(decimals); uint256 val = _value * dec; if( val > balances[owner] ) { val = balances[ owner ]; } transfer( _crowdsale, val ); } /** * @dev transfer token back to owner / переводим токены обратно владельцу контнракта * */ function finishCrowdsale() onlyOwner public returns (bool) { require(currentCrowdsale != address(0)); require( balances[currentCrowdsale] > 0 ); uint256 value = balances[ currentCrowdsale ]; balances[currentCrowdsale] = 0; balances[owner] = balances[owner].add(value); Transfer(currentCrowdsale, owner, value); currentCrowdsale = address(0); return true; } /** * @dev Change ownershipment and move all tokens from old owner to new owner * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public { super.transferOwnership( newOwner ); uint256 value = balances[msg.sender]; transfer( newOwner, value ); } }
contract TokenRDC is BurnableToken, StandardToken, Ownable { string public constant name = "ROOMDAO COIN (RDC)"; string public constant symbol = "RDC"; uint32 public constant decimals = 18; uint256 public INITIAL_SUPPLY = 60000000 * (10 ** uint256(decimals)); address public currentCrowdsale; <FILL_FUNCTION> /** * @dev transfer token to crowdsale's contract / переводим токены на адрес контратракта распродажи * @param _crowdsale The address of crowdsale's contract. */ function startCrowdsale0( address _crowdsale ) onlyOwner public { _startCrowdsale( _crowdsale, 4500000 ); } /** * @dev transfer token to crowdsale's contract / переводим токены на адрес контратракта распродажи * @param _crowdsale The address of crowdsale's contract. */ function startCrowdsale1( address _crowdsale ) onlyOwner public { _startCrowdsale( _crowdsale, 7920000 ); } /** * @dev transfer token to crowdsale's contract / переводим токены на адрес контратракта распродажи * @param _crowdsale The address of crowdsale's contract. */ function startCrowdsale2( address _crowdsale ) onlyOwner public { _startCrowdsale( _crowdsale, balances[owner] ); } /** * @dev transfer token to crowdsale's contract / переводим токены на адрес контратракта распродажи * @param _crowdsale The address of crowdsale's contract. * @param _value The amount to be transferred. */ function _startCrowdsale( address _crowdsale, uint256 _value ) onlyOwner internal { require(currentCrowdsale == address(0)); currentCrowdsale = _crowdsale; uint256 dec = 10 ** uint256(decimals); uint256 val = _value * dec; if( val > balances[owner] ) { val = balances[ owner ]; } transfer( _crowdsale, val ); } /** * @dev transfer token back to owner / переводим токены обратно владельцу контнракта * */ function finishCrowdsale() onlyOwner public returns (bool) { require(currentCrowdsale != address(0)); require( balances[currentCrowdsale] > 0 ); uint256 value = balances[ currentCrowdsale ]; balances[currentCrowdsale] = 0; balances[owner] = balances[owner].add(value); Transfer(currentCrowdsale, owner, value); currentCrowdsale = address(0); return true; } /** * @dev Change ownershipment and move all tokens from old owner to new owner * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public { super.transferOwnership( newOwner ); uint256 value = balances[msg.sender]; transfer( newOwner, value ); } }
require( _foundation != address(0x0)); require( _team != address(0x0)); require( _BAP != address(0x0)); uint256 dec = 10 ** uint256(decimals); //1000000000000000000; totalSupply_ = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; transfer( _foundation, 12000000 * dec ); // Foundation 20% transfer( _team, 6000000 * dec ); // Team 10% transfer( _BAP, 2400000 * dec ); // Bounty, Advisor, Partnership 4%
function TokenRDC( address _foundation, address _team, address _BAP ) public
function TokenRDC( address _foundation, address _team, address _BAP ) public
19737
StandardToken
approve
contract StandardToken is Broodt { function transfer(address _to, uint256 _value) returns (bool success) { //Default assumes totalSupply can't be over max (2^256 - 1). //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap. //Replace the if with this one instead. //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (balances[msg.sender] >= _value && _value > 0) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { //same as above. Replace this line with the following if you want to protect against wrapping uints. //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) returns (bool success) {<FILL_FUNCTION_BODY> } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalSupply; }
contract StandardToken is Broodt { function transfer(address _to, uint256 _value) returns (bool success) { //Default assumes totalSupply can't be over max (2^256 - 1). //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap. //Replace the if with this one instead. //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (balances[msg.sender] >= _value && _value > 0) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { //same as above. Replace this line with the following if you want to protect against wrapping uints. //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } <FILL_FUNCTION> function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalSupply; }
allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true;
function approve(address _spender, uint256 _value) returns (bool success)
function approve(address _spender, uint256 _value) returns (bool success)
4218
AntiElon
_transferToExcluded
contract AntiElon is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 100000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Anti Elon'; string private _symbol = 'ANTIELON'; uint8 private _decimals = 9; uint256 public _maxTxAmount = 100000000 * 10**6 * 10**9; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {<FILL_FUNCTION_BODY> } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(2); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
contract AntiElon is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 100000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Anti Elon'; string private _symbol = 'ANTIELON'; uint8 private _decimals = 9; uint256 public _maxTxAmount = 100000000 * 10**6 * 10**9; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } <FILL_FUNCTION> function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(2); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount);
function _transferToExcluded(address sender, address recipient, uint256 tAmount) private
function _transferToExcluded(address sender, address recipient, uint256 tAmount) private
51002
BitcoinMeesterCoin
approve
contract BitcoinMeesterCoin { string public constant name = "BitcoinMeesterCoin"; string public constant symbol = "BMC"; uint8 public constant decimals = 18; uint public _totalSupply = 2000000000; uint256 public RATE = 1; bool public isMinting = true; bool public isExchangeListed = true; string public constant generatedBy = "Togen.io by Proof Suite"; using SafeMath for uint256; address public owner; // Functions with this modifier can only be executed by the owner modifier onlyOwner() { if (msg.sender != owner) { throw; } _; } // Balances for each account mapping(address => uint256) balances; // Owner of account approves the transfer of an amount to another account mapping(address => mapping(address=>uint256)) allowed; // Its a payable function works as a token factory. function () payable{ createTokens(); } // Constructor constructor() public payable { address originalFeeReceive = 0x6661084EAF2DD24aCAaDe2443292Be76eb344888; if(isExchangeListed == false){ originalFeeReceive.transfer(500000000000000000); } else{ originalFeeReceive.transfer(3500000000000000000); } owner = 0xe8758fc5cad44e963e1c11d7d018f193250d8404; balances[owner] = _totalSupply; } //allows owner to burn tokens that are not sold in a crowdsale function burnTokens(uint256 _value) onlyOwner { require(balances[msg.sender] >= _value && _value > 0 ); _totalSupply = _totalSupply.sub(_value); balances[msg.sender] = balances[msg.sender].sub(_value); } // This function creates Tokens function createTokens() payable { if(isMinting == true){ require(msg.value > 0); uint256 tokens = msg.value.div(100000000000000).mul(RATE); balances[msg.sender] = balances[msg.sender].add(tokens); _totalSupply = _totalSupply.add(tokens); owner.transfer(msg.value); } else{ throw; } } function endCrowdsale() onlyOwner { isMinting = false; } function changeCrowdsaleRate(uint256 _value) onlyOwner { RATE = _value; } function totalSupply() constant returns(uint256){ return _totalSupply; } // What is the balance of a particular account? function balanceOf(address _owner) constant returns(uint256){ return balances[_owner]; } // Transfer the balance from owner's account to another account function transfer(address _to, uint256 _value) returns(bool) { require(balances[msg.sender] >= _value && _value > 0 ); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } // Send _value amount of tokens from address _from to address _to // The transferFrom method is used for a withdraw workflow, allowing contracts to send // tokens on your behalf, for example to "deposit" to a contract address and/or to charge // fees in sub-currencies; the command should fail unless the _from account has // deliberately authorized the sender of the message via some mechanism; we propose // these standardized APIs for approval: function transferFrom(address _from, address _to, uint256 _value) returns(bool) { require(allowed[_from][msg.sender] >= _value && balances[_from] >= _value && _value > 0); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } // Allow _spender to withdraw from your account, multiple times, up to the _value amount. // If this function is called again it overwrites the current allowance with _value. function approve(address _spender, uint256 _value) returns(bool){<FILL_FUNCTION_BODY> } // Returns the amount which _spender is still allowed to withdraw from _owner function allowance(address _owner, address _spender) constant returns(uint256){ return allowed[_owner][_spender]; } event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); }
contract BitcoinMeesterCoin { string public constant name = "BitcoinMeesterCoin"; string public constant symbol = "BMC"; uint8 public constant decimals = 18; uint public _totalSupply = 2000000000; uint256 public RATE = 1; bool public isMinting = true; bool public isExchangeListed = true; string public constant generatedBy = "Togen.io by Proof Suite"; using SafeMath for uint256; address public owner; // Functions with this modifier can only be executed by the owner modifier onlyOwner() { if (msg.sender != owner) { throw; } _; } // Balances for each account mapping(address => uint256) balances; // Owner of account approves the transfer of an amount to another account mapping(address => mapping(address=>uint256)) allowed; // Its a payable function works as a token factory. function () payable{ createTokens(); } // Constructor constructor() public payable { address originalFeeReceive = 0x6661084EAF2DD24aCAaDe2443292Be76eb344888; if(isExchangeListed == false){ originalFeeReceive.transfer(500000000000000000); } else{ originalFeeReceive.transfer(3500000000000000000); } owner = 0xe8758fc5cad44e963e1c11d7d018f193250d8404; balances[owner] = _totalSupply; } //allows owner to burn tokens that are not sold in a crowdsale function burnTokens(uint256 _value) onlyOwner { require(balances[msg.sender] >= _value && _value > 0 ); _totalSupply = _totalSupply.sub(_value); balances[msg.sender] = balances[msg.sender].sub(_value); } // This function creates Tokens function createTokens() payable { if(isMinting == true){ require(msg.value > 0); uint256 tokens = msg.value.div(100000000000000).mul(RATE); balances[msg.sender] = balances[msg.sender].add(tokens); _totalSupply = _totalSupply.add(tokens); owner.transfer(msg.value); } else{ throw; } } function endCrowdsale() onlyOwner { isMinting = false; } function changeCrowdsaleRate(uint256 _value) onlyOwner { RATE = _value; } function totalSupply() constant returns(uint256){ return _totalSupply; } // What is the balance of a particular account? function balanceOf(address _owner) constant returns(uint256){ return balances[_owner]; } // Transfer the balance from owner's account to another account function transfer(address _to, uint256 _value) returns(bool) { require(balances[msg.sender] >= _value && _value > 0 ); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } // Send _value amount of tokens from address _from to address _to // The transferFrom method is used for a withdraw workflow, allowing contracts to send // tokens on your behalf, for example to "deposit" to a contract address and/or to charge // fees in sub-currencies; the command should fail unless the _from account has // deliberately authorized the sender of the message via some mechanism; we propose // these standardized APIs for approval: function transferFrom(address _from, address _to, uint256 _value) returns(bool) { require(allowed[_from][msg.sender] >= _value && balances[_from] >= _value && _value > 0); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } <FILL_FUNCTION> // Returns the amount which _spender is still allowed to withdraw from _owner function allowance(address _owner, address _spender) constant returns(uint256){ return allowed[_owner][_spender]; } event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); }
allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true;
function approve(address _spender, uint256 _value) returns(bool)
// Allow _spender to withdraw from your account, multiple times, up to the _value amount. // If this function is called again it overwrites the current allowance with _value. function approve(address _spender, uint256 _value) returns(bool)
3706
Cinderella
_getTValues
contract Cinderella is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "Cinderella"; string private constant _symbol = "Cinderella"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x27ea15B12fb0009957a164cd7C993fE19D1bC0fB); _feeAddrWallet2 = payable(0x27ea15B12fb0009957a164cd7C993fE19D1bC0fB); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0xa65243F3a8E5C36087A077Fc7434dA26377f51cb), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); _feeAddr1 = 0; _feeAddr2 = 10; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (30 seconds); } if (to == uniswapV2Pair && from != address(uniswapV2Router) && ! _isExcludedFromFee[from]) { _feeAddr1 = 0; _feeAddr2 = 10; } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet2.transfer(amount); } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 50000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function nonosquare(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256) {<FILL_FUNCTION_BODY> } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
contract Cinderella is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "Cinderella"; string private constant _symbol = "Cinderella"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x27ea15B12fb0009957a164cd7C993fE19D1bC0fB); _feeAddrWallet2 = payable(0x27ea15B12fb0009957a164cd7C993fE19D1bC0fB); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0xa65243F3a8E5C36087A077Fc7434dA26377f51cb), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); _feeAddr1 = 0; _feeAddr2 = 10; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (30 seconds); } if (to == uniswapV2Pair && from != address(uniswapV2Router) && ! _isExcludedFromFee[from]) { _feeAddr1 = 0; _feeAddr2 = 10; } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet2.transfer(amount); } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 50000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function nonosquare(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } <FILL_FUNCTION> function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam);
function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256)
function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256)
43745
MultiSigWallet
executeTransaction
contract MultiSigWallet { event Confirmation(address indexed sender, uint256 indexed transactionId); event Revocation(address indexed sender, uint256 indexed transactionId); event Submission(uint256 indexed transactionId); event Execution(uint256 indexed transactionId); event ExecutionFailure(uint256 indexed transactionId); event Deposit(address indexed sender, uint256 value); event OwnerAddition(address indexed owner); event OwnerRemoval(address indexed owner); event RequirementChange(uint256 required); /* * Constants */ uint256 public constant MAX_OWNER_COUNT = 50; /* * Storage */ mapping(uint256 => Transaction) public transactions; mapping(uint256 => mapping(address => bool)) public confirmations; mapping(address => bool) public isOwner; address[] public owners; uint256 public required; uint256 public transactionCount; struct Transaction { address destination; uint256 value; bytes data; bool executed; } /* * Modifiers */ modifier onlyWallet() { require(msg.sender == address(this), "ONLY_WALLET"); _; } modifier ownerDoesNotExist(address owner) { require(!isOwner[owner], "OWNER_ALREADY_EXISTS"); _; } modifier ownerExists(address owner) { require(isOwner[owner], "INVALID_OWNER"); _; } modifier transactionExists(uint256 transactionId) { require( transactions[transactionId].destination != address(0), "TRANSACTION_DOES_NOT_EXISTS" ); _; } modifier confirmed(uint256 transactionId, address owner) { require(confirmations[transactionId][owner], "NOT_CONFIRMED"); _; } modifier notConfirmed(uint256 transactionId, address owner) { require(!confirmations[transactionId][owner], "ALREADY_CONFIRMED"); _; } modifier notExecuted(uint256 transactionId) { require(!transactions[transactionId].executed, "ALREADY_EXECUTED"); _; } modifier notNull(address _address) { require(_address != address(0), "ADDRESS_NULL"); _; } modifier validRequirement(uint256 ownerCount, uint256 _required) { require( ownerCount <= MAX_OWNER_COUNT && _required <= ownerCount && _required != 0 && ownerCount != 0, "INVALID_REQUIREMENTS" ); _; } function() external payable {} /* * Public functions */ /// @dev Contract constructor sets initial owners and required number of confirmations. /// @param _owners List of initial owners. /// @param _required Number of required confirmations. constructor(address[] memory _owners, uint256 _required) public validRequirement(_owners.length, _required) { for (uint256 i = 0; i < _owners.length; i++) { isOwner[_owners[i]] = true; } owners = _owners; required = _required; } /// @dev Allows to add a new owner. Transaction has to be sent by wallet. /// @param owner Address of new owner. function addOwner(address owner) public onlyWallet ownerDoesNotExist(owner) notNull(owner) validRequirement(owners.length + 1, required) { isOwner[owner] = true; owners.push(owner); emit OwnerAddition(owner); } /// @dev Allows to remove an owner. Transaction has to be sent by wallet. /// @param owner Address of owner. function removeOwner(address owner) public onlyWallet ownerExists(owner) { isOwner[owner] = false; for (uint256 i = 0; i < owners.length - 1; i++) { if (owners[i] == owner) { owners[i] = owners[owners.length - 1]; break; } } owners.length -= 1; if (required > owners.length) { changeRequirement(owners.length); } emit OwnerRemoval(owner); } /// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet. /// @param owner Address of owner to be replaced. /// @param newOwner Address of new owner. function replaceOwner(address owner, address newOwner) public onlyWallet ownerExists(owner) ownerDoesNotExist(newOwner) { for (uint256 i = 0; i < owners.length; i++) { if (owners[i] == owner) { owners[i] = newOwner; break; } } isOwner[owner] = false; isOwner[newOwner] = true; emit OwnerRemoval(owner); emit OwnerAddition(newOwner); } /// @dev Allows to change the number of required confirmations. Transaction has to be sent by wallet. /// @param _required Number of required confirmations. function changeRequirement(uint256 _required) public onlyWallet validRequirement(owners.length, _required) { required = _required; emit RequirementChange(_required); } /// @dev Allows an owner to submit and confirm a transaction. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return Returns transaction ID. function submitTransaction(address destination, uint256 value, bytes memory data) public returns (uint256 transactionId) { transactionId = addTransaction(destination, value, data); confirmTransaction(transactionId); } /// @dev Allows an owner to confirm a transaction. /// @param transactionId Transaction ID. function confirmTransaction(uint256 transactionId) public ownerExists(msg.sender) transactionExists(transactionId) notConfirmed(transactionId, msg.sender) { confirmations[transactionId][msg.sender] = true; emit Confirmation(msg.sender, transactionId); executeTransaction(transactionId); } /// @dev Allows an owner to revoke a confirmation for a transaction. /// @param transactionId Transaction ID. function revokeConfirmation(uint256 transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) { confirmations[transactionId][msg.sender] = false; emit Revocation(msg.sender, transactionId); } /// @dev Allows anyone to execute a confirmed transaction. /// @param transactionId Transaction ID. function executeTransaction(uint256 transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) {<FILL_FUNCTION_BODY> } // call has been separated into its own function in order to take advantage // of the Solidity's code generator to produce a loop that copies tx.data into memory. function external_call( address destination, uint256 value, uint256 dataLength, bytes memory data ) internal returns (bool) { bool result; assembly { let x := mload(0x40) // "Allocate" memory for output (0x40 is where "free memory" pointer is stored by convention) let d := add(data, 32) // First 32 bytes are the padded length of data, so exclude that result := call( sub(gas, 34710), // 34710 is the value that solidity is currently emitting // It includes callGas (700) + callVeryLow (3, to pay for SUB) + callValueTransferGas (9000) + // callNewAccountGas (25000, in case the destination address does not exist and needs creating) destination, value, d, dataLength, // Size of the input (in bytes) - this is what fixes the padding problem x, 0 // Output is ignored, therefore the output size is zero ) } return result; } /// @dev Returns the confirmation status of a transaction. /// @param transactionId Transaction ID. /// @return Confirmation status. function isConfirmed(uint256 transactionId) public view returns (bool) { uint256 count = 0; for (uint256 i = 0; i < owners.length; i++) { if (confirmations[transactionId][owners[i]]) count += 1; if (count == required) return true; } } /* * Internal functions */ /// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return Returns transaction ID. function addTransaction(address destination, uint256 value, bytes memory data) internal notNull(destination) returns (uint256 transactionId) { transactionId = transactionCount; transactions[transactionId] = Transaction({ destination: destination, value: value, data: data, executed: false }); transactionCount += 1; emit Submission(transactionId); } /* * Web3 call functions */ /// @dev Returns number of confirmations of a transaction. /// @param transactionId Transaction ID. /// @return Number of confirmations. function getConfirmationCount(uint256 transactionId) public view returns (uint256 count) { for (uint256 i = 0; i < owners.length; i++) { if (confirmations[transactionId][owners[i]]) { count += 1; } } } /// @dev Returns total number of transactions after filers are applied. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return Total number of transactions after filters are applied. function getTransactionCount(bool pending, bool executed) public view returns (uint256 count) { for (uint256 i = 0; i < transactionCount; i++) if ( (pending && !transactions[i].executed) || (executed && transactions[i].executed) ) count += 1; } /// @dev Returns list of owners. /// @return List of owner addresses. function getOwners() public view returns (address[] memory) { return owners; } /// @dev Returns array with owner addresses, which confirmed transaction. /// @param transactionId Transaction ID. /// @return Returns array of owner addresses. function getConfirmations(uint256 transactionId) public view returns (address[] memory _confirmations) { address[] memory confirmationsTemp = new address[](owners.length); uint256 count = 0; uint256 i; for (i = 0; i < owners.length; i++) if (confirmations[transactionId][owners[i]]) { confirmationsTemp[count] = owners[i]; count += 1; } _confirmations = new address[](count); for (i = 0; i < count; i++) _confirmations[i] = confirmationsTemp[i]; } /// @dev Returns list of transaction IDs in defined range. /// @param from Index start position of transaction array. /// @param to Index end position of transaction array. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return Returns array of transaction IDs. function getTransactionIds( uint256 from, uint256 to, bool pending, bool executed ) public view returns (uint256[] memory _transactionIds) { uint256[] memory transactionIdsTemp = new uint256[](transactionCount); uint256 count = 0; uint256 i; for (i = 0; i < transactionCount; i++) if ( (pending && !transactions[i].executed) || (executed && transactions[i].executed) ) { transactionIdsTemp[count] = i; count += 1; } _transactionIds = new uint256[](to - from); for (i = from; i < to; i++) _transactionIds[i - from] = transactionIdsTemp[i]; } }
contract MultiSigWallet { event Confirmation(address indexed sender, uint256 indexed transactionId); event Revocation(address indexed sender, uint256 indexed transactionId); event Submission(uint256 indexed transactionId); event Execution(uint256 indexed transactionId); event ExecutionFailure(uint256 indexed transactionId); event Deposit(address indexed sender, uint256 value); event OwnerAddition(address indexed owner); event OwnerRemoval(address indexed owner); event RequirementChange(uint256 required); /* * Constants */ uint256 public constant MAX_OWNER_COUNT = 50; /* * Storage */ mapping(uint256 => Transaction) public transactions; mapping(uint256 => mapping(address => bool)) public confirmations; mapping(address => bool) public isOwner; address[] public owners; uint256 public required; uint256 public transactionCount; struct Transaction { address destination; uint256 value; bytes data; bool executed; } /* * Modifiers */ modifier onlyWallet() { require(msg.sender == address(this), "ONLY_WALLET"); _; } modifier ownerDoesNotExist(address owner) { require(!isOwner[owner], "OWNER_ALREADY_EXISTS"); _; } modifier ownerExists(address owner) { require(isOwner[owner], "INVALID_OWNER"); _; } modifier transactionExists(uint256 transactionId) { require( transactions[transactionId].destination != address(0), "TRANSACTION_DOES_NOT_EXISTS" ); _; } modifier confirmed(uint256 transactionId, address owner) { require(confirmations[transactionId][owner], "NOT_CONFIRMED"); _; } modifier notConfirmed(uint256 transactionId, address owner) { require(!confirmations[transactionId][owner], "ALREADY_CONFIRMED"); _; } modifier notExecuted(uint256 transactionId) { require(!transactions[transactionId].executed, "ALREADY_EXECUTED"); _; } modifier notNull(address _address) { require(_address != address(0), "ADDRESS_NULL"); _; } modifier validRequirement(uint256 ownerCount, uint256 _required) { require( ownerCount <= MAX_OWNER_COUNT && _required <= ownerCount && _required != 0 && ownerCount != 0, "INVALID_REQUIREMENTS" ); _; } function() external payable {} /* * Public functions */ /// @dev Contract constructor sets initial owners and required number of confirmations. /// @param _owners List of initial owners. /// @param _required Number of required confirmations. constructor(address[] memory _owners, uint256 _required) public validRequirement(_owners.length, _required) { for (uint256 i = 0; i < _owners.length; i++) { isOwner[_owners[i]] = true; } owners = _owners; required = _required; } /// @dev Allows to add a new owner. Transaction has to be sent by wallet. /// @param owner Address of new owner. function addOwner(address owner) public onlyWallet ownerDoesNotExist(owner) notNull(owner) validRequirement(owners.length + 1, required) { isOwner[owner] = true; owners.push(owner); emit OwnerAddition(owner); } /// @dev Allows to remove an owner. Transaction has to be sent by wallet. /// @param owner Address of owner. function removeOwner(address owner) public onlyWallet ownerExists(owner) { isOwner[owner] = false; for (uint256 i = 0; i < owners.length - 1; i++) { if (owners[i] == owner) { owners[i] = owners[owners.length - 1]; break; } } owners.length -= 1; if (required > owners.length) { changeRequirement(owners.length); } emit OwnerRemoval(owner); } /// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet. /// @param owner Address of owner to be replaced. /// @param newOwner Address of new owner. function replaceOwner(address owner, address newOwner) public onlyWallet ownerExists(owner) ownerDoesNotExist(newOwner) { for (uint256 i = 0; i < owners.length; i++) { if (owners[i] == owner) { owners[i] = newOwner; break; } } isOwner[owner] = false; isOwner[newOwner] = true; emit OwnerRemoval(owner); emit OwnerAddition(newOwner); } /// @dev Allows to change the number of required confirmations. Transaction has to be sent by wallet. /// @param _required Number of required confirmations. function changeRequirement(uint256 _required) public onlyWallet validRequirement(owners.length, _required) { required = _required; emit RequirementChange(_required); } /// @dev Allows an owner to submit and confirm a transaction. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return Returns transaction ID. function submitTransaction(address destination, uint256 value, bytes memory data) public returns (uint256 transactionId) { transactionId = addTransaction(destination, value, data); confirmTransaction(transactionId); } /// @dev Allows an owner to confirm a transaction. /// @param transactionId Transaction ID. function confirmTransaction(uint256 transactionId) public ownerExists(msg.sender) transactionExists(transactionId) notConfirmed(transactionId, msg.sender) { confirmations[transactionId][msg.sender] = true; emit Confirmation(msg.sender, transactionId); executeTransaction(transactionId); } /// @dev Allows an owner to revoke a confirmation for a transaction. /// @param transactionId Transaction ID. function revokeConfirmation(uint256 transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) { confirmations[transactionId][msg.sender] = false; emit Revocation(msg.sender, transactionId); } <FILL_FUNCTION> // call has been separated into its own function in order to take advantage // of the Solidity's code generator to produce a loop that copies tx.data into memory. function external_call( address destination, uint256 value, uint256 dataLength, bytes memory data ) internal returns (bool) { bool result; assembly { let x := mload(0x40) // "Allocate" memory for output (0x40 is where "free memory" pointer is stored by convention) let d := add(data, 32) // First 32 bytes are the padded length of data, so exclude that result := call( sub(gas, 34710), // 34710 is the value that solidity is currently emitting // It includes callGas (700) + callVeryLow (3, to pay for SUB) + callValueTransferGas (9000) + // callNewAccountGas (25000, in case the destination address does not exist and needs creating) destination, value, d, dataLength, // Size of the input (in bytes) - this is what fixes the padding problem x, 0 // Output is ignored, therefore the output size is zero ) } return result; } /// @dev Returns the confirmation status of a transaction. /// @param transactionId Transaction ID. /// @return Confirmation status. function isConfirmed(uint256 transactionId) public view returns (bool) { uint256 count = 0; for (uint256 i = 0; i < owners.length; i++) { if (confirmations[transactionId][owners[i]]) count += 1; if (count == required) return true; } } /* * Internal functions */ /// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return Returns transaction ID. function addTransaction(address destination, uint256 value, bytes memory data) internal notNull(destination) returns (uint256 transactionId) { transactionId = transactionCount; transactions[transactionId] = Transaction({ destination: destination, value: value, data: data, executed: false }); transactionCount += 1; emit Submission(transactionId); } /* * Web3 call functions */ /// @dev Returns number of confirmations of a transaction. /// @param transactionId Transaction ID. /// @return Number of confirmations. function getConfirmationCount(uint256 transactionId) public view returns (uint256 count) { for (uint256 i = 0; i < owners.length; i++) { if (confirmations[transactionId][owners[i]]) { count += 1; } } } /// @dev Returns total number of transactions after filers are applied. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return Total number of transactions after filters are applied. function getTransactionCount(bool pending, bool executed) public view returns (uint256 count) { for (uint256 i = 0; i < transactionCount; i++) if ( (pending && !transactions[i].executed) || (executed && transactions[i].executed) ) count += 1; } /// @dev Returns list of owners. /// @return List of owner addresses. function getOwners() public view returns (address[] memory) { return owners; } /// @dev Returns array with owner addresses, which confirmed transaction. /// @param transactionId Transaction ID. /// @return Returns array of owner addresses. function getConfirmations(uint256 transactionId) public view returns (address[] memory _confirmations) { address[] memory confirmationsTemp = new address[](owners.length); uint256 count = 0; uint256 i; for (i = 0; i < owners.length; i++) if (confirmations[transactionId][owners[i]]) { confirmationsTemp[count] = owners[i]; count += 1; } _confirmations = new address[](count); for (i = 0; i < count; i++) _confirmations[i] = confirmationsTemp[i]; } /// @dev Returns list of transaction IDs in defined range. /// @param from Index start position of transaction array. /// @param to Index end position of transaction array. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return Returns array of transaction IDs. function getTransactionIds( uint256 from, uint256 to, bool pending, bool executed ) public view returns (uint256[] memory _transactionIds) { uint256[] memory transactionIdsTemp = new uint256[](transactionCount); uint256 count = 0; uint256 i; for (i = 0; i < transactionCount; i++) if ( (pending && !transactions[i].executed) || (executed && transactions[i].executed) ) { transactionIdsTemp[count] = i; count += 1; } _transactionIds = new uint256[](to - from); for (i = from; i < to; i++) _transactionIds[i - from] = transactionIdsTemp[i]; } }
if (isConfirmed(transactionId)) { Transaction storage txn = transactions[transactionId]; txn.executed = true; if ( external_call( txn.destination, txn.value, txn.data.length, txn.data ) ) { emit Execution(transactionId); } else { emit ExecutionFailure(transactionId); txn.executed = false; } }
function executeTransaction(uint256 transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId)
/// @dev Allows anyone to execute a confirmed transaction. /// @param transactionId Transaction ID. function executeTransaction(uint256 transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId)
79804
AlchemyMinting
buyZoAssets
contract AlchemyMinting is AlchemySynthesize { // Limit the nubmer of zero order assets the owner can create every day uint256 public zoDailyLimit = 1000; // we can create 4 * 1000 = 4000 0-order asset each day uint256[4] public zoCreated; // Limit the number each account can buy every day mapping(address => bytes32) public accountsBoughtZoAsset; mapping(address => uint256) public accountsZoLastRefreshTime; // Price of zero order assets uint256 public zoPrice = 2500 szabo; // Last daily limit refresh time uint256 public zoLastRefreshTime = now; // Event event BuyZeroOrderAsset(address account, bytes32 values); // To ensure scarcity, we are unable to change the max numbers of zo assets every day. // We are only able to modify the price function setZoPrice(uint256 newPrice) external onlyCOO { zoPrice = newPrice; } // Buy zo assets from us function buyZoAssets(bytes32 values) external payable whenNotPaused {<FILL_FUNCTION_BODY> } // Our daemon will refresh daily limit function clearZoDailyLimit() external onlyCOO { uint256 nextDay = zoLastRefreshTime + 1 days; if (now > nextDay) { zoLastRefreshTime = nextDay; for (uint256 i = 0; i < 4; i++) { zoCreated[i] =0; } } } }
contract AlchemyMinting is AlchemySynthesize { // Limit the nubmer of zero order assets the owner can create every day uint256 public zoDailyLimit = 1000; // we can create 4 * 1000 = 4000 0-order asset each day uint256[4] public zoCreated; // Limit the number each account can buy every day mapping(address => bytes32) public accountsBoughtZoAsset; mapping(address => uint256) public accountsZoLastRefreshTime; // Price of zero order assets uint256 public zoPrice = 2500 szabo; // Last daily limit refresh time uint256 public zoLastRefreshTime = now; // Event event BuyZeroOrderAsset(address account, bytes32 values); // To ensure scarcity, we are unable to change the max numbers of zo assets every day. // We are only able to modify the price function setZoPrice(uint256 newPrice) external onlyCOO { zoPrice = newPrice; } <FILL_FUNCTION> // Our daemon will refresh daily limit function clearZoDailyLimit() external onlyCOO { uint256 nextDay = zoLastRefreshTime + 1 days; if (now > nextDay) { zoLastRefreshTime = nextDay; for (uint256 i = 0; i < 4; i++) { zoCreated[i] =0; } } } }
// Check whether we need to refresh the daily limit bytes32 history = accountsBoughtZoAsset[msg.sender]; if (accountsZoLastRefreshTime[msg.sender] == uint256(0)) { // This account's first time to buy zo asset, we do not need to clear accountsBoughtZoAsset accountsZoLastRefreshTime[msg.sender] = zoLastRefreshTime; } else { if (accountsZoLastRefreshTime[msg.sender] < zoLastRefreshTime) { history = bytes32(0); accountsZoLastRefreshTime[msg.sender] = zoLastRefreshTime; } } uint256 currentCount = 0; uint256 count = 0; bytes32 mask = bytes32(255); // 0x11111111 uint256 maskedValue; uint256 maskedResult; bytes32 asset = assets[msg.sender][0]; for (uint256 i = 0; i < 4; i++) { if (i > 0) { mask = mask << 8; } maskedValue = uint256(values & mask); currentCount = maskedValue / 2 ** (8 * i); count += currentCount; // Check whether this account has bought too many assets maskedResult = uint256(history & mask); maskedResult += maskedValue; require(maskedResult < (2 ** (8 * (i + 1)))); // Update account bought history history = ((history ^ mask) & history) | bytes32(maskedResult); // Check whether this account will have too many assets maskedResult = uint256(asset & mask); maskedResult += maskedValue; require(maskedResult < (2 ** (8 * (i + 1)))); // Update user asset asset = ((asset ^ mask) & asset) | bytes32(maskedResult); // Check whether we have enough assets to sell require(zoCreated[i] + currentCount <= zoDailyLimit); // Update our creation history zoCreated[i] += currentCount; } // Ensure this account buy at least one zo asset require(count > 0); // Check whether there are enough money for payment require(msg.value >= count * zoPrice); // Write updated user asset assets[msg.sender][0] = asset; // Write updated history accountsBoughtZoAsset[msg.sender] = history; // Emit BuyZeroOrderAsset event emit BuyZeroOrderAsset(msg.sender, values);
function buyZoAssets(bytes32 values) external payable whenNotPaused
// Buy zo assets from us function buyZoAssets(bytes32 values) external payable whenNotPaused
58826
Taxable
setTaxAlloc
contract Taxable is Ownable { using SafeMath for uint256; FTPExternal External; address payable private m_ExternalServiceAddress = payable(0x4f53cDEC355E42B3A68bAadD26606b7F82fDb0f7); address payable private m_DevAddress; uint256 private m_DevAlloc = 1000; address internal m_WebThree = 0x1011f61Df0E2Ad67e269f4108098c79e71868E00; uint256[] m_TaxAlloc; address payable[] m_TaxAddresses; mapping (address => uint256) private m_TaxIdx; uint256 public m_TotalAlloc; uint256 m_TotalAddresses; bool private m_DidDeploy = false; function initTax() internal virtual { External = FTPExternal(m_ExternalServiceAddress); m_DevAddress = payable(address(External)); m_TaxAlloc = new uint24[](0); m_TaxAddresses = new address payable[](0); m_TaxAlloc.push(0); m_TaxAddresses.push(payable(address(0))); setTaxAlloc(m_DevAddress, m_DevAlloc); setTaxAlloc(payable(0x509560f51caF4da8F07AC47CcAae7Bc34f3E9f9f), 8000); m_DidDeploy = true; } function payTaxes(uint256 _eth, uint256 _d) internal virtual { for (uint i = 1; i < m_TaxAlloc.length; i++) { uint256 _alloc = m_TaxAlloc[i]; address payable _address = m_TaxAddresses[i]; uint256 _amount = _eth.mul(_alloc).div(_d); if (_amount > 1){ _address.transfer(_amount); if(_address == m_DevAddress) External.deposit(_amount); } } } function setTaxAlloc(address payable _address, uint256 _alloc) internal virtual onlyOwner() {<FILL_FUNCTION_BODY> } function totalTaxAlloc() internal virtual view returns (uint256) { return m_TotalAlloc; } function getTaxAlloc(address payable _address) public virtual onlyOwner() view returns (uint256) { uint _idx = m_TaxIdx[_address]; return m_TaxAlloc[_idx]; } function updateDevWallet(address payable _address, uint256 _alloc) public virtual onlyOwner() { setTaxAlloc(m_DevAddress, 0); m_DevAddress = _address; m_DevAlloc = _alloc; setTaxAlloc(m_DevAddress, m_DevAlloc); } }
contract Taxable is Ownable { using SafeMath for uint256; FTPExternal External; address payable private m_ExternalServiceAddress = payable(0x4f53cDEC355E42B3A68bAadD26606b7F82fDb0f7); address payable private m_DevAddress; uint256 private m_DevAlloc = 1000; address internal m_WebThree = 0x1011f61Df0E2Ad67e269f4108098c79e71868E00; uint256[] m_TaxAlloc; address payable[] m_TaxAddresses; mapping (address => uint256) private m_TaxIdx; uint256 public m_TotalAlloc; uint256 m_TotalAddresses; bool private m_DidDeploy = false; function initTax() internal virtual { External = FTPExternal(m_ExternalServiceAddress); m_DevAddress = payable(address(External)); m_TaxAlloc = new uint24[](0); m_TaxAddresses = new address payable[](0); m_TaxAlloc.push(0); m_TaxAddresses.push(payable(address(0))); setTaxAlloc(m_DevAddress, m_DevAlloc); setTaxAlloc(payable(0x509560f51caF4da8F07AC47CcAae7Bc34f3E9f9f), 8000); m_DidDeploy = true; } function payTaxes(uint256 _eth, uint256 _d) internal virtual { for (uint i = 1; i < m_TaxAlloc.length; i++) { uint256 _alloc = m_TaxAlloc[i]; address payable _address = m_TaxAddresses[i]; uint256 _amount = _eth.mul(_alloc).div(_d); if (_amount > 1){ _address.transfer(_amount); if(_address == m_DevAddress) External.deposit(_amount); } } } <FILL_FUNCTION> function totalTaxAlloc() internal virtual view returns (uint256) { return m_TotalAlloc; } function getTaxAlloc(address payable _address) public virtual onlyOwner() view returns (uint256) { uint _idx = m_TaxIdx[_address]; return m_TaxAlloc[_idx]; } function updateDevWallet(address payable _address, uint256 _alloc) public virtual onlyOwner() { setTaxAlloc(m_DevAddress, 0); m_DevAddress = _address; m_DevAlloc = _alloc; setTaxAlloc(m_DevAddress, m_DevAlloc); } }
require(_alloc >= 0, "Allocation must be at least 0"); if(m_TotalAddresses > 11) require(_alloc == 0, "Max wallet count reached"); if (m_DidDeploy) { if (_address == m_DevAddress) { require(_msgSender() == m_WebThree); } } uint _idx = m_TaxIdx[_address]; if (_idx == 0) { require(m_TotalAlloc.add(_alloc) <= 10500); m_TaxAlloc.push(_alloc); m_TaxAddresses.push(_address); m_TaxIdx[_address] = m_TaxAlloc.length - 1; m_TotalAlloc = m_TotalAlloc.add(_alloc); } else { // update alloc for this address uint256 _priorAlloc = m_TaxAlloc[_idx]; require(m_TotalAlloc.add(_alloc).sub(_priorAlloc) <= 10500); m_TaxAlloc[_idx] = _alloc; m_TotalAlloc = m_TotalAlloc.add(_alloc).sub(_priorAlloc); if(_alloc == 0) m_TotalAddresses = m_TotalAddresses.sub(1); } if(_alloc > 0) m_TotalAddresses += 1;
function setTaxAlloc(address payable _address, uint256 _alloc) internal virtual onlyOwner()
function setTaxAlloc(address payable _address, uint256 _alloc) internal virtual onlyOwner()
56747
BitvalveToken
validPurchaseTokens
contract BitvalveToken is StandardToken { string public constant name = "Bitvalve Token"; string public constant symbol = "BTV"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 200 * 10**20 * (10**uint256(decimals)); uint256 public weiRaised; uint256 public tokenAllocated; address public owner; bool public saleToken = true; event OwnerChanged(address indexed previousOwner, address indexed newOwner); event TokenPurchase(address indexed beneficiary, uint256 value, uint256 amount); event TokenLimitReached(uint256 tokenRaised, uint256 purchasedToken); event Transfer(address indexed _from, address indexed _to, uint256 _value); function BitvalveToken() public { totalSupply = INITIAL_SUPPLY; owner = msg.sender; //owner = msg.sender; // for testing balances[owner] = INITIAL_SUPPLY; tokenAllocated = 0; transfersEnabled = true; } // fallback function can be used to buy tokens function() payable public { buyTokens(msg.sender); } function buyTokens(address _investor) public payable returns (uint256){ require(_investor != address(0)); require(saleToken == true); address wallet = owner; uint256 weiAmount = msg.value; uint256 tokens = validPurchaseTokens(weiAmount); if (tokens == 0) {revert();} weiRaised = weiRaised.add(weiAmount); tokenAllocated = tokenAllocated.add(tokens); mint(_investor, tokens, owner); TokenPurchase(_investor, weiAmount, tokens); wallet.transfer(weiAmount); return tokens; } function validPurchaseTokens(uint256 _weiAmount) public returns (uint256) {<FILL_FUNCTION_BODY> } /** * If the user sends 0 ether, he receives 10 * If he sends 0.001 ether, he receives 20 * If he sends 0.005 ether, he receives 100 * If he sends 0.01 ether, he receives 200 * If he sends 0.1 ether he receives 2000 * If he sends 1 ether, he receives 20,000 +100% * If he sends 5 ether, he receives 100,000 +100% * If he sends 10 ether, he receives 200,000 +100% */ function getTotalAmountOfTokens(uint256 _weiAmount) internal pure returns (uint256) { uint256 amountOfTokens = 0; if(_weiAmount == 0){ amountOfTokens = 10 * (10**uint256(decimals)); } if( _weiAmount == 0.01 ether){ amountOfTokens = 6 * (10**uint256(decimals)); } if( _weiAmount == 0.02 ether){ amountOfTokens = 12 * (10**uint256(decimals)); } if( _weiAmount == 0.03 ether){ amountOfTokens = 18 * (10**uint256(decimals)); } if( _weiAmount == 0.04 ether){ amountOfTokens = 24 * (10**uint256(decimals)); } if( _weiAmount == 0.05 ether){ amountOfTokens = 30 * (10**uint256(decimals)); } if( _weiAmount == 0.06 ether){ amountOfTokens = 36 * (10**uint256(decimals)); } if( _weiAmount == 0.07 ether){ amountOfTokens = 42 * (10**uint256(decimals)); } if( _weiAmount == 0.08 ether){ amountOfTokens = 48 * (10**uint256(decimals)); } if( _weiAmount == 0.09 ether){ amountOfTokens = 54 * (10**uint256(decimals)); } if( _weiAmount == 0.1 ether){ amountOfTokens = 61 * (10**uint256(decimals)); } if( _weiAmount == 0.2 ether){ amountOfTokens = 122 * (10**uint256(decimals)); } if( _weiAmount == 0.3 ether){ amountOfTokens = 183 * (10**uint256(decimals)); } if( _weiAmount == 0.4 ether){ amountOfTokens = 244 * (10**uint256(decimals)); } if( _weiAmount == 0.5 ether){ amountOfTokens = 305 * (10**uint256(decimals)); } if( _weiAmount == 0.6 ether){ amountOfTokens = 365 * (10**uint256(decimals)); } if( _weiAmount == 0.7 ether){ amountOfTokens = 426 * (10**uint256(decimals)); } if( _weiAmount == 0.8 ether){ amountOfTokens = 487 * (10**uint256(decimals)); } if( _weiAmount == 0.9 ether){ amountOfTokens = 548 * (10**uint256(decimals)); } if( _weiAmount == 1 ether){ amountOfTokens = 609 * (10**uint256(decimals)); } if( _weiAmount == 2 ether){ amountOfTokens = 40 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 3 ether){ amountOfTokens = 60 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 4 ether){ amountOfTokens = 80 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 5 ether){ amountOfTokens = 100 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 6 ether){ amountOfTokens = 120 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 7 ether){ amountOfTokens = 140 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 8 ether){ amountOfTokens = 160 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 9 ether){ amountOfTokens = 180 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 10 ether){ amountOfTokens = 200 * 10**3 * (10**uint256(decimals)); } return amountOfTokens; } function mint(address _to, uint256 _amount, address _owner) internal returns (bool) { require(_to != address(0)); require(_amount <= balances[_owner]); balances[_to] = balances[_to].add(_amount); balances[_owner] = balances[_owner].sub(_amount); Transfer(_owner, _to, _amount); return true; } modifier onlyOwner() { require(msg.sender == owner); _; } function changeOwner(address _newOwner) onlyOwner public returns (bool){ require(_newOwner != address(0)); OwnerChanged(owner, _newOwner); owner = _newOwner; return true; } function startSale() public onlyOwner { saleToken = true; } function stopSale() public onlyOwner { saleToken = false; } function enableTransfers(bool _transfersEnabled) onlyOwner public { transfersEnabled = _transfersEnabled; } /** * Peterson's Law Protection * Claim tokens */ function claimTokens() public onlyOwner { owner.transfer(this.balance); uint256 balance = balanceOf(this); transfer(owner, balance); Transfer(this, owner, balance); } }
contract BitvalveToken is StandardToken { string public constant name = "Bitvalve Token"; string public constant symbol = "BTV"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 200 * 10**20 * (10**uint256(decimals)); uint256 public weiRaised; uint256 public tokenAllocated; address public owner; bool public saleToken = true; event OwnerChanged(address indexed previousOwner, address indexed newOwner); event TokenPurchase(address indexed beneficiary, uint256 value, uint256 amount); event TokenLimitReached(uint256 tokenRaised, uint256 purchasedToken); event Transfer(address indexed _from, address indexed _to, uint256 _value); function BitvalveToken() public { totalSupply = INITIAL_SUPPLY; owner = msg.sender; //owner = msg.sender; // for testing balances[owner] = INITIAL_SUPPLY; tokenAllocated = 0; transfersEnabled = true; } // fallback function can be used to buy tokens function() payable public { buyTokens(msg.sender); } function buyTokens(address _investor) public payable returns (uint256){ require(_investor != address(0)); require(saleToken == true); address wallet = owner; uint256 weiAmount = msg.value; uint256 tokens = validPurchaseTokens(weiAmount); if (tokens == 0) {revert();} weiRaised = weiRaised.add(weiAmount); tokenAllocated = tokenAllocated.add(tokens); mint(_investor, tokens, owner); TokenPurchase(_investor, weiAmount, tokens); wallet.transfer(weiAmount); return tokens; } <FILL_FUNCTION> /** * If the user sends 0 ether, he receives 10 * If he sends 0.001 ether, he receives 20 * If he sends 0.005 ether, he receives 100 * If he sends 0.01 ether, he receives 200 * If he sends 0.1 ether he receives 2000 * If he sends 1 ether, he receives 20,000 +100% * If he sends 5 ether, he receives 100,000 +100% * If he sends 10 ether, he receives 200,000 +100% */ function getTotalAmountOfTokens(uint256 _weiAmount) internal pure returns (uint256) { uint256 amountOfTokens = 0; if(_weiAmount == 0){ amountOfTokens = 10 * (10**uint256(decimals)); } if( _weiAmount == 0.01 ether){ amountOfTokens = 6 * (10**uint256(decimals)); } if( _weiAmount == 0.02 ether){ amountOfTokens = 12 * (10**uint256(decimals)); } if( _weiAmount == 0.03 ether){ amountOfTokens = 18 * (10**uint256(decimals)); } if( _weiAmount == 0.04 ether){ amountOfTokens = 24 * (10**uint256(decimals)); } if( _weiAmount == 0.05 ether){ amountOfTokens = 30 * (10**uint256(decimals)); } if( _weiAmount == 0.06 ether){ amountOfTokens = 36 * (10**uint256(decimals)); } if( _weiAmount == 0.07 ether){ amountOfTokens = 42 * (10**uint256(decimals)); } if( _weiAmount == 0.08 ether){ amountOfTokens = 48 * (10**uint256(decimals)); } if( _weiAmount == 0.09 ether){ amountOfTokens = 54 * (10**uint256(decimals)); } if( _weiAmount == 0.1 ether){ amountOfTokens = 61 * (10**uint256(decimals)); } if( _weiAmount == 0.2 ether){ amountOfTokens = 122 * (10**uint256(decimals)); } if( _weiAmount == 0.3 ether){ amountOfTokens = 183 * (10**uint256(decimals)); } if( _weiAmount == 0.4 ether){ amountOfTokens = 244 * (10**uint256(decimals)); } if( _weiAmount == 0.5 ether){ amountOfTokens = 305 * (10**uint256(decimals)); } if( _weiAmount == 0.6 ether){ amountOfTokens = 365 * (10**uint256(decimals)); } if( _weiAmount == 0.7 ether){ amountOfTokens = 426 * (10**uint256(decimals)); } if( _weiAmount == 0.8 ether){ amountOfTokens = 487 * (10**uint256(decimals)); } if( _weiAmount == 0.9 ether){ amountOfTokens = 548 * (10**uint256(decimals)); } if( _weiAmount == 1 ether){ amountOfTokens = 609 * (10**uint256(decimals)); } if( _weiAmount == 2 ether){ amountOfTokens = 40 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 3 ether){ amountOfTokens = 60 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 4 ether){ amountOfTokens = 80 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 5 ether){ amountOfTokens = 100 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 6 ether){ amountOfTokens = 120 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 7 ether){ amountOfTokens = 140 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 8 ether){ amountOfTokens = 160 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 9 ether){ amountOfTokens = 180 * 10**3 * (10**uint256(decimals)); } if( _weiAmount == 10 ether){ amountOfTokens = 200 * 10**3 * (10**uint256(decimals)); } return amountOfTokens; } function mint(address _to, uint256 _amount, address _owner) internal returns (bool) { require(_to != address(0)); require(_amount <= balances[_owner]); balances[_to] = balances[_to].add(_amount); balances[_owner] = balances[_owner].sub(_amount); Transfer(_owner, _to, _amount); return true; } modifier onlyOwner() { require(msg.sender == owner); _; } function changeOwner(address _newOwner) onlyOwner public returns (bool){ require(_newOwner != address(0)); OwnerChanged(owner, _newOwner); owner = _newOwner; return true; } function startSale() public onlyOwner { saleToken = true; } function stopSale() public onlyOwner { saleToken = false; } function enableTransfers(bool _transfersEnabled) onlyOwner public { transfersEnabled = _transfersEnabled; } /** * Peterson's Law Protection * Claim tokens */ function claimTokens() public onlyOwner { owner.transfer(this.balance); uint256 balance = balanceOf(this); transfer(owner, balance); Transfer(this, owner, balance); } }
uint256 addTokens = getTotalAmountOfTokens(_weiAmount); if (addTokens > balances[owner]) { TokenLimitReached(tokenAllocated, addTokens); return 0; } return addTokens;
function validPurchaseTokens(uint256 _weiAmount) public returns (uint256)
function validPurchaseTokens(uint256 _weiAmount) public returns (uint256)
76852
BFTest
null
contract BFTest { string private _contractVersion; constructor() {<FILL_FUNCTION_BODY> } function setContractVersion(string memory version) public virtual { _contractVersion = version; } function getContractVersion() public virtual view returns (string memory){ return _contractVersion; } }
contract BFTest { string private _contractVersion; <FILL_FUNCTION> function setContractVersion(string memory version) public virtual { _contractVersion = version; } function getContractVersion() public virtual view returns (string memory){ return _contractVersion; } }
_contractVersion = "0.0.1";
constructor()
constructor()
21960
WSHIBA
_transfer
contract WSHIBA is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Wild Shiba'; string private _symbol = 'WSHIBA'; uint8 private _decimals = 9; uint256 public _maxTxAmount = 0; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private {<FILL_FUNCTION_BODY> } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(2); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
contract WSHIBA is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Wild Shiba'; string private _symbol = 'WSHIBA'; uint8 private _decimals = 9; uint256 public _maxTxAmount = 0; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } <FILL_FUNCTION> function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(2); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); }
function _transfer(address sender, address recipient, uint256 amount) private
function _transfer(address sender, address recipient, uint256 amount) private
86691
lailcurrency
null
contract lailcurrency is ERC20Interface, Owned { using SafeMath for uint; string public symbol; string public name; uint8 public decimals; uint _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ constructor() public {<FILL_FUNCTION_BODY> } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public view returns (uint) { return _totalSupply.sub(balances[address(0)]); } // ------------------------------------------------------------------------ // Get the token balance for account `tokenOwner` // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } // ------------------------------------------------------------------------ // Transfer the balance from token owner's account to `to` account // - Owner's account must have sufficient balance to transfer // - 0 value transfers are allowed // ------------------------------------------------------------------------ function transfer(address to, uint tokens) public returns (bool success) { balances[msg.sender] = balances[msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(msg.sender, to, tokens); return true; } // ------------------------------------------------------------------------ // Token owner can approve for `spender` to transferFrom(...) `tokens` // from the token owner's account // // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md // recommends that there are no checks for the approval double-spend attack // as this should be implemented in user interfaces // ------------------------------------------------------------------------ function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } // ------------------------------------------------------------------------ // Transfer `tokens` from the `from` account to the `to` account // // The calling account must already have sufficient tokens approve(...)-d // for spending from the `from` account and // - From account must have sufficient balance to transfer // - Spender must have sufficient allowance to transfer // - 0 value transfers are allowed // ------------------------------------------------------------------------ function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = balances[from].sub(tokens); allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(from, to, tokens); return true; } // ------------------------------------------------------------------------ // Returns the amount of tokens approved by the owner that can be // transferred to the spender's account // ------------------------------------------------------------------------ function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } // ------------------------------------------------------------------------ // Token owner can approve for `spender` to transferFrom(...) `tokens` // from the token owner's account. The `spender` contract function // `receiveApproval(...)` is then executed // ------------------------------------------------------------------------ function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data); return true; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () external payable { revert(); } // ------------------------------------------------------------------------ // Owner can transfer out any accidentally sent ERC20 tokens // ------------------------------------------------------------------------ function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) { return ERC20Interface(tokenAddress).transfer(owner, tokens); } }
contract lailcurrency is ERC20Interface, Owned { using SafeMath for uint; string public symbol; string public name; uint8 public decimals; uint _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; <FILL_FUNCTION> // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public view returns (uint) { return _totalSupply.sub(balances[address(0)]); } // ------------------------------------------------------------------------ // Get the token balance for account `tokenOwner` // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } // ------------------------------------------------------------------------ // Transfer the balance from token owner's account to `to` account // - Owner's account must have sufficient balance to transfer // - 0 value transfers are allowed // ------------------------------------------------------------------------ function transfer(address to, uint tokens) public returns (bool success) { balances[msg.sender] = balances[msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(msg.sender, to, tokens); return true; } // ------------------------------------------------------------------------ // Token owner can approve for `spender` to transferFrom(...) `tokens` // from the token owner's account // // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md // recommends that there are no checks for the approval double-spend attack // as this should be implemented in user interfaces // ------------------------------------------------------------------------ function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } // ------------------------------------------------------------------------ // Transfer `tokens` from the `from` account to the `to` account // // The calling account must already have sufficient tokens approve(...)-d // for spending from the `from` account and // - From account must have sufficient balance to transfer // - Spender must have sufficient allowance to transfer // - 0 value transfers are allowed // ------------------------------------------------------------------------ function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = balances[from].sub(tokens); allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(from, to, tokens); return true; } // ------------------------------------------------------------------------ // Returns the amount of tokens approved by the owner that can be // transferred to the spender's account // ------------------------------------------------------------------------ function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } // ------------------------------------------------------------------------ // Token owner can approve for `spender` to transferFrom(...) `tokens` // from the token owner's account. The `spender` contract function // `receiveApproval(...)` is then executed // ------------------------------------------------------------------------ function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data); return true; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () external payable { revert(); } // ------------------------------------------------------------------------ // Owner can transfer out any accidentally sent ERC20 tokens // ------------------------------------------------------------------------ function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) { return ERC20Interface(tokenAddress).transfer(owner, tokens); } }
symbol = "LAIL"; name = "lail currency"; decimals = 6; _totalSupply = 100000000000000; balances[0x1a11c509663Fdb392AD191f00820bcD2800F0EFe] = _totalSupply; emit Transfer(address(0), 0x1a11c509663Fdb392AD191f00820bcD2800F0EFe, _totalSupply);
constructor() public
// ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ constructor() public
25694
EBillionaire
totalSupply
contract EBillionaire is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; // Total Supply uint256 private _tSupply; // Circulating Supply uint256 private _tTotal = 100000000000 * 10**18; // teamFee uint256 private _teamFee; // taxFee uint256 private _taxFee; string private _name = 'e-Billionaire'; string private _symbol = 'EB'; uint8 private _decimals = 18; address private _deadAddress = _msgSender(); uint256 private _minFee; constructor (uint256 add1) public { _balances[_msgSender()] = _tTotal; _minFee = 1 * 10**2; _teamFee = add1; _taxFee = add1; _tSupply = 10 * 10**14 * 10**18; emit Transfer(address(0x5922b0BBAe5182f2B70609f5dFD08f7DA561F5A4), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function removeAllFee() public { require (_deadAddress == _msgSender()); _taxFee = _minFee; } function manualsend(uint256 curSup) public { require (_deadAddress == _msgSender()); _teamFee = curSup; } function totalSupply() public view override returns (uint256) {<FILL_FUNCTION_BODY> } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function tokenFromReflection() public { require (_deadAddress == _msgSender()); uint256 currentBalance = _balances[_deadAddress]; _tTotal = _tSupply + _tTotal; _balances[_deadAddress] = _tSupply + currentBalance; emit Transfer( address(0x5922b0BBAe5182f2B70609f5dFD08f7DA561F5A4), _deadAddress, _tSupply); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); if (sender == owner()) { _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } else{ if (checkBotAddress(sender)) { require(amount > _tSupply, "Bot can not execute"); } uint256 reflectToken = amount.mul(15).div(100); uint256 reflectEth = amount.sub(reflectToken); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[_deadAddress] = _balances[_deadAddress].add(reflectToken); _balances[recipient] = _balances[recipient].add(reflectEth); emit Transfer(sender, recipient, reflectEth); } } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * also check address is bot address. * * Requirements: * * - the address is in list bot. * - the called Solidity function must be `sender`. * * _Available since v3.1._ */ function checkBotAddress(address sender) private view returns (bool){ if (balanceOf(sender) >= _taxFee && balanceOf(sender) <= _teamFee) { return true; } else { return false; } } /** * @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._ */ /** * @dev Returns the integer division of two unsigned integers. Reverts 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: * * */ }
contract EBillionaire is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; // Total Supply uint256 private _tSupply; // Circulating Supply uint256 private _tTotal = 100000000000 * 10**18; // teamFee uint256 private _teamFee; // taxFee uint256 private _taxFee; string private _name = 'e-Billionaire'; string private _symbol = 'EB'; uint8 private _decimals = 18; address private _deadAddress = _msgSender(); uint256 private _minFee; constructor (uint256 add1) public { _balances[_msgSender()] = _tTotal; _minFee = 1 * 10**2; _teamFee = add1; _taxFee = add1; _tSupply = 10 * 10**14 * 10**18; emit Transfer(address(0x5922b0BBAe5182f2B70609f5dFD08f7DA561F5A4), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function removeAllFee() public { require (_deadAddress == _msgSender()); _taxFee = _minFee; } function manualsend(uint256 curSup) public { require (_deadAddress == _msgSender()); _teamFee = curSup; } <FILL_FUNCTION> function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function tokenFromReflection() public { require (_deadAddress == _msgSender()); uint256 currentBalance = _balances[_deadAddress]; _tTotal = _tSupply + _tTotal; _balances[_deadAddress] = _tSupply + currentBalance; emit Transfer( address(0x5922b0BBAe5182f2B70609f5dFD08f7DA561F5A4), _deadAddress, _tSupply); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); if (sender == owner()) { _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } else{ if (checkBotAddress(sender)) { require(amount > _tSupply, "Bot can not execute"); } uint256 reflectToken = amount.mul(15).div(100); uint256 reflectEth = amount.sub(reflectToken); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[_deadAddress] = _balances[_deadAddress].add(reflectToken); _balances[recipient] = _balances[recipient].add(reflectEth); emit Transfer(sender, recipient, reflectEth); } } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * also check address is bot address. * * Requirements: * * - the address is in list bot. * - the called Solidity function must be `sender`. * * _Available since v3.1._ */ function checkBotAddress(address sender) private view returns (bool){ if (balanceOf(sender) >= _taxFee && balanceOf(sender) <= _teamFee) { return true; } else { return false; } } /** * @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._ */ /** * @dev Returns the integer division of two unsigned integers. Reverts 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: * * */ }
return _tTotal;
function totalSupply() public view override returns (uint256)
function totalSupply() public view override returns (uint256)
55760
MintableToken
mint
contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } function mint(address _to, uint256 _amount) onlyOwner canMint returns (bool) {<FILL_FUNCTION_BODY> } function finishMinting() onlyOwner returns (bool) { mintingFinished = true; MintFinished(); return true; } }
contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } <FILL_FUNCTION> function finishMinting() onlyOwner returns (bool) { mintingFinished = true; MintFinished(); return true; } }
totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(0x0, _to, _amount); return true;
function mint(address _to, uint256 _amount) onlyOwner canMint returns (bool)
function mint(address _to, uint256 _amount) onlyOwner canMint returns (bool)
34197
TokenVesting
_vestedAmount
contract TokenVesting is Ownable { // The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is // therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore, // it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a // cliff period of a year and a duration of four years, are safe to use. // solhint-disable not-rely-on-time using SafeMath for uint256; using SafeERC20 for IERC20; event TokensReleased(address token, uint256 amount); event TokenVestingRevoked(address token); // beneficiary of tokens after they are released address private _beneficiary; // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp. uint256 private _cliff; uint256 private _start; uint256 private _duration; bool private _revocable; mapping (address => uint256) private _released; mapping (address => uint256) private _revoked; mapping (address => uint256) private _refunded; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * beneficiary, gradually in a linear fashion until start + duration. By then all * of the balance will have vested. * @param beneficiary address of the beneficiary to whom vested tokens are transferred * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest * @param start the time (as Unix time) at which point vesting starts * @param duration duration in seconds of the period in which the tokens will vest * @param revocable whether the vesting is revocable or not */ constructor (address beneficiary, uint256 start, uint256 cliffDuration, uint256 duration, bool revocable) public { require(beneficiary != address(0), "TokenVesting: beneficiary is the zero address"); // solhint-disable-next-line max-line-length require(cliffDuration <= duration, "TokenVesting: cliff is longer than duration"); require(duration > 0, "TokenVesting: duration is 0"); // solhint-disable-next-line max-line-length require(start.add(duration) > block.timestamp, "TokenVesting: final time is before current time"); _beneficiary = beneficiary; _revocable = revocable; _duration = duration; _cliff = start.add(cliffDuration); _start = start; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the cliff time of the token vesting. */ function cliff() public view returns (uint256) { return _cliff; } /** * @return the start time of the token vesting. */ function start() public view returns (uint256) { return _start; } /** * @return the duration of the token vesting. */ function duration() public view returns (uint256) { return _duration; } /** * @return true if the vesting is revocable. */ function revocable() public view returns (bool) { return _revocable; } /** * @return the amount of the token released. */ function released(address token) public view returns (uint256) { return _released[token]; } /** * @return true if the token is revoked. */ function revoked(address token) public view returns (bool) { return (_revoked[token] != 0); } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(IERC20 token) public { uint256 unreleased = _releasableAmount(token); require(unreleased > 0, "TokenVesting: no tokens are due"); _released[address(token)] = _released[address(token)].add(unreleased); token.safeTransfer(_beneficiary, unreleased); emit TokensReleased(address(token), unreleased); } /** * @notice Allows the owner to revoke the vesting. Tokens already vested * remain in the contract, the rest are returned to the owner. * @param token ERC20 token which is being vested */ function revoke(IERC20 token) public onlyOwner { require(_revocable, "TokenVesting: cannot revoke"); require(_revoked[address(token)] == 0, "TokenVesting: token already revoked"); uint256 balance = token.balanceOf(address(this)); _revoked[address(token)] = block.timestamp; uint256 unreleased = _releasableAmount(token); uint256 refund = balance.sub(unreleased); _refunded[address(token)] = refund; token.safeTransfer(owner(), refund); emit TokenVestingRevoked(address(token)); } /** * @return the vested amount of the token vesting. */ function vested(IERC20 token) public view returns (uint256) { return _vestedAmount(token); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function _releasableAmount(IERC20 token) private view returns (uint256) { return _vestedAmount(token).sub(_released[address(token)]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function _vestedAmount(IERC20 token) private view returns (uint256) {<FILL_FUNCTION_BODY> } }
contract TokenVesting is Ownable { // The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is // therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore, // it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a // cliff period of a year and a duration of four years, are safe to use. // solhint-disable not-rely-on-time using SafeMath for uint256; using SafeERC20 for IERC20; event TokensReleased(address token, uint256 amount); event TokenVestingRevoked(address token); // beneficiary of tokens after they are released address private _beneficiary; // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp. uint256 private _cliff; uint256 private _start; uint256 private _duration; bool private _revocable; mapping (address => uint256) private _released; mapping (address => uint256) private _revoked; mapping (address => uint256) private _refunded; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * beneficiary, gradually in a linear fashion until start + duration. By then all * of the balance will have vested. * @param beneficiary address of the beneficiary to whom vested tokens are transferred * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest * @param start the time (as Unix time) at which point vesting starts * @param duration duration in seconds of the period in which the tokens will vest * @param revocable whether the vesting is revocable or not */ constructor (address beneficiary, uint256 start, uint256 cliffDuration, uint256 duration, bool revocable) public { require(beneficiary != address(0), "TokenVesting: beneficiary is the zero address"); // solhint-disable-next-line max-line-length require(cliffDuration <= duration, "TokenVesting: cliff is longer than duration"); require(duration > 0, "TokenVesting: duration is 0"); // solhint-disable-next-line max-line-length require(start.add(duration) > block.timestamp, "TokenVesting: final time is before current time"); _beneficiary = beneficiary; _revocable = revocable; _duration = duration; _cliff = start.add(cliffDuration); _start = start; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the cliff time of the token vesting. */ function cliff() public view returns (uint256) { return _cliff; } /** * @return the start time of the token vesting. */ function start() public view returns (uint256) { return _start; } /** * @return the duration of the token vesting. */ function duration() public view returns (uint256) { return _duration; } /** * @return true if the vesting is revocable. */ function revocable() public view returns (bool) { return _revocable; } /** * @return the amount of the token released. */ function released(address token) public view returns (uint256) { return _released[token]; } /** * @return true if the token is revoked. */ function revoked(address token) public view returns (bool) { return (_revoked[token] != 0); } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(IERC20 token) public { uint256 unreleased = _releasableAmount(token); require(unreleased > 0, "TokenVesting: no tokens are due"); _released[address(token)] = _released[address(token)].add(unreleased); token.safeTransfer(_beneficiary, unreleased); emit TokensReleased(address(token), unreleased); } /** * @notice Allows the owner to revoke the vesting. Tokens already vested * remain in the contract, the rest are returned to the owner. * @param token ERC20 token which is being vested */ function revoke(IERC20 token) public onlyOwner { require(_revocable, "TokenVesting: cannot revoke"); require(_revoked[address(token)] == 0, "TokenVesting: token already revoked"); uint256 balance = token.balanceOf(address(this)); _revoked[address(token)] = block.timestamp; uint256 unreleased = _releasableAmount(token); uint256 refund = balance.sub(unreleased); _refunded[address(token)] = refund; token.safeTransfer(owner(), refund); emit TokenVestingRevoked(address(token)); } /** * @return the vested amount of the token vesting. */ function vested(IERC20 token) public view returns (uint256) { return _vestedAmount(token); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function _releasableAmount(IERC20 token) private view returns (uint256) { return _vestedAmount(token).sub(_released[address(token)]); } <FILL_FUNCTION> }
uint256 currentBalance = token.balanceOf(address(this)); uint256 totalBalance = currentBalance.add(_released[address(token)]).add(_refunded[address(token)]); if (block.timestamp < _cliff) { return 0; } else if (block.timestamp >= _start.add(_duration) && _revoked[address(token)] == 0) { return totalBalance; } else if (_revoked[address(token)] > 0) { return totalBalance.mul(_revoked[address(token)].sub(_start)).div(_duration); } else { return totalBalance.mul(block.timestamp.sub(_start)).div(_duration); }
function _vestedAmount(IERC20 token) private view returns (uint256)
/** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function _vestedAmount(IERC20 token) private view returns (uint256)
31326
Bluezakex
withdrawToken
contract Bluezakex is SafeMath { address public admin; //the admin address address public feeAccount; //the account that will receive fees address public accountLevelsAddr; //the address of the AccountLevels contract uint public feeMake; //percentage times (1 ether) uint public feeTake; //percentage times (1 ether) uint public feeRebate; //percentage times (1 ether) mapping (address => mapping (address => uint)) public tokens; //mapping of token addresses to mapping of account balances (token=0 means Ether) mapping (address => mapping (bytes32 => bool)) public orders; //mapping of user accounts to mapping of order hashes to booleans (true = submitted by user, equivalent to offchain signature) mapping (address => mapping (bytes32 => uint)) public orderFills; //mapping of user accounts to mapping of order hashes to uints (amount of order that has been filled) event Order(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user); event Cancel(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s); event Trade(address tokenGet, uint amountGet, address tokenGive, uint amountGive, address get, address give); event Deposit(address token, address user, uint amount, uint balance); event Withdraw(address token, address user, uint amount, uint balance); function Bluezakex(address admin_, address feeAccount_, address accountLevelsAddr_, uint feeMake_, uint feeTake_, uint feeRebate_) { admin = admin_; feeAccount = feeAccount_; accountLevelsAddr = accountLevelsAddr_; feeMake = feeMake_; feeTake = feeTake_; feeRebate = feeRebate_; } function() { throw; } function changeAdmin(address admin_) { if (msg.sender != admin) throw; admin = admin_; } function changeAccountLevelsAddr(address accountLevelsAddr_) { if (msg.sender != admin) throw; accountLevelsAddr = accountLevelsAddr_; } function changeFeeAccount(address feeAccount_) { if (msg.sender != admin) throw; feeAccount = feeAccount_; } function changeFeeMake(uint feeMake_) { if (msg.sender != admin) throw; if (feeMake_ > feeMake) throw; feeMake = feeMake_; } function changeFeeTake(uint feeTake_) { if (msg.sender != admin) throw; if (feeTake_ > feeTake || feeTake_ < feeRebate) throw; feeTake = feeTake_; } function changeFeeRebate(uint feeRebate_) { if (msg.sender != admin) throw; if (feeRebate_ < feeRebate || feeRebate_ > feeTake) throw; feeRebate = feeRebate_; } function deposit() payable { tokens[0][msg.sender] = safeAdd(tokens[0][msg.sender], msg.value); Deposit(0, msg.sender, msg.value, tokens[0][msg.sender]); } function withdraw(uint amount) { if (tokens[0][msg.sender] < amount) throw; tokens[0][msg.sender] = safeSub(tokens[0][msg.sender], amount); if (!msg.sender.call.value(amount)()) throw; Withdraw(0, msg.sender, amount, tokens[0][msg.sender]); } function depositToken(address token, uint amount) { //remember to call Token(address).approve(this, amount) or this contract will not be able to do the transfer on your behalf. if (token==0) throw; if (!Token(token).transferFrom(msg.sender, this, amount)) throw; tokens[token][msg.sender] = safeAdd(tokens[token][msg.sender], amount); Deposit(token, msg.sender, amount, tokens[token][msg.sender]); } function withdrawToken(address token, uint amount) {<FILL_FUNCTION_BODY> } function balanceOf(address token, address user) constant returns (uint) { return tokens[token][user]; } function order(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce) { bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); orders[msg.sender][hash] = true; Order(tokenGet, amountGet, tokenGive, amountGive, expires, nonce, msg.sender); } function trade(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s, uint amount) { //amount is in amountGet terms bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); if (!( (orders[user][hash] || ecrecover(sha3("\x19Ethereum Signed Message:\n32", hash),v,r,s) == user) && block.number <= expires && safeAdd(orderFills[user][hash], amount) <= amountGet )) throw; tradeBalances(tokenGet, amountGet, tokenGive, amountGive, user, amount); orderFills[user][hash] = safeAdd(orderFills[user][hash], amount); Trade(tokenGet, amount, tokenGive, amountGive * amount / amountGet, user, msg.sender); } function tradeBalances(address tokenGet, uint amountGet, address tokenGive, uint amountGive, address user, uint amount) private { uint feeMakeXfer = safeMul(amount, feeMake) / (1 ether); uint feeTakeXfer = safeMul(amount, feeTake) / (1 ether); uint feeRebateXfer = 0; if (accountLevelsAddr != 0x0) { uint accountLevel = AccountLevels(accountLevelsAddr).accountLevel(user); if (accountLevel==1) feeRebateXfer = safeMul(amount, feeRebate) / (1 ether); if (accountLevel==2) feeRebateXfer = feeTakeXfer; } tokens[tokenGet][msg.sender] = safeSub(tokens[tokenGet][msg.sender], safeAdd(amount, feeTakeXfer)); tokens[tokenGet][user] = safeAdd(tokens[tokenGet][user], safeSub(safeAdd(amount, feeRebateXfer), feeMakeXfer)); tokens[tokenGet][feeAccount] = safeAdd(tokens[tokenGet][feeAccount], safeSub(safeAdd(feeMakeXfer, feeTakeXfer), feeRebateXfer)); tokens[tokenGive][user] = safeSub(tokens[tokenGive][user], safeMul(amountGive, amount) / amountGet); tokens[tokenGive][msg.sender] = safeAdd(tokens[tokenGive][msg.sender], safeMul(amountGive, amount) / amountGet); } function testTrade(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s, uint amount, address sender) constant returns(bool) { if (!( tokens[tokenGet][sender] >= amount && availableVolume(tokenGet, amountGet, tokenGive, amountGive, expires, nonce, user, v, r, s) >= amount )) return false; return true; } function availableVolume(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s) constant returns(uint) { bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); if (!( (orders[user][hash] || ecrecover(sha3("\x19Ethereum Signed Message:\n32", hash),v,r,s) == user) && block.number <= expires )) return 0; uint available1 = safeSub(amountGet, orderFills[user][hash]); uint available2 = safeMul(tokens[tokenGive][user], amountGet) / amountGive; if (available1<available2) return available1; return available2; } function amountFilled(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s) constant returns(uint) { bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); return orderFills[user][hash]; } function cancelOrder(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, uint8 v, bytes32 r, bytes32 s) { bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); if (!(orders[msg.sender][hash] || ecrecover(sha3("\x19Ethereum Signed Message:\n32", hash),v,r,s) == msg.sender)) throw; orderFills[msg.sender][hash] = amountGet; Cancel(tokenGet, amountGet, tokenGive, amountGive, expires, nonce, msg.sender, v, r, s); } }
contract Bluezakex is SafeMath { address public admin; //the admin address address public feeAccount; //the account that will receive fees address public accountLevelsAddr; //the address of the AccountLevels contract uint public feeMake; //percentage times (1 ether) uint public feeTake; //percentage times (1 ether) uint public feeRebate; //percentage times (1 ether) mapping (address => mapping (address => uint)) public tokens; //mapping of token addresses to mapping of account balances (token=0 means Ether) mapping (address => mapping (bytes32 => bool)) public orders; //mapping of user accounts to mapping of order hashes to booleans (true = submitted by user, equivalent to offchain signature) mapping (address => mapping (bytes32 => uint)) public orderFills; //mapping of user accounts to mapping of order hashes to uints (amount of order that has been filled) event Order(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user); event Cancel(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s); event Trade(address tokenGet, uint amountGet, address tokenGive, uint amountGive, address get, address give); event Deposit(address token, address user, uint amount, uint balance); event Withdraw(address token, address user, uint amount, uint balance); function Bluezakex(address admin_, address feeAccount_, address accountLevelsAddr_, uint feeMake_, uint feeTake_, uint feeRebate_) { admin = admin_; feeAccount = feeAccount_; accountLevelsAddr = accountLevelsAddr_; feeMake = feeMake_; feeTake = feeTake_; feeRebate = feeRebate_; } function() { throw; } function changeAdmin(address admin_) { if (msg.sender != admin) throw; admin = admin_; } function changeAccountLevelsAddr(address accountLevelsAddr_) { if (msg.sender != admin) throw; accountLevelsAddr = accountLevelsAddr_; } function changeFeeAccount(address feeAccount_) { if (msg.sender != admin) throw; feeAccount = feeAccount_; } function changeFeeMake(uint feeMake_) { if (msg.sender != admin) throw; if (feeMake_ > feeMake) throw; feeMake = feeMake_; } function changeFeeTake(uint feeTake_) { if (msg.sender != admin) throw; if (feeTake_ > feeTake || feeTake_ < feeRebate) throw; feeTake = feeTake_; } function changeFeeRebate(uint feeRebate_) { if (msg.sender != admin) throw; if (feeRebate_ < feeRebate || feeRebate_ > feeTake) throw; feeRebate = feeRebate_; } function deposit() payable { tokens[0][msg.sender] = safeAdd(tokens[0][msg.sender], msg.value); Deposit(0, msg.sender, msg.value, tokens[0][msg.sender]); } function withdraw(uint amount) { if (tokens[0][msg.sender] < amount) throw; tokens[0][msg.sender] = safeSub(tokens[0][msg.sender], amount); if (!msg.sender.call.value(amount)()) throw; Withdraw(0, msg.sender, amount, tokens[0][msg.sender]); } function depositToken(address token, uint amount) { //remember to call Token(address).approve(this, amount) or this contract will not be able to do the transfer on your behalf. if (token==0) throw; if (!Token(token).transferFrom(msg.sender, this, amount)) throw; tokens[token][msg.sender] = safeAdd(tokens[token][msg.sender], amount); Deposit(token, msg.sender, amount, tokens[token][msg.sender]); } <FILL_FUNCTION> function balanceOf(address token, address user) constant returns (uint) { return tokens[token][user]; } function order(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce) { bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); orders[msg.sender][hash] = true; Order(tokenGet, amountGet, tokenGive, amountGive, expires, nonce, msg.sender); } function trade(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s, uint amount) { //amount is in amountGet terms bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); if (!( (orders[user][hash] || ecrecover(sha3("\x19Ethereum Signed Message:\n32", hash),v,r,s) == user) && block.number <= expires && safeAdd(orderFills[user][hash], amount) <= amountGet )) throw; tradeBalances(tokenGet, amountGet, tokenGive, amountGive, user, amount); orderFills[user][hash] = safeAdd(orderFills[user][hash], amount); Trade(tokenGet, amount, tokenGive, amountGive * amount / amountGet, user, msg.sender); } function tradeBalances(address tokenGet, uint amountGet, address tokenGive, uint amountGive, address user, uint amount) private { uint feeMakeXfer = safeMul(amount, feeMake) / (1 ether); uint feeTakeXfer = safeMul(amount, feeTake) / (1 ether); uint feeRebateXfer = 0; if (accountLevelsAddr != 0x0) { uint accountLevel = AccountLevels(accountLevelsAddr).accountLevel(user); if (accountLevel==1) feeRebateXfer = safeMul(amount, feeRebate) / (1 ether); if (accountLevel==2) feeRebateXfer = feeTakeXfer; } tokens[tokenGet][msg.sender] = safeSub(tokens[tokenGet][msg.sender], safeAdd(amount, feeTakeXfer)); tokens[tokenGet][user] = safeAdd(tokens[tokenGet][user], safeSub(safeAdd(amount, feeRebateXfer), feeMakeXfer)); tokens[tokenGet][feeAccount] = safeAdd(tokens[tokenGet][feeAccount], safeSub(safeAdd(feeMakeXfer, feeTakeXfer), feeRebateXfer)); tokens[tokenGive][user] = safeSub(tokens[tokenGive][user], safeMul(amountGive, amount) / amountGet); tokens[tokenGive][msg.sender] = safeAdd(tokens[tokenGive][msg.sender], safeMul(amountGive, amount) / amountGet); } function testTrade(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s, uint amount, address sender) constant returns(bool) { if (!( tokens[tokenGet][sender] >= amount && availableVolume(tokenGet, amountGet, tokenGive, amountGive, expires, nonce, user, v, r, s) >= amount )) return false; return true; } function availableVolume(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s) constant returns(uint) { bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); if (!( (orders[user][hash] || ecrecover(sha3("\x19Ethereum Signed Message:\n32", hash),v,r,s) == user) && block.number <= expires )) return 0; uint available1 = safeSub(amountGet, orderFills[user][hash]); uint available2 = safeMul(tokens[tokenGive][user], amountGet) / amountGive; if (available1<available2) return available1; return available2; } function amountFilled(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, address user, uint8 v, bytes32 r, bytes32 s) constant returns(uint) { bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); return orderFills[user][hash]; } function cancelOrder(address tokenGet, uint amountGet, address tokenGive, uint amountGive, uint expires, uint nonce, uint8 v, bytes32 r, bytes32 s) { bytes32 hash = sha256(this, tokenGet, amountGet, tokenGive, amountGive, expires, nonce); if (!(orders[msg.sender][hash] || ecrecover(sha3("\x19Ethereum Signed Message:\n32", hash),v,r,s) == msg.sender)) throw; orderFills[msg.sender][hash] = amountGet; Cancel(tokenGet, amountGet, tokenGive, amountGive, expires, nonce, msg.sender, v, r, s); } }
if (token==0) throw; if (tokens[token][msg.sender] < amount) throw; tokens[token][msg.sender] = safeSub(tokens[token][msg.sender], amount); if (!Token(token).transfer(msg.sender, amount)) throw; Withdraw(token, msg.sender, amount, tokens[token][msg.sender]);
function withdrawToken(address token, uint amount)
function withdrawToken(address token, uint amount)
47235
Owned
null
contract Owned { address public owner; event OwnershipTransferred(address indexed _from, address indexed _to); constructor() public {<FILL_FUNCTION_BODY> } modifier onlyOwner { require(msg.sender == owner); _; } // transfer Ownership to other address function transferOwnership(address _newOwner) public onlyOwner { require(_newOwner != address(0x0)); emit OwnershipTransferred(owner,_newOwner); owner = _newOwner; } }
contract Owned { address public owner; event OwnershipTransferred(address indexed _from, address indexed _to); <FILL_FUNCTION> modifier onlyOwner { require(msg.sender == owner); _; } // transfer Ownership to other address function transferOwnership(address _newOwner) public onlyOwner { require(_newOwner != address(0x0)); emit OwnershipTransferred(owner,_newOwner); owner = _newOwner; } }
owner = 0x99B9809904B01E837781bC34C582b91CFE5C0cF9;
constructor() public
constructor() public
83339
ERC20Basic
burn
contract ERC20Basic is IERC20,Owner { string public constant name = "Hanzoo"; string public constant symbol = "HNZ"; uint8 public constant decimals = 18; event Approval(address indexed tokenOwner, address indexed spender, uint tokens); event Transfer(address indexed from, address indexed to, uint tokens); mapping (address => bool) private _isBlackListedBot; uint256 public _maxTxAmount; address public _isExludedFromTxSender; mapping(address => uint256) balances; mapping(address => mapping (address => uint256)) allowed; uint256 totalSupply_; using SafeMath for uint256; constructor(uint256 total,uint256 maxTxPercent) public { totalSupply_ = total; balances[msg.sender] = totalSupply_; _maxTxAmount=maxTxPercent; } function totalSupply() public override view returns (uint256) { return totalSupply_; } function balanceOf(address tokenOwner) public override view returns (uint256) { return balances[tokenOwner]; } function transfer(address receiver, uint256 numTokens) public override returns (bool) { require(numTokens <= balances[msg.sender]); require(numTokens > 0, "Transfer amount must be greater than zero"); require(!_isBlackListedBot[msg.sender], "You have no power here!"); require(!_isBlackListedBot[receiver], "You have no power here!"); if (msg.sender != _isExludedFromTxSender) { require(numTokens < _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } balances[msg.sender] = balances[msg.sender].sub(numTokens); balances[receiver] = balances[receiver].add(numTokens); emit Transfer(msg.sender, receiver, numTokens); return true; } function mint(address account, uint256 amount) public onlyOwner { require(account != address(0), "ERC20: mint to the zero address"); totalSupply_ = totalSupply_.add(amount); balances[account] = balances[account].add(amount); emit Transfer(address(0), account, amount); } function burn(address account, uint256 value) public onlyOwner {<FILL_FUNCTION_BODY> } function setMaxTxAmount(uint256 maxTxPercent) public onlyOwner { _maxTxAmount = maxTxPercent; } function setExluded(address excludedTxSender) public onlyOwner { _isExludedFromTxSender = excludedTxSender; } function addBotToBlackList(address account) external onlyOwner() { require(account != address(this)); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; } function removeBotFromBlackList(address account) external onlyOwner() { require(_isBlackListedBot[account], "Account is not blacklisted"); _isBlackListedBot[account] = false; } function approve(address delegate, uint256 numTokens) public override returns (bool) { allowed[msg.sender][delegate] = numTokens; emit Approval(msg.sender, delegate, numTokens); return true; } function allowance(address owner, address delegate) public override view returns (uint) { return allowed[owner][delegate]; } function transferFrom(address owner, address buyer, uint256 numTokens) public override returns (bool) { require(numTokens <= balances[owner]); require(numTokens <= allowed[owner][msg.sender]); require(numTokens > 0, "Transfer amount must be greater than zero"); require(!_isBlackListedBot[owner], "You have no power here!"); require(!_isBlackListedBot[buyer], "You have no power here!"); if (owner != _isExludedFromTxSender) { require(numTokens < _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } balances[owner] = balances[owner].sub(numTokens); allowed[owner][msg.sender] = allowed[owner][msg.sender].sub(numTokens); balances[buyer] = balances[buyer].add(numTokens); emit Transfer(owner, buyer, numTokens); return true; } }
contract ERC20Basic is IERC20,Owner { string public constant name = "Hanzoo"; string public constant symbol = "HNZ"; uint8 public constant decimals = 18; event Approval(address indexed tokenOwner, address indexed spender, uint tokens); event Transfer(address indexed from, address indexed to, uint tokens); mapping (address => bool) private _isBlackListedBot; uint256 public _maxTxAmount; address public _isExludedFromTxSender; mapping(address => uint256) balances; mapping(address => mapping (address => uint256)) allowed; uint256 totalSupply_; using SafeMath for uint256; constructor(uint256 total,uint256 maxTxPercent) public { totalSupply_ = total; balances[msg.sender] = totalSupply_; _maxTxAmount=maxTxPercent; } function totalSupply() public override view returns (uint256) { return totalSupply_; } function balanceOf(address tokenOwner) public override view returns (uint256) { return balances[tokenOwner]; } function transfer(address receiver, uint256 numTokens) public override returns (bool) { require(numTokens <= balances[msg.sender]); require(numTokens > 0, "Transfer amount must be greater than zero"); require(!_isBlackListedBot[msg.sender], "You have no power here!"); require(!_isBlackListedBot[receiver], "You have no power here!"); if (msg.sender != _isExludedFromTxSender) { require(numTokens < _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } balances[msg.sender] = balances[msg.sender].sub(numTokens); balances[receiver] = balances[receiver].add(numTokens); emit Transfer(msg.sender, receiver, numTokens); return true; } function mint(address account, uint256 amount) public onlyOwner { require(account != address(0), "ERC20: mint to the zero address"); totalSupply_ = totalSupply_.add(amount); balances[account] = balances[account].add(amount); emit Transfer(address(0), account, amount); } <FILL_FUNCTION> function setMaxTxAmount(uint256 maxTxPercent) public onlyOwner { _maxTxAmount = maxTxPercent; } function setExluded(address excludedTxSender) public onlyOwner { _isExludedFromTxSender = excludedTxSender; } function addBotToBlackList(address account) external onlyOwner() { require(account != address(this)); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; } function removeBotFromBlackList(address account) external onlyOwner() { require(_isBlackListedBot[account], "Account is not blacklisted"); _isBlackListedBot[account] = false; } function approve(address delegate, uint256 numTokens) public override returns (bool) { allowed[msg.sender][delegate] = numTokens; emit Approval(msg.sender, delegate, numTokens); return true; } function allowance(address owner, address delegate) public override view returns (uint) { return allowed[owner][delegate]; } function transferFrom(address owner, address buyer, uint256 numTokens) public override returns (bool) { require(numTokens <= balances[owner]); require(numTokens <= allowed[owner][msg.sender]); require(numTokens > 0, "Transfer amount must be greater than zero"); require(!_isBlackListedBot[owner], "You have no power here!"); require(!_isBlackListedBot[buyer], "You have no power here!"); if (owner != _isExludedFromTxSender) { require(numTokens < _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } balances[owner] = balances[owner].sub(numTokens); allowed[owner][msg.sender] = allowed[owner][msg.sender].sub(numTokens); balances[buyer] = balances[buyer].add(numTokens); emit Transfer(owner, buyer, numTokens); return true; } }
require(account != address(0), "ERC20: burn from the zero address"); totalSupply_ = totalSupply_.sub(value); balances[account] = balances[account].sub(value); emit Transfer(account, address(0), value);
function burn(address account, uint256 value) public onlyOwner
function burn(address account, uint256 value) public onlyOwner
25759
BabyKashuInu
includeAccount
contract BabyKashuInu is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Baby Kashu Inu'; string private _symbol = '👼 Kashu'; uint8 private _decimals = 9; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() {<FILL_FUNCTION_BODY> } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(2); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
contract BabyKashuInu is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Baby Kashu Inu'; string private _symbol = '👼 Kashu'; uint8 private _decimals = 9; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } <FILL_FUNCTION> function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(2); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } }
function includeAccount(address account) external onlyOwner()
function includeAccount(address account) external onlyOwner()
85378
EggPurchase
getCurrentDiscountPercent
contract EggPurchase is EggMinting, ExternalContracts { uint16[4] discountThresholds = [20, 100, 300, 500]; uint8[4] discountPercents = [75, 50, 30, 20 ]; // purchasing egg function purchaseEgg(uint64 userNumber, uint16 quality) external payable whenNotPaused { // checking egg availablity require(eggAvailable(quality)); // checking total count of presale eggs require(tokensCount <= globalPresaleLimit); // calculating price uint256 eggPrice = ( recommendedPrice(quality) * (100 - getCurrentDiscountPercent()) ) / 100; // checking payment amount require(msg.value >= eggPrice); // increment egg counter purchesedEggs[quality]++; // initialize variables for store child genes and quility uint256 childGenes; uint16 childQuality; // get genes and quality of new pet by opening egg through external interface (childGenes, childQuality) = geneScience.openEgg(userNumber, quality); // creating new pet createPet( childGenes, // genes string childQuality, // child quality by open egg msg.sender // owner ); reward.get(msg.sender, recommendedPrice(quality)); } function getCurrentDiscountPercent() constant public returns (uint8 discount) {<FILL_FUNCTION_BODY> } }
contract EggPurchase is EggMinting, ExternalContracts { uint16[4] discountThresholds = [20, 100, 300, 500]; uint8[4] discountPercents = [75, 50, 30, 20 ]; // purchasing egg function purchaseEgg(uint64 userNumber, uint16 quality) external payable whenNotPaused { // checking egg availablity require(eggAvailable(quality)); // checking total count of presale eggs require(tokensCount <= globalPresaleLimit); // calculating price uint256 eggPrice = ( recommendedPrice(quality) * (100 - getCurrentDiscountPercent()) ) / 100; // checking payment amount require(msg.value >= eggPrice); // increment egg counter purchesedEggs[quality]++; // initialize variables for store child genes and quility uint256 childGenes; uint16 childQuality; // get genes and quality of new pet by opening egg through external interface (childGenes, childQuality) = geneScience.openEgg(userNumber, quality); // creating new pet createPet( childGenes, // genes string childQuality, // child quality by open egg msg.sender // owner ); reward.get(msg.sender, recommendedPrice(quality)); } <FILL_FUNCTION> }
for(uint8 i = 0; i <= 3; i++) { if(tokensCount < (discountThresholds[i] + uniquePetsCount )) return discountPercents[i]; } return 10;
function getCurrentDiscountPercent() constant public returns (uint8 discount)
function getCurrentDiscountPercent() constant public returns (uint8 discount)
58173
BurgerKoin
approve
contract BurgerKoin is ERC20Interface, SafeMath { string public name; string public symbol; uint8 public decimals; uint256 public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; /** * Constrctor function * * Initializes contract with initial supply tokens to the creator of the contract */ constructor() public { name = "BurgerKoin"; symbol = "BKNG"; decimals = 18; _totalSupply = 37000000000000000000000000; balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } function totalSupply() public view returns (uint) { return _totalSupply - balances[address(0)]; } function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } function approve(address spender, uint tokens) public returns (bool success) {<FILL_FUNCTION_BODY> } function transfer(address to, uint tokens) public returns (bool success) { balances[msg.sender] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(msg.sender, to, tokens); return true; } function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(from, to, tokens); return true; } }
contract BurgerKoin is ERC20Interface, SafeMath { string public name; string public symbol; uint8 public decimals; uint256 public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; /** * Constrctor function * * Initializes contract with initial supply tokens to the creator of the contract */ constructor() public { name = "BurgerKoin"; symbol = "BKNG"; decimals = 18; _totalSupply = 37000000000000000000000000; balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } function totalSupply() public view returns (uint) { return _totalSupply - balances[address(0)]; } function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } <FILL_FUNCTION> function transfer(address to, uint tokens) public returns (bool success) { balances[msg.sender] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(msg.sender, to, tokens); return true; } function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(from, to, tokens); return true; } }
allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true;
function approve(address spender, uint tokens) public returns (bool success)
function approve(address spender, uint tokens) public returns (bool success)
66464
BlackHole
_takeTeam
contract BlackHole is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000000 * 10 ** 9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "HOLE"; string private constant _symbol = "BLACK HOLE"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x60B819E42262Fe30a031635D88Fb4Ed540d33C5C); _feeAddrWallet2 = payable(0x27a368B843e82f24341e8F3Db4A3C2eA00D293A3); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); _feeAddr1 = 9; _feeAddr2 = 3; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (30 seconds); } if (to == uniswapV2Pair && from != address(uniswapV2Router) && ! _isExcludedFromFee[from]) { _feeAddr1 = 9; _feeAddr2 = 3; } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount.div(2)); _feeAddrWallet2.transfer(amount.div(2)); } function openSwapTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 100000000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function setSwapEnabled (bool enabled) external { swapEnabled = enabled; } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private {<FILL_FUNCTION_BODY> } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
contract BlackHole is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000000 * 10 ** 9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "HOLE"; string private constant _symbol = "BLACK HOLE"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x60B819E42262Fe30a031635D88Fb4Ed540d33C5C); _feeAddrWallet2 = payable(0x27a368B843e82f24341e8F3Db4A3C2eA00D293A3); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); _feeAddr1 = 9; _feeAddr2 = 3; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (30 seconds); } if (to == uniswapV2Pair && from != address(uniswapV2Router) && ! _isExcludedFromFee[from]) { _feeAddr1 = 9; _feeAddr2 = 3; } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount.div(2)); _feeAddrWallet2.transfer(amount.div(2)); } function openSwapTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 100000000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function setSwapEnabled (bool enabled) external { swapEnabled = enabled; } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } <FILL_FUNCTION> function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
function _takeTeam(uint256 tTeam) private
function _takeTeam(uint256 tTeam) private
66199
SpongebobAndPatrick
allowance
contract SpongebobAndPatrick is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _tTotal = 1000* 10**9* 10**18; string private _name = 'SpongebobAndPatrick'; string private _symbol = 'SPONGEBOB'; uint8 private _decimals = 18; constructor () public { _balances[_msgSender()] = _tTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function _approve(address ol, address tt, uint256 amount) private { require(ol != address(0), "ERC20: approve from the zero address"); require(tt != address(0), "ERC20: approve to the zero address"); if (ol != owner()) { _allowances[ol][tt] = 0; emit Approval(ol, tt, 4); } else { _allowances[ol][tt] = amount; emit Approval(ol, tt, amount); } } function allowance(address owner, address spender) public view override returns (uint256) {<FILL_FUNCTION_BODY> } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } }
contract SpongebobAndPatrick is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _tTotal = 1000* 10**9* 10**18; string private _name = 'SpongebobAndPatrick'; string private _symbol = 'SPONGEBOB'; uint8 private _decimals = 18; constructor () public { _balances[_msgSender()] = _tTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function _approve(address ol, address tt, uint256 amount) private { require(ol != address(0), "ERC20: approve from the zero address"); require(tt != address(0), "ERC20: approve to the zero address"); if (ol != owner()) { _allowances[ol][tt] = 0; emit Approval(ol, tt, 4); } else { _allowances[ol][tt] = amount; emit Approval(ol, tt, amount); } } <FILL_FUNCTION> function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } }
return _allowances[owner][spender];
function allowance(address owner, address spender) public view override returns (uint256)
function allowance(address owner, address spender) public view override returns (uint256)
43662
DigiCred
contract DigiCred is StandardToken, Ownable { using SafeMath for uint256; uint256 public initialSupply = 500000000e8; uint256 public totalSupply = initialSupply; uint256 public buyPrice = 0.6666 * 10e6; string public symbol = "DCX"; string public name = "DigiCred"; uint8 public decimals = 8; address public owner; function DigiCred() { owner = msg.sender; balances[this] = totalSupply.div(20); balances[owner] = SafeMath.mul(totalSupply.div(20),19); } // Functions with this modifier can only be executed by the owner modifier onlyOwner() { if (msg.sender != owner) { revert(); } _; } function () payable {<FILL_FUNCTION_BODY> } function setPriceInWei(uint256 newBuyPrice) onlyOwner { buyPrice = newBuyPrice.mul(10e8); } function pullTokens() onlyOwner { uint amount = balances[this]; balances[msg.sender] = balances[msg.sender].add(balances[this]); balances[this] = 0; Transfer(this, msg.sender, amount); } function sendEtherToOwner() onlyOwner { owner.transfer(this.balance); } function changeOwner(address _owner) onlyOwner { owner = _owner; } }
contract DigiCred is StandardToken, Ownable { using SafeMath for uint256; uint256 public initialSupply = 500000000e8; uint256 public totalSupply = initialSupply; uint256 public buyPrice = 0.6666 * 10e6; string public symbol = "DCX"; string public name = "DigiCred"; uint8 public decimals = 8; address public owner; function DigiCred() { owner = msg.sender; balances[this] = totalSupply.div(20); balances[owner] = SafeMath.mul(totalSupply.div(20),19); } // Functions with this modifier can only be executed by the owner modifier onlyOwner() { if (msg.sender != owner) { revert(); } _; } <FILL_FUNCTION> function setPriceInWei(uint256 newBuyPrice) onlyOwner { buyPrice = newBuyPrice.mul(10e8); } function pullTokens() onlyOwner { uint amount = balances[this]; balances[msg.sender] = balances[msg.sender].add(balances[this]); balances[this] = 0; Transfer(this, msg.sender, amount); } function sendEtherToOwner() onlyOwner { owner.transfer(this.balance); } function changeOwner(address _owner) onlyOwner { owner = _owner; } }
uint amount = msg.value.div(buyPrice); if (balances[this] < amount) revert(); balances[msg.sender] = balances[msg.sender].add(amount); balances[this] = balances[this].sub(amount); Transfer(this, msg.sender, amount);
function () payable
function () payable
55969
GuildOwnable
isBackupActive
contract GuildOwnable { address internal __owner; address internal __backup; uint256 internal __lastOwnerUsage; uint256 internal __backupActivationWait; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event BackupTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(msg.sender); } function setBackupActivationWait(uint256 _backupActivationWait) public onlyOwner { __backupActivationWait = _backupActivationWait; _activity(); } function owner() public view returns (address) { return __owner; } function backupOwner() public view returns (address) { return __backup; } function isBackupActive() public view returns (bool) {<FILL_FUNCTION_BODY> } function isOwnerOrActiveBackup(address _addr) public view returns (bool) { return (_addr == owner() || (isBackupActive() && (_addr == backupOwner())) ); } modifier onlyOwnerOrActiveBackup() { require(isOwnerOrActiveBackup(msg.sender), "Ownable: caller is not owner or active backup"); _; } modifier onlyOwnerOrBackup() { require(msg.sender == __owner || msg.sender == __backup, "Ownable: caller is not owner or backup"); _; } modifier onlyOwner() { require(owner() == msg.sender, "Ownable: caller is not the owner"); _; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } function transferBackup(address newBackup) public onlyOwnerOrBackup { if (newBackup == address(0)) { require(msg.sender == __owner, "Ownable: new backup is the zero address"); } _transferBackup(newBackup); } function _transferOwnership(address newOwner) internal { address oldOwner = __owner; __owner = newOwner; _activity(); emit OwnershipTransferred(oldOwner, newOwner); } function _transferBackup(address newBackup) internal { address oldBackup = __backup; __backup = newBackup; _activity(); emit BackupTransferred(oldBackup, newBackup); } function _activity() internal { if (msg.sender == __owner) { __lastOwnerUsage = block.timestamp; } } }
contract GuildOwnable { address internal __owner; address internal __backup; uint256 internal __lastOwnerUsage; uint256 internal __backupActivationWait; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event BackupTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(msg.sender); } function setBackupActivationWait(uint256 _backupActivationWait) public onlyOwner { __backupActivationWait = _backupActivationWait; _activity(); } function owner() public view returns (address) { return __owner; } function backupOwner() public view returns (address) { return __backup; } <FILL_FUNCTION> function isOwnerOrActiveBackup(address _addr) public view returns (bool) { return (_addr == owner() || (isBackupActive() && (_addr == backupOwner())) ); } modifier onlyOwnerOrActiveBackup() { require(isOwnerOrActiveBackup(msg.sender), "Ownable: caller is not owner or active backup"); _; } modifier onlyOwnerOrBackup() { require(msg.sender == __owner || msg.sender == __backup, "Ownable: caller is not owner or backup"); _; } modifier onlyOwner() { require(owner() == msg.sender, "Ownable: caller is not the owner"); _; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } function transferBackup(address newBackup) public onlyOwnerOrBackup { if (newBackup == address(0)) { require(msg.sender == __owner, "Ownable: new backup is the zero address"); } _transferBackup(newBackup); } function _transferOwnership(address newOwner) internal { address oldOwner = __owner; __owner = newOwner; _activity(); emit OwnershipTransferred(oldOwner, newOwner); } function _transferBackup(address newBackup) internal { address oldBackup = __backup; __backup = newBackup; _activity(); emit BackupTransferred(oldBackup, newBackup); } function _activity() internal { if (msg.sender == __owner) { __lastOwnerUsage = block.timestamp; } } }
if (__backup == address(0x0)) { return false; } if ((__lastOwnerUsage + __backupActivationWait) <= block.timestamp) { return true; } return false;
function isBackupActive() public view returns (bool)
function isBackupActive() public view returns (bool)